blob: 2fd62546187a113d0c47cc64f9d67c93e2e7fd28 [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
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080026#define ATH9K_CLOCK_RATE_CCK 22
27#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
28#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040029#define ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Sujithcbe61d82009-02-09 13:27:12 +053031static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070032
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040033MODULE_AUTHOR("Atheros Communications");
34MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
35MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
36MODULE_LICENSE("Dual BSD/GPL");
37
38static int __init ath9k_init(void)
39{
40 return 0;
41}
42module_init(ath9k_init);
43
44static void __exit ath9k_exit(void)
45{
46 return;
47}
48module_exit(ath9k_exit);
49
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040050/* Private hardware callbacks */
51
52static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
55}
56
57static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
58{
59 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
60}
61
62static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
63{
64 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
65
66 return priv_ops->macversion_supported(ah->hw_version.macVersion);
67}
68
Luis R. Rodriguez64773962010-04-15 17:38:17 -040069static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
70 struct ath9k_channel *chan)
71{
72 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
73}
74
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040075static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
76{
77 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
78 return;
79
80 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
81}
82
Sujithf1dc5602008-10-29 10:16:30 +053083/********************/
84/* Helper Functions */
85/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070086
Sujithcbe61d82009-02-09 13:27:12 +053087static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053088{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070089 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053090
Sujith2660b812009-02-09 13:27:26 +053091 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080092 return usecs *ATH9K_CLOCK_RATE_CCK;
93 if (conf->channel->band == IEEE80211_BAND_2GHZ)
94 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040095
96 if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
97 return usecs * ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
98 else
99 return usecs * ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +0530100}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700101
Sujithcbe61d82009-02-09 13:27:12 +0530102static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530103{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -0700104 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +0530105
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -0800106 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +0530107 return ath9k_hw_mac_clks(ah, usecs) * 2;
108 else
109 return ath9k_hw_mac_clks(ah, usecs);
110}
111
Sujith0caa7b12009-02-16 13:23:20 +0530112bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113{
114 int i;
115
Sujith0caa7b12009-02-16 13:23:20 +0530116 BUG_ON(timeout < AH_TIME_QUANTUM);
117
118 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700119 if ((REG_READ(ah, reg) & mask) == val)
120 return true;
121
122 udelay(AH_TIME_QUANTUM);
123 }
Sujith04bd46382008-11-28 22:18:05 +0530124
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700125 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
126 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
127 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700129 return false;
130}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400131EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700132
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133u32 ath9k_hw_reverse_bits(u32 val, u32 n)
134{
135 u32 retval;
136 int i;
137
138 for (i = 0, retval = 0; i < n; i++) {
139 retval = (retval << 1) | (val & 1);
140 val >>= 1;
141 }
142 return retval;
143}
144
Sujithcbe61d82009-02-09 13:27:12 +0530145bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530146 u16 flags, u16 *low,
147 u16 *high)
148{
Sujith2660b812009-02-09 13:27:26 +0530149 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530150
151 if (flags & CHANNEL_5GHZ) {
152 *low = pCap->low_5ghz_chan;
153 *high = pCap->high_5ghz_chan;
154 return true;
155 }
156 if ((flags & CHANNEL_2GHZ)) {
157 *low = pCap->low_2ghz_chan;
158 *high = pCap->high_2ghz_chan;
159 return true;
160 }
161 return false;
162}
163
Sujithcbe61d82009-02-09 13:27:12 +0530164u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100165 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530166 u32 frameLen, u16 rateix,
167 bool shortPreamble)
168{
169 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530170
171 if (kbps == 0)
172 return 0;
173
Felix Fietkau545750d2009-11-23 22:21:01 +0100174 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530175 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530176 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100177 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530178 phyTime >>= 1;
179 numBits = frameLen << 3;
180 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
181 break;
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530183 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530184 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
185 numBits = OFDM_PLCP_BITS + (frameLen << 3);
186 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
187 txTime = OFDM_SIFS_TIME_QUARTER
188 + OFDM_PREAMBLE_TIME_QUARTER
189 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530190 } else if (ah->curchan &&
191 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530192 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
193 numBits = OFDM_PLCP_BITS + (frameLen << 3);
194 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
195 txTime = OFDM_SIFS_TIME_HALF +
196 OFDM_PREAMBLE_TIME_HALF
197 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
198 } else {
199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
203 + (numSymbols * OFDM_SYMBOL_TIME);
204 }
205 break;
206 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700207 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100208 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530209 txTime = 0;
210 break;
211 }
212
213 return txTime;
214}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400215EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530216
Sujithcbe61d82009-02-09 13:27:12 +0530217void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530218 struct ath9k_channel *chan,
219 struct chan_centers *centers)
220{
221 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530222
223 if (!IS_CHAN_HT40(chan)) {
224 centers->ctl_center = centers->ext_center =
225 centers->synth_center = chan->channel;
226 return;
227 }
228
229 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
230 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
231 centers->synth_center =
232 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
233 extoff = 1;
234 } else {
235 centers->synth_center =
236 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
237 extoff = -1;
238 }
239
240 centers->ctl_center =
241 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700242 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530243 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700244 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530245}
246
247/******************/
248/* Chip Revisions */
249/******************/
250
Sujithcbe61d82009-02-09 13:27:12 +0530251static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530252{
253 u32 val;
254
255 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
256
257 if (val == 0xFF) {
258 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530259 ah->hw_version.macVersion =
260 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
261 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530262 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530263 } else {
264 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530265 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530266
Sujithd535a422009-02-09 13:27:06 +0530267 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530268
Sujithd535a422009-02-09 13:27:06 +0530269 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530270 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530271 }
272}
273
Sujithf1dc5602008-10-29 10:16:30 +0530274/************************************/
275/* HW Attach, Detach, Init Routines */
276/************************************/
277
Sujithcbe61d82009-02-09 13:27:12 +0530278static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530279{
Sujithfeed0292009-01-29 11:37:35 +0530280 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530281 return;
282
Sujith7d0d0df2010-04-16 11:53:57 +0530283 ENABLE_REGWRITE_BUFFER(ah);
284
Sujithf1dc5602008-10-29 10:16:30 +0530285 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
294
295 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujith7d0d0df2010-04-16 11:53:57 +0530296
297 REGWRITE_BUFFER_FLUSH(ah);
298 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530299}
300
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400301/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530302static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530303{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700304 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530306 u32 regHold[2];
307 u32 patternData[4] = { 0x55555555,
308 0xaaaaaaaa,
309 0x66666666,
310 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400311 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530312
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400313 if (!AR_SREV_9300_20_OR_LATER(ah)) {
314 loop_max = 2;
315 regAddr[1] = AR_PHY_BASE + (8 << 2);
316 } else
317 loop_max = 1;
318
319 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530320 u32 addr = regAddr[i];
321 u32 wrData, rdData;
322
323 regHold[i] = REG_READ(ah, addr);
324 for (j = 0; j < 0x100; j++) {
325 wrData = (j << 16) | j;
326 REG_WRITE(ah, addr, wrData);
327 rdData = REG_READ(ah, addr);
328 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700329 ath_print(common, ATH_DBG_FATAL,
330 "address test failed "
331 "addr: 0x%08x - wr:0x%08x != "
332 "rd:0x%08x\n",
333 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530334 return false;
335 }
336 }
337 for (j = 0; j < 4; j++) {
338 wrData = patternData[j];
339 REG_WRITE(ah, addr, wrData);
340 rdData = REG_READ(ah, addr);
341 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700342 ath_print(common, ATH_DBG_FATAL,
343 "address test failed "
344 "addr: 0x%08x - wr:0x%08x != "
345 "rd:0x%08x\n",
346 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530347 return false;
348 }
349 }
350 REG_WRITE(ah, regAddr[i], regHold[i]);
351 }
352 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530353
Sujithf1dc5602008-10-29 10:16:30 +0530354 return true;
355}
356
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700357static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700358{
359 int i;
360
Sujith2660b812009-02-09 13:27:26 +0530361 ah->config.dma_beacon_response_time = 2;
362 ah->config.sw_beacon_response_time = 10;
363 ah->config.additional_swba_backoff = 0;
364 ah->config.ack_6mb = 0x0;
365 ah->config.cwm_ignore_extcca = 0;
366 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530367 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530368 ah->config.pcie_waen = 0;
369 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530370 ah->config.ofdm_trig_low = 200;
371 ah->config.ofdm_trig_high = 500;
372 ah->config.cck_trig_high = 200;
373 ah->config.cck_trig_low = 100;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400374
375 /*
376 * For now ANI is disabled for AR9003, it is still
377 * being tested.
378 */
379 if (!AR_SREV_9300_20_OR_LATER(ah))
380 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700381
382 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530383 ah->config.spurchans[i][0] = AR_NO_SPUR;
384 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700385 }
386
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500387 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
388 ah->config.ht_enable = 1;
389 else
390 ah->config.ht_enable = 0;
391
Sujith0ce024c2009-12-14 14:57:00 +0530392 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400393
394 /*
Luis R. Rodriguezb360a882010-04-26 15:04:32 -0400395 * Tx IQ Calibration (ah->config.tx_iq_calibration) is only
396 * used by AR9003, but it is showing reliability issues.
397 * It will take a while to fix so this is currently disabled.
398 */
399
400 /*
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400401 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
402 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
403 * This means we use it for all AR5416 devices, and the few
404 * minor PCI AR9280 devices out there.
405 *
406 * Serialization is required because these devices do not handle
407 * well the case of two concurrent reads/writes due to the latency
408 * involved. During one read/write another read/write can be issued
409 * on another CPU while the previous read/write may still be working
410 * on our hardware, if we hit this case the hardware poops in a loop.
411 * We prevent this by serializing reads and writes.
412 *
413 * This issue is not present on PCI-Express devices or pre-AR5416
414 * devices (legacy, 802.11abg).
415 */
416 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700417 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418}
419
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700420static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700421{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700422 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
423
424 regulatory->country_code = CTRY_DEFAULT;
425 regulatory->power_limit = MAX_RATE_POWER;
426 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
427
Sujithd535a422009-02-09 13:27:06 +0530428 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530429 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700430
431 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432 if (!AR_SREV_9100(ah))
433 ah->ah_flags = AH_USE_EEPROM;
434
Sujith2660b812009-02-09 13:27:26 +0530435 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530436 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
437 ah->beacon_interval = 100;
438 ah->enable_32kHz_clock = DONT_USE_32KHZ;
439 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530440 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200441 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442}
443
Sujithcbe61d82009-02-09 13:27:12 +0530444static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700446 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530447 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700448 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530449 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400450 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700451
Sujithf1dc5602008-10-29 10:16:30 +0530452 sum = 0;
453 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400454 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530455 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700456 common->macaddr[2 * i] = eeval >> 8;
457 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458 }
Sujithd8baa932009-03-30 15:28:25 +0530459 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530460 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462 return 0;
463}
464
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700465static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466{
467 int ecode;
468
Sujith527d4852010-03-17 14:25:16 +0530469 if (!AR_SREV_9271(ah)) {
470 if (!ath9k_hw_chip_test(ah))
471 return -ENODEV;
472 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400474 if (!AR_SREV_9300_20_OR_LATER(ah)) {
475 ecode = ar9002_hw_rf_claim(ah);
476 if (ecode != 0)
477 return ecode;
478 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700479
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700480 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700481 if (ecode != 0)
482 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530483
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700484 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
485 "Eeprom VER: %d, REV: %d\n",
486 ah->eep_ops->get_eeprom_ver(ah),
487 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530488
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400489 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
490 if (ecode) {
491 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
492 "Failed allocating banks for "
493 "external radio\n");
494 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400495 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700496
497 if (!AR_SREV_9100(ah)) {
498 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700499 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500 }
Sujithf1dc5602008-10-29 10:16:30 +0530501
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502 return 0;
503}
504
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400505static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700506{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400507 if (AR_SREV_9300_20_OR_LATER(ah))
508 ar9003_hw_attach_ops(ah);
509 else
510 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700511}
512
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400513/* Called for all hardware families */
514static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700515{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700516 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700517 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700518
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400519 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
520 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700521
522 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700523 ath_print(common, ATH_DBG_FATAL,
524 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700525 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700526 }
527
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400528 ath9k_hw_init_defaults(ah);
529 ath9k_hw_init_config(ah);
530
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400531 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400532
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700533 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700534 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700535 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700536 }
537
538 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
539 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
540 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
541 ah->config.serialize_regmode =
542 SER_REG_MODE_ON;
543 } else {
544 ah->config.serialize_regmode =
545 SER_REG_MODE_OFF;
546 }
547 }
548
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700549 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700550 ah->config.serialize_regmode);
551
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500552 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
553 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
554 else
555 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
556
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400557 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700558 ath_print(common, ATH_DBG_FATAL,
559 "Mac Chip Rev 0x%02x.%x is not supported by "
560 "this driver\n", ah->hw_version.macVersion,
561 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700562 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 }
564
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400565 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400566 ah->is_pciexpress = false;
567
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700568 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700569 ath9k_hw_init_cal_settings(ah);
570
571 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400572 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700573 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
574
575 ath9k_hw_init_mode_regs(ah);
576
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400577 /*
578 * Configire PCIE after Ini init. SERDES values now come from ini file
579 * This enables PCIe low power mode.
580 */
581 if (AR_SREV_9300_20_OR_LATER(ah)) {
582 u32 regval;
583 unsigned int i;
584
585 /* Set Bits 16 and 17 in the AR_WA register. */
586 regval = REG_READ(ah, AR_WA);
587 regval |= 0x00030000;
588 REG_WRITE(ah, AR_WA, regval);
589
590 for (i = 0; i < ah->iniPcieSerdesLowPower.ia_rows; i++) {
591 REG_WRITE(ah,
592 INI_RA(&ah->iniPcieSerdesLowPower, i, 0),
593 INI_RA(&ah->iniPcieSerdesLowPower, i, 1));
594 }
595 }
596
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700597 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530598 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599 else
600 ath9k_hw_disablepcie(ah);
601
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400602 if (!AR_SREV_9300_20_OR_LATER(ah))
603 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530604
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700605 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700606 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700607 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700608
609 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100610 r = ath9k_hw_fill_cap_info(ah);
611 if (r)
612 return r;
613
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700614 r = ath9k_hw_init_macaddr(ah);
615 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700616 ath_print(common, ATH_DBG_FATAL,
617 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700618 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700619 }
620
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400621 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530622 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 else
Sujith2660b812009-02-09 13:27:26 +0530624 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700625
Felix Fietkau641d9922010-04-15 17:38:49 -0400626 if (AR_SREV_9300_20_OR_LATER(ah))
627 ar9003_hw_set_nf_limits(ah);
628
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400630 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400632 common->state = ATH_HW_INITIALIZED;
633
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700634 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635}
636
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400637int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530638{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400639 int ret;
640 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530641
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400642 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
643 switch (ah->hw_version.devid) {
644 case AR5416_DEVID_PCI:
645 case AR5416_DEVID_PCIE:
646 case AR5416_AR9100_DEVID:
647 case AR9160_DEVID_PCI:
648 case AR9280_DEVID_PCI:
649 case AR9280_DEVID_PCIE:
650 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400651 case AR9287_DEVID_PCI:
652 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400653 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400654 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400655 break;
656 default:
657 if (common->bus_ops->ath_bus_type == ATH_USB)
658 break;
659 ath_print(common, ATH_DBG_FATAL,
660 "Hardware device ID 0x%04x not supported\n",
661 ah->hw_version.devid);
662 return -EOPNOTSUPP;
663 }
Sujithf1dc5602008-10-29 10:16:30 +0530664
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400665 ret = __ath9k_hw_init(ah);
666 if (ret) {
667 ath_print(common, ATH_DBG_FATAL,
668 "Unable to initialize hardware; "
669 "initialization status: %d\n", ret);
670 return ret;
671 }
Sujithf1dc5602008-10-29 10:16:30 +0530672
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400673 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530674}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400675EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530676
Sujithcbe61d82009-02-09 13:27:12 +0530677static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530678{
Sujith7d0d0df2010-04-16 11:53:57 +0530679 ENABLE_REGWRITE_BUFFER(ah);
680
Sujithf1dc5602008-10-29 10:16:30 +0530681 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
682 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
683
684 REG_WRITE(ah, AR_QOS_NO_ACK,
685 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
686 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
687 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
688
689 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
690 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
691 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
692 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
693 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530694
695 REGWRITE_BUFFER_FLUSH(ah);
696 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530697}
698
Sujithcbe61d82009-02-09 13:27:12 +0530699static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530700 struct ath9k_channel *chan)
701{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400702 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530703
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100704 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530705
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400706 /* Switch the core clock for ar9271 to 117Mhz */
707 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530708 udelay(500);
709 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400710 }
711
Sujithf1dc5602008-10-29 10:16:30 +0530712 udelay(RTC_PLL_SETTLE_DELAY);
713
714 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
715}
716
Sujithcbe61d82009-02-09 13:27:12 +0530717static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800718 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530719{
Pavel Roskin152d5302010-03-31 18:05:37 -0400720 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530721 AR_IMR_TXURN |
722 AR_IMR_RXERR |
723 AR_IMR_RXORN |
724 AR_IMR_BCNMISC;
725
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400726 if (AR_SREV_9300_20_OR_LATER(ah)) {
727 imr_reg |= AR_IMR_RXOK_HP;
728 if (ah->config.rx_intr_mitigation)
729 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
730 else
731 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530732
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400733 } else {
734 if (ah->config.rx_intr_mitigation)
735 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
736 else
737 imr_reg |= AR_IMR_RXOK;
738 }
739
740 if (ah->config.tx_intr_mitigation)
741 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
742 else
743 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530744
Colin McCabed97809d2008-12-01 13:38:55 -0800745 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400746 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530747
Sujith7d0d0df2010-04-16 11:53:57 +0530748 ENABLE_REGWRITE_BUFFER(ah);
749
Pavel Roskin152d5302010-03-31 18:05:37 -0400750 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500751 ah->imrs2_reg |= AR_IMR_S2_GTT;
752 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530753
754 if (!AR_SREV_9100(ah)) {
755 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
756 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
757 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
758 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400759
Sujith7d0d0df2010-04-16 11:53:57 +0530760 REGWRITE_BUFFER_FLUSH(ah);
761 DISABLE_REGWRITE_BUFFER(ah);
762
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400763 if (AR_SREV_9300_20_OR_LATER(ah)) {
764 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
765 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
766 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
767 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
768 }
Sujithf1dc5602008-10-29 10:16:30 +0530769}
770
Felix Fietkau0005baf2010-01-15 02:33:40 +0100771static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530772{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100773 u32 val = ath9k_hw_mac_to_clks(ah, us);
774 val = min(val, (u32) 0xFFFF);
775 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530776}
777
Felix Fietkau0005baf2010-01-15 02:33:40 +0100778static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530779{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100780 u32 val = ath9k_hw_mac_to_clks(ah, us);
781 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
782 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
783}
784
785static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
786{
787 u32 val = ath9k_hw_mac_to_clks(ah, us);
788 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
789 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530790}
791
Sujithcbe61d82009-02-09 13:27:12 +0530792static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530793{
Sujithf1dc5602008-10-29 10:16:30 +0530794 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700795 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
796 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530797 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530798 return false;
799 } else {
800 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530801 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530802 return true;
803 }
804}
805
Felix Fietkau0005baf2010-01-15 02:33:40 +0100806void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530807{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100808 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
809 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100810 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100811 int sifstime;
812
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700813 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
814 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530815
Sujith2660b812009-02-09 13:27:26 +0530816 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530817 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530818 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100819
820 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
821 sifstime = 16;
822 else
823 sifstime = 10;
824
Felix Fietkaue239d852010-01-15 02:34:58 +0100825 /* As defined by IEEE 802.11-2007 17.3.8.6 */
826 slottime = ah->slottime + 3 * ah->coverage_class;
827 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100828
829 /*
830 * Workaround for early ACK timeouts, add an offset to match the
831 * initval's 64us ack timeout value.
832 * This was initially only meant to work around an issue with delayed
833 * BA frames in some implementations, but it has been found to fix ACK
834 * timeout issues in other cases as well.
835 */
836 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
837 acktimeout += 64 - sifstime - ah->slottime;
838
Felix Fietkaue239d852010-01-15 02:34:58 +0100839 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100840 ath9k_hw_set_ack_timeout(ah, acktimeout);
841 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530842 if (ah->globaltxtimeout != (u32) -1)
843 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530844}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100845EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530846
Sujith285f2dd2010-01-08 10:36:07 +0530847void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700848{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400849 struct ath_common *common = ath9k_hw_common(ah);
850
Sujith736b3a22010-03-17 14:25:24 +0530851 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400852 goto free_hw;
853
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700854 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400855
856free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400857 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700858}
Sujith285f2dd2010-01-08 10:36:07 +0530859EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700860
Sujithf1dc5602008-10-29 10:16:30 +0530861/*******/
862/* INI */
863/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400865u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400866{
867 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
868
869 if (IS_CHAN_B(chan))
870 ctl |= CTL_11B;
871 else if (IS_CHAN_G(chan))
872 ctl |= CTL_11G;
873 else
874 ctl |= CTL_11A;
875
876 return ctl;
877}
878
Sujithf1dc5602008-10-29 10:16:30 +0530879/****************************************/
880/* Reset and Channel Switching Routines */
881/****************************************/
882
Sujithcbe61d82009-02-09 13:27:12 +0530883static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530884{
Felix Fietkau57b32222010-04-15 17:39:22 -0400885 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530886 u32 regval;
887
Sujith7d0d0df2010-04-16 11:53:57 +0530888 ENABLE_REGWRITE_BUFFER(ah);
889
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400890 /*
891 * set AHB_MODE not to do cacheline prefetches
892 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400893 if (!AR_SREV_9300_20_OR_LATER(ah)) {
894 regval = REG_READ(ah, AR_AHB_MODE);
895 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
896 }
Sujithf1dc5602008-10-29 10:16:30 +0530897
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400898 /*
899 * let mac dma reads be in 128 byte chunks
900 */
Sujithf1dc5602008-10-29 10:16:30 +0530901 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
902 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
903
Sujith7d0d0df2010-04-16 11:53:57 +0530904 REGWRITE_BUFFER_FLUSH(ah);
905 DISABLE_REGWRITE_BUFFER(ah);
906
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400907 /*
908 * Restore TX Trigger Level to its pre-reset value.
909 * The initial value depends on whether aggregation is enabled, and is
910 * adjusted whenever underruns are detected.
911 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400912 if (!AR_SREV_9300_20_OR_LATER(ah))
913 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530914
Sujith7d0d0df2010-04-16 11:53:57 +0530915 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530916
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400917 /*
918 * let mac dma writes be in 128 byte chunks
919 */
Sujithf1dc5602008-10-29 10:16:30 +0530920 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
921 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
922
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400923 /*
924 * Setup receive FIFO threshold to hold off TX activities
925 */
Sujithf1dc5602008-10-29 10:16:30 +0530926 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
927
Felix Fietkau57b32222010-04-15 17:39:22 -0400928 if (AR_SREV_9300_20_OR_LATER(ah)) {
929 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
930 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
931
932 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
933 ah->caps.rx_status_len);
934 }
935
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400936 /*
937 * reduce the number of usable entries in PCU TXBUF to avoid
938 * wrap around issues.
939 */
Sujithf1dc5602008-10-29 10:16:30 +0530940 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400941 /* For AR9285 the number of Fifos are reduced to half.
942 * So set the usable tx buf size also to half to
943 * avoid data/delimiter underruns
944 */
Sujithf1dc5602008-10-29 10:16:30 +0530945 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
946 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400947 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530948 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
949 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
950 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400951
Sujith7d0d0df2010-04-16 11:53:57 +0530952 REGWRITE_BUFFER_FLUSH(ah);
953 DISABLE_REGWRITE_BUFFER(ah);
954
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400955 if (AR_SREV_9300_20_OR_LATER(ah))
956 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530957}
958
Sujithcbe61d82009-02-09 13:27:12 +0530959static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530960{
961 u32 val;
962
963 val = REG_READ(ah, AR_STA_ID1);
964 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
965 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800966 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530967 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
968 | AR_STA_ID1_KSRCH_MODE);
969 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
970 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800971 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400972 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530973 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
974 | AR_STA_ID1_KSRCH_MODE);
975 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
976 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800977 case NL80211_IFTYPE_STATION:
978 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530979 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
980 break;
981 }
982}
983
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400984void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
985 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700986{
987 u32 coef_exp, coef_man;
988
989 for (coef_exp = 31; coef_exp > 0; coef_exp--)
990 if ((coef_scaled >> coef_exp) & 0x1)
991 break;
992
993 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
994
995 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
996
997 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
998 *coef_exponent = coef_exp - 16;
999}
1000
Sujithcbe61d82009-02-09 13:27:12 +05301001static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301002{
1003 u32 rst_flags;
1004 u32 tmpReg;
1005
Sujith70768492009-02-16 13:23:12 +05301006 if (AR_SREV_9100(ah)) {
1007 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1008 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1009 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1010 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1011 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1012 }
1013
Sujith7d0d0df2010-04-16 11:53:57 +05301014 ENABLE_REGWRITE_BUFFER(ah);
1015
Sujithf1dc5602008-10-29 10:16:30 +05301016 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1017 AR_RTC_FORCE_WAKE_ON_INT);
1018
1019 if (AR_SREV_9100(ah)) {
1020 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1021 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1022 } else {
1023 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1024 if (tmpReg &
1025 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1026 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001027 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301028 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001029
1030 val = AR_RC_HOSTIF;
1031 if (!AR_SREV_9300_20_OR_LATER(ah))
1032 val |= AR_RC_AHB;
1033 REG_WRITE(ah, AR_RC, val);
1034
1035 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301036 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301037
1038 rst_flags = AR_RTC_RC_MAC_WARM;
1039 if (type == ATH9K_RESET_COLD)
1040 rst_flags |= AR_RTC_RC_MAC_COLD;
1041 }
1042
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001043 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301044
1045 REGWRITE_BUFFER_FLUSH(ah);
1046 DISABLE_REGWRITE_BUFFER(ah);
1047
Sujithf1dc5602008-10-29 10:16:30 +05301048 udelay(50);
1049
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001050 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301051 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001052 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1053 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301054 return false;
1055 }
1056
1057 if (!AR_SREV_9100(ah))
1058 REG_WRITE(ah, AR_RC, 0);
1059
Sujithf1dc5602008-10-29 10:16:30 +05301060 if (AR_SREV_9100(ah))
1061 udelay(50);
1062
1063 return true;
1064}
1065
Sujithcbe61d82009-02-09 13:27:12 +05301066static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301067{
Sujith7d0d0df2010-04-16 11:53:57 +05301068 ENABLE_REGWRITE_BUFFER(ah);
1069
Sujithf1dc5602008-10-29 10:16:30 +05301070 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1071 AR_RTC_FORCE_WAKE_ON_INT);
1072
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001073 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301074 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1075
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001076 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301077
Sujith7d0d0df2010-04-16 11:53:57 +05301078 REGWRITE_BUFFER_FLUSH(ah);
1079 DISABLE_REGWRITE_BUFFER(ah);
1080
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001081 if (!AR_SREV_9300_20_OR_LATER(ah))
1082 udelay(2);
1083
1084 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301085 REG_WRITE(ah, AR_RC, 0);
1086
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001087 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301088
1089 if (!ath9k_hw_wait(ah,
1090 AR_RTC_STATUS,
1091 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301092 AR_RTC_STATUS_ON,
1093 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001094 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1095 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301096 return false;
1097 }
1098
1099 ath9k_hw_read_revisions(ah);
1100
1101 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1102}
1103
Sujithcbe61d82009-02-09 13:27:12 +05301104static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301105{
1106 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1107 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1108
1109 switch (type) {
1110 case ATH9K_RESET_POWER_ON:
1111 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301112 case ATH9K_RESET_WARM:
1113 case ATH9K_RESET_COLD:
1114 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301115 default:
1116 return false;
1117 }
1118}
1119
Sujithcbe61d82009-02-09 13:27:12 +05301120static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301121 struct ath9k_channel *chan)
1122{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301123 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301124 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1125 return false;
1126 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301127 return false;
1128
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001129 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301130 return false;
1131
Sujith2660b812009-02-09 13:27:26 +05301132 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301133 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301134 ath9k_hw_set_rfmode(ah, chan);
1135
1136 return true;
1137}
1138
Sujithcbe61d82009-02-09 13:27:12 +05301139static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001140 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301141{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001142 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001143 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001144 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001145 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001146 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301147
1148 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1149 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001150 ath_print(common, ATH_DBG_QUEUE,
1151 "Transmit frames pending on "
1152 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301153 return false;
1154 }
1155 }
1156
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001157 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001158 ath_print(common, ATH_DBG_FATAL,
1159 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301160 return false;
1161 }
1162
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001163 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301164
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001165 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001166 if (r) {
1167 ath_print(common, ATH_DBG_FATAL,
1168 "Failed to set channel\n");
1169 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301170 }
1171
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001172 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001173 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301174 channel->max_antenna_gain * 2,
1175 channel->max_power * 2,
1176 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001177 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301178
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001179 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301180
1181 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1182 ath9k_hw_set_delta_slope(ah, chan);
1183
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001184 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301185
1186 if (!chan->oneTimeCalsDone)
1187 chan->oneTimeCalsDone = true;
1188
1189 return true;
1190}
1191
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001192bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301193{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001194 int count = 50;
1195 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301196
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001197 if (AR_SREV_9285_10_OR_LATER(ah))
1198 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301199
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001200 do {
1201 reg = REG_READ(ah, AR_OBS_BUS_1);
1202
1203 if ((reg & 0x7E7FFFEF) == 0x00702400)
1204 continue;
1205
1206 switch (reg & 0x7E000B00) {
1207 case 0x1E000000:
1208 case 0x52000B00:
1209 case 0x18000B00:
1210 continue;
1211 default:
1212 return true;
1213 }
1214 } while (count-- > 0);
1215
1216 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301217}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001218EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301219
Sujithcbe61d82009-02-09 13:27:12 +05301220int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001221 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001223 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301225 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001226 u32 saveDefAntenna;
1227 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301228 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001229 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001230
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001231 ah->txchainmask = common->tx_chainmask;
1232 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001233
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001234 if (!ah->chip_fullsleep) {
1235 ath9k_hw_abortpcurecv(ah);
1236 if (!ath9k_hw_stopdmarecv(ah))
1237 ath_print(common, ATH_DBG_XMIT,
1238 "Failed to stop receive dma\n");
1239 }
1240
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001241 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001242 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301244 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245 ath9k_hw_getnf(ah, curchan);
1246
1247 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301248 (ah->chip_fullsleep != true) &&
1249 (ah->curchan != NULL) &&
1250 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301252 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001253 !AR_SREV_9280(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001254
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001255 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301256 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001258 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259 }
1260 }
1261
1262 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1263 if (saveDefAntenna == 0)
1264 saveDefAntenna = 1;
1265
1266 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1267
Sujith46fe7822009-09-17 09:25:25 +05301268 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1269 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1270 tsf = ath9k_hw_gettsf64(ah);
1271
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001272 saveLedState = REG_READ(ah, AR_CFG_LED) &
1273 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1274 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1275
1276 ath9k_hw_mark_phy_inactive(ah);
1277
Sujith05020d22010-03-17 14:25:23 +05301278 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001279 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1280 REG_WRITE(ah,
1281 AR9271_RESET_POWER_DOWN_CONTROL,
1282 AR9271_RADIO_RF_RST);
1283 udelay(50);
1284 }
1285
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001286 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001287 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001288 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289 }
1290
Sujith05020d22010-03-17 14:25:23 +05301291 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001292 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1293 ah->htc_reset_init = false;
1294 REG_WRITE(ah,
1295 AR9271_RESET_POWER_DOWN_CONTROL,
1296 AR9271_GATE_MAC_CTL);
1297 udelay(50);
1298 }
1299
Sujith46fe7822009-09-17 09:25:25 +05301300 /* Restore TSF */
1301 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1302 ath9k_hw_settsf64(ah, tsf);
1303
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301304 if (AR_SREV_9280_10_OR_LATER(ah))
1305 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001306
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001307 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001308 if (r)
1309 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001310
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001311 /* Setup MFP options for CCMP */
1312 if (AR_SREV_9280_20_OR_LATER(ah)) {
1313 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1314 * frames when constructing CCMP AAD. */
1315 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1316 0xc7ff);
1317 ah->sw_mgmt_crypto = false;
1318 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1319 /* Disable hardware crypto for management frames */
1320 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1321 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1322 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1323 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1324 ah->sw_mgmt_crypto = true;
1325 } else
1326 ah->sw_mgmt_crypto = true;
1327
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001328 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1329 ath9k_hw_set_delta_slope(ah, chan);
1330
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001331 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301332 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001333
Sujith6819d572010-04-16 11:53:56 +05301334 ath9k_hw_set_operating_mode(ah, ah->opmode);
1335
Sujith7d0d0df2010-04-16 11:53:57 +05301336 ENABLE_REGWRITE_BUFFER(ah);
1337
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001338 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1339 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001340 | macStaId1
1341 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301342 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301343 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301344 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001345 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001347 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001349 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1350
Sujith7d0d0df2010-04-16 11:53:57 +05301351 REGWRITE_BUFFER_FLUSH(ah);
1352 DISABLE_REGWRITE_BUFFER(ah);
1353
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001354 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001355 if (r)
1356 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357
Sujith7d0d0df2010-04-16 11:53:57 +05301358 ENABLE_REGWRITE_BUFFER(ah);
1359
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001360 for (i = 0; i < AR_NUM_DCU; i++)
1361 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1362
Sujith7d0d0df2010-04-16 11:53:57 +05301363 REGWRITE_BUFFER_FLUSH(ah);
1364 DISABLE_REGWRITE_BUFFER(ah);
1365
Sujith2660b812009-02-09 13:27:26 +05301366 ah->intr_txqs = 0;
1367 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001368 ath9k_hw_resettxqueue(ah, i);
1369
Sujith2660b812009-02-09 13:27:26 +05301370 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001371 ath9k_hw_init_qos(ah);
1372
Sujith2660b812009-02-09 13:27:26 +05301373 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301374 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301375
Felix Fietkau0005baf2010-01-15 02:33:40 +01001376 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001377
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001378 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez78ec2672010-04-15 17:39:23 -04001379 ar9002_hw_enable_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001380 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301381 }
1382
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001383 REG_WRITE(ah, AR_STA_ID1,
1384 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1385
1386 ath9k_hw_set_dma(ah);
1387
1388 REG_WRITE(ah, AR_OBS, 8);
1389
Sujith0ce024c2009-12-14 14:57:00 +05301390 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001391 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1392 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1393 }
1394
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001395 if (ah->config.tx_intr_mitigation) {
1396 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1397 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1398 }
1399
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001400 ath9k_hw_init_bb(ah, chan);
1401
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001402 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001403 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001404
Sujith7d0d0df2010-04-16 11:53:57 +05301405 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001406
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001407 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001408 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1409
Sujith7d0d0df2010-04-16 11:53:57 +05301410 REGWRITE_BUFFER_FLUSH(ah);
1411 DISABLE_REGWRITE_BUFFER(ah);
1412
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001413 /*
1414 * For big endian systems turn on swapping for descriptors
1415 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001416 if (AR_SREV_9100(ah)) {
1417 u32 mask;
1418 mask = REG_READ(ah, AR_CFG);
1419 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001420 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301421 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 } else {
1423 mask =
1424 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1425 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001426 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301427 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428 }
1429 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001430 /* Configure AR9271 target WLAN */
1431 if (AR_SREV_9271(ah))
1432 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001433#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001434 else
1435 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001436#endif
1437 }
1438
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001439 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301440 ath9k_hw_btcoex_enable(ah);
1441
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001442 if (AR_SREV_9300_20_OR_LATER(ah)) {
1443 ath9k_hw_loadnf(ah, curchan);
1444 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001445 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001446 }
1447
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001448 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001449}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001450EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001451
Sujithf1dc5602008-10-29 10:16:30 +05301452/************************/
1453/* Key Cache Management */
1454/************************/
1455
Sujithcbe61d82009-02-09 13:27:12 +05301456bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457{
Sujithf1dc5602008-10-29 10:16:30 +05301458 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459
Sujith2660b812009-02-09 13:27:26 +05301460 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001461 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1462 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001463 return false;
1464 }
1465
Sujithf1dc5602008-10-29 10:16:30 +05301466 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001467
Sujithf1dc5602008-10-29 10:16:30 +05301468 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1469 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1470 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1471 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1472 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1473 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1474 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1475 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1476
1477 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1478 u16 micentry = entry + 64;
1479
1480 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1481 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1482 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1483 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1484
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001485 }
1486
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001487 return true;
1488}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001489EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490
Sujithcbe61d82009-02-09 13:27:12 +05301491bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492{
Sujithf1dc5602008-10-29 10:16:30 +05301493 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001494
Sujith2660b812009-02-09 13:27:26 +05301495 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001496 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1497 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001498 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001499 }
1500
Sujithf1dc5602008-10-29 10:16:30 +05301501 if (mac != NULL) {
1502 macHi = (mac[5] << 8) | mac[4];
1503 macLo = (mac[3] << 24) |
1504 (mac[2] << 16) |
1505 (mac[1] << 8) |
1506 mac[0];
1507 macLo >>= 1;
1508 macLo |= (macHi & 1) << 31;
1509 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301511 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512 }
Sujithf1dc5602008-10-29 10:16:30 +05301513 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1514 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001515
1516 return true;
1517}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001518EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001519
Sujithcbe61d82009-02-09 13:27:12 +05301520bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301521 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001522 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001523{
Sujith2660b812009-02-09 13:27:26 +05301524 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001525 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301526 u32 key0, key1, key2, key3, key4;
1527 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528
Sujithf1dc5602008-10-29 10:16:30 +05301529 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001530 ath_print(common, ATH_DBG_FATAL,
1531 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301532 return false;
1533 }
1534
1535 switch (k->kv_type) {
1536 case ATH9K_CIPHER_AES_OCB:
1537 keyType = AR_KEYTABLE_TYPE_AES;
1538 break;
1539 case ATH9K_CIPHER_AES_CCM:
1540 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001541 ath_print(common, ATH_DBG_ANY,
1542 "AES-CCM not supported by mac rev 0x%x\n",
1543 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001544 return false;
1545 }
Sujithf1dc5602008-10-29 10:16:30 +05301546 keyType = AR_KEYTABLE_TYPE_CCM;
1547 break;
1548 case ATH9K_CIPHER_TKIP:
1549 keyType = AR_KEYTABLE_TYPE_TKIP;
1550 if (ATH9K_IS_MIC_ENABLED(ah)
1551 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001552 ath_print(common, ATH_DBG_ANY,
1553 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001555 }
Sujithf1dc5602008-10-29 10:16:30 +05301556 break;
1557 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001558 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001559 ath_print(common, ATH_DBG_ANY,
1560 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301561 return false;
1562 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001563 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301564 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001565 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301566 keyType = AR_KEYTABLE_TYPE_104;
1567 else
1568 keyType = AR_KEYTABLE_TYPE_128;
1569 break;
1570 case ATH9K_CIPHER_CLR:
1571 keyType = AR_KEYTABLE_TYPE_CLR;
1572 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001573 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001574 ath_print(common, ATH_DBG_FATAL,
1575 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001576 return false;
1577 }
Sujithf1dc5602008-10-29 10:16:30 +05301578
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001579 key0 = get_unaligned_le32(k->kv_val + 0);
1580 key1 = get_unaligned_le16(k->kv_val + 4);
1581 key2 = get_unaligned_le32(k->kv_val + 6);
1582 key3 = get_unaligned_le16(k->kv_val + 10);
1583 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001584 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301585 key4 &= 0xff;
1586
Jouni Malinen672903b2009-03-02 15:06:31 +02001587 /*
1588 * Note: Key cache registers access special memory area that requires
1589 * two 32-bit writes to actually update the values in the internal
1590 * memory. Consequently, the exact order and pairs used here must be
1591 * maintained.
1592 */
1593
Sujithf1dc5602008-10-29 10:16:30 +05301594 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1595 u16 micentry = entry + 64;
1596
Jouni Malinen672903b2009-03-02 15:06:31 +02001597 /*
1598 * Write inverted key[47:0] first to avoid Michael MIC errors
1599 * on frames that could be sent or received at the same time.
1600 * The correct key will be written in the end once everything
1601 * else is ready.
1602 */
Sujithf1dc5602008-10-29 10:16:30 +05301603 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1604 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001605
1606 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301607 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1608 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001609
1610 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301611 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1612 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001613
1614 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301615 (void) ath9k_hw_keysetmac(ah, entry, mac);
1616
Sujith2660b812009-02-09 13:27:26 +05301617 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001618 /*
1619 * TKIP uses two key cache entries:
1620 * Michael MIC TX/RX keys in the same key cache entry
1621 * (idx = main index + 64):
1622 * key0 [31:0] = RX key [31:0]
1623 * key1 [15:0] = TX key [31:16]
1624 * key1 [31:16] = reserved
1625 * key2 [31:0] = RX key [63:32]
1626 * key3 [15:0] = TX key [15:0]
1627 * key3 [31:16] = reserved
1628 * key4 [31:0] = TX key [63:32]
1629 */
Sujithf1dc5602008-10-29 10:16:30 +05301630 u32 mic0, mic1, mic2, mic3, mic4;
1631
1632 mic0 = get_unaligned_le32(k->kv_mic + 0);
1633 mic2 = get_unaligned_le32(k->kv_mic + 4);
1634 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1635 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1636 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001637
1638 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301639 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1640 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001641
1642 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301643 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1644 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001645
1646 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301647 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1648 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1649 AR_KEYTABLE_TYPE_CLR);
1650
1651 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001652 /*
1653 * TKIP uses four key cache entries (two for group
1654 * keys):
1655 * Michael MIC TX/RX keys are in different key cache
1656 * entries (idx = main index + 64 for TX and
1657 * main index + 32 + 96 for RX):
1658 * key0 [31:0] = TX/RX MIC key [31:0]
1659 * key1 [31:0] = reserved
1660 * key2 [31:0] = TX/RX MIC key [63:32]
1661 * key3 [31:0] = reserved
1662 * key4 [31:0] = reserved
1663 *
1664 * Upper layer code will call this function separately
1665 * for TX and RX keys when these registers offsets are
1666 * used.
1667 */
Sujithf1dc5602008-10-29 10:16:30 +05301668 u32 mic0, mic2;
1669
1670 mic0 = get_unaligned_le32(k->kv_mic + 0);
1671 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001672
1673 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301674 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1675 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001676
1677 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301678 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1679 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001680
1681 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301682 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1683 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1684 AR_KEYTABLE_TYPE_CLR);
1685 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001686
1687 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301688 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1689 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001690
1691 /*
1692 * Write the correct (un-inverted) key[47:0] last to enable
1693 * TKIP now that all other registers are set with correct
1694 * values.
1695 */
Sujithf1dc5602008-10-29 10:16:30 +05301696 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1697 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1698 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001699 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301700 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1701 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001702
1703 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301704 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1705 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001706
1707 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301708 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1709 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1710
Jouni Malinen672903b2009-03-02 15:06:31 +02001711 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301712 (void) ath9k_hw_keysetmac(ah, entry, mac);
1713 }
1714
Sujithf1dc5602008-10-29 10:16:30 +05301715 return true;
1716}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001717EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301718
Sujithcbe61d82009-02-09 13:27:12 +05301719bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301720{
Sujith2660b812009-02-09 13:27:26 +05301721 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301722 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1723 if (val & AR_KEYTABLE_VALID)
1724 return true;
1725 }
1726 return false;
1727}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001728EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301729
1730/******************************/
1731/* Power Management (Chipset) */
1732/******************************/
1733
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001734/*
1735 * Notify Power Mgt is disabled in self-generated frames.
1736 * If requested, force chip to sleep.
1737 */
Sujithcbe61d82009-02-09 13:27:12 +05301738static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301739{
1740 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1741 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001742 /*
1743 * Clear the RTC force wake bit to allow the
1744 * mac to go to sleep.
1745 */
Sujithf1dc5602008-10-29 10:16:30 +05301746 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1747 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001748 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301749 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1750
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001751 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301752 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301753 REG_CLR_BIT(ah, (AR_RTC_RESET),
1754 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301755 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756}
1757
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001758/*
1759 * Notify Power Management is enabled in self-generating
1760 * frames. If request, set power mode of chip to
1761 * auto/normal. Duration in units of 128us (1/8 TU).
1762 */
Sujithcbe61d82009-02-09 13:27:12 +05301763static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764{
Sujithf1dc5602008-10-29 10:16:30 +05301765 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1766 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301767 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001768
Sujithf1dc5602008-10-29 10:16:30 +05301769 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001770 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301771 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1772 AR_RTC_FORCE_WAKE_ON_INT);
1773 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001774 /*
1775 * Clear the RTC force wake bit to allow the
1776 * mac to go to sleep.
1777 */
Sujithf1dc5602008-10-29 10:16:30 +05301778 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1779 AR_RTC_FORCE_WAKE_EN);
1780 }
1781 }
1782}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783
Sujithcbe61d82009-02-09 13:27:12 +05301784static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301785{
1786 u32 val;
1787 int i;
1788
1789 if (setChip) {
1790 if ((REG_READ(ah, AR_RTC_STATUS) &
1791 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1792 if (ath9k_hw_set_reset_reg(ah,
1793 ATH9K_RESET_POWER_ON) != true) {
1794 return false;
1795 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001796 if (!AR_SREV_9300_20_OR_LATER(ah))
1797 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301798 }
1799 if (AR_SREV_9100(ah))
1800 REG_SET_BIT(ah, AR_RTC_RESET,
1801 AR_RTC_RESET_EN);
1802
1803 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1804 AR_RTC_FORCE_WAKE_EN);
1805 udelay(50);
1806
1807 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1808 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1809 if (val == AR_RTC_STATUS_ON)
1810 break;
1811 udelay(50);
1812 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1813 AR_RTC_FORCE_WAKE_EN);
1814 }
1815 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001816 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1817 "Failed to wakeup in %uus\n",
1818 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301819 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001820 }
1821 }
1822
Sujithf1dc5602008-10-29 10:16:30 +05301823 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1824
1825 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826}
1827
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001828bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301829{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001830 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301831 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301832 static const char *modes[] = {
1833 "AWAKE",
1834 "FULL-SLEEP",
1835 "NETWORK SLEEP",
1836 "UNDEFINED"
1837 };
Sujithf1dc5602008-10-29 10:16:30 +05301838
Gabor Juhoscbdec972009-07-24 17:27:22 +02001839 if (ah->power_mode == mode)
1840 return status;
1841
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001842 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1843 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301844
1845 switch (mode) {
1846 case ATH9K_PM_AWAKE:
1847 status = ath9k_hw_set_power_awake(ah, setChip);
1848 break;
1849 case ATH9K_PM_FULL_SLEEP:
1850 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301851 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301852 break;
1853 case ATH9K_PM_NETWORK_SLEEP:
1854 ath9k_set_power_network_sleep(ah, setChip);
1855 break;
1856 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001857 ath_print(common, ATH_DBG_FATAL,
1858 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301859 return false;
1860 }
Sujith2660b812009-02-09 13:27:26 +05301861 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301862
1863 return status;
1864}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001865EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301866
Sujithf1dc5602008-10-29 10:16:30 +05301867/*******************/
1868/* Beacon Handling */
1869/*******************/
1870
Sujithcbe61d82009-02-09 13:27:12 +05301871void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873 int flags = 0;
1874
Sujith2660b812009-02-09 13:27:26 +05301875 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876
Sujith7d0d0df2010-04-16 11:53:57 +05301877 ENABLE_REGWRITE_BUFFER(ah);
1878
Sujith2660b812009-02-09 13:27:26 +05301879 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001880 case NL80211_IFTYPE_STATION:
1881 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1883 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1884 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1885 flags |= AR_TBTT_TIMER_EN;
1886 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001887 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001888 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889 REG_SET_BIT(ah, AR_TXCFG,
1890 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1891 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1892 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301893 (ah->atim_window ? ah->
1894 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001895 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001896 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1898 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1899 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301900 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301901 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902 REG_WRITE(ah, AR_NEXT_SWBA,
1903 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301904 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301905 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001906 flags |=
1907 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1908 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001909 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001910 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1911 "%s: unsupported opmode: %d\n",
1912 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001913 return;
1914 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 }
1916
1917 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1918 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1919 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1920 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1921
Sujith7d0d0df2010-04-16 11:53:57 +05301922 REGWRITE_BUFFER_FLUSH(ah);
1923 DISABLE_REGWRITE_BUFFER(ah);
1924
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001925 beacon_period &= ~ATH9K_BEACON_ENA;
1926 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927 ath9k_hw_reset_tsf(ah);
1928 }
1929
1930 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1931}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001932EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001933
Sujithcbe61d82009-02-09 13:27:12 +05301934void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301935 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001936{
1937 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301938 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001939 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940
Sujith7d0d0df2010-04-16 11:53:57 +05301941 ENABLE_REGWRITE_BUFFER(ah);
1942
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001943 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1944
1945 REG_WRITE(ah, AR_BEACON_PERIOD,
1946 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1947 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1948 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1949
Sujith7d0d0df2010-04-16 11:53:57 +05301950 REGWRITE_BUFFER_FLUSH(ah);
1951 DISABLE_REGWRITE_BUFFER(ah);
1952
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001953 REG_RMW_FIELD(ah, AR_RSSI_THR,
1954 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1955
1956 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1957
1958 if (bs->bs_sleepduration > beaconintval)
1959 beaconintval = bs->bs_sleepduration;
1960
1961 dtimperiod = bs->bs_dtimperiod;
1962 if (bs->bs_sleepduration > dtimperiod)
1963 dtimperiod = bs->bs_sleepduration;
1964
1965 if (beaconintval == dtimperiod)
1966 nextTbtt = bs->bs_nextdtim;
1967 else
1968 nextTbtt = bs->bs_nexttbtt;
1969
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001970 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1971 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1972 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1973 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001974
Sujith7d0d0df2010-04-16 11:53:57 +05301975 ENABLE_REGWRITE_BUFFER(ah);
1976
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001977 REG_WRITE(ah, AR_NEXT_DTIM,
1978 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1979 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1980
1981 REG_WRITE(ah, AR_SLEEP1,
1982 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1983 | AR_SLEEP1_ASSUME_DTIM);
1984
Sujith60b67f52008-08-07 10:52:38 +05301985 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1987 else
1988 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1989
1990 REG_WRITE(ah, AR_SLEEP2,
1991 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1992
1993 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1994 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1995
Sujith7d0d0df2010-04-16 11:53:57 +05301996 REGWRITE_BUFFER_FLUSH(ah);
1997 DISABLE_REGWRITE_BUFFER(ah);
1998
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001999 REG_SET_BIT(ah, AR_TIMER_MODE,
2000 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2001 AR_DTIM_TIMER_EN);
2002
Sujith4af9cf42009-02-12 10:06:47 +05302003 /* TSF Out of Range Threshold */
2004 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002005}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002006EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002007
Sujithf1dc5602008-10-29 10:16:30 +05302008/*******************/
2009/* HW Capabilities */
2010/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002011
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002012int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002013{
Sujith2660b812009-02-09 13:27:26 +05302014 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002015 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002016 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002017 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002018
Sujithf1dc5602008-10-29 10:16:30 +05302019 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020
Sujithf74df6f2009-02-09 13:27:24 +05302021 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002022 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302023
Sujithf74df6f2009-02-09 13:27:24 +05302024 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302025 if (AR_SREV_9285_10_OR_LATER(ah))
2026 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002027 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302028
Sujithf74df6f2009-02-09 13:27:24 +05302029 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302030
Sujith2660b812009-02-09 13:27:26 +05302031 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302032 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002033 if (regulatory->current_rd == 0x64 ||
2034 regulatory->current_rd == 0x65)
2035 regulatory->current_rd += 5;
2036 else if (regulatory->current_rd == 0x41)
2037 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002038 ath_print(common, ATH_DBG_REGULATORY,
2039 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002040 }
Sujithdc2222a2008-08-14 13:26:55 +05302041
Sujithf74df6f2009-02-09 13:27:24 +05302042 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002043 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2044 ath_print(common, ATH_DBG_FATAL,
2045 "no band has been marked as supported in EEPROM.\n");
2046 return -EINVAL;
2047 }
2048
Sujithf1dc5602008-10-29 10:16:30 +05302049 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002050
Sujithf1dc5602008-10-29 10:16:30 +05302051 if (eeval & AR5416_OPFLAGS_11A) {
2052 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302053 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302054 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2055 set_bit(ATH9K_MODE_11NA_HT20,
2056 pCap->wireless_modes);
2057 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2058 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2059 pCap->wireless_modes);
2060 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2061 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002062 }
2063 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002065
Sujithf1dc5602008-10-29 10:16:30 +05302066 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302067 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302068 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302069 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2070 set_bit(ATH9K_MODE_11NG_HT20,
2071 pCap->wireless_modes);
2072 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2073 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2074 pCap->wireless_modes);
2075 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2076 pCap->wireless_modes);
2077 }
2078 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002079 }
Sujithf1dc5602008-10-29 10:16:30 +05302080
Sujithf74df6f2009-02-09 13:27:24 +05302081 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002082 /*
2083 * For AR9271 we will temporarilly uses the rx chainmax as read from
2084 * the EEPROM.
2085 */
Sujith8147f5d2009-02-20 15:13:23 +05302086 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002087 !(eeval & AR5416_OPFLAGS_11A) &&
2088 !(AR_SREV_9271(ah)))
2089 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302090 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2091 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002092 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302093 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302094
Sujithd535a422009-02-09 13:27:06 +05302095 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302096 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302097
2098 pCap->low_2ghz_chan = 2312;
2099 pCap->high_2ghz_chan = 2732;
2100
2101 pCap->low_5ghz_chan = 4920;
2102 pCap->high_5ghz_chan = 6100;
2103
2104 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2105 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2106 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2107
2108 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2109 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2110 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2111
Sujith2660b812009-02-09 13:27:26 +05302112 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302113 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2114 else
2115 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2116
2117 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2118 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2119 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2120 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2121
2122 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2123 pCap->total_queues =
2124 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2125 else
2126 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2127
2128 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2129 pCap->keycache_size =
2130 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2131 else
2132 pCap->keycache_size = AR_KEYTABLE_SIZE;
2133
2134 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002135
2136 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2137 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2138 else
2139 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302140
Sujith5b5fa352010-03-17 14:25:15 +05302141 if (AR_SREV_9271(ah))
2142 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2143 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302144 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2145 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302146 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2147 else
2148 pCap->num_gpio_pins = AR_NUM_GPIO;
2149
Sujithf1dc5602008-10-29 10:16:30 +05302150 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2151 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2152 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2153 } else {
2154 pCap->rts_aggr_limit = (8 * 1024);
2155 }
2156
2157 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2158
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302159#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302160 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2161 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2162 ah->rfkill_gpio =
2163 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2164 ah->rfkill_polarity =
2165 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302166
2167 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2168 }
2169#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302170 if (AR_SREV_9271(ah))
2171 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2172 else
2173 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302174
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302175 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302176 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2177 else
2178 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2179
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002180 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302181 pCap->reg_cap =
2182 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2183 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2184 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2185 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2186 } else {
2187 pCap->reg_cap =
2188 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2189 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2190 }
2191
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302192 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2193 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2194 AR_SREV_5416(ah))
2195 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302196
2197 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302198 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302199 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302200 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302201
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302202 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002203 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002204 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2205 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302206
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302207 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002208 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2209 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302210 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002211 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302212 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302213 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002214 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302215 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002216
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002217 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -04002218 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
2219 ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002220 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2221 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2222 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002223 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002224 pCap->txs_len = sizeof(struct ar9003_txs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002225 } else {
2226 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002227 if (AR_SREV_9280_20(ah) &&
2228 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2229 AR5416_EEP_MINOR_VER_16) ||
2230 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2231 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002232 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002233
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002234 if (AR_SREV_9300_20_OR_LATER(ah))
2235 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2236
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002237 if (AR_SREV_9287_10_OR_LATER(ah))
2238 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2239
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002240 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002241}
2242
Sujithcbe61d82009-02-09 13:27:12 +05302243bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302244 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002245{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002246 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302247 switch (type) {
2248 case ATH9K_CAP_CIPHER:
2249 switch (capability) {
2250 case ATH9K_CIPHER_AES_CCM:
2251 case ATH9K_CIPHER_AES_OCB:
2252 case ATH9K_CIPHER_TKIP:
2253 case ATH9K_CIPHER_WEP:
2254 case ATH9K_CIPHER_MIC:
2255 case ATH9K_CIPHER_CLR:
2256 return true;
2257 default:
2258 return false;
2259 }
2260 case ATH9K_CAP_TKIP_MIC:
2261 switch (capability) {
2262 case 0:
2263 return true;
2264 case 1:
Sujith2660b812009-02-09 13:27:26 +05302265 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302266 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2267 false;
2268 }
2269 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302270 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302271 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302272 case ATH9K_CAP_MCAST_KEYSRCH:
2273 switch (capability) {
2274 case 0:
2275 return true;
2276 case 1:
2277 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2278 return false;
2279 } else {
Sujith2660b812009-02-09 13:27:26 +05302280 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302281 AR_STA_ID1_MCAST_KSRCH) ? true :
2282 false;
2283 }
2284 }
2285 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302286 case ATH9K_CAP_TXPOW:
2287 switch (capability) {
2288 case 0:
2289 return 0;
2290 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002291 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302292 return 0;
2293 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002294 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302295 return 0;
2296 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002297 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302298 return 0;
2299 }
2300 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302301 case ATH9K_CAP_DS:
2302 return (AR_SREV_9280_20_OR_LATER(ah) &&
2303 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2304 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302305 default:
2306 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002307 }
Sujithf1dc5602008-10-29 10:16:30 +05302308}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002309EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002310
Sujithcbe61d82009-02-09 13:27:12 +05302311bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302312 u32 capability, u32 setting, int *status)
2313{
Sujithf1dc5602008-10-29 10:16:30 +05302314 switch (type) {
2315 case ATH9K_CAP_TKIP_MIC:
2316 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302317 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302318 AR_STA_ID1_CRPT_MIC_ENABLE;
2319 else
Sujith2660b812009-02-09 13:27:26 +05302320 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302321 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2322 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302323 case ATH9K_CAP_MCAST_KEYSRCH:
2324 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302325 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302326 else
Sujith2660b812009-02-09 13:27:26 +05302327 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302328 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302329 default:
2330 return false;
2331 }
2332}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002333EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302334
2335/****************************/
2336/* GPIO / RFKILL / Antennae */
2337/****************************/
2338
Sujithcbe61d82009-02-09 13:27:12 +05302339static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302340 u32 gpio, u32 type)
2341{
2342 int addr;
2343 u32 gpio_shift, tmp;
2344
2345 if (gpio > 11)
2346 addr = AR_GPIO_OUTPUT_MUX3;
2347 else if (gpio > 5)
2348 addr = AR_GPIO_OUTPUT_MUX2;
2349 else
2350 addr = AR_GPIO_OUTPUT_MUX1;
2351
2352 gpio_shift = (gpio % 6) * 5;
2353
2354 if (AR_SREV_9280_20_OR_LATER(ah)
2355 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2356 REG_RMW(ah, addr, (type << gpio_shift),
2357 (0x1f << gpio_shift));
2358 } else {
2359 tmp = REG_READ(ah, addr);
2360 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2361 tmp &= ~(0x1f << gpio_shift);
2362 tmp |= (type << gpio_shift);
2363 REG_WRITE(ah, addr, tmp);
2364 }
2365}
2366
Sujithcbe61d82009-02-09 13:27:12 +05302367void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302368{
2369 u32 gpio_shift;
2370
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002371 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302372
2373 gpio_shift = gpio << 1;
2374
2375 REG_RMW(ah,
2376 AR_GPIO_OE_OUT,
2377 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2378 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2379}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002380EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302381
Sujithcbe61d82009-02-09 13:27:12 +05302382u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302383{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302384#define MS_REG_READ(x, y) \
2385 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2386
Sujith2660b812009-02-09 13:27:26 +05302387 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302388 return 0xffffffff;
2389
Felix Fietkau783dfca2010-04-15 17:38:11 -04002390 if (AR_SREV_9300_20_OR_LATER(ah))
2391 return MS_REG_READ(AR9300, gpio) != 0;
2392 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302393 return MS_REG_READ(AR9271, gpio) != 0;
2394 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302395 return MS_REG_READ(AR9287, gpio) != 0;
2396 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302397 return MS_REG_READ(AR9285, gpio) != 0;
2398 else if (AR_SREV_9280_10_OR_LATER(ah))
2399 return MS_REG_READ(AR928X, gpio) != 0;
2400 else
2401 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302402}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002403EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302404
Sujithcbe61d82009-02-09 13:27:12 +05302405void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302406 u32 ah_signal_type)
2407{
2408 u32 gpio_shift;
2409
2410 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2411
2412 gpio_shift = 2 * gpio;
2413
2414 REG_RMW(ah,
2415 AR_GPIO_OE_OUT,
2416 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2417 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2418}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002419EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302420
Sujithcbe61d82009-02-09 13:27:12 +05302421void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302422{
Sujith5b5fa352010-03-17 14:25:15 +05302423 if (AR_SREV_9271(ah))
2424 val = ~val;
2425
Sujithf1dc5602008-10-29 10:16:30 +05302426 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2427 AR_GPIO_BIT(gpio));
2428}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002429EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302430
Sujithcbe61d82009-02-09 13:27:12 +05302431u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302432{
2433 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2434}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002435EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302436
Sujithcbe61d82009-02-09 13:27:12 +05302437void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302438{
2439 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2440}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002441EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302442
Sujithf1dc5602008-10-29 10:16:30 +05302443/*********************/
2444/* General Operation */
2445/*********************/
2446
Sujithcbe61d82009-02-09 13:27:12 +05302447u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302448{
2449 u32 bits = REG_READ(ah, AR_RX_FILTER);
2450 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2451
2452 if (phybits & AR_PHY_ERR_RADAR)
2453 bits |= ATH9K_RX_FILTER_PHYRADAR;
2454 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2455 bits |= ATH9K_RX_FILTER_PHYERR;
2456
2457 return bits;
2458}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002459EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302460
Sujithcbe61d82009-02-09 13:27:12 +05302461void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302462{
2463 u32 phybits;
2464
Sujith7d0d0df2010-04-16 11:53:57 +05302465 ENABLE_REGWRITE_BUFFER(ah);
2466
Sujith7ea310b2009-09-03 12:08:43 +05302467 REG_WRITE(ah, AR_RX_FILTER, bits);
2468
Sujithf1dc5602008-10-29 10:16:30 +05302469 phybits = 0;
2470 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2471 phybits |= AR_PHY_ERR_RADAR;
2472 if (bits & ATH9K_RX_FILTER_PHYERR)
2473 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2474 REG_WRITE(ah, AR_PHY_ERR, phybits);
2475
2476 if (phybits)
2477 REG_WRITE(ah, AR_RXCFG,
2478 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2479 else
2480 REG_WRITE(ah, AR_RXCFG,
2481 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302482
2483 REGWRITE_BUFFER_FLUSH(ah);
2484 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302485}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002486EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302487
Sujithcbe61d82009-02-09 13:27:12 +05302488bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302489{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302490 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2491 return false;
2492
2493 ath9k_hw_init_pll(ah, NULL);
2494 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302495}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002496EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302497
Sujithcbe61d82009-02-09 13:27:12 +05302498bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302499{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002500 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302501 return false;
2502
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302503 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2504 return false;
2505
2506 ath9k_hw_init_pll(ah, NULL);
2507 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302508}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002509EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302510
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002511void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302512{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002513 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302514 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002515 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302516
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002517 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302518
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002519 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002520 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002521 channel->max_antenna_gain * 2,
2522 channel->max_power * 2,
2523 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002524 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302525}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002526EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302527
Sujithcbe61d82009-02-09 13:27:12 +05302528void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05302529{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002530 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05302531}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002532EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05302533
Sujithcbe61d82009-02-09 13:27:12 +05302534void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302535{
Sujith2660b812009-02-09 13:27:26 +05302536 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302537}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002538EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302539
Sujithcbe61d82009-02-09 13:27:12 +05302540void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302541{
2542 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2543 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2544}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002545EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302546
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002547void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302548{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002549 struct ath_common *common = ath9k_hw_common(ah);
2550
2551 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2552 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2553 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302554}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002555EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302556
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002557#define ATH9K_MAX_TSF_READ 10
2558
Sujithcbe61d82009-02-09 13:27:12 +05302559u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302560{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002561 u32 tsf_lower, tsf_upper1, tsf_upper2;
2562 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302563
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002564 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2565 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2566 tsf_lower = REG_READ(ah, AR_TSF_L32);
2567 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2568 if (tsf_upper2 == tsf_upper1)
2569 break;
2570 tsf_upper1 = tsf_upper2;
2571 }
Sujithf1dc5602008-10-29 10:16:30 +05302572
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002573 WARN_ON( i == ATH9K_MAX_TSF_READ );
2574
2575 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302576}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002577EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302578
Sujithcbe61d82009-02-09 13:27:12 +05302579void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002580{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002581 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002582 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002583}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002584EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002585
Sujithcbe61d82009-02-09 13:27:12 +05302586void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302587{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002588 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2589 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002590 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2591 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002592
Sujithf1dc5602008-10-29 10:16:30 +05302593 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002594}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002595EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002596
Sujith54e4cec2009-08-07 09:45:09 +05302597void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002598{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002599 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302600 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002601 else
Sujith2660b812009-02-09 13:27:26 +05302602 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002603}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002604EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002605
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08002606/*
2607 * Extend 15-bit time stamp from rx descriptor to
2608 * a full 64-bit TSF using the current h/w TSF.
2609*/
2610u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
2611{
2612 u64 tsf;
2613
2614 tsf = ath9k_hw_gettsf64(ah);
2615 if ((tsf & 0x7fff) < rstamp)
2616 tsf -= 0x8000;
2617 return (tsf & ~0x7fff) | rstamp;
2618}
2619EXPORT_SYMBOL(ath9k_hw_extend_tsf);
2620
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002621void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002622{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002623 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302624 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002625
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002626 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302627 macmode = AR_2040_JOINED_RX_CLEAR;
2628 else
2629 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002630
Sujithf1dc5602008-10-29 10:16:30 +05302631 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002632}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302633
2634/* HW Generic timers configuration */
2635
2636static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2637{
2638 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2639 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2640 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2641 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2642 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2643 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2644 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2645 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2646 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2647 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2648 AR_NDP2_TIMER_MODE, 0x0002},
2649 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2650 AR_NDP2_TIMER_MODE, 0x0004},
2651 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2652 AR_NDP2_TIMER_MODE, 0x0008},
2653 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2654 AR_NDP2_TIMER_MODE, 0x0010},
2655 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2656 AR_NDP2_TIMER_MODE, 0x0020},
2657 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2658 AR_NDP2_TIMER_MODE, 0x0040},
2659 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2660 AR_NDP2_TIMER_MODE, 0x0080}
2661};
2662
2663/* HW generic timer primitives */
2664
2665/* compute and clear index of rightmost 1 */
2666static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2667{
2668 u32 b;
2669
2670 b = *mask;
2671 b &= (0-b);
2672 *mask &= ~b;
2673 b *= debruijn32;
2674 b >>= 27;
2675
2676 return timer_table->gen_timer_index[b];
2677}
2678
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302679u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302680{
2681 return REG_READ(ah, AR_TSF_L32);
2682}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002683EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302684
2685struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2686 void (*trigger)(void *),
2687 void (*overflow)(void *),
2688 void *arg,
2689 u8 timer_index)
2690{
2691 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2692 struct ath_gen_timer *timer;
2693
2694 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2695
2696 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002697 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2698 "Failed to allocate memory"
2699 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302700 return NULL;
2701 }
2702
2703 /* allocate a hardware generic timer slot */
2704 timer_table->timers[timer_index] = timer;
2705 timer->index = timer_index;
2706 timer->trigger = trigger;
2707 timer->overflow = overflow;
2708 timer->arg = arg;
2709
2710 return timer;
2711}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002712EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302713
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002714void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2715 struct ath_gen_timer *timer,
2716 u32 timer_next,
2717 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302718{
2719 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2720 u32 tsf;
2721
2722 BUG_ON(!timer_period);
2723
2724 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2725
2726 tsf = ath9k_hw_gettsf32(ah);
2727
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002728 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2729 "curent tsf %x period %x"
2730 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302731
2732 /*
2733 * Pull timer_next forward if the current TSF already passed it
2734 * because of software latency
2735 */
2736 if (timer_next < tsf)
2737 timer_next = tsf + timer_period;
2738
2739 /*
2740 * Program generic timer registers
2741 */
2742 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2743 timer_next);
2744 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2745 timer_period);
2746 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2747 gen_tmr_configuration[timer->index].mode_mask);
2748
2749 /* Enable both trigger and thresh interrupt masks */
2750 REG_SET_BIT(ah, AR_IMR_S5,
2751 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2752 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302753}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002754EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302755
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002756void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302757{
2758 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2759
2760 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2761 (timer->index >= ATH_MAX_GEN_TIMER)) {
2762 return;
2763 }
2764
2765 /* Clear generic timer enable bits. */
2766 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2767 gen_tmr_configuration[timer->index].mode_mask);
2768
2769 /* Disable both trigger and thresh interrupt masks */
2770 REG_CLR_BIT(ah, AR_IMR_S5,
2771 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2772 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2773
2774 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302775}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002776EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302777
2778void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2779{
2780 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2781
2782 /* free the hardware generic timer slot */
2783 timer_table->timers[timer->index] = NULL;
2784 kfree(timer);
2785}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002786EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302787
2788/*
2789 * Generic Timer Interrupts handling
2790 */
2791void ath_gen_timer_isr(struct ath_hw *ah)
2792{
2793 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2794 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002795 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302796 u32 trigger_mask, thresh_mask, index;
2797
2798 /* get hardware generic timer interrupt status */
2799 trigger_mask = ah->intr_gen_timer_trigger;
2800 thresh_mask = ah->intr_gen_timer_thresh;
2801 trigger_mask &= timer_table->timer_mask.val;
2802 thresh_mask &= timer_table->timer_mask.val;
2803
2804 trigger_mask &= ~thresh_mask;
2805
2806 while (thresh_mask) {
2807 index = rightmost_index(timer_table, &thresh_mask);
2808 timer = timer_table->timers[index];
2809 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002810 ath_print(common, ATH_DBG_HWTIMER,
2811 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302812 timer->overflow(timer->arg);
2813 }
2814
2815 while (trigger_mask) {
2816 index = rightmost_index(timer_table, &trigger_mask);
2817 timer = timer_table->timers[index];
2818 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002819 ath_print(common, ATH_DBG_HWTIMER,
2820 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302821 timer->trigger(timer->arg);
2822 }
2823}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002824EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002825
Sujith05020d22010-03-17 14:25:23 +05302826/********/
2827/* HTC */
2828/********/
2829
2830void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2831{
2832 ah->htc_reset_init = true;
2833}
2834EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2835
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002836static struct {
2837 u32 version;
2838 const char * name;
2839} ath_mac_bb_names[] = {
2840 /* Devices with external radios */
2841 { AR_SREV_VERSION_5416_PCI, "5416" },
2842 { AR_SREV_VERSION_5416_PCIE, "5418" },
2843 { AR_SREV_VERSION_9100, "9100" },
2844 { AR_SREV_VERSION_9160, "9160" },
2845 /* Single-chip solutions */
2846 { AR_SREV_VERSION_9280, "9280" },
2847 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002848 { AR_SREV_VERSION_9287, "9287" },
2849 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002850 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002851};
2852
2853/* For devices with external radios */
2854static struct {
2855 u16 version;
2856 const char * name;
2857} ath_rf_names[] = {
2858 { 0, "5133" },
2859 { AR_RAD5133_SREV_MAJOR, "5133" },
2860 { AR_RAD5122_SREV_MAJOR, "5122" },
2861 { AR_RAD2133_SREV_MAJOR, "2133" },
2862 { AR_RAD2122_SREV_MAJOR, "2122" }
2863};
2864
2865/*
2866 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2867 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002868static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002869{
2870 int i;
2871
2872 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2873 if (ath_mac_bb_names[i].version == mac_bb_version) {
2874 return ath_mac_bb_names[i].name;
2875 }
2876 }
2877
2878 return "????";
2879}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002880
2881/*
2882 * Return the RF name. "????" is returned if the RF is unknown.
2883 * Used for devices with external radios.
2884 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002885static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002886{
2887 int i;
2888
2889 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2890 if (ath_rf_names[i].version == rf_version) {
2891 return ath_rf_names[i].name;
2892 }
2893 }
2894
2895 return "????";
2896}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002897
2898void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2899{
2900 int used;
2901
2902 /* chipsets >= AR9280 are single-chip */
2903 if (AR_SREV_9280_10_OR_LATER(ah)) {
2904 used = snprintf(hw_name, len,
2905 "Atheros AR%s Rev:%x",
2906 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2907 ah->hw_version.macRev);
2908 }
2909 else {
2910 used = snprintf(hw_name, len,
2911 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2912 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2913 ah->hw_version.macRev,
2914 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2915 AR_RADIO_SREV_MAJOR)),
2916 ah->hw_version.phyRev);
2917 }
2918
2919 hw_name[used] = '\0';
2920}
2921EXPORT_SYMBOL(ath9k_hw_name);