blob: 40b6e8415946d12dc4c7d2ca1c647568fd10f2e7 [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>
18#include <asm/unaligned.h>
19
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040021#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070022#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040023#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080025#define ATH9K_CLOCK_RATE_CCK 22
26#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
27#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Sujithcbe61d82009-02-09 13:27:12 +053029static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040031MODULE_AUTHOR("Atheros Communications");
32MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
33MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
34MODULE_LICENSE("Dual BSD/GPL");
35
36static int __init ath9k_init(void)
37{
38 return 0;
39}
40module_init(ath9k_init);
41
42static void __exit ath9k_exit(void)
43{
44 return;
45}
46module_exit(ath9k_exit);
47
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040048/* Private hardware callbacks */
49
50static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
51{
52 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
53}
54
55static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
56{
57 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
58}
59
60static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
61{
62 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
63
64 return priv_ops->macversion_supported(ah->hw_version.macVersion);
65}
66
Luis R. Rodriguez64773962010-04-15 17:38:17 -040067static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
68 struct ath9k_channel *chan)
69{
70 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
71}
72
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040073static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
74{
75 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
76 return;
77
78 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
79}
80
Sujithf1dc5602008-10-29 10:16:30 +053081/********************/
82/* Helper Functions */
83/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070084
Sujithcbe61d82009-02-09 13:27:12 +053085static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053086{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070087 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053088
Sujith2660b812009-02-09 13:27:26 +053089 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080090 return usecs *ATH9K_CLOCK_RATE_CCK;
91 if (conf->channel->band == IEEE80211_BAND_2GHZ)
92 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
93 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053094}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070095
Sujithcbe61d82009-02-09 13:27:12 +053096static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053097{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070098 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053099
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -0800100 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +0530101 return ath9k_hw_mac_clks(ah, usecs) * 2;
102 else
103 return ath9k_hw_mac_clks(ah, usecs);
104}
105
Sujith0caa7b12009-02-16 13:23:20 +0530106bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700107{
108 int i;
109
Sujith0caa7b12009-02-16 13:23:20 +0530110 BUG_ON(timeout < AH_TIME_QUANTUM);
111
112 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113 if ((REG_READ(ah, reg) & mask) == val)
114 return true;
115
116 udelay(AH_TIME_QUANTUM);
117 }
Sujith04bd46382008-11-28 22:18:05 +0530118
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700119 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
120 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
121 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530122
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700123 return false;
124}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400125EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700127u32 ath9k_hw_reverse_bits(u32 val, u32 n)
128{
129 u32 retval;
130 int i;
131
132 for (i = 0, retval = 0; i < n; i++) {
133 retval = (retval << 1) | (val & 1);
134 val >>= 1;
135 }
136 return retval;
137}
138
Sujithcbe61d82009-02-09 13:27:12 +0530139bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530140 u16 flags, u16 *low,
141 u16 *high)
142{
Sujith2660b812009-02-09 13:27:26 +0530143 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530144
145 if (flags & CHANNEL_5GHZ) {
146 *low = pCap->low_5ghz_chan;
147 *high = pCap->high_5ghz_chan;
148 return true;
149 }
150 if ((flags & CHANNEL_2GHZ)) {
151 *low = pCap->low_2ghz_chan;
152 *high = pCap->high_2ghz_chan;
153 return true;
154 }
155 return false;
156}
157
Sujithcbe61d82009-02-09 13:27:12 +0530158u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100159 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530160 u32 frameLen, u16 rateix,
161 bool shortPreamble)
162{
163 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530164
165 if (kbps == 0)
166 return 0;
167
Felix Fietkau545750d2009-11-23 22:21:01 +0100168 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530169 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530170 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100171 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530172 phyTime >>= 1;
173 numBits = frameLen << 3;
174 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
175 break;
Sujith46d14a52008-11-18 09:08:13 +0530176 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530177 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530178 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
179 numBits = OFDM_PLCP_BITS + (frameLen << 3);
180 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
181 txTime = OFDM_SIFS_TIME_QUARTER
182 + OFDM_PREAMBLE_TIME_QUARTER
183 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530184 } else if (ah->curchan &&
185 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530186 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
187 numBits = OFDM_PLCP_BITS + (frameLen << 3);
188 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
189 txTime = OFDM_SIFS_TIME_HALF +
190 OFDM_PREAMBLE_TIME_HALF
191 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
192 } else {
193 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
194 numBits = OFDM_PLCP_BITS + (frameLen << 3);
195 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
196 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
197 + (numSymbols * OFDM_SYMBOL_TIME);
198 }
199 break;
200 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700201 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100202 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530203 txTime = 0;
204 break;
205 }
206
207 return txTime;
208}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400209EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530210
Sujithcbe61d82009-02-09 13:27:12 +0530211void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530212 struct ath9k_channel *chan,
213 struct chan_centers *centers)
214{
215 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530216
217 if (!IS_CHAN_HT40(chan)) {
218 centers->ctl_center = centers->ext_center =
219 centers->synth_center = chan->channel;
220 return;
221 }
222
223 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
224 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
225 centers->synth_center =
226 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
227 extoff = 1;
228 } else {
229 centers->synth_center =
230 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
231 extoff = -1;
232 }
233
234 centers->ctl_center =
235 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700236 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530237 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700238 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530239}
240
241/******************/
242/* Chip Revisions */
243/******************/
244
Sujithcbe61d82009-02-09 13:27:12 +0530245static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530246{
247 u32 val;
248
249 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
250
251 if (val == 0xFF) {
252 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530253 ah->hw_version.macVersion =
254 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
255 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530256 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530257 } else {
258 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530259 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530260
Sujithd535a422009-02-09 13:27:06 +0530261 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530262
Sujithd535a422009-02-09 13:27:06 +0530263 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530264 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530265 }
266}
267
Sujithf1dc5602008-10-29 10:16:30 +0530268/************************************/
269/* HW Attach, Detach, Init Routines */
270/************************************/
271
Sujithcbe61d82009-02-09 13:27:12 +0530272static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530273{
Sujithfeed0292009-01-29 11:37:35 +0530274 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530275 return;
276
Sujith7d0d0df2010-04-16 11:53:57 +0530277 ENABLE_REGWRITE_BUFFER(ah);
278
Sujithf1dc5602008-10-29 10:16:30 +0530279 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
280 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
281 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
282 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
283 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
284 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
285 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
288
289 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujith7d0d0df2010-04-16 11:53:57 +0530290
291 REGWRITE_BUFFER_FLUSH(ah);
292 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530293}
294
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400295/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530296static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530297{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700298 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400299 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530300 u32 regHold[2];
301 u32 patternData[4] = { 0x55555555,
302 0xaaaaaaaa,
303 0x66666666,
304 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530306
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400307 if (!AR_SREV_9300_20_OR_LATER(ah)) {
308 loop_max = 2;
309 regAddr[1] = AR_PHY_BASE + (8 << 2);
310 } else
311 loop_max = 1;
312
313 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530314 u32 addr = regAddr[i];
315 u32 wrData, rdData;
316
317 regHold[i] = REG_READ(ah, addr);
318 for (j = 0; j < 0x100; j++) {
319 wrData = (j << 16) | j;
320 REG_WRITE(ah, addr, wrData);
321 rdData = REG_READ(ah, addr);
322 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700323 ath_print(common, ATH_DBG_FATAL,
324 "address test failed "
325 "addr: 0x%08x - wr:0x%08x != "
326 "rd:0x%08x\n",
327 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530328 return false;
329 }
330 }
331 for (j = 0; j < 4; j++) {
332 wrData = patternData[j];
333 REG_WRITE(ah, addr, wrData);
334 rdData = REG_READ(ah, addr);
335 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700336 ath_print(common, ATH_DBG_FATAL,
337 "address test failed "
338 "addr: 0x%08x - wr:0x%08x != "
339 "rd:0x%08x\n",
340 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530341 return false;
342 }
343 }
344 REG_WRITE(ah, regAddr[i], regHold[i]);
345 }
346 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530347
Sujithf1dc5602008-10-29 10:16:30 +0530348 return true;
349}
350
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700351static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700352{
353 int i;
354
Sujith2660b812009-02-09 13:27:26 +0530355 ah->config.dma_beacon_response_time = 2;
356 ah->config.sw_beacon_response_time = 10;
357 ah->config.additional_swba_backoff = 0;
358 ah->config.ack_6mb = 0x0;
359 ah->config.cwm_ignore_extcca = 0;
360 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530361 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530362 ah->config.pcie_waen = 0;
363 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530364 ah->config.ofdm_trig_low = 200;
365 ah->config.ofdm_trig_high = 500;
366 ah->config.cck_trig_high = 200;
367 ah->config.cck_trig_low = 100;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400368
369 /*
370 * For now ANI is disabled for AR9003, it is still
371 * being tested.
372 */
373 if (!AR_SREV_9300_20_OR_LATER(ah))
374 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375
376 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530377 ah->config.spurchans[i][0] = AR_NO_SPUR;
378 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700379 }
380
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500381 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
382 ah->config.ht_enable = 1;
383 else
384 ah->config.ht_enable = 0;
385
Sujith0ce024c2009-12-14 14:57:00 +0530386 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400387
388 /*
Luis R. Rodriguezb360a882010-04-26 15:04:32 -0400389 * Tx IQ Calibration (ah->config.tx_iq_calibration) is only
390 * used by AR9003, but it is showing reliability issues.
391 * It will take a while to fix so this is currently disabled.
392 */
393
394 /*
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400395 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
396 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
397 * This means we use it for all AR5416 devices, and the few
398 * minor PCI AR9280 devices out there.
399 *
400 * Serialization is required because these devices do not handle
401 * well the case of two concurrent reads/writes due to the latency
402 * involved. During one read/write another read/write can be issued
403 * on another CPU while the previous read/write may still be working
404 * on our hardware, if we hit this case the hardware poops in a loop.
405 * We prevent this by serializing reads and writes.
406 *
407 * This issue is not present on PCI-Express devices or pre-AR5416
408 * devices (legacy, 802.11abg).
409 */
410 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700411 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412}
413
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700414static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700415{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700416 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
417
418 regulatory->country_code = CTRY_DEFAULT;
419 regulatory->power_limit = MAX_RATE_POWER;
420 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
421
Sujithd535a422009-02-09 13:27:06 +0530422 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530423 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700424
425 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426 if (!AR_SREV_9100(ah))
427 ah->ah_flags = AH_USE_EEPROM;
428
Sujith2660b812009-02-09 13:27:26 +0530429 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530430 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
431 ah->beacon_interval = 100;
432 ah->enable_32kHz_clock = DONT_USE_32KHZ;
433 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530434 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200435 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436}
437
Sujithcbe61d82009-02-09 13:27:12 +0530438static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700440 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530441 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530443 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400444 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445
Sujithf1dc5602008-10-29 10:16:30 +0530446 sum = 0;
447 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400448 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530449 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700450 common->macaddr[2 * i] = eeval >> 8;
451 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 }
Sujithd8baa932009-03-30 15:28:25 +0530453 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530454 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456 return 0;
457}
458
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700459static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460{
461 int ecode;
462
Sujith527d4852010-03-17 14:25:16 +0530463 if (!AR_SREV_9271(ah)) {
464 if (!ath9k_hw_chip_test(ah))
465 return -ENODEV;
466 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400468 if (!AR_SREV_9300_20_OR_LATER(ah)) {
469 ecode = ar9002_hw_rf_claim(ah);
470 if (ecode != 0)
471 return ecode;
472 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700474 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475 if (ecode != 0)
476 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530477
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700478 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
479 "Eeprom VER: %d, REV: %d\n",
480 ah->eep_ops->get_eeprom_ver(ah),
481 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530482
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400483 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
484 if (ecode) {
485 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
486 "Failed allocating banks for "
487 "external radio\n");
488 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400489 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490
491 if (!AR_SREV_9100(ah)) {
492 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700493 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700494 }
Sujithf1dc5602008-10-29 10:16:30 +0530495
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700496 return 0;
497}
498
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400499static void ath9k_hw_attach_ops(struct ath_hw *ah)
500{
501 if (AR_SREV_9300_20_OR_LATER(ah))
502 ar9003_hw_attach_ops(ah);
503 else
504 ar9002_hw_attach_ops(ah);
505}
506
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400507/* Called for all hardware families */
508static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700510 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700511 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700512
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400513 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
514 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700515
516 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700517 ath_print(common, ATH_DBG_FATAL,
518 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700519 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700520 }
521
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400522 ath9k_hw_init_defaults(ah);
523 ath9k_hw_init_config(ah);
524
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400525 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400526
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700527 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700528 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700529 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700530 }
531
532 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
533 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
534 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
535 ah->config.serialize_regmode =
536 SER_REG_MODE_ON;
537 } else {
538 ah->config.serialize_regmode =
539 SER_REG_MODE_OFF;
540 }
541 }
542
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700543 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700544 ah->config.serialize_regmode);
545
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500546 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
547 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
548 else
549 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
550
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400551 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700552 ath_print(common, ATH_DBG_FATAL,
553 "Mac Chip Rev 0x%02x.%x is not supported by "
554 "this driver\n", ah->hw_version.macVersion,
555 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700556 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700557 }
558
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400559 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400560 ah->is_pciexpress = false;
561
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700562 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 ath9k_hw_init_cal_settings(ah);
564
565 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400566 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700567 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
568
569 ath9k_hw_init_mode_regs(ah);
570
571 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530572 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700573 else
574 ath9k_hw_disablepcie(ah);
575
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400576 if (!AR_SREV_9300_20_OR_LATER(ah))
577 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530578
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700579 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700580 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700581 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700582
583 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100584 r = ath9k_hw_fill_cap_info(ah);
585 if (r)
586 return r;
587
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700588 r = ath9k_hw_init_macaddr(ah);
589 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700590 ath_print(common, ATH_DBG_FATAL,
591 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700592 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 }
594
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400595 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530596 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597 else
Sujith2660b812009-02-09 13:27:26 +0530598 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599
Felix Fietkau641d9922010-04-15 17:38:49 -0400600 if (AR_SREV_9300_20_OR_LATER(ah))
601 ar9003_hw_set_nf_limits(ah);
602
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700603 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400605 common->state = ATH_HW_INITIALIZED;
606
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700607 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608}
609
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400610int ath9k_hw_init(struct ath_hw *ah)
611{
612 int ret;
613 struct ath_common *common = ath9k_hw_common(ah);
614
615 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
616 switch (ah->hw_version.devid) {
617 case AR5416_DEVID_PCI:
618 case AR5416_DEVID_PCIE:
619 case AR5416_AR9100_DEVID:
620 case AR9160_DEVID_PCI:
621 case AR9280_DEVID_PCI:
622 case AR9280_DEVID_PCIE:
623 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400624 case AR9287_DEVID_PCI:
625 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400626 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400627 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400628 break;
629 default:
630 if (common->bus_ops->ath_bus_type == ATH_USB)
631 break;
632 ath_print(common, ATH_DBG_FATAL,
633 "Hardware device ID 0x%04x not supported\n",
634 ah->hw_version.devid);
635 return -EOPNOTSUPP;
636 }
637
638 ret = __ath9k_hw_init(ah);
639 if (ret) {
640 ath_print(common, ATH_DBG_FATAL,
641 "Unable to initialize hardware; "
642 "initialization status: %d\n", ret);
643 return ret;
644 }
645
646 return 0;
647}
648EXPORT_SYMBOL(ath9k_hw_init);
649
Sujithcbe61d82009-02-09 13:27:12 +0530650static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530651{
Sujith7d0d0df2010-04-16 11:53:57 +0530652 ENABLE_REGWRITE_BUFFER(ah);
653
Sujithf1dc5602008-10-29 10:16:30 +0530654 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
655 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
656
657 REG_WRITE(ah, AR_QOS_NO_ACK,
658 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
659 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
660 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
661
662 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
663 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
664 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
665 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
666 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530667
668 REGWRITE_BUFFER_FLUSH(ah);
669 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530670}
671
Sujithcbe61d82009-02-09 13:27:12 +0530672static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530673 struct ath9k_channel *chan)
674{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400675 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530676
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100677 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530678
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400679 /* Switch the core clock for ar9271 to 117Mhz */
680 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530681 udelay(500);
682 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400683 }
684
Sujithf1dc5602008-10-29 10:16:30 +0530685 udelay(RTC_PLL_SETTLE_DELAY);
686
687 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
688}
689
Sujithcbe61d82009-02-09 13:27:12 +0530690static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800691 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530692{
Pavel Roskin152d5302010-03-31 18:05:37 -0400693 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530694 AR_IMR_TXURN |
695 AR_IMR_RXERR |
696 AR_IMR_RXORN |
697 AR_IMR_BCNMISC;
698
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400699 if (AR_SREV_9300_20_OR_LATER(ah)) {
700 imr_reg |= AR_IMR_RXOK_HP;
701 if (ah->config.rx_intr_mitigation)
702 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
703 else
704 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530705
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400706 } else {
707 if (ah->config.rx_intr_mitigation)
708 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
709 else
710 imr_reg |= AR_IMR_RXOK;
711 }
712
713 if (ah->config.tx_intr_mitigation)
714 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
715 else
716 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530717
Colin McCabed97809d2008-12-01 13:38:55 -0800718 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400719 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530720
Sujith7d0d0df2010-04-16 11:53:57 +0530721 ENABLE_REGWRITE_BUFFER(ah);
722
Pavel Roskin152d5302010-03-31 18:05:37 -0400723 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500724 ah->imrs2_reg |= AR_IMR_S2_GTT;
725 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530726
727 if (!AR_SREV_9100(ah)) {
728 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
729 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
730 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
731 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400732
Sujith7d0d0df2010-04-16 11:53:57 +0530733 REGWRITE_BUFFER_FLUSH(ah);
734 DISABLE_REGWRITE_BUFFER(ah);
735
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400736 if (AR_SREV_9300_20_OR_LATER(ah)) {
737 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
738 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
739 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
740 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
741 }
Sujithf1dc5602008-10-29 10:16:30 +0530742}
743
Felix Fietkau0005baf2010-01-15 02:33:40 +0100744static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530745{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100746 u32 val = ath9k_hw_mac_to_clks(ah, us);
747 val = min(val, (u32) 0xFFFF);
748 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530749}
750
Felix Fietkau0005baf2010-01-15 02:33:40 +0100751static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530752{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100753 u32 val = ath9k_hw_mac_to_clks(ah, us);
754 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
755 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
756}
757
758static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
759{
760 u32 val = ath9k_hw_mac_to_clks(ah, us);
761 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
762 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530763}
764
Sujithcbe61d82009-02-09 13:27:12 +0530765static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530766{
Sujithf1dc5602008-10-29 10:16:30 +0530767 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700768 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
769 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530770 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530771 return false;
772 } else {
773 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530774 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530775 return true;
776 }
777}
778
Felix Fietkau0005baf2010-01-15 02:33:40 +0100779void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530780{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100781 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
782 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100783 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100784 int sifstime;
785
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700786 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
787 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530788
Sujith2660b812009-02-09 13:27:26 +0530789 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530790 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530791 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100792
793 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
794 sifstime = 16;
795 else
796 sifstime = 10;
797
Felix Fietkaue239d852010-01-15 02:34:58 +0100798 /* As defined by IEEE 802.11-2007 17.3.8.6 */
799 slottime = ah->slottime + 3 * ah->coverage_class;
800 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100801
802 /*
803 * Workaround for early ACK timeouts, add an offset to match the
804 * initval's 64us ack timeout value.
805 * This was initially only meant to work around an issue with delayed
806 * BA frames in some implementations, but it has been found to fix ACK
807 * timeout issues in other cases as well.
808 */
809 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
810 acktimeout += 64 - sifstime - ah->slottime;
811
Felix Fietkaue239d852010-01-15 02:34:58 +0100812 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100813 ath9k_hw_set_ack_timeout(ah, acktimeout);
814 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530815 if (ah->globaltxtimeout != (u32) -1)
816 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530817}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100818EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530819
Sujith285f2dd2010-01-08 10:36:07 +0530820void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700821{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400822 struct ath_common *common = ath9k_hw_common(ah);
823
Sujith736b3a22010-03-17 14:25:24 +0530824 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400825 goto free_hw;
826
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700827 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400828
829free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400830 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831}
Sujith285f2dd2010-01-08 10:36:07 +0530832EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700833
Sujithf1dc5602008-10-29 10:16:30 +0530834/*******/
835/* INI */
836/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700837
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400838u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400839{
840 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
841
842 if (IS_CHAN_B(chan))
843 ctl |= CTL_11B;
844 else if (IS_CHAN_G(chan))
845 ctl |= CTL_11G;
846 else
847 ctl |= CTL_11A;
848
849 return ctl;
850}
851
Sujithf1dc5602008-10-29 10:16:30 +0530852/****************************************/
853/* Reset and Channel Switching Routines */
854/****************************************/
855
Sujithcbe61d82009-02-09 13:27:12 +0530856static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530857{
Felix Fietkau57b32222010-04-15 17:39:22 -0400858 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530859 u32 regval;
860
Sujith7d0d0df2010-04-16 11:53:57 +0530861 ENABLE_REGWRITE_BUFFER(ah);
862
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400863 /*
864 * set AHB_MODE not to do cacheline prefetches
865 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400866 if (!AR_SREV_9300_20_OR_LATER(ah)) {
867 regval = REG_READ(ah, AR_AHB_MODE);
868 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
869 }
Sujithf1dc5602008-10-29 10:16:30 +0530870
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400871 /*
872 * let mac dma reads be in 128 byte chunks
873 */
Sujithf1dc5602008-10-29 10:16:30 +0530874 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
875 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
876
Sujith7d0d0df2010-04-16 11:53:57 +0530877 REGWRITE_BUFFER_FLUSH(ah);
878 DISABLE_REGWRITE_BUFFER(ah);
879
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400880 /*
881 * Restore TX Trigger Level to its pre-reset value.
882 * The initial value depends on whether aggregation is enabled, and is
883 * adjusted whenever underruns are detected.
884 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400885 if (!AR_SREV_9300_20_OR_LATER(ah))
886 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530887
Sujith7d0d0df2010-04-16 11:53:57 +0530888 ENABLE_REGWRITE_BUFFER(ah);
889
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400890 /*
891 * let mac dma writes be in 128 byte chunks
892 */
Sujithf1dc5602008-10-29 10:16:30 +0530893 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
894 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
895
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400896 /*
897 * Setup receive FIFO threshold to hold off TX activities
898 */
Sujithf1dc5602008-10-29 10:16:30 +0530899 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
900
Felix Fietkau57b32222010-04-15 17:39:22 -0400901 if (AR_SREV_9300_20_OR_LATER(ah)) {
902 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
903 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
904
905 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
906 ah->caps.rx_status_len);
907 }
908
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400909 /*
910 * reduce the number of usable entries in PCU TXBUF to avoid
911 * wrap around issues.
912 */
Sujithf1dc5602008-10-29 10:16:30 +0530913 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400914 /* For AR9285 the number of Fifos are reduced to half.
915 * So set the usable tx buf size also to half to
916 * avoid data/delimiter underruns
917 */
Sujithf1dc5602008-10-29 10:16:30 +0530918 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
919 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400920 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530921 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
922 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
923 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400924
Sujith7d0d0df2010-04-16 11:53:57 +0530925 REGWRITE_BUFFER_FLUSH(ah);
926 DISABLE_REGWRITE_BUFFER(ah);
927
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400928 if (AR_SREV_9300_20_OR_LATER(ah))
929 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530930}
931
Sujithcbe61d82009-02-09 13:27:12 +0530932static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530933{
934 u32 val;
935
936 val = REG_READ(ah, AR_STA_ID1);
937 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
938 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800939 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530940 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
941 | AR_STA_ID1_KSRCH_MODE);
942 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
943 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800944 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400945 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530946 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
947 | AR_STA_ID1_KSRCH_MODE);
948 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
949 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800950 case NL80211_IFTYPE_STATION:
951 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530952 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
953 break;
954 }
955}
956
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400957void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
958 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700959{
960 u32 coef_exp, coef_man;
961
962 for (coef_exp = 31; coef_exp > 0; coef_exp--)
963 if ((coef_scaled >> coef_exp) & 0x1)
964 break;
965
966 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
967
968 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
969
970 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
971 *coef_exponent = coef_exp - 16;
972}
973
Sujithcbe61d82009-02-09 13:27:12 +0530974static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530975{
976 u32 rst_flags;
977 u32 tmpReg;
978
Sujith70768492009-02-16 13:23:12 +0530979 if (AR_SREV_9100(ah)) {
980 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
981 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
982 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
983 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
984 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
985 }
986
Sujith7d0d0df2010-04-16 11:53:57 +0530987 ENABLE_REGWRITE_BUFFER(ah);
988
Sujithf1dc5602008-10-29 10:16:30 +0530989 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
990 AR_RTC_FORCE_WAKE_ON_INT);
991
992 if (AR_SREV_9100(ah)) {
993 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
994 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
995 } else {
996 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
997 if (tmpReg &
998 (AR_INTR_SYNC_LOCAL_TIMEOUT |
999 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001000 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301001 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001002
1003 val = AR_RC_HOSTIF;
1004 if (!AR_SREV_9300_20_OR_LATER(ah))
1005 val |= AR_RC_AHB;
1006 REG_WRITE(ah, AR_RC, val);
1007
1008 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301009 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301010
1011 rst_flags = AR_RTC_RC_MAC_WARM;
1012 if (type == ATH9K_RESET_COLD)
1013 rst_flags |= AR_RTC_RC_MAC_COLD;
1014 }
1015
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001016 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301017
1018 REGWRITE_BUFFER_FLUSH(ah);
1019 DISABLE_REGWRITE_BUFFER(ah);
1020
Sujithf1dc5602008-10-29 10:16:30 +05301021 udelay(50);
1022
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001023 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301024 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001025 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1026 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301027 return false;
1028 }
1029
1030 if (!AR_SREV_9100(ah))
1031 REG_WRITE(ah, AR_RC, 0);
1032
Sujithf1dc5602008-10-29 10:16:30 +05301033 if (AR_SREV_9100(ah))
1034 udelay(50);
1035
1036 return true;
1037}
1038
Sujithcbe61d82009-02-09 13:27:12 +05301039static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301040{
Sujith7d0d0df2010-04-16 11:53:57 +05301041 ENABLE_REGWRITE_BUFFER(ah);
1042
Sujithf1dc5602008-10-29 10:16:30 +05301043 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1044 AR_RTC_FORCE_WAKE_ON_INT);
1045
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001046 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301047 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1048
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001049 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301050
Sujith7d0d0df2010-04-16 11:53:57 +05301051 REGWRITE_BUFFER_FLUSH(ah);
1052 DISABLE_REGWRITE_BUFFER(ah);
1053
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001054 if (!AR_SREV_9300_20_OR_LATER(ah))
1055 udelay(2);
1056
1057 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301058 REG_WRITE(ah, AR_RC, 0);
1059
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001060 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301061
1062 if (!ath9k_hw_wait(ah,
1063 AR_RTC_STATUS,
1064 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301065 AR_RTC_STATUS_ON,
1066 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001067 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1068 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301069 return false;
1070 }
1071
1072 ath9k_hw_read_revisions(ah);
1073
1074 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1075}
1076
Sujithcbe61d82009-02-09 13:27:12 +05301077static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301078{
1079 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1080 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1081
1082 switch (type) {
1083 case ATH9K_RESET_POWER_ON:
1084 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301085 case ATH9K_RESET_WARM:
1086 case ATH9K_RESET_COLD:
1087 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301088 default:
1089 return false;
1090 }
1091}
1092
Sujithcbe61d82009-02-09 13:27:12 +05301093static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301094 struct ath9k_channel *chan)
1095{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301096 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301097 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1098 return false;
1099 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301100 return false;
1101
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001102 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301103 return false;
1104
Sujith2660b812009-02-09 13:27:26 +05301105 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301106 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301107 ath9k_hw_set_rfmode(ah, chan);
1108
1109 return true;
1110}
1111
Sujithcbe61d82009-02-09 13:27:12 +05301112static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001113 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301114{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001115 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001116 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001117 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001118 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001119 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301120
1121 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1122 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001123 ath_print(common, ATH_DBG_QUEUE,
1124 "Transmit frames pending on "
1125 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301126 return false;
1127 }
1128 }
1129
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001130 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001131 ath_print(common, ATH_DBG_FATAL,
1132 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301133 return false;
1134 }
1135
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001136 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301137
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001138 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001139 if (r) {
1140 ath_print(common, ATH_DBG_FATAL,
1141 "Failed to set channel\n");
1142 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301143 }
1144
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001145 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001146 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301147 channel->max_antenna_gain * 2,
1148 channel->max_power * 2,
1149 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001150 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301151
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001152 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301153
1154 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1155 ath9k_hw_set_delta_slope(ah, chan);
1156
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001157 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301158
1159 if (!chan->oneTimeCalsDone)
1160 chan->oneTimeCalsDone = true;
1161
1162 return true;
1163}
1164
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001165bool ath9k_hw_check_alive(struct ath_hw *ah)
1166{
1167 int count = 50;
1168 u32 reg;
1169
1170 if (AR_SREV_9285_10_OR_LATER(ah))
1171 return true;
1172
1173 do {
1174 reg = REG_READ(ah, AR_OBS_BUS_1);
1175
1176 if ((reg & 0x7E7FFFEF) == 0x00702400)
1177 continue;
1178
1179 switch (reg & 0x7E000B00) {
1180 case 0x1E000000:
1181 case 0x52000B00:
1182 case 0x18000B00:
1183 continue;
1184 default:
1185 return true;
1186 }
1187 } while (count-- > 0);
1188
1189 return false;
1190}
1191EXPORT_SYMBOL(ath9k_hw_check_alive);
1192
Sujithcbe61d82009-02-09 13:27:12 +05301193int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001194 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001196 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001197 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301198 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001199 u32 saveDefAntenna;
1200 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301201 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001202 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001204 ah->txchainmask = common->tx_chainmask;
1205 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001206
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001207 if (!ah->chip_fullsleep) {
1208 ath9k_hw_abortpcurecv(ah);
1209 if (!ath9k_hw_stopdmarecv(ah))
1210 ath_print(common, ATH_DBG_XMIT,
1211 "Failed to stop receive dma\n");
1212 }
1213
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001214 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001215 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001216
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301217 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001218 ath9k_hw_getnf(ah, curchan);
1219
1220 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301221 (ah->chip_fullsleep != true) &&
1222 (ah->curchan != NULL) &&
1223 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301225 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301226 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1227 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001228
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001229 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301230 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001231 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001232 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001233 }
1234 }
1235
1236 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1237 if (saveDefAntenna == 0)
1238 saveDefAntenna = 1;
1239
1240 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1241
Sujith46fe7822009-09-17 09:25:25 +05301242 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1243 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1244 tsf = ath9k_hw_gettsf64(ah);
1245
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001246 saveLedState = REG_READ(ah, AR_CFG_LED) &
1247 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1248 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1249
1250 ath9k_hw_mark_phy_inactive(ah);
1251
Sujith05020d22010-03-17 14:25:23 +05301252 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001253 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1254 REG_WRITE(ah,
1255 AR9271_RESET_POWER_DOWN_CONTROL,
1256 AR9271_RADIO_RF_RST);
1257 udelay(50);
1258 }
1259
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001260 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001261 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001262 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001263 }
1264
Sujith05020d22010-03-17 14:25:23 +05301265 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001266 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1267 ah->htc_reset_init = false;
1268 REG_WRITE(ah,
1269 AR9271_RESET_POWER_DOWN_CONTROL,
1270 AR9271_GATE_MAC_CTL);
1271 udelay(50);
1272 }
1273
Sujith46fe7822009-09-17 09:25:25 +05301274 /* Restore TSF */
1275 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1276 ath9k_hw_settsf64(ah, tsf);
1277
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301278 if (AR_SREV_9280_10_OR_LATER(ah))
1279 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001280
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001281 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001282 if (r)
1283 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001284
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001285 /* Setup MFP options for CCMP */
1286 if (AR_SREV_9280_20_OR_LATER(ah)) {
1287 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1288 * frames when constructing CCMP AAD. */
1289 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1290 0xc7ff);
1291 ah->sw_mgmt_crypto = false;
1292 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1293 /* Disable hardware crypto for management frames */
1294 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1295 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1296 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1297 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1298 ah->sw_mgmt_crypto = true;
1299 } else
1300 ah->sw_mgmt_crypto = true;
1301
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001302 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1303 ath9k_hw_set_delta_slope(ah, chan);
1304
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001305 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301306 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001307
Sujith6819d572010-04-16 11:53:56 +05301308 ath9k_hw_set_operating_mode(ah, ah->opmode);
1309
Sujith7d0d0df2010-04-16 11:53:57 +05301310 ENABLE_REGWRITE_BUFFER(ah);
1311
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001312 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1313 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314 | macStaId1
1315 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301316 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301317 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301318 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001319 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001320 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001321 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001322 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001323 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1324
Sujith7d0d0df2010-04-16 11:53:57 +05301325 REGWRITE_BUFFER_FLUSH(ah);
1326 DISABLE_REGWRITE_BUFFER(ah);
1327
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001328 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001329 if (r)
1330 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001331
Sujith7d0d0df2010-04-16 11:53:57 +05301332 ENABLE_REGWRITE_BUFFER(ah);
1333
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001334 for (i = 0; i < AR_NUM_DCU; i++)
1335 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1336
Sujith7d0d0df2010-04-16 11:53:57 +05301337 REGWRITE_BUFFER_FLUSH(ah);
1338 DISABLE_REGWRITE_BUFFER(ah);
1339
Sujith2660b812009-02-09 13:27:26 +05301340 ah->intr_txqs = 0;
1341 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001342 ath9k_hw_resettxqueue(ah, i);
1343
Sujith2660b812009-02-09 13:27:26 +05301344 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 ath9k_hw_init_qos(ah);
1346
Sujith2660b812009-02-09 13:27:26 +05301347 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301348 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301349
Felix Fietkau0005baf2010-01-15 02:33:40 +01001350 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001352 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez78ec2672010-04-15 17:39:23 -04001353 ar9002_hw_enable_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001354 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301355 }
1356
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357 REG_WRITE(ah, AR_STA_ID1,
1358 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1359
1360 ath9k_hw_set_dma(ah);
1361
1362 REG_WRITE(ah, AR_OBS, 8);
1363
Sujith0ce024c2009-12-14 14:57:00 +05301364 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1366 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1367 }
1368
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001369 if (ah->config.tx_intr_mitigation) {
1370 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1371 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1372 }
1373
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374 ath9k_hw_init_bb(ah, chan);
1375
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001376 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001377 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378
Sujith7d0d0df2010-04-16 11:53:57 +05301379 ENABLE_REGWRITE_BUFFER(ah);
1380
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001381 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001382 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1383
Sujith7d0d0df2010-04-16 11:53:57 +05301384 REGWRITE_BUFFER_FLUSH(ah);
1385 DISABLE_REGWRITE_BUFFER(ah);
1386
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001387 /*
1388 * For big endian systems turn on swapping for descriptors
1389 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001390 if (AR_SREV_9100(ah)) {
1391 u32 mask;
1392 mask = REG_READ(ah, AR_CFG);
1393 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001394 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301395 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001396 } else {
1397 mask =
1398 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1399 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001400 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301401 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402 }
1403 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001404 /* Configure AR9271 target WLAN */
1405 if (AR_SREV_9271(ah))
1406 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001407#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001408 else
1409 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001410#endif
1411 }
1412
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001413 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301414 ath9k_hw_btcoex_enable(ah);
1415
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001416 if (AR_SREV_9300_20_OR_LATER(ah)) {
1417 ath9k_hw_loadnf(ah, curchan);
1418 ath9k_hw_start_nfcal(ah);
1419 }
1420
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001421 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001423EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001424
Sujithf1dc5602008-10-29 10:16:30 +05301425/************************/
1426/* Key Cache Management */
1427/************************/
1428
Sujithcbe61d82009-02-09 13:27:12 +05301429bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001430{
Sujithf1dc5602008-10-29 10:16:30 +05301431 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001432
Sujith2660b812009-02-09 13:27:26 +05301433 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001434 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1435 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001436 return false;
1437 }
1438
Sujithf1dc5602008-10-29 10:16:30 +05301439 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001440
Sujithf1dc5602008-10-29 10:16:30 +05301441 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1442 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1443 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1444 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1445 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1446 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1447 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1448 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1449
1450 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1451 u16 micentry = entry + 64;
1452
1453 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1454 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1455 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1456 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1457
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001458 }
1459
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001460 return true;
1461}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001462EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001463
Sujithcbe61d82009-02-09 13:27:12 +05301464bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001465{
Sujithf1dc5602008-10-29 10:16:30 +05301466 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001467
Sujith2660b812009-02-09 13:27:26 +05301468 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001469 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1470 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001471 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001472 }
1473
Sujithf1dc5602008-10-29 10:16:30 +05301474 if (mac != NULL) {
1475 macHi = (mac[5] << 8) | mac[4];
1476 macLo = (mac[3] << 24) |
1477 (mac[2] << 16) |
1478 (mac[1] << 8) |
1479 mac[0];
1480 macLo >>= 1;
1481 macLo |= (macHi & 1) << 31;
1482 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001483 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301484 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001485 }
Sujithf1dc5602008-10-29 10:16:30 +05301486 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1487 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001488
1489 return true;
1490}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001491EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492
Sujithcbe61d82009-02-09 13:27:12 +05301493bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301494 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001495 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001496{
Sujith2660b812009-02-09 13:27:26 +05301497 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001498 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301499 u32 key0, key1, key2, key3, key4;
1500 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001501
Sujithf1dc5602008-10-29 10:16:30 +05301502 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001503 ath_print(common, ATH_DBG_FATAL,
1504 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301505 return false;
1506 }
1507
1508 switch (k->kv_type) {
1509 case ATH9K_CIPHER_AES_OCB:
1510 keyType = AR_KEYTABLE_TYPE_AES;
1511 break;
1512 case ATH9K_CIPHER_AES_CCM:
1513 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001514 ath_print(common, ATH_DBG_ANY,
1515 "AES-CCM not supported by mac rev 0x%x\n",
1516 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001517 return false;
1518 }
Sujithf1dc5602008-10-29 10:16:30 +05301519 keyType = AR_KEYTABLE_TYPE_CCM;
1520 break;
1521 case ATH9K_CIPHER_TKIP:
1522 keyType = AR_KEYTABLE_TYPE_TKIP;
1523 if (ATH9K_IS_MIC_ENABLED(ah)
1524 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001525 ath_print(common, ATH_DBG_ANY,
1526 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001527 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528 }
Sujithf1dc5602008-10-29 10:16:30 +05301529 break;
1530 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001531 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001532 ath_print(common, ATH_DBG_ANY,
1533 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301534 return false;
1535 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001536 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301537 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001538 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301539 keyType = AR_KEYTABLE_TYPE_104;
1540 else
1541 keyType = AR_KEYTABLE_TYPE_128;
1542 break;
1543 case ATH9K_CIPHER_CLR:
1544 keyType = AR_KEYTABLE_TYPE_CLR;
1545 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001546 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001547 ath_print(common, ATH_DBG_FATAL,
1548 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001549 return false;
1550 }
Sujithf1dc5602008-10-29 10:16:30 +05301551
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001552 key0 = get_unaligned_le32(k->kv_val + 0);
1553 key1 = get_unaligned_le16(k->kv_val + 4);
1554 key2 = get_unaligned_le32(k->kv_val + 6);
1555 key3 = get_unaligned_le16(k->kv_val + 10);
1556 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001557 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301558 key4 &= 0xff;
1559
Jouni Malinen672903b2009-03-02 15:06:31 +02001560 /*
1561 * Note: Key cache registers access special memory area that requires
1562 * two 32-bit writes to actually update the values in the internal
1563 * memory. Consequently, the exact order and pairs used here must be
1564 * maintained.
1565 */
1566
Sujithf1dc5602008-10-29 10:16:30 +05301567 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1568 u16 micentry = entry + 64;
1569
Jouni Malinen672903b2009-03-02 15:06:31 +02001570 /*
1571 * Write inverted key[47:0] first to avoid Michael MIC errors
1572 * on frames that could be sent or received at the same time.
1573 * The correct key will be written in the end once everything
1574 * else is ready.
1575 */
Sujithf1dc5602008-10-29 10:16:30 +05301576 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1577 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001578
1579 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301580 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1581 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001582
1583 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301584 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1585 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001586
1587 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301588 (void) ath9k_hw_keysetmac(ah, entry, mac);
1589
Sujith2660b812009-02-09 13:27:26 +05301590 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001591 /*
1592 * TKIP uses two key cache entries:
1593 * Michael MIC TX/RX keys in the same key cache entry
1594 * (idx = main index + 64):
1595 * key0 [31:0] = RX key [31:0]
1596 * key1 [15:0] = TX key [31:16]
1597 * key1 [31:16] = reserved
1598 * key2 [31:0] = RX key [63:32]
1599 * key3 [15:0] = TX key [15:0]
1600 * key3 [31:16] = reserved
1601 * key4 [31:0] = TX key [63:32]
1602 */
Sujithf1dc5602008-10-29 10:16:30 +05301603 u32 mic0, mic1, mic2, mic3, mic4;
1604
1605 mic0 = get_unaligned_le32(k->kv_mic + 0);
1606 mic2 = get_unaligned_le32(k->kv_mic + 4);
1607 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1608 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1609 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001610
1611 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301612 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1613 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001614
1615 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301616 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1617 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001618
1619 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301620 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1621 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1622 AR_KEYTABLE_TYPE_CLR);
1623
1624 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001625 /*
1626 * TKIP uses four key cache entries (two for group
1627 * keys):
1628 * Michael MIC TX/RX keys are in different key cache
1629 * entries (idx = main index + 64 for TX and
1630 * main index + 32 + 96 for RX):
1631 * key0 [31:0] = TX/RX MIC key [31:0]
1632 * key1 [31:0] = reserved
1633 * key2 [31:0] = TX/RX MIC key [63:32]
1634 * key3 [31:0] = reserved
1635 * key4 [31:0] = reserved
1636 *
1637 * Upper layer code will call this function separately
1638 * for TX and RX keys when these registers offsets are
1639 * used.
1640 */
Sujithf1dc5602008-10-29 10:16:30 +05301641 u32 mic0, mic2;
1642
1643 mic0 = get_unaligned_le32(k->kv_mic + 0);
1644 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001645
1646 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301647 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1648 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001649
1650 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301651 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1652 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001653
1654 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301655 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1656 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1657 AR_KEYTABLE_TYPE_CLR);
1658 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001659
1660 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301661 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1662 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001663
1664 /*
1665 * Write the correct (un-inverted) key[47:0] last to enable
1666 * TKIP now that all other registers are set with correct
1667 * values.
1668 */
Sujithf1dc5602008-10-29 10:16:30 +05301669 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1670 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1671 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001672 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301673 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1674 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001675
1676 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301677 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1678 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001679
1680 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301681 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1682 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1683
Jouni Malinen672903b2009-03-02 15:06:31 +02001684 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301685 (void) ath9k_hw_keysetmac(ah, entry, mac);
1686 }
1687
Sujithf1dc5602008-10-29 10:16:30 +05301688 return true;
1689}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001690EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301691
Sujithcbe61d82009-02-09 13:27:12 +05301692bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301693{
Sujith2660b812009-02-09 13:27:26 +05301694 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301695 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1696 if (val & AR_KEYTABLE_VALID)
1697 return true;
1698 }
1699 return false;
1700}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001701EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301702
1703/******************************/
1704/* Power Management (Chipset) */
1705/******************************/
1706
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001707/*
1708 * Notify Power Mgt is disabled in self-generated frames.
1709 * If requested, force chip to sleep.
1710 */
Sujithcbe61d82009-02-09 13:27:12 +05301711static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301712{
1713 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1714 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001715 /*
1716 * Clear the RTC force wake bit to allow the
1717 * mac to go to sleep.
1718 */
Sujithf1dc5602008-10-29 10:16:30 +05301719 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1720 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001721 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301722 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1723
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001724 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301725 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301726 REG_CLR_BIT(ah, (AR_RTC_RESET),
1727 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301728 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729}
1730
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001731/*
1732 * Notify Power Management is enabled in self-generating
1733 * frames. If request, set power mode of chip to
1734 * auto/normal. Duration in units of 128us (1/8 TU).
1735 */
Sujithcbe61d82009-02-09 13:27:12 +05301736static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001737{
Sujithf1dc5602008-10-29 10:16:30 +05301738 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1739 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301740 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001741
Sujithf1dc5602008-10-29 10:16:30 +05301742 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001743 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301744 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1745 AR_RTC_FORCE_WAKE_ON_INT);
1746 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001747 /*
1748 * Clear the RTC force wake bit to allow the
1749 * mac to go to sleep.
1750 */
Sujithf1dc5602008-10-29 10:16:30 +05301751 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1752 AR_RTC_FORCE_WAKE_EN);
1753 }
1754 }
1755}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756
Sujithcbe61d82009-02-09 13:27:12 +05301757static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301758{
1759 u32 val;
1760 int i;
1761
1762 if (setChip) {
1763 if ((REG_READ(ah, AR_RTC_STATUS) &
1764 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1765 if (ath9k_hw_set_reset_reg(ah,
1766 ATH9K_RESET_POWER_ON) != true) {
1767 return false;
1768 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001769 if (!AR_SREV_9300_20_OR_LATER(ah))
1770 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301771 }
1772 if (AR_SREV_9100(ah))
1773 REG_SET_BIT(ah, AR_RTC_RESET,
1774 AR_RTC_RESET_EN);
1775
1776 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1777 AR_RTC_FORCE_WAKE_EN);
1778 udelay(50);
1779
1780 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1781 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1782 if (val == AR_RTC_STATUS_ON)
1783 break;
1784 udelay(50);
1785 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1786 AR_RTC_FORCE_WAKE_EN);
1787 }
1788 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001789 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1790 "Failed to wakeup in %uus\n",
1791 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301792 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001793 }
1794 }
1795
Sujithf1dc5602008-10-29 10:16:30 +05301796 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1797
1798 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001799}
1800
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001801bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301802{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001803 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301804 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301805 static const char *modes[] = {
1806 "AWAKE",
1807 "FULL-SLEEP",
1808 "NETWORK SLEEP",
1809 "UNDEFINED"
1810 };
Sujithf1dc5602008-10-29 10:16:30 +05301811
Gabor Juhoscbdec972009-07-24 17:27:22 +02001812 if (ah->power_mode == mode)
1813 return status;
1814
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001815 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1816 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301817
1818 switch (mode) {
1819 case ATH9K_PM_AWAKE:
1820 status = ath9k_hw_set_power_awake(ah, setChip);
1821 break;
1822 case ATH9K_PM_FULL_SLEEP:
1823 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301824 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301825 break;
1826 case ATH9K_PM_NETWORK_SLEEP:
1827 ath9k_set_power_network_sleep(ah, setChip);
1828 break;
1829 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001830 ath_print(common, ATH_DBG_FATAL,
1831 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301832 return false;
1833 }
Sujith2660b812009-02-09 13:27:26 +05301834 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301835
1836 return status;
1837}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001838EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301839
Sujithf1dc5602008-10-29 10:16:30 +05301840/*******************/
1841/* Beacon Handling */
1842/*******************/
1843
Sujithcbe61d82009-02-09 13:27:12 +05301844void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001846 int flags = 0;
1847
Sujith2660b812009-02-09 13:27:26 +05301848 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001849
Sujith7d0d0df2010-04-16 11:53:57 +05301850 ENABLE_REGWRITE_BUFFER(ah);
1851
Sujith2660b812009-02-09 13:27:26 +05301852 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001853 case NL80211_IFTYPE_STATION:
1854 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1856 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1857 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1858 flags |= AR_TBTT_TIMER_EN;
1859 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001860 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001861 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001862 REG_SET_BIT(ah, AR_TXCFG,
1863 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1864 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1865 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301866 (ah->atim_window ? ah->
1867 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001868 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001869 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001870 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1871 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1872 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301873 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301874 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001875 REG_WRITE(ah, AR_NEXT_SWBA,
1876 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301877 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301878 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001879 flags |=
1880 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1881 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001882 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001883 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1884 "%s: unsupported opmode: %d\n",
1885 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001886 return;
1887 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001888 }
1889
1890 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1891 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1892 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1893 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1894
Sujith7d0d0df2010-04-16 11:53:57 +05301895 REGWRITE_BUFFER_FLUSH(ah);
1896 DISABLE_REGWRITE_BUFFER(ah);
1897
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001898 beacon_period &= ~ATH9K_BEACON_ENA;
1899 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900 ath9k_hw_reset_tsf(ah);
1901 }
1902
1903 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1904}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001905EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001906
Sujithcbe61d82009-02-09 13:27:12 +05301907void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301908 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909{
1910 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301911 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001912 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001913
Sujith7d0d0df2010-04-16 11:53:57 +05301914 ENABLE_REGWRITE_BUFFER(ah);
1915
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001916 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1917
1918 REG_WRITE(ah, AR_BEACON_PERIOD,
1919 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1920 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1921 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1922
Sujith7d0d0df2010-04-16 11:53:57 +05301923 REGWRITE_BUFFER_FLUSH(ah);
1924 DISABLE_REGWRITE_BUFFER(ah);
1925
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001926 REG_RMW_FIELD(ah, AR_RSSI_THR,
1927 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1928
1929 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1930
1931 if (bs->bs_sleepduration > beaconintval)
1932 beaconintval = bs->bs_sleepduration;
1933
1934 dtimperiod = bs->bs_dtimperiod;
1935 if (bs->bs_sleepduration > dtimperiod)
1936 dtimperiod = bs->bs_sleepduration;
1937
1938 if (beaconintval == dtimperiod)
1939 nextTbtt = bs->bs_nextdtim;
1940 else
1941 nextTbtt = bs->bs_nexttbtt;
1942
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001943 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1944 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1945 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1946 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001947
Sujith7d0d0df2010-04-16 11:53:57 +05301948 ENABLE_REGWRITE_BUFFER(ah);
1949
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001950 REG_WRITE(ah, AR_NEXT_DTIM,
1951 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1952 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1953
1954 REG_WRITE(ah, AR_SLEEP1,
1955 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1956 | AR_SLEEP1_ASSUME_DTIM);
1957
Sujith60b67f52008-08-07 10:52:38 +05301958 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001959 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1960 else
1961 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1962
1963 REG_WRITE(ah, AR_SLEEP2,
1964 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1965
1966 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1967 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1968
Sujith7d0d0df2010-04-16 11:53:57 +05301969 REGWRITE_BUFFER_FLUSH(ah);
1970 DISABLE_REGWRITE_BUFFER(ah);
1971
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001972 REG_SET_BIT(ah, AR_TIMER_MODE,
1973 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1974 AR_DTIM_TIMER_EN);
1975
Sujith4af9cf42009-02-12 10:06:47 +05301976 /* TSF Out of Range Threshold */
1977 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001978}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001979EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001980
Sujithf1dc5602008-10-29 10:16:30 +05301981/*******************/
1982/* HW Capabilities */
1983/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001984
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001985int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986{
Sujith2660b812009-02-09 13:27:26 +05301987 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001988 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001989 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001990 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001991
Sujithf1dc5602008-10-29 10:16:30 +05301992 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001993
Sujithf74df6f2009-02-09 13:27:24 +05301994 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001995 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301996
Sujithf74df6f2009-02-09 13:27:24 +05301997 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05301998 if (AR_SREV_9285_10_OR_LATER(ah))
1999 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002000 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302001
Sujithf74df6f2009-02-09 13:27:24 +05302002 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302003
Sujith2660b812009-02-09 13:27:26 +05302004 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302005 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002006 if (regulatory->current_rd == 0x64 ||
2007 regulatory->current_rd == 0x65)
2008 regulatory->current_rd += 5;
2009 else if (regulatory->current_rd == 0x41)
2010 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002011 ath_print(common, ATH_DBG_REGULATORY,
2012 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002013 }
Sujithdc2222a2008-08-14 13:26:55 +05302014
Sujithf74df6f2009-02-09 13:27:24 +05302015 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002016 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2017 ath_print(common, ATH_DBG_FATAL,
2018 "no band has been marked as supported in EEPROM.\n");
2019 return -EINVAL;
2020 }
2021
Sujithf1dc5602008-10-29 10:16:30 +05302022 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002023
Sujithf1dc5602008-10-29 10:16:30 +05302024 if (eeval & AR5416_OPFLAGS_11A) {
2025 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302026 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302027 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2028 set_bit(ATH9K_MODE_11NA_HT20,
2029 pCap->wireless_modes);
2030 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2031 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2032 pCap->wireless_modes);
2033 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2034 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002035 }
2036 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002038
Sujithf1dc5602008-10-29 10:16:30 +05302039 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302040 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302041 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302042 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2043 set_bit(ATH9K_MODE_11NG_HT20,
2044 pCap->wireless_modes);
2045 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2046 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2047 pCap->wireless_modes);
2048 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2049 pCap->wireless_modes);
2050 }
2051 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002052 }
Sujithf1dc5602008-10-29 10:16:30 +05302053
Sujithf74df6f2009-02-09 13:27:24 +05302054 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002055 /*
2056 * For AR9271 we will temporarilly uses the rx chainmax as read from
2057 * the EEPROM.
2058 */
Sujith8147f5d2009-02-20 15:13:23 +05302059 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002060 !(eeval & AR5416_OPFLAGS_11A) &&
2061 !(AR_SREV_9271(ah)))
2062 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302063 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2064 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002065 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302066 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302067
Sujithd535a422009-02-09 13:27:06 +05302068 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302069 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302070
2071 pCap->low_2ghz_chan = 2312;
2072 pCap->high_2ghz_chan = 2732;
2073
2074 pCap->low_5ghz_chan = 4920;
2075 pCap->high_5ghz_chan = 6100;
2076
2077 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2078 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2079 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2080
2081 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2082 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2083 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2084
Sujith2660b812009-02-09 13:27:26 +05302085 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302086 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2087 else
2088 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2089
2090 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2091 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2092 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2093 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2094
2095 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2096 pCap->total_queues =
2097 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2098 else
2099 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2100
2101 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2102 pCap->keycache_size =
2103 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2104 else
2105 pCap->keycache_size = AR_KEYTABLE_SIZE;
2106
2107 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002108
2109 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2110 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2111 else
2112 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302113
Sujith5b5fa352010-03-17 14:25:15 +05302114 if (AR_SREV_9271(ah))
2115 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2116 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302117 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2118 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302119 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2120 else
2121 pCap->num_gpio_pins = AR_NUM_GPIO;
2122
Sujithf1dc5602008-10-29 10:16:30 +05302123 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2124 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2125 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2126 } else {
2127 pCap->rts_aggr_limit = (8 * 1024);
2128 }
2129
2130 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2131
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302132#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302133 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2134 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2135 ah->rfkill_gpio =
2136 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2137 ah->rfkill_polarity =
2138 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302139
2140 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2141 }
2142#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302143 if (AR_SREV_9271(ah))
2144 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2145 else
2146 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302147
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302148 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302149 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2150 else
2151 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2152
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002153 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302154 pCap->reg_cap =
2155 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2156 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2157 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2158 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2159 } else {
2160 pCap->reg_cap =
2161 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2162 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2163 }
2164
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302165 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2166 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2167 AR_SREV_5416(ah))
2168 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302169
2170 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302171 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302172 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302173 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302174
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302175 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002176 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002177 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2178 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302179
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302180 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002181 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2182 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302183 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002184 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302185 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302186 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002187 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302188 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002189
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002190 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezce018052010-04-15 17:39:38 -04002191 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002192 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2193 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2194 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002195 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002196 pCap->txs_len = sizeof(struct ar9003_txs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002197 } else {
2198 pCap->tx_desc_len = sizeof(struct ath_desc);
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002199 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002200
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002201 if (AR_SREV_9300_20_OR_LATER(ah))
2202 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2203
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002204 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002205}
2206
Sujithcbe61d82009-02-09 13:27:12 +05302207bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302208 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002209{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002210 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302211 switch (type) {
2212 case ATH9K_CAP_CIPHER:
2213 switch (capability) {
2214 case ATH9K_CIPHER_AES_CCM:
2215 case ATH9K_CIPHER_AES_OCB:
2216 case ATH9K_CIPHER_TKIP:
2217 case ATH9K_CIPHER_WEP:
2218 case ATH9K_CIPHER_MIC:
2219 case ATH9K_CIPHER_CLR:
2220 return true;
2221 default:
2222 return false;
2223 }
2224 case ATH9K_CAP_TKIP_MIC:
2225 switch (capability) {
2226 case 0:
2227 return true;
2228 case 1:
Sujith2660b812009-02-09 13:27:26 +05302229 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302230 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2231 false;
2232 }
2233 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302234 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302235 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302236 case ATH9K_CAP_MCAST_KEYSRCH:
2237 switch (capability) {
2238 case 0:
2239 return true;
2240 case 1:
2241 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2242 return false;
2243 } else {
Sujith2660b812009-02-09 13:27:26 +05302244 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302245 AR_STA_ID1_MCAST_KSRCH) ? true :
2246 false;
2247 }
2248 }
2249 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302250 case ATH9K_CAP_TXPOW:
2251 switch (capability) {
2252 case 0:
2253 return 0;
2254 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002255 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302256 return 0;
2257 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002258 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302259 return 0;
2260 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002261 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302262 return 0;
2263 }
2264 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302265 case ATH9K_CAP_DS:
2266 return (AR_SREV_9280_20_OR_LATER(ah) &&
2267 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2268 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302269 default:
2270 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271 }
Sujithf1dc5602008-10-29 10:16:30 +05302272}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002273EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002274
Sujithcbe61d82009-02-09 13:27:12 +05302275bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302276 u32 capability, u32 setting, int *status)
2277{
Sujithf1dc5602008-10-29 10:16:30 +05302278 switch (type) {
2279 case ATH9K_CAP_TKIP_MIC:
2280 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302281 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302282 AR_STA_ID1_CRPT_MIC_ENABLE;
2283 else
Sujith2660b812009-02-09 13:27:26 +05302284 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302285 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2286 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302287 case ATH9K_CAP_MCAST_KEYSRCH:
2288 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302289 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302290 else
Sujith2660b812009-02-09 13:27:26 +05302291 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302292 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302293 default:
2294 return false;
2295 }
2296}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002297EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302298
2299/****************************/
2300/* GPIO / RFKILL / Antennae */
2301/****************************/
2302
Sujithcbe61d82009-02-09 13:27:12 +05302303static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302304 u32 gpio, u32 type)
2305{
2306 int addr;
2307 u32 gpio_shift, tmp;
2308
2309 if (gpio > 11)
2310 addr = AR_GPIO_OUTPUT_MUX3;
2311 else if (gpio > 5)
2312 addr = AR_GPIO_OUTPUT_MUX2;
2313 else
2314 addr = AR_GPIO_OUTPUT_MUX1;
2315
2316 gpio_shift = (gpio % 6) * 5;
2317
2318 if (AR_SREV_9280_20_OR_LATER(ah)
2319 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2320 REG_RMW(ah, addr, (type << gpio_shift),
2321 (0x1f << gpio_shift));
2322 } else {
2323 tmp = REG_READ(ah, addr);
2324 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2325 tmp &= ~(0x1f << gpio_shift);
2326 tmp |= (type << gpio_shift);
2327 REG_WRITE(ah, addr, tmp);
2328 }
2329}
2330
Sujithcbe61d82009-02-09 13:27:12 +05302331void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302332{
2333 u32 gpio_shift;
2334
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002335 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302336
2337 gpio_shift = gpio << 1;
2338
2339 REG_RMW(ah,
2340 AR_GPIO_OE_OUT,
2341 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2342 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2343}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002344EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302345
Sujithcbe61d82009-02-09 13:27:12 +05302346u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302347{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302348#define MS_REG_READ(x, y) \
2349 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2350
Sujith2660b812009-02-09 13:27:26 +05302351 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302352 return 0xffffffff;
2353
Felix Fietkau783dfca2010-04-15 17:38:11 -04002354 if (AR_SREV_9300_20_OR_LATER(ah))
2355 return MS_REG_READ(AR9300, gpio) != 0;
2356 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302357 return MS_REG_READ(AR9271, gpio) != 0;
2358 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302359 return MS_REG_READ(AR9287, gpio) != 0;
2360 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302361 return MS_REG_READ(AR9285, gpio) != 0;
2362 else if (AR_SREV_9280_10_OR_LATER(ah))
2363 return MS_REG_READ(AR928X, gpio) != 0;
2364 else
2365 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302366}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002367EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302368
Sujithcbe61d82009-02-09 13:27:12 +05302369void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302370 u32 ah_signal_type)
2371{
2372 u32 gpio_shift;
2373
2374 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2375
2376 gpio_shift = 2 * gpio;
2377
2378 REG_RMW(ah,
2379 AR_GPIO_OE_OUT,
2380 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2381 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2382}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002383EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302384
Sujithcbe61d82009-02-09 13:27:12 +05302385void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302386{
Sujith5b5fa352010-03-17 14:25:15 +05302387 if (AR_SREV_9271(ah))
2388 val = ~val;
2389
Sujithf1dc5602008-10-29 10:16:30 +05302390 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2391 AR_GPIO_BIT(gpio));
2392}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002393EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302394
Sujithcbe61d82009-02-09 13:27:12 +05302395u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302396{
2397 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2398}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002399EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302400
Sujithcbe61d82009-02-09 13:27:12 +05302401void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302402{
2403 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2404}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002405EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302406
Sujithf1dc5602008-10-29 10:16:30 +05302407/*********************/
2408/* General Operation */
2409/*********************/
2410
Sujithcbe61d82009-02-09 13:27:12 +05302411u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302412{
2413 u32 bits = REG_READ(ah, AR_RX_FILTER);
2414 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2415
2416 if (phybits & AR_PHY_ERR_RADAR)
2417 bits |= ATH9K_RX_FILTER_PHYRADAR;
2418 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2419 bits |= ATH9K_RX_FILTER_PHYERR;
2420
2421 return bits;
2422}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002423EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302424
Sujithcbe61d82009-02-09 13:27:12 +05302425void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302426{
2427 u32 phybits;
2428
Sujith7d0d0df2010-04-16 11:53:57 +05302429 ENABLE_REGWRITE_BUFFER(ah);
2430
Sujith7ea310b2009-09-03 12:08:43 +05302431 REG_WRITE(ah, AR_RX_FILTER, bits);
2432
Sujithf1dc5602008-10-29 10:16:30 +05302433 phybits = 0;
2434 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2435 phybits |= AR_PHY_ERR_RADAR;
2436 if (bits & ATH9K_RX_FILTER_PHYERR)
2437 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2438 REG_WRITE(ah, AR_PHY_ERR, phybits);
2439
2440 if (phybits)
2441 REG_WRITE(ah, AR_RXCFG,
2442 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2443 else
2444 REG_WRITE(ah, AR_RXCFG,
2445 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302446
2447 REGWRITE_BUFFER_FLUSH(ah);
2448 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302449}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002450EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302451
Sujithcbe61d82009-02-09 13:27:12 +05302452bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302453{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302454 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2455 return false;
2456
2457 ath9k_hw_init_pll(ah, NULL);
2458 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302459}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002460EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302461
Sujithcbe61d82009-02-09 13:27:12 +05302462bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302463{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002464 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302465 return false;
2466
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302467 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2468 return false;
2469
2470 ath9k_hw_init_pll(ah, NULL);
2471 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302472}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002473EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302474
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002475void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302476{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002477 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302478 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002479 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302480
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002481 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302482
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002483 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002484 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002485 channel->max_antenna_gain * 2,
2486 channel->max_power * 2,
2487 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002488 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302489}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002490EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302491
Sujithcbe61d82009-02-09 13:27:12 +05302492void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05302493{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002494 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05302495}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002496EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05302497
Sujithcbe61d82009-02-09 13:27:12 +05302498void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302499{
Sujith2660b812009-02-09 13:27:26 +05302500 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302501}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002502EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302503
Sujithcbe61d82009-02-09 13:27:12 +05302504void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302505{
2506 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2507 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2508}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002509EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302510
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002511void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302512{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002513 struct ath_common *common = ath9k_hw_common(ah);
2514
2515 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2516 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2517 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302518}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002519EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302520
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002521#define ATH9K_MAX_TSF_READ 10
2522
Sujithcbe61d82009-02-09 13:27:12 +05302523u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302524{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002525 u32 tsf_lower, tsf_upper1, tsf_upper2;
2526 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302527
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002528 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2529 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2530 tsf_lower = REG_READ(ah, AR_TSF_L32);
2531 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2532 if (tsf_upper2 == tsf_upper1)
2533 break;
2534 tsf_upper1 = tsf_upper2;
2535 }
Sujithf1dc5602008-10-29 10:16:30 +05302536
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002537 WARN_ON( i == ATH9K_MAX_TSF_READ );
2538
2539 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302540}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002541EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302542
Sujithcbe61d82009-02-09 13:27:12 +05302543void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002544{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002545 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002546 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002547}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002548EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002549
Sujithcbe61d82009-02-09 13:27:12 +05302550void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302551{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002552 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2553 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002554 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2555 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002556
Sujithf1dc5602008-10-29 10:16:30 +05302557 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002558}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002559EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560
Sujith54e4cec2009-08-07 09:45:09 +05302561void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002562{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302564 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002565 else
Sujith2660b812009-02-09 13:27:26 +05302566 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002567}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002568EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002569
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08002570/*
2571 * Extend 15-bit time stamp from rx descriptor to
2572 * a full 64-bit TSF using the current h/w TSF.
2573*/
2574u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
2575{
2576 u64 tsf;
2577
2578 tsf = ath9k_hw_gettsf64(ah);
2579 if ((tsf & 0x7fff) < rstamp)
2580 tsf -= 0x8000;
2581 return (tsf & ~0x7fff) | rstamp;
2582}
2583EXPORT_SYMBOL(ath9k_hw_extend_tsf);
2584
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002585void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002586{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002587 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302588 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002589
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002590 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302591 macmode = AR_2040_JOINED_RX_CLEAR;
2592 else
2593 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002594
Sujithf1dc5602008-10-29 10:16:30 +05302595 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002596}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302597
2598/* HW Generic timers configuration */
2599
2600static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2601{
2602 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2603 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2604 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2605 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2606 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2607 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2608 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2609 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2610 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2611 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2612 AR_NDP2_TIMER_MODE, 0x0002},
2613 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2614 AR_NDP2_TIMER_MODE, 0x0004},
2615 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2616 AR_NDP2_TIMER_MODE, 0x0008},
2617 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2618 AR_NDP2_TIMER_MODE, 0x0010},
2619 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2620 AR_NDP2_TIMER_MODE, 0x0020},
2621 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2622 AR_NDP2_TIMER_MODE, 0x0040},
2623 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2624 AR_NDP2_TIMER_MODE, 0x0080}
2625};
2626
2627/* HW generic timer primitives */
2628
2629/* compute and clear index of rightmost 1 */
2630static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2631{
2632 u32 b;
2633
2634 b = *mask;
2635 b &= (0-b);
2636 *mask &= ~b;
2637 b *= debruijn32;
2638 b >>= 27;
2639
2640 return timer_table->gen_timer_index[b];
2641}
2642
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302643u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302644{
2645 return REG_READ(ah, AR_TSF_L32);
2646}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002647EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302648
2649struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2650 void (*trigger)(void *),
2651 void (*overflow)(void *),
2652 void *arg,
2653 u8 timer_index)
2654{
2655 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2656 struct ath_gen_timer *timer;
2657
2658 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2659
2660 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002661 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2662 "Failed to allocate memory"
2663 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302664 return NULL;
2665 }
2666
2667 /* allocate a hardware generic timer slot */
2668 timer_table->timers[timer_index] = timer;
2669 timer->index = timer_index;
2670 timer->trigger = trigger;
2671 timer->overflow = overflow;
2672 timer->arg = arg;
2673
2674 return timer;
2675}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002676EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302677
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002678void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2679 struct ath_gen_timer *timer,
2680 u32 timer_next,
2681 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302682{
2683 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2684 u32 tsf;
2685
2686 BUG_ON(!timer_period);
2687
2688 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2689
2690 tsf = ath9k_hw_gettsf32(ah);
2691
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002692 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2693 "curent tsf %x period %x"
2694 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302695
2696 /*
2697 * Pull timer_next forward if the current TSF already passed it
2698 * because of software latency
2699 */
2700 if (timer_next < tsf)
2701 timer_next = tsf + timer_period;
2702
2703 /*
2704 * Program generic timer registers
2705 */
2706 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2707 timer_next);
2708 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2709 timer_period);
2710 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2711 gen_tmr_configuration[timer->index].mode_mask);
2712
2713 /* Enable both trigger and thresh interrupt masks */
2714 REG_SET_BIT(ah, AR_IMR_S5,
2715 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2716 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302717}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002718EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302719
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002720void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302721{
2722 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2723
2724 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2725 (timer->index >= ATH_MAX_GEN_TIMER)) {
2726 return;
2727 }
2728
2729 /* Clear generic timer enable bits. */
2730 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2731 gen_tmr_configuration[timer->index].mode_mask);
2732
2733 /* Disable both trigger and thresh interrupt masks */
2734 REG_CLR_BIT(ah, AR_IMR_S5,
2735 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2736 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2737
2738 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302739}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002740EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302741
2742void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2743{
2744 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2745
2746 /* free the hardware generic timer slot */
2747 timer_table->timers[timer->index] = NULL;
2748 kfree(timer);
2749}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002750EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302751
2752/*
2753 * Generic Timer Interrupts handling
2754 */
2755void ath_gen_timer_isr(struct ath_hw *ah)
2756{
2757 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2758 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002759 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302760 u32 trigger_mask, thresh_mask, index;
2761
2762 /* get hardware generic timer interrupt status */
2763 trigger_mask = ah->intr_gen_timer_trigger;
2764 thresh_mask = ah->intr_gen_timer_thresh;
2765 trigger_mask &= timer_table->timer_mask.val;
2766 thresh_mask &= timer_table->timer_mask.val;
2767
2768 trigger_mask &= ~thresh_mask;
2769
2770 while (thresh_mask) {
2771 index = rightmost_index(timer_table, &thresh_mask);
2772 timer = timer_table->timers[index];
2773 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002774 ath_print(common, ATH_DBG_HWTIMER,
2775 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302776 timer->overflow(timer->arg);
2777 }
2778
2779 while (trigger_mask) {
2780 index = rightmost_index(timer_table, &trigger_mask);
2781 timer = timer_table->timers[index];
2782 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002783 ath_print(common, ATH_DBG_HWTIMER,
2784 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302785 timer->trigger(timer->arg);
2786 }
2787}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002788EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002789
Sujith05020d22010-03-17 14:25:23 +05302790/********/
2791/* HTC */
2792/********/
2793
2794void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2795{
2796 ah->htc_reset_init = true;
2797}
2798EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2799
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002800static struct {
2801 u32 version;
2802 const char * name;
2803} ath_mac_bb_names[] = {
2804 /* Devices with external radios */
2805 { AR_SREV_VERSION_5416_PCI, "5416" },
2806 { AR_SREV_VERSION_5416_PCIE, "5418" },
2807 { AR_SREV_VERSION_9100, "9100" },
2808 { AR_SREV_VERSION_9160, "9160" },
2809 /* Single-chip solutions */
2810 { AR_SREV_VERSION_9280, "9280" },
2811 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002812 { AR_SREV_VERSION_9287, "9287" },
2813 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002814 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002815};
2816
2817/* For devices with external radios */
2818static struct {
2819 u16 version;
2820 const char * name;
2821} ath_rf_names[] = {
2822 { 0, "5133" },
2823 { AR_RAD5133_SREV_MAJOR, "5133" },
2824 { AR_RAD5122_SREV_MAJOR, "5122" },
2825 { AR_RAD2133_SREV_MAJOR, "2133" },
2826 { AR_RAD2122_SREV_MAJOR, "2122" }
2827};
2828
2829/*
2830 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2831 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002832static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002833{
2834 int i;
2835
2836 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2837 if (ath_mac_bb_names[i].version == mac_bb_version) {
2838 return ath_mac_bb_names[i].name;
2839 }
2840 }
2841
2842 return "????";
2843}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002844
2845/*
2846 * Return the RF name. "????" is returned if the RF is unknown.
2847 * Used for devices with external radios.
2848 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002849static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002850{
2851 int i;
2852
2853 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2854 if (ath_rf_names[i].version == rf_version) {
2855 return ath_rf_names[i].name;
2856 }
2857 }
2858
2859 return "????";
2860}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002861
2862void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2863{
2864 int used;
2865
2866 /* chipsets >= AR9280 are single-chip */
2867 if (AR_SREV_9280_10_OR_LATER(ah)) {
2868 used = snprintf(hw_name, len,
2869 "Atheros AR%s Rev:%x",
2870 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2871 ah->hw_version.macRev);
2872 }
2873 else {
2874 used = snprintf(hw_name, len,
2875 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2876 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2877 ah->hw_version.macRev,
2878 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2879 AR_RADIO_SREV_MAJOR)),
2880 ah->hw_version.phyRev);
2881 }
2882
2883 hw_name[used] = '\0';
2884}
2885EXPORT_SYMBOL(ath9k_hw_name);