blob: 66b4a2acafdaafae85a381fab345c0f5aa450655 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04002 * Copyright (c) 2008-2010 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070019#include <asm/unaligned.h>
20
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070021#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040022#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070023#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040024#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070025
Sujithcbe61d82009-02-09 13:27:12 +053026static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040028MODULE_AUTHOR("Atheros Communications");
29MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31MODULE_LICENSE("Dual BSD/GPL");
32
33static int __init ath9k_init(void)
34{
35 return 0;
36}
37module_init(ath9k_init);
38
39static void __exit ath9k_exit(void)
40{
41 return;
42}
43module_exit(ath9k_exit);
44
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040045/* Private hardware callbacks */
46
47static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
48{
49 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
50}
51
52static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
55}
56
57static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
58{
59 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
60
61 return priv_ops->macversion_supported(ah->hw_version.macVersion);
62}
63
Luis R. Rodriguez64773962010-04-15 17:38:17 -040064static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
65 struct ath9k_channel *chan)
66{
67 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
68}
69
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040070static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
71{
72 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
73 return;
74
75 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
76}
77
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040078static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
79{
80 /* You will not have this callback if using the old ANI */
81 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
82 return;
83
84 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
85}
86
Sujithf1dc5602008-10-29 10:16:30 +053087/********************/
88/* Helper Functions */
89/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020091static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053092{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070093 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020094 struct ath_common *common = ath9k_hw_common(ah);
95 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053096
Sujith2660b812009-02-09 13:27:26 +053097 if (!ah->curchan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020098 clockrate = ATH9K_CLOCK_RATE_CCK;
99 else if (conf->channel->band == IEEE80211_BAND_2GHZ)
100 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
101 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
102 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -0400103 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200104 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
105
106 if (conf_is_ht40(conf))
107 clockrate *= 2;
108
109 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530110}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700111
Sujithcbe61d82009-02-09 13:27:12 +0530112static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530113{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200114 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +0530115
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200116 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530117}
118
Sujith0caa7b12009-02-16 13:23:20 +0530119bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120{
121 int i;
122
Sujith0caa7b12009-02-16 13:23:20 +0530123 BUG_ON(timeout < AH_TIME_QUANTUM);
124
125 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126 if ((REG_READ(ah, reg) & mask) == val)
127 return true;
128
129 udelay(AH_TIME_QUANTUM);
130 }
Sujith04bd46382008-11-28 22:18:05 +0530131
Joe Perches226afe62010-12-02 19:12:37 -0800132 ath_dbg(ath9k_hw_common(ah), ATH_DBG_ANY,
133 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
134 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136 return false;
137}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400138EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700140u32 ath9k_hw_reverse_bits(u32 val, u32 n)
141{
142 u32 retval;
143 int i;
144
145 for (i = 0, retval = 0; i < n; i++) {
146 retval = (retval << 1) | (val & 1);
147 val >>= 1;
148 }
149 return retval;
150}
151
Sujithcbe61d82009-02-09 13:27:12 +0530152bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530153 u16 flags, u16 *low,
154 u16 *high)
155{
Sujith2660b812009-02-09 13:27:26 +0530156 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530157
158 if (flags & CHANNEL_5GHZ) {
159 *low = pCap->low_5ghz_chan;
160 *high = pCap->high_5ghz_chan;
161 return true;
162 }
163 if ((flags & CHANNEL_2GHZ)) {
164 *low = pCap->low_2ghz_chan;
165 *high = pCap->high_2ghz_chan;
166 return true;
167 }
168 return false;
169}
170
Sujithcbe61d82009-02-09 13:27:12 +0530171u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100172 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530173 u32 frameLen, u16 rateix,
174 bool shortPreamble)
175{
176 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530177
178 if (kbps == 0)
179 return 0;
180
Felix Fietkau545750d2009-11-23 22:21:01 +0100181 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530183 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100184 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530185 phyTime >>= 1;
186 numBits = frameLen << 3;
187 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
188 break;
Sujith46d14a52008-11-18 09:08:13 +0530189 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530190 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530191 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
192 numBits = OFDM_PLCP_BITS + (frameLen << 3);
193 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
194 txTime = OFDM_SIFS_TIME_QUARTER
195 + OFDM_PREAMBLE_TIME_QUARTER
196 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530197 } else if (ah->curchan &&
198 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME_HALF +
203 OFDM_PREAMBLE_TIME_HALF
204 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
205 } else {
206 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
207 numBits = OFDM_PLCP_BITS + (frameLen << 3);
208 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
209 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
210 + (numSymbols * OFDM_SYMBOL_TIME);
211 }
212 break;
213 default:
Joe Perches38002762010-12-02 19:12:36 -0800214 ath_err(ath9k_hw_common(ah),
215 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530216 txTime = 0;
217 break;
218 }
219
220 return txTime;
221}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400222EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530223
Sujithcbe61d82009-02-09 13:27:12 +0530224void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530225 struct ath9k_channel *chan,
226 struct chan_centers *centers)
227{
228 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530229
230 if (!IS_CHAN_HT40(chan)) {
231 centers->ctl_center = centers->ext_center =
232 centers->synth_center = chan->channel;
233 return;
234 }
235
236 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
237 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
238 centers->synth_center =
239 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
240 extoff = 1;
241 } else {
242 centers->synth_center =
243 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
244 extoff = -1;
245 }
246
247 centers->ctl_center =
248 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700249 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530250 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700251 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530252}
253
254/******************/
255/* Chip Revisions */
256/******************/
257
Sujithcbe61d82009-02-09 13:27:12 +0530258static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530259{
260 u32 val;
261
262 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
263
264 if (val == 0xFF) {
265 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530266 ah->hw_version.macVersion =
267 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
268 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530269 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530270 } else {
271 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530272 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530273
Sujithd535a422009-02-09 13:27:06 +0530274 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530275
Sujithd535a422009-02-09 13:27:06 +0530276 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530277 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530278 }
279}
280
Sujithf1dc5602008-10-29 10:16:30 +0530281/************************************/
282/* HW Attach, Detach, Init Routines */
283/************************************/
284
Sujithcbe61d82009-02-09 13:27:12 +0530285static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530286{
Sujithfeed0292009-01-29 11:37:35 +0530287 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530288 return;
289
Sujith7d0d0df2010-04-16 11:53:57 +0530290 ENABLE_REGWRITE_BUFFER(ah);
291
Sujithf1dc5602008-10-29 10:16:30 +0530292 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
296 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
297 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
298 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
299 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
300 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
301
302 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujith7d0d0df2010-04-16 11:53:57 +0530303
304 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530305}
306
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400307/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530308static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530309{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700310 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400311 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530312 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800313 static const u32 patternData[4] = {
314 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
315 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400316 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530317
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400318 if (!AR_SREV_9300_20_OR_LATER(ah)) {
319 loop_max = 2;
320 regAddr[1] = AR_PHY_BASE + (8 << 2);
321 } else
322 loop_max = 1;
323
324 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530325 u32 addr = regAddr[i];
326 u32 wrData, rdData;
327
328 regHold[i] = REG_READ(ah, addr);
329 for (j = 0; j < 0x100; j++) {
330 wrData = (j << 16) | j;
331 REG_WRITE(ah, addr, wrData);
332 rdData = REG_READ(ah, addr);
333 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800334 ath_err(common,
335 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
336 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530337 return false;
338 }
339 }
340 for (j = 0; j < 4; j++) {
341 wrData = patternData[j];
342 REG_WRITE(ah, addr, wrData);
343 rdData = REG_READ(ah, addr);
344 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800345 ath_err(common,
346 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
347 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530348 return false;
349 }
350 }
351 REG_WRITE(ah, regAddr[i], regHold[i]);
352 }
353 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530354
Sujithf1dc5602008-10-29 10:16:30 +0530355 return true;
356}
357
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700358static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700359{
360 int i;
361
Sujith2660b812009-02-09 13:27:26 +0530362 ah->config.dma_beacon_response_time = 2;
363 ah->config.sw_beacon_response_time = 10;
364 ah->config.additional_swba_backoff = 0;
365 ah->config.ack_6mb = 0x0;
366 ah->config.cwm_ignore_extcca = 0;
367 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530368 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530369 ah->config.pcie_waen = 0;
370 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400371 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700372
373 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530374 ah->config.spurchans[i][0] = AR_NO_SPUR;
375 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700376 }
377
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500378 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
379 ah->config.ht_enable = 1;
380 else
381 ah->config.ht_enable = 0;
382
Sujith0ce024c2009-12-14 14:57:00 +0530383 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400384 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400385
386 /*
387 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
388 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
389 * This means we use it for all AR5416 devices, and the few
390 * minor PCI AR9280 devices out there.
391 *
392 * Serialization is required because these devices do not handle
393 * well the case of two concurrent reads/writes due to the latency
394 * involved. During one read/write another read/write can be issued
395 * on another CPU while the previous read/write may still be working
396 * on our hardware, if we hit this case the hardware poops in a loop.
397 * We prevent this by serializing reads and writes.
398 *
399 * This issue is not present on PCI-Express devices or pre-AR5416
400 * devices (legacy, 802.11abg).
401 */
402 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700403 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404}
405
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700406static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700408 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
409
410 regulatory->country_code = CTRY_DEFAULT;
411 regulatory->power_limit = MAX_RATE_POWER;
412 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
413
Sujithd535a422009-02-09 13:27:06 +0530414 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530415 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416
Sujith2660b812009-02-09 13:27:26 +0530417 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200418 ah->sta_id1_defaults =
419 AR_STA_ID1_CRPT_MIC_ENABLE |
420 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530421 ah->beacon_interval = 100;
422 ah->enable_32kHz_clock = DONT_USE_32KHZ;
423 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530424 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200425 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426}
427
Sujithcbe61d82009-02-09 13:27:12 +0530428static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700430 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530431 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530433 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800434 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435
Sujithf1dc5602008-10-29 10:16:30 +0530436 sum = 0;
437 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400438 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530439 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700440 common->macaddr[2 * i] = eeval >> 8;
441 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 }
Sujithd8baa932009-03-30 15:28:25 +0530443 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530444 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446 return 0;
447}
448
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700449static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450{
451 int ecode;
452
Sujith527d4852010-03-17 14:25:16 +0530453 if (!AR_SREV_9271(ah)) {
454 if (!ath9k_hw_chip_test(ah))
455 return -ENODEV;
456 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400458 if (!AR_SREV_9300_20_OR_LATER(ah)) {
459 ecode = ar9002_hw_rf_claim(ah);
460 if (ecode != 0)
461 return ecode;
462 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700463
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700464 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465 if (ecode != 0)
466 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530467
Joe Perches226afe62010-12-02 19:12:37 -0800468 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
469 "Eeprom VER: %d, REV: %d\n",
470 ah->eep_ops->get_eeprom_ver(ah),
471 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530472
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400473 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
474 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800475 ath_err(ath9k_hw_common(ah),
476 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530477 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400478 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400479 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480
481 if (!AR_SREV_9100(ah)) {
482 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700483 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484 }
Sujithf1dc5602008-10-29 10:16:30 +0530485
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486 return 0;
487}
488
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400489static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700490{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400491 if (AR_SREV_9300_20_OR_LATER(ah))
492 ar9003_hw_attach_ops(ah);
493 else
494 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700495}
496
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400497/* Called for all hardware families */
498static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700499{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700500 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700501 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700502
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400503 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
504 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700505
506 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800507 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700508 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509 }
510
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400511 ath9k_hw_init_defaults(ah);
512 ath9k_hw_init_config(ah);
513
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400514 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400515
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700516 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800517 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700518 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700519 }
520
521 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
522 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400523 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
524 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700525 ah->config.serialize_regmode =
526 SER_REG_MODE_ON;
527 } else {
528 ah->config.serialize_regmode =
529 SER_REG_MODE_OFF;
530 }
531 }
532
Joe Perches226afe62010-12-02 19:12:37 -0800533 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700534 ah->config.serialize_regmode);
535
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500536 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
537 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
538 else
539 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
540
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400541 if (!ath9k_hw_macversion_supported(ah)) {
Joe Perches38002762010-12-02 19:12:36 -0800542 ath_err(common,
543 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
544 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700545 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700546 }
547
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400548 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400549 ah->is_pciexpress = false;
550
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700551 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700552 ath9k_hw_init_cal_settings(ah);
553
554 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200555 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400557 if (!AR_SREV_9300_20_OR_LATER(ah))
558 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700559
560 ath9k_hw_init_mode_regs(ah);
561
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400562 /*
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400563 * Read back AR_WA into a permanent copy and set bits 14 and 17.
564 * We need to do this to avoid RMW of this register. We cannot
565 * read the reg when chip is asleep.
566 */
567 ah->WARegVal = REG_READ(ah, AR_WA);
568 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
569 AR_WA_ASPM_TIMER_BASED_DISABLE);
570
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571 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) {
Joe Perches38002762010-12-02 19:12:36 -0800590 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700591 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592 }
593
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400594 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530595 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596 else
Sujith2660b812009-02-09 13:27:26 +0530597 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400599 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400601 common->state = ATH_HW_INITIALIZED;
602
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700603 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604}
605
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400606int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530607{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400608 int ret;
609 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530610
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400611 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
612 switch (ah->hw_version.devid) {
613 case AR5416_DEVID_PCI:
614 case AR5416_DEVID_PCIE:
615 case AR5416_AR9100_DEVID:
616 case AR9160_DEVID_PCI:
617 case AR9280_DEVID_PCI:
618 case AR9280_DEVID_PCIE:
619 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400620 case AR9287_DEVID_PCI:
621 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400622 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400623 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800624 case AR9300_DEVID_AR9485_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400625 break;
626 default:
627 if (common->bus_ops->ath_bus_type == ATH_USB)
628 break;
Joe Perches38002762010-12-02 19:12:36 -0800629 ath_err(common, "Hardware device ID 0x%04x not supported\n",
630 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400631 return -EOPNOTSUPP;
632 }
Sujithf1dc5602008-10-29 10:16:30 +0530633
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400634 ret = __ath9k_hw_init(ah);
635 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800636 ath_err(common,
637 "Unable to initialize hardware; initialization status: %d\n",
638 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400639 return ret;
640 }
Sujithf1dc5602008-10-29 10:16:30 +0530641
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400642 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530643}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400644EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530645
Sujithcbe61d82009-02-09 13:27:12 +0530646static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530647{
Sujith7d0d0df2010-04-16 11:53:57 +0530648 ENABLE_REGWRITE_BUFFER(ah);
649
Sujithf1dc5602008-10-29 10:16:30 +0530650 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
651 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
652
653 REG_WRITE(ah, AR_QOS_NO_ACK,
654 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
655 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
656 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
657
658 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
659 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
660 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
661 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
662 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530663
664 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530665}
666
Sujithcbe61d82009-02-09 13:27:12 +0530667static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530668 struct ath9k_channel *chan)
669{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400670 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530671
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100672 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530673
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400674 /* Switch the core clock for ar9271 to 117Mhz */
675 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530676 udelay(500);
677 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400678 }
679
Sujithf1dc5602008-10-29 10:16:30 +0530680 udelay(RTC_PLL_SETTLE_DELAY);
681
682 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
683}
684
Sujithcbe61d82009-02-09 13:27:12 +0530685static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800686 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530687{
Pavel Roskin152d5302010-03-31 18:05:37 -0400688 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530689 AR_IMR_TXURN |
690 AR_IMR_RXERR |
691 AR_IMR_RXORN |
692 AR_IMR_BCNMISC;
693
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400694 if (AR_SREV_9300_20_OR_LATER(ah)) {
695 imr_reg |= AR_IMR_RXOK_HP;
696 if (ah->config.rx_intr_mitigation)
697 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
698 else
699 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530700
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400701 } else {
702 if (ah->config.rx_intr_mitigation)
703 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
704 else
705 imr_reg |= AR_IMR_RXOK;
706 }
707
708 if (ah->config.tx_intr_mitigation)
709 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
710 else
711 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530712
Colin McCabed97809d2008-12-01 13:38:55 -0800713 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400714 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530715
Sujith7d0d0df2010-04-16 11:53:57 +0530716 ENABLE_REGWRITE_BUFFER(ah);
717
Pavel Roskin152d5302010-03-31 18:05:37 -0400718 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500719 ah->imrs2_reg |= AR_IMR_S2_GTT;
720 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530721
722 if (!AR_SREV_9100(ah)) {
723 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
724 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
725 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
726 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400727
Sujith7d0d0df2010-04-16 11:53:57 +0530728 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530729
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400730 if (AR_SREV_9300_20_OR_LATER(ah)) {
731 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
732 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
733 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
734 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
735 }
Sujithf1dc5602008-10-29 10:16:30 +0530736}
737
Felix Fietkau0005baf2010-01-15 02:33:40 +0100738static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530739{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100740 u32 val = ath9k_hw_mac_to_clks(ah, us);
741 val = min(val, (u32) 0xFFFF);
742 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530743}
744
Felix Fietkau0005baf2010-01-15 02:33:40 +0100745static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530746{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100747 u32 val = ath9k_hw_mac_to_clks(ah, us);
748 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
749 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
750}
751
752static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
753{
754 u32 val = ath9k_hw_mac_to_clks(ah, us);
755 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
756 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530757}
758
Sujithcbe61d82009-02-09 13:27:12 +0530759static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530760{
Sujithf1dc5602008-10-29 10:16:30 +0530761 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800762 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
763 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530764 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530765 return false;
766 } else {
767 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530768 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530769 return true;
770 }
771}
772
Felix Fietkau0005baf2010-01-15 02:33:40 +0100773void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530774{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100775 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
776 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100777 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100778 int sifstime;
779
Joe Perches226afe62010-12-02 19:12:37 -0800780 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
781 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530782
Sujith2660b812009-02-09 13:27:26 +0530783 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530784 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530785 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100786
787 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
788 sifstime = 16;
789 else
790 sifstime = 10;
791
Felix Fietkaue239d852010-01-15 02:34:58 +0100792 /* As defined by IEEE 802.11-2007 17.3.8.6 */
793 slottime = ah->slottime + 3 * ah->coverage_class;
794 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100795
796 /*
797 * Workaround for early ACK timeouts, add an offset to match the
798 * initval's 64us ack timeout value.
799 * This was initially only meant to work around an issue with delayed
800 * BA frames in some implementations, but it has been found to fix ACK
801 * timeout issues in other cases as well.
802 */
803 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
804 acktimeout += 64 - sifstime - ah->slottime;
805
Felix Fietkaue239d852010-01-15 02:34:58 +0100806 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100807 ath9k_hw_set_ack_timeout(ah, acktimeout);
808 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530809 if (ah->globaltxtimeout != (u32) -1)
810 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530811}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100812EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530813
Sujith285f2dd2010-01-08 10:36:07 +0530814void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400816 struct ath_common *common = ath9k_hw_common(ah);
817
Sujith736b3a22010-03-17 14:25:24 +0530818 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400819 goto free_hw;
820
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700821 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400822
823free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400824 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700825}
Sujith285f2dd2010-01-08 10:36:07 +0530826EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827
Sujithf1dc5602008-10-29 10:16:30 +0530828/*******/
829/* INI */
830/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400832u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400833{
834 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
835
836 if (IS_CHAN_B(chan))
837 ctl |= CTL_11B;
838 else if (IS_CHAN_G(chan))
839 ctl |= CTL_11G;
840 else
841 ctl |= CTL_11A;
842
843 return ctl;
844}
845
Sujithf1dc5602008-10-29 10:16:30 +0530846/****************************************/
847/* Reset and Channel Switching Routines */
848/****************************************/
849
Sujithcbe61d82009-02-09 13:27:12 +0530850static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530851{
Felix Fietkau57b32222010-04-15 17:39:22 -0400852 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530853 u32 regval;
854
Sujith7d0d0df2010-04-16 11:53:57 +0530855 ENABLE_REGWRITE_BUFFER(ah);
856
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400857 /*
858 * set AHB_MODE not to do cacheline prefetches
859 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400860 if (!AR_SREV_9300_20_OR_LATER(ah)) {
861 regval = REG_READ(ah, AR_AHB_MODE);
862 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
863 }
Sujithf1dc5602008-10-29 10:16:30 +0530864
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400865 /*
866 * let mac dma reads be in 128 byte chunks
867 */
Sujithf1dc5602008-10-29 10:16:30 +0530868 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
869 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
870
Sujith7d0d0df2010-04-16 11:53:57 +0530871 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530872
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400873 /*
874 * Restore TX Trigger Level to its pre-reset value.
875 * The initial value depends on whether aggregation is enabled, and is
876 * adjusted whenever underruns are detected.
877 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400878 if (!AR_SREV_9300_20_OR_LATER(ah))
879 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530880
Sujith7d0d0df2010-04-16 11:53:57 +0530881 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530882
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400883 /*
884 * let mac dma writes be in 128 byte chunks
885 */
Sujithf1dc5602008-10-29 10:16:30 +0530886 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
887 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
888
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400889 /*
890 * Setup receive FIFO threshold to hold off TX activities
891 */
Sujithf1dc5602008-10-29 10:16:30 +0530892 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
893
Felix Fietkau57b32222010-04-15 17:39:22 -0400894 if (AR_SREV_9300_20_OR_LATER(ah)) {
895 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
896 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
897
898 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
899 ah->caps.rx_status_len);
900 }
901
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400902 /*
903 * reduce the number of usable entries in PCU TXBUF to avoid
904 * wrap around issues.
905 */
Sujithf1dc5602008-10-29 10:16:30 +0530906 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400907 /* For AR9285 the number of Fifos are reduced to half.
908 * So set the usable tx buf size also to half to
909 * avoid data/delimiter underruns
910 */
Sujithf1dc5602008-10-29 10:16:30 +0530911 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
912 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400913 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530914 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
915 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
916 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400917
Sujith7d0d0df2010-04-16 11:53:57 +0530918 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530919
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400920 if (AR_SREV_9300_20_OR_LATER(ah))
921 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530922}
923
Sujithcbe61d82009-02-09 13:27:12 +0530924static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530925{
926 u32 val;
927
928 val = REG_READ(ah, AR_STA_ID1);
929 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
930 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800931 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530932 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
933 | AR_STA_ID1_KSRCH_MODE);
934 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
935 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800936 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400937 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530938 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
939 | AR_STA_ID1_KSRCH_MODE);
940 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
941 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800942 case NL80211_IFTYPE_STATION:
Sujithf1dc5602008-10-29 10:16:30 +0530943 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
944 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530945 default:
946 if (ah->is_monitoring)
947 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
948 break;
Sujithf1dc5602008-10-29 10:16:30 +0530949 }
950}
951
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400952void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
953 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700954{
955 u32 coef_exp, coef_man;
956
957 for (coef_exp = 31; coef_exp > 0; coef_exp--)
958 if ((coef_scaled >> coef_exp) & 0x1)
959 break;
960
961 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
962
963 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
964
965 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
966 *coef_exponent = coef_exp - 16;
967}
968
Sujithcbe61d82009-02-09 13:27:12 +0530969static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530970{
971 u32 rst_flags;
972 u32 tmpReg;
973
Sujith70768492009-02-16 13:23:12 +0530974 if (AR_SREV_9100(ah)) {
975 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
976 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
977 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
978 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
979 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
980 }
981
Sujith7d0d0df2010-04-16 11:53:57 +0530982 ENABLE_REGWRITE_BUFFER(ah);
983
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400984 if (AR_SREV_9300_20_OR_LATER(ah)) {
985 REG_WRITE(ah, AR_WA, ah->WARegVal);
986 udelay(10);
987 }
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);
Sujith7d0d0df2010-04-16 11:53:57 +05301019
Sujithf1dc5602008-10-29 10:16:30 +05301020 udelay(50);
1021
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001022 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301023 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001024 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1025 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301026 return false;
1027 }
1028
1029 if (!AR_SREV_9100(ah))
1030 REG_WRITE(ah, AR_RC, 0);
1031
Sujithf1dc5602008-10-29 10:16:30 +05301032 if (AR_SREV_9100(ah))
1033 udelay(50);
1034
1035 return true;
1036}
1037
Sujithcbe61d82009-02-09 13:27:12 +05301038static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301039{
Sujith7d0d0df2010-04-16 11:53:57 +05301040 ENABLE_REGWRITE_BUFFER(ah);
1041
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001042 if (AR_SREV_9300_20_OR_LATER(ah)) {
1043 REG_WRITE(ah, AR_WA, ah->WARegVal);
1044 udelay(10);
1045 }
1046
Sujithf1dc5602008-10-29 10:16:30 +05301047 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1048 AR_RTC_FORCE_WAKE_ON_INT);
1049
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001050 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301051 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1052
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001053 REG_WRITE(ah, AR_RTC_RESET, 0);
Luis R. Rodriguezee031112010-06-21 18:38:51 -04001054 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301055
Sujith7d0d0df2010-04-16 11:53:57 +05301056 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301057
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001058 if (!AR_SREV_9300_20_OR_LATER(ah))
1059 udelay(2);
1060
1061 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301062 REG_WRITE(ah, AR_RC, 0);
1063
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001064 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301065
1066 if (!ath9k_hw_wait(ah,
1067 AR_RTC_STATUS,
1068 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301069 AR_RTC_STATUS_ON,
1070 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001071 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1072 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301073 return false;
1074 }
1075
1076 ath9k_hw_read_revisions(ah);
1077
1078 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1079}
1080
Sujithcbe61d82009-02-09 13:27:12 +05301081static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301082{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001083 if (AR_SREV_9300_20_OR_LATER(ah)) {
1084 REG_WRITE(ah, AR_WA, ah->WARegVal);
1085 udelay(10);
1086 }
1087
Sujithf1dc5602008-10-29 10:16:30 +05301088 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1089 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1090
1091 switch (type) {
1092 case ATH9K_RESET_POWER_ON:
1093 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301094 case ATH9K_RESET_WARM:
1095 case ATH9K_RESET_COLD:
1096 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301097 default:
1098 return false;
1099 }
1100}
1101
Sujithcbe61d82009-02-09 13:27:12 +05301102static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301103 struct ath9k_channel *chan)
1104{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301105 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301106 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1107 return false;
1108 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301109 return false;
1110
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001111 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301112 return false;
1113
Sujith2660b812009-02-09 13:27:26 +05301114 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301115 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301116 ath9k_hw_set_rfmode(ah, chan);
1117
1118 return true;
1119}
1120
Sujithcbe61d82009-02-09 13:27:12 +05301121static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001122 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301123{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001124 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001125 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001126 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001127 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001128 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301129
1130 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1131 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001132 ath_dbg(common, ATH_DBG_QUEUE,
1133 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301134 return false;
1135 }
1136 }
1137
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001138 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001139 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301140 return false;
1141 }
1142
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001143 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301144
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001145 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001146 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001147 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001148 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301149 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001150 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301151
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001152 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001153 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301154 channel->max_antenna_gain * 2,
1155 channel->max_power * 2,
1156 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001157 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301158
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001159 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301160
1161 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1162 ath9k_hw_set_delta_slope(ah, chan);
1163
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001164 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301165
Sujithf1dc5602008-10-29 10:16:30 +05301166 return true;
1167}
1168
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001169bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301170{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001171 int count = 50;
1172 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301173
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001174 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001175 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301176
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001177 do {
1178 reg = REG_READ(ah, AR_OBS_BUS_1);
1179
1180 if ((reg & 0x7E7FFFEF) == 0x00702400)
1181 continue;
1182
1183 switch (reg & 0x7E000B00) {
1184 case 0x1E000000:
1185 case 0x52000B00:
1186 case 0x18000B00:
1187 continue;
1188 default:
1189 return true;
1190 }
1191 } while (count-- > 0);
1192
1193 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301194}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001195EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301196
Sujithcbe61d82009-02-09 13:27:12 +05301197int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001198 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001199{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001200 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001201 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301202 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203 u32 saveDefAntenna;
1204 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301205 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001206 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001207
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001208 ah->txchainmask = common->tx_chainmask;
1209 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001210
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001211 if (!ah->chip_fullsleep) {
1212 ath9k_hw_abortpcurecv(ah);
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001213 if (!ath9k_hw_stopdmarecv(ah)) {
Joe Perches226afe62010-12-02 19:12:37 -08001214 ath_dbg(common, ATH_DBG_XMIT,
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001215 "Failed to stop receive dma\n");
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001216 bChannelChange = false;
1217 }
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001218 }
1219
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001220 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001221 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222
Felix Fietkaud9891c72010-09-29 17:15:27 +02001223 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224 ath9k_hw_getnf(ah, curchan);
1225
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001226 ah->caldata = caldata;
1227 if (caldata &&
1228 (chan->channel != caldata->channel ||
1229 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1230 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1231 /* Operating channel changed, reset channel calibration data */
1232 memset(caldata, 0, sizeof(*caldata));
1233 ath9k_init_nfcal_hist_buffer(ah, chan);
1234 }
1235
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001236 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301237 (ah->chip_fullsleep != true) &&
1238 (ah->curchan != NULL) &&
1239 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001240 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301241 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301242 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001244 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301245 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001246 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301247 if (AR_SREV_9271(ah))
1248 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001249 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001250 }
1251 }
1252
1253 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1254 if (saveDefAntenna == 0)
1255 saveDefAntenna = 1;
1256
1257 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1258
Sujith46fe7822009-09-17 09:25:25 +05301259 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001260 if (AR_SREV_9100(ah) ||
1261 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301262 tsf = ath9k_hw_gettsf64(ah);
1263
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001264 saveLedState = REG_READ(ah, AR_CFG_LED) &
1265 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1266 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1267
1268 ath9k_hw_mark_phy_inactive(ah);
1269
Sujith05020d22010-03-17 14:25:23 +05301270 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001271 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1272 REG_WRITE(ah,
1273 AR9271_RESET_POWER_DOWN_CONTROL,
1274 AR9271_RADIO_RF_RST);
1275 udelay(50);
1276 }
1277
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001278 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001279 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001280 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001281 }
1282
Sujith05020d22010-03-17 14:25:23 +05301283 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001284 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1285 ah->htc_reset_init = false;
1286 REG_WRITE(ah,
1287 AR9271_RESET_POWER_DOWN_CONTROL,
1288 AR9271_GATE_MAC_CTL);
1289 udelay(50);
1290 }
1291
Sujith46fe7822009-09-17 09:25:25 +05301292 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001293 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301294 ath9k_hw_settsf64(ah, tsf);
1295
Felix Fietkau7a370812010-09-22 12:34:52 +02001296 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301297 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001298
Sujithe9141f72010-06-01 15:14:10 +05301299 if (!AR_SREV_9300_20_OR_LATER(ah))
1300 ar9002_hw_enable_async_fifo(ah);
1301
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001302 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001303 if (r)
1304 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001305
Felix Fietkauf860d522010-06-30 02:07:48 +02001306 /*
1307 * Some AR91xx SoC devices frequently fail to accept TSF writes
1308 * right after the chip reset. When that happens, write a new
1309 * value after the initvals have been applied, with an offset
1310 * based on measured time difference
1311 */
1312 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1313 tsf += 1500;
1314 ath9k_hw_settsf64(ah, tsf);
1315 }
1316
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001317 /* Setup MFP options for CCMP */
1318 if (AR_SREV_9280_20_OR_LATER(ah)) {
1319 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1320 * frames when constructing CCMP AAD. */
1321 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1322 0xc7ff);
1323 ah->sw_mgmt_crypto = false;
1324 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1325 /* Disable hardware crypto for management frames */
1326 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1327 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1328 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1329 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1330 ah->sw_mgmt_crypto = true;
1331 } else
1332 ah->sw_mgmt_crypto = true;
1333
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001334 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1335 ath9k_hw_set_delta_slope(ah, chan);
1336
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001337 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301338 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001339
Sujith6819d572010-04-16 11:53:56 +05301340 ath9k_hw_set_operating_mode(ah, ah->opmode);
1341
Sujith7d0d0df2010-04-16 11:53:57 +05301342 ENABLE_REGWRITE_BUFFER(ah);
1343
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001344 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1345 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 | macStaId1
1347 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301348 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301349 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301350 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001351 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001352 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001353 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001355 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1356
Sujith7d0d0df2010-04-16 11:53:57 +05301357 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301358
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001359 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001360 if (r)
1361 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001362
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001363 ath9k_hw_set_clockrate(ah);
1364
Sujith7d0d0df2010-04-16 11:53:57 +05301365 ENABLE_REGWRITE_BUFFER(ah);
1366
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001367 for (i = 0; i < AR_NUM_DCU; i++)
1368 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1369
Sujith7d0d0df2010-04-16 11:53:57 +05301370 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301371
Sujith2660b812009-02-09 13:27:26 +05301372 ah->intr_txqs = 0;
1373 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374 ath9k_hw_resettxqueue(ah, i);
1375
Sujith2660b812009-02-09 13:27:26 +05301376 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001377 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378 ath9k_hw_init_qos(ah);
1379
Sujith2660b812009-02-09 13:27:26 +05301380 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301381 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301382
Felix Fietkau0005baf2010-01-15 02:33:40 +01001383 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001384
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001385 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301386 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001387 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301388 }
1389
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001390 REG_WRITE(ah, AR_STA_ID1,
1391 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1392
1393 ath9k_hw_set_dma(ah);
1394
1395 REG_WRITE(ah, AR_OBS, 8);
1396
Sujith0ce024c2009-12-14 14:57:00 +05301397 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1399 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1400 }
1401
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001402 if (ah->config.tx_intr_mitigation) {
1403 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1404 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1405 }
1406
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001407 ath9k_hw_init_bb(ah, chan);
1408
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001409 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001410 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001411
Sujith7d0d0df2010-04-16 11:53:57 +05301412 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001413
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001414 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001415 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1416
Sujith7d0d0df2010-04-16 11:53:57 +05301417 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301418
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001419 /*
1420 * For big endian systems turn on swapping for descriptors
1421 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 if (AR_SREV_9100(ah)) {
1423 u32 mask;
1424 mask = REG_READ(ah, AR_CFG);
1425 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001426 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301427 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428 } else {
1429 mask =
1430 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1431 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001432 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301433 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001434 }
1435 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301436 if (common->bus_ops->ath_bus_type == ATH_USB) {
1437 /* Configure AR9271 target WLAN */
1438 if (AR_SREV_9271(ah))
1439 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1440 else
1441 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1442 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001443#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001444 else
1445 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001446#endif
1447 }
1448
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001449 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301450 ath9k_hw_btcoex_enable(ah);
1451
Felix Fietkau00c86592010-07-30 21:02:09 +02001452 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001453 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001454
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001455 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001456}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001457EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001458
Sujithf1dc5602008-10-29 10:16:30 +05301459/******************************/
1460/* Power Management (Chipset) */
1461/******************************/
1462
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001463/*
1464 * Notify Power Mgt is disabled in self-generated frames.
1465 * If requested, force chip to sleep.
1466 */
Sujithcbe61d82009-02-09 13:27:12 +05301467static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301468{
1469 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1470 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001471 /*
1472 * Clear the RTC force wake bit to allow the
1473 * mac to go to sleep.
1474 */
Sujithf1dc5602008-10-29 10:16:30 +05301475 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1476 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001477 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301478 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1479
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001480 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301481 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301482 REG_CLR_BIT(ah, (AR_RTC_RESET),
1483 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301484 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001485
1486 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1487 if (AR_SREV_9300_20_OR_LATER(ah))
1488 REG_WRITE(ah, AR_WA,
1489 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490}
1491
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001492/*
1493 * Notify Power Management is enabled in self-generating
1494 * frames. If request, set power mode of chip to
1495 * auto/normal. Duration in units of 128us (1/8 TU).
1496 */
Sujithcbe61d82009-02-09 13:27:12 +05301497static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001498{
Sujithf1dc5602008-10-29 10:16:30 +05301499 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1500 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301501 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001502
Sujithf1dc5602008-10-29 10:16:30 +05301503 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001504 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301505 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1506 AR_RTC_FORCE_WAKE_ON_INT);
1507 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001508 /*
1509 * Clear the RTC force wake bit to allow the
1510 * mac to go to sleep.
1511 */
Sujithf1dc5602008-10-29 10:16:30 +05301512 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1513 AR_RTC_FORCE_WAKE_EN);
1514 }
1515 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001516
1517 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1518 if (AR_SREV_9300_20_OR_LATER(ah))
1519 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301520}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001521
Sujithcbe61d82009-02-09 13:27:12 +05301522static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301523{
1524 u32 val;
1525 int i;
1526
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001527 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1528 if (AR_SREV_9300_20_OR_LATER(ah)) {
1529 REG_WRITE(ah, AR_WA, ah->WARegVal);
1530 udelay(10);
1531 }
1532
Sujithf1dc5602008-10-29 10:16:30 +05301533 if (setChip) {
1534 if ((REG_READ(ah, AR_RTC_STATUS) &
1535 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1536 if (ath9k_hw_set_reset_reg(ah,
1537 ATH9K_RESET_POWER_ON) != true) {
1538 return false;
1539 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001540 if (!AR_SREV_9300_20_OR_LATER(ah))
1541 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301542 }
1543 if (AR_SREV_9100(ah))
1544 REG_SET_BIT(ah, AR_RTC_RESET,
1545 AR_RTC_RESET_EN);
1546
1547 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1548 AR_RTC_FORCE_WAKE_EN);
1549 udelay(50);
1550
1551 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1552 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1553 if (val == AR_RTC_STATUS_ON)
1554 break;
1555 udelay(50);
1556 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1557 AR_RTC_FORCE_WAKE_EN);
1558 }
1559 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001560 ath_err(ath9k_hw_common(ah),
1561 "Failed to wakeup in %uus\n",
1562 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301563 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001564 }
1565 }
1566
Sujithf1dc5602008-10-29 10:16:30 +05301567 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1568
1569 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001570}
1571
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001572bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301573{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001574 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301575 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301576 static const char *modes[] = {
1577 "AWAKE",
1578 "FULL-SLEEP",
1579 "NETWORK SLEEP",
1580 "UNDEFINED"
1581 };
Sujithf1dc5602008-10-29 10:16:30 +05301582
Gabor Juhoscbdec972009-07-24 17:27:22 +02001583 if (ah->power_mode == mode)
1584 return status;
1585
Joe Perches226afe62010-12-02 19:12:37 -08001586 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1587 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301588
1589 switch (mode) {
1590 case ATH9K_PM_AWAKE:
1591 status = ath9k_hw_set_power_awake(ah, setChip);
1592 break;
1593 case ATH9K_PM_FULL_SLEEP:
1594 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301595 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301596 break;
1597 case ATH9K_PM_NETWORK_SLEEP:
1598 ath9k_set_power_network_sleep(ah, setChip);
1599 break;
1600 default:
Joe Perches38002762010-12-02 19:12:36 -08001601 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301602 return false;
1603 }
Sujith2660b812009-02-09 13:27:26 +05301604 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301605
1606 return status;
1607}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001608EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301609
Sujithf1dc5602008-10-29 10:16:30 +05301610/*******************/
1611/* Beacon Handling */
1612/*******************/
1613
Sujithcbe61d82009-02-09 13:27:12 +05301614void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001615{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001616 int flags = 0;
1617
Sujith2660b812009-02-09 13:27:26 +05301618 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001619
Sujith7d0d0df2010-04-16 11:53:57 +05301620 ENABLE_REGWRITE_BUFFER(ah);
1621
Sujith2660b812009-02-09 13:27:26 +05301622 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001623 case NL80211_IFTYPE_STATION:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001624 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1625 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1626 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1627 flags |= AR_TBTT_TIMER_EN;
1628 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001629 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001630 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001631 REG_SET_BIT(ah, AR_TXCFG,
1632 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1633 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1634 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301635 (ah->atim_window ? ah->
1636 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001637 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001638 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1640 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1641 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301642 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301643 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001644 REG_WRITE(ah, AR_NEXT_SWBA,
1645 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301646 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301647 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001648 flags |=
1649 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1650 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001651 default:
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301652 if (ah->is_monitoring) {
1653 REG_WRITE(ah, AR_NEXT_TBTT_TIMER,
1654 TU_TO_USEC(next_beacon));
1655 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1656 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1657 flags |= AR_TBTT_TIMER_EN;
1658 break;
1659 }
Joe Perches226afe62010-12-02 19:12:37 -08001660 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1661 "%s: unsupported opmode: %d\n",
1662 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001663 return;
1664 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001665 }
1666
1667 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1668 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1669 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1670 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1671
Sujith7d0d0df2010-04-16 11:53:57 +05301672 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301673
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001674 beacon_period &= ~ATH9K_BEACON_ENA;
1675 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001676 ath9k_hw_reset_tsf(ah);
1677 }
1678
1679 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1680}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001681EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001682
Sujithcbe61d82009-02-09 13:27:12 +05301683void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301684 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001685{
1686 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301687 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001688 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001689
Sujith7d0d0df2010-04-16 11:53:57 +05301690 ENABLE_REGWRITE_BUFFER(ah);
1691
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001692 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1693
1694 REG_WRITE(ah, AR_BEACON_PERIOD,
1695 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1696 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1697 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1698
Sujith7d0d0df2010-04-16 11:53:57 +05301699 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301700
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001701 REG_RMW_FIELD(ah, AR_RSSI_THR,
1702 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1703
1704 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1705
1706 if (bs->bs_sleepduration > beaconintval)
1707 beaconintval = bs->bs_sleepduration;
1708
1709 dtimperiod = bs->bs_dtimperiod;
1710 if (bs->bs_sleepduration > dtimperiod)
1711 dtimperiod = bs->bs_sleepduration;
1712
1713 if (beaconintval == dtimperiod)
1714 nextTbtt = bs->bs_nextdtim;
1715 else
1716 nextTbtt = bs->bs_nexttbtt;
1717
Joe Perches226afe62010-12-02 19:12:37 -08001718 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1719 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1720 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1721 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001722
Sujith7d0d0df2010-04-16 11:53:57 +05301723 ENABLE_REGWRITE_BUFFER(ah);
1724
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001725 REG_WRITE(ah, AR_NEXT_DTIM,
1726 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1727 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1728
1729 REG_WRITE(ah, AR_SLEEP1,
1730 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1731 | AR_SLEEP1_ASSUME_DTIM);
1732
Sujith60b67f52008-08-07 10:52:38 +05301733 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001734 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1735 else
1736 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1737
1738 REG_WRITE(ah, AR_SLEEP2,
1739 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1740
1741 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1742 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1743
Sujith7d0d0df2010-04-16 11:53:57 +05301744 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301745
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001746 REG_SET_BIT(ah, AR_TIMER_MODE,
1747 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1748 AR_DTIM_TIMER_EN);
1749
Sujith4af9cf42009-02-12 10:06:47 +05301750 /* TSF Out of Range Threshold */
1751 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001752}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001753EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001754
Sujithf1dc5602008-10-29 10:16:30 +05301755/*******************/
1756/* HW Capabilities */
1757/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001759int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001760{
Sujith2660b812009-02-09 13:27:26 +05301761 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001762 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001763 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001764 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001765
Sujithf1dc5602008-10-29 10:16:30 +05301766 u16 capField = 0, eeval;
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001767 u8 ant_div_ctl1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001768
Sujithf74df6f2009-02-09 13:27:24 +05301769 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001770 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301771
Sujithf74df6f2009-02-09 13:27:24 +05301772 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001773 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301774 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001775 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301776
Sujithf74df6f2009-02-09 13:27:24 +05301777 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301778
Sujith2660b812009-02-09 13:27:26 +05301779 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301780 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001781 if (regulatory->current_rd == 0x64 ||
1782 regulatory->current_rd == 0x65)
1783 regulatory->current_rd += 5;
1784 else if (regulatory->current_rd == 0x41)
1785 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001786 ath_dbg(common, ATH_DBG_REGULATORY,
1787 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001788 }
Sujithdc2222a2008-08-14 13:26:55 +05301789
Sujithf74df6f2009-02-09 13:27:24 +05301790 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001791 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001792 ath_err(common,
1793 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001794 return -EINVAL;
1795 }
1796
Felix Fietkaud4659912010-10-14 16:02:39 +02001797 if (eeval & AR5416_OPFLAGS_11A)
1798 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001799
Felix Fietkaud4659912010-10-14 16:02:39 +02001800 if (eeval & AR5416_OPFLAGS_11G)
1801 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301802
Sujithf74df6f2009-02-09 13:27:24 +05301803 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001804 /*
1805 * For AR9271 we will temporarilly uses the rx chainmax as read from
1806 * the EEPROM.
1807 */
Sujith8147f5d2009-02-20 15:13:23 +05301808 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001809 !(eeval & AR5416_OPFLAGS_11A) &&
1810 !(AR_SREV_9271(ah)))
1811 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301812 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
1813 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001814 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301815 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301816
Felix Fietkau7a370812010-09-22 12:34:52 +02001817 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301818
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001819 /* enable key search for every frame in an aggregate */
1820 if (AR_SREV_9300_20_OR_LATER(ah))
1821 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1822
Sujithf1dc5602008-10-29 10:16:30 +05301823 pCap->low_2ghz_chan = 2312;
1824 pCap->high_2ghz_chan = 2732;
1825
1826 pCap->low_5ghz_chan = 4920;
1827 pCap->high_5ghz_chan = 6100;
1828
Bruno Randolfce2220d2010-09-17 11:36:25 +09001829 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1830
Sujith2660b812009-02-09 13:27:26 +05301831 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05301832 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1833 else
1834 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1835
Sujithf1dc5602008-10-29 10:16:30 +05301836 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
1837 pCap->total_queues =
1838 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
1839 else
1840 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
1841
1842 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
1843 pCap->keycache_size =
1844 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
1845 else
1846 pCap->keycache_size = AR_KEYTABLE_SIZE;
1847
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05001848 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
1849 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
1850 else
1851 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05301852
Sujith5b5fa352010-03-17 14:25:15 +05301853 if (AR_SREV_9271(ah))
1854 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301855 else if (AR_DEVID_7010(ah))
1856 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001857 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301858 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001859 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301860 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1861 else
1862 pCap->num_gpio_pins = AR_NUM_GPIO;
1863
Sujithf1dc5602008-10-29 10:16:30 +05301864 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1865 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1866 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1867 } else {
1868 pCap->rts_aggr_limit = (8 * 1024);
1869 }
1870
1871 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
1872
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301873#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301874 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1875 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1876 ah->rfkill_gpio =
1877 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1878 ah->rfkill_polarity =
1879 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301880
1881 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1882 }
1883#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001884 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301885 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1886 else
1887 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301888
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301889 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301890 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1891 else
1892 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1893
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001894 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05301895 pCap->reg_cap =
1896 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1897 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
1898 AR_EEPROM_EEREGCAP_EN_KK_U2 |
1899 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
1900 } else {
1901 pCap->reg_cap =
1902 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1903 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
1904 }
1905
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05301906 /* Advertise midband for AR5416 with FCC midband set in eeprom */
1907 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
1908 AR_SREV_5416(ah))
1909 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05301910
1911 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05301912 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05301913 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05301914 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05301915
Vasanthakumar Thiagarajan8f5dcb12010-11-26 06:10:06 -08001916 if (AR_SREV_9280_20_OR_LATER(ah) && common->btcoex_enabled) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001917 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
1918 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301919
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301920 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001921 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1922 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301923 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001924 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301925 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301926 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001927 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301928 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001929
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001930 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08001931 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1932 if (!AR_SREV_9485(ah))
1933 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1934
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001935 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1936 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1937 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001938 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04001939 pCap->txs_len = sizeof(struct ar9003_txs);
Felix Fietkau49352502010-06-12 00:33:59 -04001940 if (ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
1941 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001942 } else {
1943 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001944 if (AR_SREV_9280_20(ah) &&
1945 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
1946 AR5416_EEP_MINOR_VER_16) ||
1947 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
1948 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001949 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04001950
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04001951 if (AR_SREV_9300_20_OR_LATER(ah))
1952 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
1953
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08001954 if (AR_SREV_9300_20_OR_LATER(ah))
1955 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
1956
Felix Fietkaua42acef2010-09-22 12:34:54 +02001957 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07001958 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
1959
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001960 if (AR_SREV_9285(ah))
1961 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
1962 ant_div_ctl1 =
1963 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
1964 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
1965 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
1966 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05301967 if (AR_SREV_9300_20_OR_LATER(ah)) {
1968 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
1969 pCap->hw_caps |= ATH9K_HW_CAP_APM;
1970 }
1971
1972
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001973
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001974 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001975}
1976
Sujithf1dc5602008-10-29 10:16:30 +05301977/****************************/
1978/* GPIO / RFKILL / Antennae */
1979/****************************/
1980
Sujithcbe61d82009-02-09 13:27:12 +05301981static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301982 u32 gpio, u32 type)
1983{
1984 int addr;
1985 u32 gpio_shift, tmp;
1986
1987 if (gpio > 11)
1988 addr = AR_GPIO_OUTPUT_MUX3;
1989 else if (gpio > 5)
1990 addr = AR_GPIO_OUTPUT_MUX2;
1991 else
1992 addr = AR_GPIO_OUTPUT_MUX1;
1993
1994 gpio_shift = (gpio % 6) * 5;
1995
1996 if (AR_SREV_9280_20_OR_LATER(ah)
1997 || (addr != AR_GPIO_OUTPUT_MUX1)) {
1998 REG_RMW(ah, addr, (type << gpio_shift),
1999 (0x1f << gpio_shift));
2000 } else {
2001 tmp = REG_READ(ah, addr);
2002 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2003 tmp &= ~(0x1f << gpio_shift);
2004 tmp |= (type << gpio_shift);
2005 REG_WRITE(ah, addr, tmp);
2006 }
2007}
2008
Sujithcbe61d82009-02-09 13:27:12 +05302009void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302010{
2011 u32 gpio_shift;
2012
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002013 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302014
Sujith88c1f4f2010-06-30 14:46:31 +05302015 if (AR_DEVID_7010(ah)) {
2016 gpio_shift = gpio;
2017 REG_RMW(ah, AR7010_GPIO_OE,
2018 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2019 (AR7010_GPIO_OE_MASK << gpio_shift));
2020 return;
2021 }
Sujithf1dc5602008-10-29 10:16:30 +05302022
Sujith88c1f4f2010-06-30 14:46:31 +05302023 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302024 REG_RMW(ah,
2025 AR_GPIO_OE_OUT,
2026 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2027 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2028}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002029EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302030
Sujithcbe61d82009-02-09 13:27:12 +05302031u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302032{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302033#define MS_REG_READ(x, y) \
2034 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2035
Sujith2660b812009-02-09 13:27:26 +05302036 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302037 return 0xffffffff;
2038
Sujith88c1f4f2010-06-30 14:46:31 +05302039 if (AR_DEVID_7010(ah)) {
2040 u32 val;
2041 val = REG_READ(ah, AR7010_GPIO_IN);
2042 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2043 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002044 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2045 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002046 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302047 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002048 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302049 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002050 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302051 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002052 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302053 return MS_REG_READ(AR928X, gpio) != 0;
2054 else
2055 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302056}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002057EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302058
Sujithcbe61d82009-02-09 13:27:12 +05302059void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302060 u32 ah_signal_type)
2061{
2062 u32 gpio_shift;
2063
Sujith88c1f4f2010-06-30 14:46:31 +05302064 if (AR_DEVID_7010(ah)) {
2065 gpio_shift = gpio;
2066 REG_RMW(ah, AR7010_GPIO_OE,
2067 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2068 (AR7010_GPIO_OE_MASK << gpio_shift));
2069 return;
2070 }
2071
Sujithf1dc5602008-10-29 10:16:30 +05302072 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302073 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302074 REG_RMW(ah,
2075 AR_GPIO_OE_OUT,
2076 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2077 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2078}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002079EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302080
Sujithcbe61d82009-02-09 13:27:12 +05302081void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302082{
Sujith88c1f4f2010-06-30 14:46:31 +05302083 if (AR_DEVID_7010(ah)) {
2084 val = val ? 0 : 1;
2085 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2086 AR_GPIO_BIT(gpio));
2087 return;
2088 }
2089
Sujith5b5fa352010-03-17 14:25:15 +05302090 if (AR_SREV_9271(ah))
2091 val = ~val;
2092
Sujithf1dc5602008-10-29 10:16:30 +05302093 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2094 AR_GPIO_BIT(gpio));
2095}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002096EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302097
Sujithcbe61d82009-02-09 13:27:12 +05302098u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302099{
2100 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2101}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002102EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302103
Sujithcbe61d82009-02-09 13:27:12 +05302104void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302105{
2106 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2107}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002108EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302109
Sujithf1dc5602008-10-29 10:16:30 +05302110/*********************/
2111/* General Operation */
2112/*********************/
2113
Sujithcbe61d82009-02-09 13:27:12 +05302114u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302115{
2116 u32 bits = REG_READ(ah, AR_RX_FILTER);
2117 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2118
2119 if (phybits & AR_PHY_ERR_RADAR)
2120 bits |= ATH9K_RX_FILTER_PHYRADAR;
2121 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2122 bits |= ATH9K_RX_FILTER_PHYERR;
2123
2124 return bits;
2125}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002126EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302127
Sujithcbe61d82009-02-09 13:27:12 +05302128void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302129{
2130 u32 phybits;
2131
Sujith7d0d0df2010-04-16 11:53:57 +05302132 ENABLE_REGWRITE_BUFFER(ah);
2133
Sujith7ea310b2009-09-03 12:08:43 +05302134 REG_WRITE(ah, AR_RX_FILTER, bits);
2135
Sujithf1dc5602008-10-29 10:16:30 +05302136 phybits = 0;
2137 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2138 phybits |= AR_PHY_ERR_RADAR;
2139 if (bits & ATH9K_RX_FILTER_PHYERR)
2140 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2141 REG_WRITE(ah, AR_PHY_ERR, phybits);
2142
2143 if (phybits)
2144 REG_WRITE(ah, AR_RXCFG,
2145 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2146 else
2147 REG_WRITE(ah, AR_RXCFG,
2148 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302149
2150 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302151}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002152EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302153
Sujithcbe61d82009-02-09 13:27:12 +05302154bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302155{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302156 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2157 return false;
2158
2159 ath9k_hw_init_pll(ah, NULL);
2160 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302161}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002162EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302163
Sujithcbe61d82009-02-09 13:27:12 +05302164bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302165{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002166 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302167 return false;
2168
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302169 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2170 return false;
2171
2172 ath9k_hw_init_pll(ah, NULL);
2173 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302174}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002175EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302176
Felix Fietkaude40f312010-10-20 03:08:53 +02002177void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302178{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002179 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302180 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002181 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302182
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002183 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302184
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002185 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002186 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002187 channel->max_antenna_gain * 2,
2188 channel->max_power * 2,
2189 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002190 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302191}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002192EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302193
Sujithcbe61d82009-02-09 13:27:12 +05302194void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302195{
Sujith2660b812009-02-09 13:27:26 +05302196 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302197}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002198EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302199
Sujithcbe61d82009-02-09 13:27:12 +05302200void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302201{
2202 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2203 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2204}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002205EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302206
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002207void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302208{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002209 struct ath_common *common = ath9k_hw_common(ah);
2210
2211 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2212 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2213 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302214}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002215EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302216
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002217#define ATH9K_MAX_TSF_READ 10
2218
Sujithcbe61d82009-02-09 13:27:12 +05302219u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302220{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002221 u32 tsf_lower, tsf_upper1, tsf_upper2;
2222 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302223
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002224 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2225 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2226 tsf_lower = REG_READ(ah, AR_TSF_L32);
2227 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2228 if (tsf_upper2 == tsf_upper1)
2229 break;
2230 tsf_upper1 = tsf_upper2;
2231 }
Sujithf1dc5602008-10-29 10:16:30 +05302232
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002233 WARN_ON( i == ATH9K_MAX_TSF_READ );
2234
2235 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302236}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002237EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302238
Sujithcbe61d82009-02-09 13:27:12 +05302239void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002240{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002241 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002242 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002243}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002244EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002245
Sujithcbe61d82009-02-09 13:27:12 +05302246void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302247{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002248 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2249 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002250 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2251 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002252
Sujithf1dc5602008-10-29 10:16:30 +05302253 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002254}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002255EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256
Sujith54e4cec2009-08-07 09:45:09 +05302257void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002258{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302260 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261 else
Sujith2660b812009-02-09 13:27:26 +05302262 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002264EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002265
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002266void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002267{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002268 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302269 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002270
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002271 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302272 macmode = AR_2040_JOINED_RX_CLEAR;
2273 else
2274 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275
Sujithf1dc5602008-10-29 10:16:30 +05302276 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302278
2279/* HW Generic timers configuration */
2280
2281static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2282{
2283 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2284 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2285 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2286 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2287 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2288 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2289 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2290 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2291 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2292 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2293 AR_NDP2_TIMER_MODE, 0x0002},
2294 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2295 AR_NDP2_TIMER_MODE, 0x0004},
2296 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2297 AR_NDP2_TIMER_MODE, 0x0008},
2298 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2299 AR_NDP2_TIMER_MODE, 0x0010},
2300 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2301 AR_NDP2_TIMER_MODE, 0x0020},
2302 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2303 AR_NDP2_TIMER_MODE, 0x0040},
2304 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2305 AR_NDP2_TIMER_MODE, 0x0080}
2306};
2307
2308/* HW generic timer primitives */
2309
2310/* compute and clear index of rightmost 1 */
2311static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2312{
2313 u32 b;
2314
2315 b = *mask;
2316 b &= (0-b);
2317 *mask &= ~b;
2318 b *= debruijn32;
2319 b >>= 27;
2320
2321 return timer_table->gen_timer_index[b];
2322}
2323
Felix Fietkau744bcb42010-10-15 20:03:33 +02002324static u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302325{
2326 return REG_READ(ah, AR_TSF_L32);
2327}
2328
2329struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2330 void (*trigger)(void *),
2331 void (*overflow)(void *),
2332 void *arg,
2333 u8 timer_index)
2334{
2335 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2336 struct ath_gen_timer *timer;
2337
2338 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2339
2340 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002341 ath_err(ath9k_hw_common(ah),
2342 "Failed to allocate memory for hw timer[%d]\n",
2343 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302344 return NULL;
2345 }
2346
2347 /* allocate a hardware generic timer slot */
2348 timer_table->timers[timer_index] = timer;
2349 timer->index = timer_index;
2350 timer->trigger = trigger;
2351 timer->overflow = overflow;
2352 timer->arg = arg;
2353
2354 return timer;
2355}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002356EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302357
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002358void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2359 struct ath_gen_timer *timer,
2360 u32 timer_next,
2361 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302362{
2363 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2364 u32 tsf;
2365
2366 BUG_ON(!timer_period);
2367
2368 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2369
2370 tsf = ath9k_hw_gettsf32(ah);
2371
Joe Perches226afe62010-12-02 19:12:37 -08002372 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2373 "current tsf %x period %x timer_next %x\n",
2374 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302375
2376 /*
2377 * Pull timer_next forward if the current TSF already passed it
2378 * because of software latency
2379 */
2380 if (timer_next < tsf)
2381 timer_next = tsf + timer_period;
2382
2383 /*
2384 * Program generic timer registers
2385 */
2386 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2387 timer_next);
2388 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2389 timer_period);
2390 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2391 gen_tmr_configuration[timer->index].mode_mask);
2392
2393 /* Enable both trigger and thresh interrupt masks */
2394 REG_SET_BIT(ah, AR_IMR_S5,
2395 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2396 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302397}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002398EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302399
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002400void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302401{
2402 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2403
2404 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2405 (timer->index >= ATH_MAX_GEN_TIMER)) {
2406 return;
2407 }
2408
2409 /* Clear generic timer enable bits. */
2410 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2411 gen_tmr_configuration[timer->index].mode_mask);
2412
2413 /* Disable both trigger and thresh interrupt masks */
2414 REG_CLR_BIT(ah, AR_IMR_S5,
2415 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2416 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2417
2418 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302419}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002420EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302421
2422void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2423{
2424 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2425
2426 /* free the hardware generic timer slot */
2427 timer_table->timers[timer->index] = NULL;
2428 kfree(timer);
2429}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002430EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302431
2432/*
2433 * Generic Timer Interrupts handling
2434 */
2435void ath_gen_timer_isr(struct ath_hw *ah)
2436{
2437 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2438 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002439 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302440 u32 trigger_mask, thresh_mask, index;
2441
2442 /* get hardware generic timer interrupt status */
2443 trigger_mask = ah->intr_gen_timer_trigger;
2444 thresh_mask = ah->intr_gen_timer_thresh;
2445 trigger_mask &= timer_table->timer_mask.val;
2446 thresh_mask &= timer_table->timer_mask.val;
2447
2448 trigger_mask &= ~thresh_mask;
2449
2450 while (thresh_mask) {
2451 index = rightmost_index(timer_table, &thresh_mask);
2452 timer = timer_table->timers[index];
2453 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002454 ath_dbg(common, ATH_DBG_HWTIMER,
2455 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302456 timer->overflow(timer->arg);
2457 }
2458
2459 while (trigger_mask) {
2460 index = rightmost_index(timer_table, &trigger_mask);
2461 timer = timer_table->timers[index];
2462 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002463 ath_dbg(common, ATH_DBG_HWTIMER,
2464 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302465 timer->trigger(timer->arg);
2466 }
2467}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002468EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002469
Sujith05020d22010-03-17 14:25:23 +05302470/********/
2471/* HTC */
2472/********/
2473
2474void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2475{
2476 ah->htc_reset_init = true;
2477}
2478EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2479
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002480static struct {
2481 u32 version;
2482 const char * name;
2483} ath_mac_bb_names[] = {
2484 /* Devices with external radios */
2485 { AR_SREV_VERSION_5416_PCI, "5416" },
2486 { AR_SREV_VERSION_5416_PCIE, "5418" },
2487 { AR_SREV_VERSION_9100, "9100" },
2488 { AR_SREV_VERSION_9160, "9160" },
2489 /* Single-chip solutions */
2490 { AR_SREV_VERSION_9280, "9280" },
2491 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002492 { AR_SREV_VERSION_9287, "9287" },
2493 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002494 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002495};
2496
2497/* For devices with external radios */
2498static struct {
2499 u16 version;
2500 const char * name;
2501} ath_rf_names[] = {
2502 { 0, "5133" },
2503 { AR_RAD5133_SREV_MAJOR, "5133" },
2504 { AR_RAD5122_SREV_MAJOR, "5122" },
2505 { AR_RAD2133_SREV_MAJOR, "2133" },
2506 { AR_RAD2122_SREV_MAJOR, "2122" }
2507};
2508
2509/*
2510 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2511 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002512static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002513{
2514 int i;
2515
2516 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2517 if (ath_mac_bb_names[i].version == mac_bb_version) {
2518 return ath_mac_bb_names[i].name;
2519 }
2520 }
2521
2522 return "????";
2523}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002524
2525/*
2526 * Return the RF name. "????" is returned if the RF is unknown.
2527 * Used for devices with external radios.
2528 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002529static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002530{
2531 int i;
2532
2533 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2534 if (ath_rf_names[i].version == rf_version) {
2535 return ath_rf_names[i].name;
2536 }
2537 }
2538
2539 return "????";
2540}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002541
2542void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2543{
2544 int used;
2545
2546 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002547 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002548 used = snprintf(hw_name, len,
2549 "Atheros AR%s Rev:%x",
2550 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2551 ah->hw_version.macRev);
2552 }
2553 else {
2554 used = snprintf(hw_name, len,
2555 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2556 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2557 ah->hw_version.macRev,
2558 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2559 AR_RADIO_SREV_MAJOR)),
2560 ah->hw_version.phyRev);
2561 }
2562
2563 hw_name[used] = '\0';
2564}
2565EXPORT_SYMBOL(ath9k_hw_name);