blob: 9840e00510842ec4467da8e4e502b09050963f89 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 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
Luis R. Rodriguez64773962010-04-15 17:38:17 -040057static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
58 struct ath9k_channel *chan)
59{
60 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
61}
62
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040063static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
64{
65 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
66 return;
67
68 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
69}
70
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040071static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
72{
73 /* You will not have this callback if using the old ANI */
74 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
75 return;
76
77 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
78}
79
Sujithf1dc5602008-10-29 10:16:30 +053080/********************/
81/* Helper Functions */
82/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070083
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020084static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053085{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070086 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020087 struct ath_common *common = ath9k_hw_common(ah);
88 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053089
Sujith2660b812009-02-09 13:27:26 +053090 if (!ah->curchan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020091 clockrate = ATH9K_CLOCK_RATE_CCK;
92 else if (conf->channel->band == IEEE80211_BAND_2GHZ)
93 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
94 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
95 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040096 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020097 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
98
99 if (conf_is_ht40(conf))
100 clockrate *= 2;
101
102 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530103}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700104
Sujithcbe61d82009-02-09 13:27:12 +0530105static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530106{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200107 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +0530108
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200109 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530110}
111
Sujith0caa7b12009-02-16 13:23:20 +0530112bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113{
114 int i;
115
Sujith0caa7b12009-02-16 13:23:20 +0530116 BUG_ON(timeout < AH_TIME_QUANTUM);
117
118 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700119 if ((REG_READ(ah, reg) & mask) == val)
120 return true;
121
122 udelay(AH_TIME_QUANTUM);
123 }
Sujith04bd46382008-11-28 22:18:05 +0530124
Joe Perches226afe62010-12-02 19:12:37 -0800125 ath_dbg(ath9k_hw_common(ah), ATH_DBG_ANY,
126 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
127 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700129 return false;
130}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400131EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700132
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100133void ath9k_hw_write_array(struct ath_hw *ah, struct ar5416IniArray *array,
134 int column, unsigned int *writecnt)
135{
136 int r;
137
138 ENABLE_REGWRITE_BUFFER(ah);
139 for (r = 0; r < array->ia_rows; r++) {
140 REG_WRITE(ah, INI_RA(array, r, 0),
141 INI_RA(array, r, column));
142 DO_DELAY(*writecnt);
143 }
144 REGWRITE_BUFFER_FLUSH(ah);
145}
146
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700147u32 ath9k_hw_reverse_bits(u32 val, u32 n)
148{
149 u32 retval;
150 int i;
151
152 for (i = 0, retval = 0; i < n; i++) {
153 retval = (retval << 1) | (val & 1);
154 val >>= 1;
155 }
156 return retval;
157}
158
Sujithcbe61d82009-02-09 13:27:12 +0530159u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100160 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530161 u32 frameLen, u16 rateix,
162 bool shortPreamble)
163{
164 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530165
166 if (kbps == 0)
167 return 0;
168
Felix Fietkau545750d2009-11-23 22:21:01 +0100169 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530170 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530171 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100172 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530173 phyTime >>= 1;
174 numBits = frameLen << 3;
175 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
176 break;
Sujith46d14a52008-11-18 09:08:13 +0530177 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530178 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530179 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
180 numBits = OFDM_PLCP_BITS + (frameLen << 3);
181 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
182 txTime = OFDM_SIFS_TIME_QUARTER
183 + OFDM_PREAMBLE_TIME_QUARTER
184 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530185 } else if (ah->curchan &&
186 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530187 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
188 numBits = OFDM_PLCP_BITS + (frameLen << 3);
189 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
190 txTime = OFDM_SIFS_TIME_HALF +
191 OFDM_PREAMBLE_TIME_HALF
192 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
193 } else {
194 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
195 numBits = OFDM_PLCP_BITS + (frameLen << 3);
196 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
197 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
198 + (numSymbols * OFDM_SYMBOL_TIME);
199 }
200 break;
201 default:
Joe Perches38002762010-12-02 19:12:36 -0800202 ath_err(ath9k_hw_common(ah),
203 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530204 txTime = 0;
205 break;
206 }
207
208 return txTime;
209}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400210EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530211
Sujithcbe61d82009-02-09 13:27:12 +0530212void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530213 struct ath9k_channel *chan,
214 struct chan_centers *centers)
215{
216 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530217
218 if (!IS_CHAN_HT40(chan)) {
219 centers->ctl_center = centers->ext_center =
220 centers->synth_center = chan->channel;
221 return;
222 }
223
224 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
225 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
226 centers->synth_center =
227 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
228 extoff = 1;
229 } else {
230 centers->synth_center =
231 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
232 extoff = -1;
233 }
234
235 centers->ctl_center =
236 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700237 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530238 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700239 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530240}
241
242/******************/
243/* Chip Revisions */
244/******************/
245
Sujithcbe61d82009-02-09 13:27:12 +0530246static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530247{
248 u32 val;
249
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530250 switch (ah->hw_version.devid) {
251 case AR5416_AR9100_DEVID:
252 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
253 break;
Gabor Juhos37625612011-06-21 11:23:23 +0200254 case AR9300_DEVID_AR9330:
255 ah->hw_version.macVersion = AR_SREV_VERSION_9330;
256 if (ah->get_mac_revision) {
257 ah->hw_version.macRev = ah->get_mac_revision();
258 } else {
259 val = REG_READ(ah, AR_SREV);
260 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
261 }
262 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530263 case AR9300_DEVID_AR9340:
264 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
265 val = REG_READ(ah, AR_SREV);
266 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
267 return;
268 }
269
Sujithf1dc5602008-10-29 10:16:30 +0530270 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
271
272 if (val == 0xFF) {
273 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530274 ah->hw_version.macVersion =
275 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
276 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530277 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530278 } else {
279 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530280 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530281
Sujithd535a422009-02-09 13:27:06 +0530282 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530283
Sujithd535a422009-02-09 13:27:06 +0530284 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530285 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530286 }
287}
288
Sujithf1dc5602008-10-29 10:16:30 +0530289/************************************/
290/* HW Attach, Detach, Init Routines */
291/************************************/
292
Sujithcbe61d82009-02-09 13:27:12 +0530293static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530294{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100295 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530296 return;
297
298 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
299 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
300 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
301 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
302 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
303 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
304 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
305 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
306 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
307
308 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
309}
310
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400311/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530312static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530313{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700314 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400315 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530316 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800317 static const u32 patternData[4] = {
318 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
319 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400320 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530321
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400322 if (!AR_SREV_9300_20_OR_LATER(ah)) {
323 loop_max = 2;
324 regAddr[1] = AR_PHY_BASE + (8 << 2);
325 } else
326 loop_max = 1;
327
328 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530329 u32 addr = regAddr[i];
330 u32 wrData, rdData;
331
332 regHold[i] = REG_READ(ah, addr);
333 for (j = 0; j < 0x100; j++) {
334 wrData = (j << 16) | j;
335 REG_WRITE(ah, addr, wrData);
336 rdData = REG_READ(ah, addr);
337 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800338 ath_err(common,
339 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
340 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530341 return false;
342 }
343 }
344 for (j = 0; j < 4; j++) {
345 wrData = patternData[j];
346 REG_WRITE(ah, addr, wrData);
347 rdData = REG_READ(ah, addr);
348 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800349 ath_err(common,
350 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
351 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530352 return false;
353 }
354 }
355 REG_WRITE(ah, regAddr[i], regHold[i]);
356 }
357 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530358
Sujithf1dc5602008-10-29 10:16:30 +0530359 return true;
360}
361
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700362static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700363{
364 int i;
365
Sujith2660b812009-02-09 13:27:26 +0530366 ah->config.dma_beacon_response_time = 2;
367 ah->config.sw_beacon_response_time = 10;
368 ah->config.additional_swba_backoff = 0;
369 ah->config.ack_6mb = 0x0;
370 ah->config.cwm_ignore_extcca = 0;
371 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530372 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530373 ah->config.pcie_waen = 0;
374 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400375 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700376
377 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530378 ah->config.spurchans[i][0] = AR_NO_SPUR;
379 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700380 }
381
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800382 /* PAPRD needs some more work to be enabled */
383 ah->config.paprd_disable = 1;
384
Sujith0ce024c2009-12-14 14:57:00 +0530385 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400386 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400387
388 /*
389 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
390 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
391 * This means we use it for all AR5416 devices, and the few
392 * minor PCI AR9280 devices out there.
393 *
394 * Serialization is required because these devices do not handle
395 * well the case of two concurrent reads/writes due to the latency
396 * involved. During one read/write another read/write can be issued
397 * on another CPU while the previous read/write may still be working
398 * on our hardware, if we hit this case the hardware poops in a loop.
399 * We prevent this by serializing reads and writes.
400 *
401 * This issue is not present on PCI-Express devices or pre-AR5416
402 * devices (legacy, 802.11abg).
403 */
404 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700405 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700406}
407
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700408static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700410 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
411
412 regulatory->country_code = CTRY_DEFAULT;
413 regulatory->power_limit = MAX_RATE_POWER;
414 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
415
Sujithd535a422009-02-09 13:27:06 +0530416 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530417 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418
Sujith2660b812009-02-09 13:27:26 +0530419 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200420 ah->sta_id1_defaults =
421 AR_STA_ID1_CRPT_MIC_ENABLE |
422 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100423 if (AR_SREV_9100(ah))
424 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith2660b812009-02-09 13:27:26 +0530425 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Felix Fietkau4357c6b2010-12-13 08:40:50 +0100426 ah->slottime = 20;
Sujith2660b812009-02-09 13:27:26 +0530427 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200428 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429}
430
Sujithcbe61d82009-02-09 13:27:12 +0530431static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700433 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530434 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530436 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800437 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438
Sujithf1dc5602008-10-29 10:16:30 +0530439 sum = 0;
440 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400441 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530442 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700443 common->macaddr[2 * i] = eeval >> 8;
444 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445 }
Sujithd8baa932009-03-30 15:28:25 +0530446 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530447 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700448
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449 return 0;
450}
451
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700452static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530454 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455 int ecode;
456
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530457 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530458 if (!ath9k_hw_chip_test(ah))
459 return -ENODEV;
460 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400462 if (!AR_SREV_9300_20_OR_LATER(ah)) {
463 ecode = ar9002_hw_rf_claim(ah);
464 if (ecode != 0)
465 return ecode;
466 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700468 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469 if (ecode != 0)
470 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530471
Joe Perches226afe62010-12-02 19:12:37 -0800472 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
473 "Eeprom VER: %d, REV: %d\n",
474 ah->eep_ops->get_eeprom_ver(ah),
475 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530476
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400477 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
478 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800479 ath_err(ath9k_hw_common(ah),
480 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530481 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400482 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400483 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484
Vasanthakumar Thiagarajan070c4d52011-04-19 19:29:05 +0530485 if (!AR_SREV_9100(ah) && !AR_SREV_9340(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700487 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488 }
Sujithf1dc5602008-10-29 10:16:30 +0530489
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490 return 0;
491}
492
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400493static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700494{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400495 if (AR_SREV_9300_20_OR_LATER(ah))
496 ar9003_hw_attach_ops(ah);
497 else
498 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700499}
500
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400501/* Called for all hardware families */
502static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700503{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700504 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700505 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700506
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530507 ath9k_hw_read_revisions(ah);
508
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530509 /*
510 * Read back AR_WA into a permanent copy and set bits 14 and 17.
511 * We need to do this to avoid RMW of this register. We cannot
512 * read the reg when chip is asleep.
513 */
514 ah->WARegVal = REG_READ(ah, AR_WA);
515 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
516 AR_WA_ASPM_TIMER_BASED_DISABLE);
517
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700518 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800519 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700520 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700521 }
522
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400523 ath9k_hw_init_defaults(ah);
524 ath9k_hw_init_config(ah);
525
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400526 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400527
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700528 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800529 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700530 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700531 }
532
533 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
534 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400535 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
536 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700537 ah->config.serialize_regmode =
538 SER_REG_MODE_ON;
539 } else {
540 ah->config.serialize_regmode =
541 SER_REG_MODE_OFF;
542 }
543 }
544
Joe Perches226afe62010-12-02 19:12:37 -0800545 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700546 ah->config.serialize_regmode);
547
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500548 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
549 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
550 else
551 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
552
Felix Fietkau6da5a722010-12-12 00:51:12 +0100553 switch (ah->hw_version.macVersion) {
554 case AR_SREV_VERSION_5416_PCI:
555 case AR_SREV_VERSION_5416_PCIE:
556 case AR_SREV_VERSION_9160:
557 case AR_SREV_VERSION_9100:
558 case AR_SREV_VERSION_9280:
559 case AR_SREV_VERSION_9285:
560 case AR_SREV_VERSION_9287:
561 case AR_SREV_VERSION_9271:
562 case AR_SREV_VERSION_9300:
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200563 case AR_SREV_VERSION_9330:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100564 case AR_SREV_VERSION_9485:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530565 case AR_SREV_VERSION_9340:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100566 break;
567 default:
Joe Perches38002762010-12-02 19:12:36 -0800568 ath_err(common,
569 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
570 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700571 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700572 }
573
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200574 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
575 AR_SREV_9330(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400576 ah->is_pciexpress = false;
577
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700578 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700579 ath9k_hw_init_cal_settings(ah);
580
581 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200582 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700583 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400584 if (!AR_SREV_9300_20_OR_LATER(ah))
585 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700586
587 ath9k_hw_init_mode_regs(ah);
588
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400589
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700590 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530591 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700592 else
593 ath9k_hw_disablepcie(ah);
594
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400595 if (!AR_SREV_9300_20_OR_LATER(ah))
596 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530597
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700598 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700600 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700601
602 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100603 r = ath9k_hw_fill_cap_info(ah);
604 if (r)
605 return r;
606
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700607 r = ath9k_hw_init_macaddr(ah);
608 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800609 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700610 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611 }
612
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400613 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530614 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 else
Sujith2660b812009-02-09 13:27:26 +0530616 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400618 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700619
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400620 common->state = ATH_HW_INITIALIZED;
621
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700622 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623}
624
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400625int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530626{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400627 int ret;
628 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530629
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400630 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
631 switch (ah->hw_version.devid) {
632 case AR5416_DEVID_PCI:
633 case AR5416_DEVID_PCIE:
634 case AR5416_AR9100_DEVID:
635 case AR9160_DEVID_PCI:
636 case AR9280_DEVID_PCI:
637 case AR9280_DEVID_PCIE:
638 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400639 case AR9287_DEVID_PCI:
640 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400641 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400642 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800643 case AR9300_DEVID_AR9485_PCIE:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530644 case AR9300_DEVID_AR9340:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400645 break;
646 default:
647 if (common->bus_ops->ath_bus_type == ATH_USB)
648 break;
Joe Perches38002762010-12-02 19:12:36 -0800649 ath_err(common, "Hardware device ID 0x%04x not supported\n",
650 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400651 return -EOPNOTSUPP;
652 }
Sujithf1dc5602008-10-29 10:16:30 +0530653
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400654 ret = __ath9k_hw_init(ah);
655 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800656 ath_err(common,
657 "Unable to initialize hardware; initialization status: %d\n",
658 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400659 return ret;
660 }
Sujithf1dc5602008-10-29 10:16:30 +0530661
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400662 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530663}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400664EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530665
Sujithcbe61d82009-02-09 13:27:12 +0530666static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530667{
Sujith7d0d0df2010-04-16 11:53:57 +0530668 ENABLE_REGWRITE_BUFFER(ah);
669
Sujithf1dc5602008-10-29 10:16:30 +0530670 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
671 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
672
673 REG_WRITE(ah, AR_QOS_NO_ACK,
674 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
675 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
676 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
677
678 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
679 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
680 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
681 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
682 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530683
684 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530685}
686
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530687u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530688{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100689 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
690 udelay(100);
691 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
692
693 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530694 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530695
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100696 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530697}
698EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
699
Sujithcbe61d82009-02-09 13:27:12 +0530700static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530701 struct ath9k_channel *chan)
702{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800703 u32 pll;
704
Vivek Natarajan22983c32011-01-27 14:45:09 +0530705 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530706
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530707 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
708 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
709 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
710 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
711 AR_CH0_DPLL2_KD, 0x40);
712 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
713 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530714
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530715 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
716 AR_CH0_BB_DPLL1_REFDIV, 0x5);
717 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
718 AR_CH0_BB_DPLL1_NINI, 0x58);
719 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
720 AR_CH0_BB_DPLL1_NFRAC, 0x0);
721
722 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
723 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
724 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
725 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
726 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
727 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
728
729 /* program BB PLL phase_shift to 0x6 */
730 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
731 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
732
733 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
734 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530735 udelay(1000);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530736 } else if (AR_SREV_9340(ah)) {
737 u32 regval, pll2_divint, pll2_divfrac, refdiv;
738
739 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
740 udelay(1000);
741
742 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
743 udelay(100);
744
745 if (ah->is_clk_25mhz) {
746 pll2_divint = 0x54;
747 pll2_divfrac = 0x1eb85;
748 refdiv = 3;
749 } else {
750 pll2_divint = 88;
751 pll2_divfrac = 0;
752 refdiv = 5;
753 }
754
755 regval = REG_READ(ah, AR_PHY_PLL_MODE);
756 regval |= (0x1 << 16);
757 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
758 udelay(100);
759
760 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
761 (pll2_divint << 18) | pll2_divfrac);
762 udelay(100);
763
764 regval = REG_READ(ah, AR_PHY_PLL_MODE);
765 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
766 (0x4 << 26) | (0x18 << 19);
767 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
768 REG_WRITE(ah, AR_PHY_PLL_MODE,
769 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
770 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530771 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800772
773 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530774
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100775 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530776
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530777 if (AR_SREV_9485(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530778 udelay(1000);
779
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400780 /* Switch the core clock for ar9271 to 117Mhz */
781 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530782 udelay(500);
783 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400784 }
785
Sujithf1dc5602008-10-29 10:16:30 +0530786 udelay(RTC_PLL_SETTLE_DELAY);
787
788 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530789
790 if (AR_SREV_9340(ah)) {
791 if (ah->is_clk_25mhz) {
792 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
793 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
794 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
795 } else {
796 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
797 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
798 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
799 }
800 udelay(100);
801 }
Sujithf1dc5602008-10-29 10:16:30 +0530802}
803
Sujithcbe61d82009-02-09 13:27:12 +0530804static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800805 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530806{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530807 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400808 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530809 AR_IMR_TXURN |
810 AR_IMR_RXERR |
811 AR_IMR_RXORN |
812 AR_IMR_BCNMISC;
813
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530814 if (AR_SREV_9340(ah))
815 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
816
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400817 if (AR_SREV_9300_20_OR_LATER(ah)) {
818 imr_reg |= AR_IMR_RXOK_HP;
819 if (ah->config.rx_intr_mitigation)
820 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
821 else
822 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530823
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400824 } else {
825 if (ah->config.rx_intr_mitigation)
826 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
827 else
828 imr_reg |= AR_IMR_RXOK;
829 }
830
831 if (ah->config.tx_intr_mitigation)
832 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
833 else
834 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530835
Colin McCabed97809d2008-12-01 13:38:55 -0800836 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400837 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530838
Sujith7d0d0df2010-04-16 11:53:57 +0530839 ENABLE_REGWRITE_BUFFER(ah);
840
Pavel Roskin152d5302010-03-31 18:05:37 -0400841 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500842 ah->imrs2_reg |= AR_IMR_S2_GTT;
843 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530844
845 if (!AR_SREV_9100(ah)) {
846 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530847 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530848 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
849 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400850
Sujith7d0d0df2010-04-16 11:53:57 +0530851 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530852
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400853 if (AR_SREV_9300_20_OR_LATER(ah)) {
854 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
855 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
856 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
857 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
858 }
Sujithf1dc5602008-10-29 10:16:30 +0530859}
860
Felix Fietkau0005baf2010-01-15 02:33:40 +0100861static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530862{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100863 u32 val = ath9k_hw_mac_to_clks(ah, us);
864 val = min(val, (u32) 0xFFFF);
865 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530866}
867
Felix Fietkau0005baf2010-01-15 02:33:40 +0100868static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530869{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100870 u32 val = ath9k_hw_mac_to_clks(ah, us);
871 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
872 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
873}
874
875static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
876{
877 u32 val = ath9k_hw_mac_to_clks(ah, us);
878 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
879 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530880}
881
Sujithcbe61d82009-02-09 13:27:12 +0530882static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530883{
Sujithf1dc5602008-10-29 10:16:30 +0530884 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800885 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
886 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530887 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530888 return false;
889 } else {
890 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530891 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530892 return true;
893 }
894}
895
Felix Fietkau0005baf2010-01-15 02:33:40 +0100896void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530897{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100898 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
899 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100900 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100901 int sifstime;
902
Joe Perches226afe62010-12-02 19:12:37 -0800903 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
904 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530905
Sujith2660b812009-02-09 13:27:26 +0530906 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100907 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100908
909 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
910 sifstime = 16;
911 else
912 sifstime = 10;
913
Felix Fietkaue239d852010-01-15 02:34:58 +0100914 /* As defined by IEEE 802.11-2007 17.3.8.6 */
915 slottime = ah->slottime + 3 * ah->coverage_class;
916 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100917
918 /*
919 * Workaround for early ACK timeouts, add an offset to match the
920 * initval's 64us ack timeout value.
921 * This was initially only meant to work around an issue with delayed
922 * BA frames in some implementations, but it has been found to fix ACK
923 * timeout issues in other cases as well.
924 */
925 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
926 acktimeout += 64 - sifstime - ah->slottime;
927
Felix Fietkaucaabf2b2010-12-13 08:40:51 +0100928 ath9k_hw_setslottime(ah, ah->slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100929 ath9k_hw_set_ack_timeout(ah, acktimeout);
930 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530931 if (ah->globaltxtimeout != (u32) -1)
932 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530933}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100934EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530935
Sujith285f2dd2010-01-08 10:36:07 +0530936void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700937{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400938 struct ath_common *common = ath9k_hw_common(ah);
939
Sujith736b3a22010-03-17 14:25:24 +0530940 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400941 goto free_hw;
942
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700943 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400944
945free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400946 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700947}
Sujith285f2dd2010-01-08 10:36:07 +0530948EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700949
Sujithf1dc5602008-10-29 10:16:30 +0530950/*******/
951/* INI */
952/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700953
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400954u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400955{
956 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
957
958 if (IS_CHAN_B(chan))
959 ctl |= CTL_11B;
960 else if (IS_CHAN_G(chan))
961 ctl |= CTL_11G;
962 else
963 ctl |= CTL_11A;
964
965 return ctl;
966}
967
Sujithf1dc5602008-10-29 10:16:30 +0530968/****************************************/
969/* Reset and Channel Switching Routines */
970/****************************************/
971
Sujithcbe61d82009-02-09 13:27:12 +0530972static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530973{
Felix Fietkau57b32222010-04-15 17:39:22 -0400974 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530975
Sujith7d0d0df2010-04-16 11:53:57 +0530976 ENABLE_REGWRITE_BUFFER(ah);
977
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400978 /*
979 * set AHB_MODE not to do cacheline prefetches
980 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100981 if (!AR_SREV_9300_20_OR_LATER(ah))
982 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +0530983
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400984 /*
985 * let mac dma reads be in 128 byte chunks
986 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100987 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +0530988
Sujith7d0d0df2010-04-16 11:53:57 +0530989 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530990
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400991 /*
992 * Restore TX Trigger Level to its pre-reset value.
993 * The initial value depends on whether aggregation is enabled, and is
994 * adjusted whenever underruns are detected.
995 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400996 if (!AR_SREV_9300_20_OR_LATER(ah))
997 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530998
Sujith7d0d0df2010-04-16 11:53:57 +0530999 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301000
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001001 /*
1002 * let mac dma writes be in 128 byte chunks
1003 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001004 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301005
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001006 /*
1007 * Setup receive FIFO threshold to hold off TX activities
1008 */
Sujithf1dc5602008-10-29 10:16:30 +05301009 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1010
Felix Fietkau57b32222010-04-15 17:39:22 -04001011 if (AR_SREV_9300_20_OR_LATER(ah)) {
1012 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1013 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1014
1015 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1016 ah->caps.rx_status_len);
1017 }
1018
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001019 /*
1020 * reduce the number of usable entries in PCU TXBUF to avoid
1021 * wrap around issues.
1022 */
Sujithf1dc5602008-10-29 10:16:30 +05301023 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001024 /* For AR9285 the number of Fifos are reduced to half.
1025 * So set the usable tx buf size also to half to
1026 * avoid data/delimiter underruns
1027 */
Sujithf1dc5602008-10-29 10:16:30 +05301028 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1029 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001030 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301031 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1032 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1033 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001034
Sujith7d0d0df2010-04-16 11:53:57 +05301035 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301036
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001037 if (AR_SREV_9300_20_OR_LATER(ah))
1038 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301039}
1040
Sujithcbe61d82009-02-09 13:27:12 +05301041static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301042{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001043 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1044 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301045
Sujithf1dc5602008-10-29 10:16:30 +05301046 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001047 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001048 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001049 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301050 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1051 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001052 case NL80211_IFTYPE_AP:
1053 set |= AR_STA_ID1_STA_AP;
1054 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001055 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001056 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301057 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301058 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001059 if (!ah->is_monitoring)
1060 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301061 break;
Sujithf1dc5602008-10-29 10:16:30 +05301062 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001063 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301064}
1065
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001066void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1067 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001068{
1069 u32 coef_exp, coef_man;
1070
1071 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1072 if ((coef_scaled >> coef_exp) & 0x1)
1073 break;
1074
1075 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1076
1077 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1078
1079 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1080 *coef_exponent = coef_exp - 16;
1081}
1082
Sujithcbe61d82009-02-09 13:27:12 +05301083static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301084{
1085 u32 rst_flags;
1086 u32 tmpReg;
1087
Sujith70768492009-02-16 13:23:12 +05301088 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001089 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1090 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301091 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1092 }
1093
Sujith7d0d0df2010-04-16 11:53:57 +05301094 ENABLE_REGWRITE_BUFFER(ah);
1095
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001096 if (AR_SREV_9300_20_OR_LATER(ah)) {
1097 REG_WRITE(ah, AR_WA, ah->WARegVal);
1098 udelay(10);
1099 }
1100
Sujithf1dc5602008-10-29 10:16:30 +05301101 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1102 AR_RTC_FORCE_WAKE_ON_INT);
1103
1104 if (AR_SREV_9100(ah)) {
1105 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1106 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1107 } else {
1108 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1109 if (tmpReg &
1110 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1111 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001112 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301113 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001114
1115 val = AR_RC_HOSTIF;
1116 if (!AR_SREV_9300_20_OR_LATER(ah))
1117 val |= AR_RC_AHB;
1118 REG_WRITE(ah, AR_RC, val);
1119
1120 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301121 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301122
1123 rst_flags = AR_RTC_RC_MAC_WARM;
1124 if (type == ATH9K_RESET_COLD)
1125 rst_flags |= AR_RTC_RC_MAC_COLD;
1126 }
1127
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001128 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301129
1130 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301131
Sujithf1dc5602008-10-29 10:16:30 +05301132 udelay(50);
1133
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001134 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301135 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001136 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1137 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301138 return false;
1139 }
1140
1141 if (!AR_SREV_9100(ah))
1142 REG_WRITE(ah, AR_RC, 0);
1143
Sujithf1dc5602008-10-29 10:16:30 +05301144 if (AR_SREV_9100(ah))
1145 udelay(50);
1146
1147 return true;
1148}
1149
Sujithcbe61d82009-02-09 13:27:12 +05301150static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301151{
Sujith7d0d0df2010-04-16 11:53:57 +05301152 ENABLE_REGWRITE_BUFFER(ah);
1153
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001154 if (AR_SREV_9300_20_OR_LATER(ah)) {
1155 REG_WRITE(ah, AR_WA, ah->WARegVal);
1156 udelay(10);
1157 }
1158
Sujithf1dc5602008-10-29 10:16:30 +05301159 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1160 AR_RTC_FORCE_WAKE_ON_INT);
1161
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001162 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301163 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1164
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001165 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301166
Sujith7d0d0df2010-04-16 11:53:57 +05301167 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301168
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001169 if (!AR_SREV_9300_20_OR_LATER(ah))
1170 udelay(2);
1171
1172 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301173 REG_WRITE(ah, AR_RC, 0);
1174
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001175 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301176
1177 if (!ath9k_hw_wait(ah,
1178 AR_RTC_STATUS,
1179 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301180 AR_RTC_STATUS_ON,
1181 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001182 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1183 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301184 return false;
1185 }
1186
Sujithf1dc5602008-10-29 10:16:30 +05301187 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1188}
1189
Sujithcbe61d82009-02-09 13:27:12 +05301190static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301191{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001192 if (AR_SREV_9300_20_OR_LATER(ah)) {
1193 REG_WRITE(ah, AR_WA, ah->WARegVal);
1194 udelay(10);
1195 }
1196
Sujithf1dc5602008-10-29 10:16:30 +05301197 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1198 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1199
1200 switch (type) {
1201 case ATH9K_RESET_POWER_ON:
1202 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301203 case ATH9K_RESET_WARM:
1204 case ATH9K_RESET_COLD:
1205 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301206 default:
1207 return false;
1208 }
1209}
1210
Sujithcbe61d82009-02-09 13:27:12 +05301211static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301212 struct ath9k_channel *chan)
1213{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301214 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301215 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1216 return false;
1217 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301218 return false;
1219
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001220 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301221 return false;
1222
Sujith2660b812009-02-09 13:27:26 +05301223 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301224 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301225 ath9k_hw_set_rfmode(ah, chan);
1226
1227 return true;
1228}
1229
Sujithcbe61d82009-02-09 13:27:12 +05301230static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001231 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301232{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001233 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001234 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001235 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001236 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001237 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301238
1239 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1240 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001241 ath_dbg(common, ATH_DBG_QUEUE,
1242 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301243 return false;
1244 }
1245 }
1246
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001247 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001248 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301249 return false;
1250 }
1251
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001252 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301253
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001254 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001255 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001256 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001257 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301258 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001259 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301260
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001261 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001262 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301263 channel->max_antenna_gain * 2,
1264 channel->max_power * 2,
1265 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001266 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301267
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001268 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301269
1270 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1271 ath9k_hw_set_delta_slope(ah, chan);
1272
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001273 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301274
Sujithf1dc5602008-10-29 10:16:30 +05301275 return true;
1276}
1277
Felix Fietkau691680b2011-03-19 13:55:38 +01001278static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1279{
1280 u32 gpio_mask = ah->gpio_mask;
1281 int i;
1282
1283 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1284 if (!(gpio_mask & 1))
1285 continue;
1286
1287 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1288 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1289 }
1290}
1291
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001292bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301293{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001294 int count = 50;
1295 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301296
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001297 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001298 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301299
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001300 do {
1301 reg = REG_READ(ah, AR_OBS_BUS_1);
1302
1303 if ((reg & 0x7E7FFFEF) == 0x00702400)
1304 continue;
1305
1306 switch (reg & 0x7E000B00) {
1307 case 0x1E000000:
1308 case 0x52000B00:
1309 case 0x18000B00:
1310 continue;
1311 default:
1312 return true;
1313 }
1314 } while (count-- > 0);
1315
1316 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301317}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001318EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301319
Sujithcbe61d82009-02-09 13:27:12 +05301320int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001321 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001322{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001323 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301325 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326 u32 saveDefAntenna;
1327 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301328 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001329 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001330
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001331 ah->txchainmask = common->tx_chainmask;
1332 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001333
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001334 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001335 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336
Felix Fietkaud9891c72010-09-29 17:15:27 +02001337 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338 ath9k_hw_getnf(ah, curchan);
1339
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001340 ah->caldata = caldata;
1341 if (caldata &&
1342 (chan->channel != caldata->channel ||
1343 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1344 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1345 /* Operating channel changed, reset channel calibration data */
1346 memset(caldata, 0, sizeof(*caldata));
1347 ath9k_init_nfcal_hist_buffer(ah, chan);
1348 }
1349
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001350 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301351 (ah->chip_fullsleep != true) &&
1352 (ah->curchan != NULL) &&
1353 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301355 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301356 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001358 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301359 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001360 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba33422010-09-03 16:00:00 +05301361 if (AR_SREV_9271(ah))
1362 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001363 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001364 }
1365 }
1366
1367 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1368 if (saveDefAntenna == 0)
1369 saveDefAntenna = 1;
1370
1371 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1372
Sujith46fe7822009-09-17 09:25:25 +05301373 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001374 if (AR_SREV_9100(ah) ||
1375 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301376 tsf = ath9k_hw_gettsf64(ah);
1377
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378 saveLedState = REG_READ(ah, AR_CFG_LED) &
1379 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1380 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1381
1382 ath9k_hw_mark_phy_inactive(ah);
1383
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001384 ah->paprd_table_write_done = false;
1385
Sujith05020d22010-03-17 14:25:23 +05301386 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001387 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1388 REG_WRITE(ah,
1389 AR9271_RESET_POWER_DOWN_CONTROL,
1390 AR9271_RADIO_RF_RST);
1391 udelay(50);
1392 }
1393
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001395 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001396 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397 }
1398
Sujith05020d22010-03-17 14:25:23 +05301399 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001400 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1401 ah->htc_reset_init = false;
1402 REG_WRITE(ah,
1403 AR9271_RESET_POWER_DOWN_CONTROL,
1404 AR9271_GATE_MAC_CTL);
1405 udelay(50);
1406 }
1407
Sujith46fe7822009-09-17 09:25:25 +05301408 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001409 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301410 ath9k_hw_settsf64(ah, tsf);
1411
Felix Fietkau7a370812010-09-22 12:34:52 +02001412 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301413 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414
Sujithe9141f72010-06-01 15:14:10 +05301415 if (!AR_SREV_9300_20_OR_LATER(ah))
1416 ar9002_hw_enable_async_fifo(ah);
1417
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001418 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001419 if (r)
1420 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421
Felix Fietkauf860d522010-06-30 02:07:48 +02001422 /*
1423 * Some AR91xx SoC devices frequently fail to accept TSF writes
1424 * right after the chip reset. When that happens, write a new
1425 * value after the initvals have been applied, with an offset
1426 * based on measured time difference
1427 */
1428 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1429 tsf += 1500;
1430 ath9k_hw_settsf64(ah, tsf);
1431 }
1432
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001433 /* Setup MFP options for CCMP */
1434 if (AR_SREV_9280_20_OR_LATER(ah)) {
1435 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1436 * frames when constructing CCMP AAD. */
1437 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1438 0xc7ff);
1439 ah->sw_mgmt_crypto = false;
1440 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1441 /* Disable hardware crypto for management frames */
1442 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1443 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1444 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1445 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1446 ah->sw_mgmt_crypto = true;
1447 } else
1448 ah->sw_mgmt_crypto = true;
1449
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001450 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1451 ath9k_hw_set_delta_slope(ah, chan);
1452
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001453 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301454 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001455
Sujith7d0d0df2010-04-16 11:53:57 +05301456 ENABLE_REGWRITE_BUFFER(ah);
1457
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001458 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1459 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001460 | macStaId1
1461 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301462 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301463 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301464 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001465 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001466 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001467 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1470
Sujith7d0d0df2010-04-16 11:53:57 +05301471 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301472
Sujith Manoharan00e00032011-01-26 21:59:05 +05301473 ath9k_hw_set_operating_mode(ah, ah->opmode);
1474
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001475 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001476 if (r)
1477 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001478
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001479 ath9k_hw_set_clockrate(ah);
1480
Sujith7d0d0df2010-04-16 11:53:57 +05301481 ENABLE_REGWRITE_BUFFER(ah);
1482
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001483 for (i = 0; i < AR_NUM_DCU; i++)
1484 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1485
Sujith7d0d0df2010-04-16 11:53:57 +05301486 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301487
Sujith2660b812009-02-09 13:27:26 +05301488 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001489 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 ath9k_hw_resettxqueue(ah, i);
1491
Sujith2660b812009-02-09 13:27:26 +05301492 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001493 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001494 ath9k_hw_init_qos(ah);
1495
Sujith2660b812009-02-09 13:27:26 +05301496 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001497 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301498
Felix Fietkau0005baf2010-01-15 02:33:40 +01001499 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001501 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301502 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001503 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301504 }
1505
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001506 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001507
1508 ath9k_hw_set_dma(ah);
1509
1510 REG_WRITE(ah, AR_OBS, 8);
1511
Sujith0ce024c2009-12-14 14:57:00 +05301512 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001513 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1514 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1515 }
1516
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001517 if (ah->config.tx_intr_mitigation) {
1518 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1519 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1520 }
1521
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001522 ath9k_hw_init_bb(ah, chan);
1523
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001524 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001525 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001526
Sujith7d0d0df2010-04-16 11:53:57 +05301527 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001529 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001530 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1531
Sujith7d0d0df2010-04-16 11:53:57 +05301532 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301533
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001534 /*
1535 * For big endian systems turn on swapping for descriptors
1536 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001537 if (AR_SREV_9100(ah)) {
1538 u32 mask;
1539 mask = REG_READ(ah, AR_CFG);
1540 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001541 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301542 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543 } else {
1544 mask =
1545 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1546 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001547 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301548 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001549 }
1550 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301551 if (common->bus_ops->ath_bus_type == ATH_USB) {
1552 /* Configure AR9271 target WLAN */
1553 if (AR_SREV_9271(ah))
1554 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1555 else
1556 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1557 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001558#ifdef __BIG_ENDIAN
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301559 else if (AR_SREV_9340(ah))
1560 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1561 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001562 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001563#endif
1564 }
1565
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001566 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301567 ath9k_hw_btcoex_enable(ah);
1568
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301569 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001570 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001571
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301572 ar9003_hw_disable_phy_restart(ah);
1573 }
1574
Felix Fietkau691680b2011-03-19 13:55:38 +01001575 ath9k_hw_apply_gpio_override(ah);
1576
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001577 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001578}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001579EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001580
Sujithf1dc5602008-10-29 10:16:30 +05301581/******************************/
1582/* Power Management (Chipset) */
1583/******************************/
1584
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001585/*
1586 * Notify Power Mgt is disabled in self-generated frames.
1587 * If requested, force chip to sleep.
1588 */
Sujithcbe61d82009-02-09 13:27:12 +05301589static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301590{
1591 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1592 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001593 /*
1594 * Clear the RTC force wake bit to allow the
1595 * mac to go to sleep.
1596 */
Sujithf1dc5602008-10-29 10:16:30 +05301597 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1598 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001599 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301600 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1601
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001602 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301603 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301604 REG_CLR_BIT(ah, (AR_RTC_RESET),
1605 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301606 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001607
1608 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1609 if (AR_SREV_9300_20_OR_LATER(ah))
1610 REG_WRITE(ah, AR_WA,
1611 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001612}
1613
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001614/*
1615 * Notify Power Management is enabled in self-generating
1616 * frames. If request, set power mode of chip to
1617 * auto/normal. Duration in units of 128us (1/8 TU).
1618 */
Sujithcbe61d82009-02-09 13:27:12 +05301619static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001620{
Sujithf1dc5602008-10-29 10:16:30 +05301621 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1622 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301623 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001624
Sujithf1dc5602008-10-29 10:16:30 +05301625 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001626 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301627 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1628 AR_RTC_FORCE_WAKE_ON_INT);
1629 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001630 /*
1631 * Clear the RTC force wake bit to allow the
1632 * mac to go to sleep.
1633 */
Sujithf1dc5602008-10-29 10:16:30 +05301634 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1635 AR_RTC_FORCE_WAKE_EN);
1636 }
1637 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001638
1639 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1640 if (AR_SREV_9300_20_OR_LATER(ah))
1641 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301642}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001643
Sujithcbe61d82009-02-09 13:27:12 +05301644static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301645{
1646 u32 val;
1647 int i;
1648
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001649 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1650 if (AR_SREV_9300_20_OR_LATER(ah)) {
1651 REG_WRITE(ah, AR_WA, ah->WARegVal);
1652 udelay(10);
1653 }
1654
Sujithf1dc5602008-10-29 10:16:30 +05301655 if (setChip) {
1656 if ((REG_READ(ah, AR_RTC_STATUS) &
1657 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1658 if (ath9k_hw_set_reset_reg(ah,
1659 ATH9K_RESET_POWER_ON) != true) {
1660 return false;
1661 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001662 if (!AR_SREV_9300_20_OR_LATER(ah))
1663 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301664 }
1665 if (AR_SREV_9100(ah))
1666 REG_SET_BIT(ah, AR_RTC_RESET,
1667 AR_RTC_RESET_EN);
1668
1669 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1670 AR_RTC_FORCE_WAKE_EN);
1671 udelay(50);
1672
1673 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1674 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1675 if (val == AR_RTC_STATUS_ON)
1676 break;
1677 udelay(50);
1678 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1679 AR_RTC_FORCE_WAKE_EN);
1680 }
1681 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001682 ath_err(ath9k_hw_common(ah),
1683 "Failed to wakeup in %uus\n",
1684 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301685 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686 }
1687 }
1688
Sujithf1dc5602008-10-29 10:16:30 +05301689 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1690
1691 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001692}
1693
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001694bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301695{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001696 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301697 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301698 static const char *modes[] = {
1699 "AWAKE",
1700 "FULL-SLEEP",
1701 "NETWORK SLEEP",
1702 "UNDEFINED"
1703 };
Sujithf1dc5602008-10-29 10:16:30 +05301704
Gabor Juhoscbdec972009-07-24 17:27:22 +02001705 if (ah->power_mode == mode)
1706 return status;
1707
Joe Perches226afe62010-12-02 19:12:37 -08001708 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1709 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301710
1711 switch (mode) {
1712 case ATH9K_PM_AWAKE:
1713 status = ath9k_hw_set_power_awake(ah, setChip);
1714 break;
1715 case ATH9K_PM_FULL_SLEEP:
1716 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301717 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301718 break;
1719 case ATH9K_PM_NETWORK_SLEEP:
1720 ath9k_set_power_network_sleep(ah, setChip);
1721 break;
1722 default:
Joe Perches38002762010-12-02 19:12:36 -08001723 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301724 return false;
1725 }
Sujith2660b812009-02-09 13:27:26 +05301726 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301727
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001728 /*
1729 * XXX: If this warning never comes up after a while then
1730 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1731 * ath9k_hw_setpower() return type void.
1732 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301733
1734 if (!(ah->ah_flags & AH_UNPLUGGED))
1735 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001736
Sujithf1dc5602008-10-29 10:16:30 +05301737 return status;
1738}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001739EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301740
Sujithf1dc5602008-10-29 10:16:30 +05301741/*******************/
1742/* Beacon Handling */
1743/*******************/
1744
Sujithcbe61d82009-02-09 13:27:12 +05301745void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001746{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747 int flags = 0;
1748
Sujith7d0d0df2010-04-16 11:53:57 +05301749 ENABLE_REGWRITE_BUFFER(ah);
1750
Sujith2660b812009-02-09 13:27:26 +05301751 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001752 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001753 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001754 REG_SET_BIT(ah, AR_TXCFG,
1755 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01001756 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
1757 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001759 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01001760 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
1761 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
1762 TU_TO_USEC(ah->config.dma_beacon_response_time));
1763 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
1764 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001765 flags |=
1766 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1767 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001768 default:
Joe Perches226afe62010-12-02 19:12:37 -08001769 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1770 "%s: unsupported opmode: %d\n",
1771 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001772 return;
1773 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774 }
1775
Felix Fietkaudd347f22011-03-22 21:54:17 +01001776 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
1777 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
1778 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
1779 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780
Sujith7d0d0df2010-04-16 11:53:57 +05301781 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301782
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1784}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001785EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001786
Sujithcbe61d82009-02-09 13:27:12 +05301787void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301788 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001789{
1790 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301791 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001792 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001793
Sujith7d0d0df2010-04-16 11:53:57 +05301794 ENABLE_REGWRITE_BUFFER(ah);
1795
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001796 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1797
1798 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301799 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001800 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301801 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001802
Sujith7d0d0df2010-04-16 11:53:57 +05301803 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301804
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001805 REG_RMW_FIELD(ah, AR_RSSI_THR,
1806 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1807
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301808 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809
1810 if (bs->bs_sleepduration > beaconintval)
1811 beaconintval = bs->bs_sleepduration;
1812
1813 dtimperiod = bs->bs_dtimperiod;
1814 if (bs->bs_sleepduration > dtimperiod)
1815 dtimperiod = bs->bs_sleepduration;
1816
1817 if (beaconintval == dtimperiod)
1818 nextTbtt = bs->bs_nextdtim;
1819 else
1820 nextTbtt = bs->bs_nexttbtt;
1821
Joe Perches226afe62010-12-02 19:12:37 -08001822 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1823 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1824 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1825 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826
Sujith7d0d0df2010-04-16 11:53:57 +05301827 ENABLE_REGWRITE_BUFFER(ah);
1828
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 REG_WRITE(ah, AR_NEXT_DTIM,
1830 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1831 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1832
1833 REG_WRITE(ah, AR_SLEEP1,
1834 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1835 | AR_SLEEP1_ASSUME_DTIM);
1836
Sujith60b67f52008-08-07 10:52:38 +05301837 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001838 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1839 else
1840 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1841
1842 REG_WRITE(ah, AR_SLEEP2,
1843 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1844
1845 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1846 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1847
Sujith7d0d0df2010-04-16 11:53:57 +05301848 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301849
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001850 REG_SET_BIT(ah, AR_TIMER_MODE,
1851 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1852 AR_DTIM_TIMER_EN);
1853
Sujith4af9cf42009-02-12 10:06:47 +05301854 /* TSF Out of Range Threshold */
1855 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001856}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001857EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001858
Sujithf1dc5602008-10-29 10:16:30 +05301859/*******************/
1860/* HW Capabilities */
1861/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001862
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001863int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864{
Sujith2660b812009-02-09 13:27:26 +05301865 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001866 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001867 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001868 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001869
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05301870 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001871 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872
Sujithf74df6f2009-02-09 13:27:24 +05301873 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001874 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301875
Sujithf74df6f2009-02-09 13:27:24 +05301876 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001877 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301878 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001879 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301880
Sujith2660b812009-02-09 13:27:26 +05301881 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301882 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001883 if (regulatory->current_rd == 0x64 ||
1884 regulatory->current_rd == 0x65)
1885 regulatory->current_rd += 5;
1886 else if (regulatory->current_rd == 0x41)
1887 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001888 ath_dbg(common, ATH_DBG_REGULATORY,
1889 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001890 }
Sujithdc2222a2008-08-14 13:26:55 +05301891
Sujithf74df6f2009-02-09 13:27:24 +05301892 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001893 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001894 ath_err(common,
1895 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001896 return -EINVAL;
1897 }
1898
Felix Fietkaud4659912010-10-14 16:02:39 +02001899 if (eeval & AR5416_OPFLAGS_11A)
1900 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901
Felix Fietkaud4659912010-10-14 16:02:39 +02001902 if (eeval & AR5416_OPFLAGS_11G)
1903 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301904
Sujithf74df6f2009-02-09 13:27:24 +05301905 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001906 /*
1907 * For AR9271 we will temporarilly uses the rx chainmax as read from
1908 * the EEPROM.
1909 */
Sujith8147f5d2009-02-20 15:13:23 +05301910 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001911 !(eeval & AR5416_OPFLAGS_11A) &&
1912 !(AR_SREV_9271(ah)))
1913 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301914 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01001915 else if (AR_SREV_9100(ah))
1916 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05301917 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001918 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301919 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301920
Felix Fietkau7a370812010-09-22 12:34:52 +02001921 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301922
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001923 /* enable key search for every frame in an aggregate */
1924 if (AR_SREV_9300_20_OR_LATER(ah))
1925 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1926
Bruno Randolfce2220d2010-09-17 11:36:25 +09001927 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1928
Felix Fietkau0db156e2011-03-23 20:57:29 +01001929 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05301930 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1931 else
1932 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1933
Sujith5b5fa352010-03-17 14:25:15 +05301934 if (AR_SREV_9271(ah))
1935 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301936 else if (AR_DEVID_7010(ah))
1937 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001938 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301939 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001940 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301941 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1942 else
1943 pCap->num_gpio_pins = AR_NUM_GPIO;
1944
Sujithf1dc5602008-10-29 10:16:30 +05301945 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1946 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1947 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1948 } else {
1949 pCap->rts_aggr_limit = (8 * 1024);
1950 }
1951
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301952#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301953 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1954 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1955 ah->rfkill_gpio =
1956 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1957 ah->rfkill_polarity =
1958 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301959
1960 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1961 }
1962#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001963 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301964 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1965 else
1966 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301967
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301968 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301969 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1970 else
1971 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1972
Vivek Natarajana6ef5302011-04-26 10:39:53 +05301973 if (common->btcoex_enabled) {
1974 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001975 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
Vivek Natarajana6ef5302011-04-26 10:39:53 +05301976 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9300;
1977 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9300;
1978 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9300;
1979 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
1980 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9280;
1981 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9280;
1982
1983 if (AR_SREV_9285(ah)) {
1984 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1985 btcoex_hw->btpriority_gpio =
1986 ATH_BTPRIORITY_GPIO_9285;
1987 } else {
1988 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
1989 }
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301990 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301991 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001992 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301993 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001994
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001995 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08001996 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1997 if (!AR_SREV_9485(ah))
1998 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1999
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002000 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2001 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2002 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002003 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002004 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08002005 if (!ah->config.paprd_disable &&
2006 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04002007 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002008 } else {
2009 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002010 if (AR_SREV_9280_20(ah) &&
2011 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2012 AR5416_EEP_MINOR_VER_16) ||
2013 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2014 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002015 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002016
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002017 if (AR_SREV_9300_20_OR_LATER(ah))
2018 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2019
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002020 if (AR_SREV_9300_20_OR_LATER(ah))
2021 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2022
Felix Fietkaua42acef2010-09-22 12:34:54 +02002023 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002024 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2025
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002026 if (AR_SREV_9285(ah))
2027 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2028 ant_div_ctl1 =
2029 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2030 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2031 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2032 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302033 if (AR_SREV_9300_20_OR_LATER(ah)) {
2034 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2035 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2036 }
2037
2038
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302039 if (AR_SREV_9485(ah)) {
2040 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2041 /*
2042 * enable the diversity-combining algorithm only when
2043 * both enable_lna_div and enable_fast_div are set
2044 * Table for Diversity
2045 * ant_div_alt_lnaconf bit 0-1
2046 * ant_div_main_lnaconf bit 2-3
2047 * ant_div_alt_gaintb bit 4
2048 * ant_div_main_gaintb bit 5
2049 * enable_ant_div_lnadiv bit 6
2050 * enable_ant_fast_div bit 7
2051 */
2052 if ((ant_div_ctl1 >> 0x6) == 0x3)
2053 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2054 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002055
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002056 if (AR_SREV_9485_10(ah)) {
2057 pCap->pcie_lcr_extsync_en = true;
2058 pCap->pcie_lcr_offset = 0x80;
2059 }
2060
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002061 tx_chainmask = pCap->tx_chainmask;
2062 rx_chainmask = pCap->rx_chainmask;
2063 while (tx_chainmask || rx_chainmask) {
2064 if (tx_chainmask & BIT(0))
2065 pCap->max_txchains++;
2066 if (rx_chainmask & BIT(0))
2067 pCap->max_rxchains++;
2068
2069 tx_chainmask >>= 1;
2070 rx_chainmask >>= 1;
2071 }
2072
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002073 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002074}
2075
Sujithf1dc5602008-10-29 10:16:30 +05302076/****************************/
2077/* GPIO / RFKILL / Antennae */
2078/****************************/
2079
Sujithcbe61d82009-02-09 13:27:12 +05302080static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302081 u32 gpio, u32 type)
2082{
2083 int addr;
2084 u32 gpio_shift, tmp;
2085
2086 if (gpio > 11)
2087 addr = AR_GPIO_OUTPUT_MUX3;
2088 else if (gpio > 5)
2089 addr = AR_GPIO_OUTPUT_MUX2;
2090 else
2091 addr = AR_GPIO_OUTPUT_MUX1;
2092
2093 gpio_shift = (gpio % 6) * 5;
2094
2095 if (AR_SREV_9280_20_OR_LATER(ah)
2096 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2097 REG_RMW(ah, addr, (type << gpio_shift),
2098 (0x1f << gpio_shift));
2099 } else {
2100 tmp = REG_READ(ah, addr);
2101 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2102 tmp &= ~(0x1f << gpio_shift);
2103 tmp |= (type << gpio_shift);
2104 REG_WRITE(ah, addr, tmp);
2105 }
2106}
2107
Sujithcbe61d82009-02-09 13:27:12 +05302108void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302109{
2110 u32 gpio_shift;
2111
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002112 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302113
Sujith88c1f4f2010-06-30 14:46:31 +05302114 if (AR_DEVID_7010(ah)) {
2115 gpio_shift = gpio;
2116 REG_RMW(ah, AR7010_GPIO_OE,
2117 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2118 (AR7010_GPIO_OE_MASK << gpio_shift));
2119 return;
2120 }
Sujithf1dc5602008-10-29 10:16:30 +05302121
Sujith88c1f4f2010-06-30 14:46:31 +05302122 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302123 REG_RMW(ah,
2124 AR_GPIO_OE_OUT,
2125 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2126 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2127}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002128EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302129
Sujithcbe61d82009-02-09 13:27:12 +05302130u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302131{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302132#define MS_REG_READ(x, y) \
2133 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2134
Sujith2660b812009-02-09 13:27:26 +05302135 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302136 return 0xffffffff;
2137
Sujith88c1f4f2010-06-30 14:46:31 +05302138 if (AR_DEVID_7010(ah)) {
2139 u32 val;
2140 val = REG_READ(ah, AR7010_GPIO_IN);
2141 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2142 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002143 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2144 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002145 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302146 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002147 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302148 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002149 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302150 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002151 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302152 return MS_REG_READ(AR928X, gpio) != 0;
2153 else
2154 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302155}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002156EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302157
Sujithcbe61d82009-02-09 13:27:12 +05302158void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302159 u32 ah_signal_type)
2160{
2161 u32 gpio_shift;
2162
Sujith88c1f4f2010-06-30 14:46:31 +05302163 if (AR_DEVID_7010(ah)) {
2164 gpio_shift = gpio;
2165 REG_RMW(ah, AR7010_GPIO_OE,
2166 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2167 (AR7010_GPIO_OE_MASK << gpio_shift));
2168 return;
2169 }
2170
Sujithf1dc5602008-10-29 10:16:30 +05302171 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302172 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302173 REG_RMW(ah,
2174 AR_GPIO_OE_OUT,
2175 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2176 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2177}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002178EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302179
Sujithcbe61d82009-02-09 13:27:12 +05302180void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302181{
Sujith88c1f4f2010-06-30 14:46:31 +05302182 if (AR_DEVID_7010(ah)) {
2183 val = val ? 0 : 1;
2184 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2185 AR_GPIO_BIT(gpio));
2186 return;
2187 }
2188
Sujith5b5fa352010-03-17 14:25:15 +05302189 if (AR_SREV_9271(ah))
2190 val = ~val;
2191
Sujithf1dc5602008-10-29 10:16:30 +05302192 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2193 AR_GPIO_BIT(gpio));
2194}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002195EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302196
Sujithcbe61d82009-02-09 13:27:12 +05302197u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302198{
2199 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2200}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002201EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302202
Sujithcbe61d82009-02-09 13:27:12 +05302203void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302204{
2205 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2206}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002207EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302208
Sujithf1dc5602008-10-29 10:16:30 +05302209/*********************/
2210/* General Operation */
2211/*********************/
2212
Sujithcbe61d82009-02-09 13:27:12 +05302213u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302214{
2215 u32 bits = REG_READ(ah, AR_RX_FILTER);
2216 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2217
2218 if (phybits & AR_PHY_ERR_RADAR)
2219 bits |= ATH9K_RX_FILTER_PHYRADAR;
2220 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2221 bits |= ATH9K_RX_FILTER_PHYERR;
2222
2223 return bits;
2224}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002225EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302226
Sujithcbe61d82009-02-09 13:27:12 +05302227void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302228{
2229 u32 phybits;
2230
Sujith7d0d0df2010-04-16 11:53:57 +05302231 ENABLE_REGWRITE_BUFFER(ah);
2232
Sujith7ea310b2009-09-03 12:08:43 +05302233 REG_WRITE(ah, AR_RX_FILTER, bits);
2234
Sujithf1dc5602008-10-29 10:16:30 +05302235 phybits = 0;
2236 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2237 phybits |= AR_PHY_ERR_RADAR;
2238 if (bits & ATH9K_RX_FILTER_PHYERR)
2239 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2240 REG_WRITE(ah, AR_PHY_ERR, phybits);
2241
2242 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002243 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302244 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002245 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302246
2247 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302248}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002249EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302250
Sujithcbe61d82009-02-09 13:27:12 +05302251bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302252{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302253 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2254 return false;
2255
2256 ath9k_hw_init_pll(ah, NULL);
2257 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302258}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002259EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302260
Sujithcbe61d82009-02-09 13:27:12 +05302261bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302262{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002263 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302264 return false;
2265
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302266 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2267 return false;
2268
2269 ath9k_hw_init_pll(ah, NULL);
2270 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302271}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002272EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302273
Felix Fietkaude40f312010-10-20 03:08:53 +02002274void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302275{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002276 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302277 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002278 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302279
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002280 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302281
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002282 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002283 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002284 channel->max_antenna_gain * 2,
2285 channel->max_power * 2,
2286 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002287 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302288}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002289EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302290
Sujithcbe61d82009-02-09 13:27:12 +05302291void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302292{
Sujith2660b812009-02-09 13:27:26 +05302293 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302294}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002295EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302296
Sujithcbe61d82009-02-09 13:27:12 +05302297void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302298{
2299 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2300 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2301}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002302EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302303
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002304void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302305{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002306 struct ath_common *common = ath9k_hw_common(ah);
2307
2308 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2309 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2310 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302311}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002312EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302313
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002314#define ATH9K_MAX_TSF_READ 10
2315
Sujithcbe61d82009-02-09 13:27:12 +05302316u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302317{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002318 u32 tsf_lower, tsf_upper1, tsf_upper2;
2319 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302320
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002321 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2322 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2323 tsf_lower = REG_READ(ah, AR_TSF_L32);
2324 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2325 if (tsf_upper2 == tsf_upper1)
2326 break;
2327 tsf_upper1 = tsf_upper2;
2328 }
Sujithf1dc5602008-10-29 10:16:30 +05302329
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002330 WARN_ON( i == ATH9K_MAX_TSF_READ );
2331
2332 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302333}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002334EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302335
Sujithcbe61d82009-02-09 13:27:12 +05302336void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002337{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002338 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002339 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002340}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002341EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002342
Sujithcbe61d82009-02-09 13:27:12 +05302343void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302344{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002345 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2346 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002347 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2348 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002349
Sujithf1dc5602008-10-29 10:16:30 +05302350 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002351}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002352EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353
Sujith54e4cec2009-08-07 09:45:09 +05302354void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302357 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002358 else
Sujith2660b812009-02-09 13:27:26 +05302359 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002361EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002363void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002365 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302366 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002367
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002368 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302369 macmode = AR_2040_JOINED_RX_CLEAR;
2370 else
2371 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002372
Sujithf1dc5602008-10-29 10:16:30 +05302373 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002374}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302375
2376/* HW Generic timers configuration */
2377
2378static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2379{
2380 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2381 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2382 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2383 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2384 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2385 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2386 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2387 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2388 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2389 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2390 AR_NDP2_TIMER_MODE, 0x0002},
2391 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2392 AR_NDP2_TIMER_MODE, 0x0004},
2393 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2394 AR_NDP2_TIMER_MODE, 0x0008},
2395 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2396 AR_NDP2_TIMER_MODE, 0x0010},
2397 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2398 AR_NDP2_TIMER_MODE, 0x0020},
2399 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2400 AR_NDP2_TIMER_MODE, 0x0040},
2401 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2402 AR_NDP2_TIMER_MODE, 0x0080}
2403};
2404
2405/* HW generic timer primitives */
2406
2407/* compute and clear index of rightmost 1 */
2408static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2409{
2410 u32 b;
2411
2412 b = *mask;
2413 b &= (0-b);
2414 *mask &= ~b;
2415 b *= debruijn32;
2416 b >>= 27;
2417
2418 return timer_table->gen_timer_index[b];
2419}
2420
Felix Fietkaudd347f22011-03-22 21:54:17 +01002421u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302422{
2423 return REG_READ(ah, AR_TSF_L32);
2424}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002425EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302426
2427struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2428 void (*trigger)(void *),
2429 void (*overflow)(void *),
2430 void *arg,
2431 u8 timer_index)
2432{
2433 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2434 struct ath_gen_timer *timer;
2435
2436 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2437
2438 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002439 ath_err(ath9k_hw_common(ah),
2440 "Failed to allocate memory for hw timer[%d]\n",
2441 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302442 return NULL;
2443 }
2444
2445 /* allocate a hardware generic timer slot */
2446 timer_table->timers[timer_index] = timer;
2447 timer->index = timer_index;
2448 timer->trigger = trigger;
2449 timer->overflow = overflow;
2450 timer->arg = arg;
2451
2452 return timer;
2453}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002454EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302455
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002456void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2457 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302458 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002459 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302460{
2461 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302462 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302463
2464 BUG_ON(!timer_period);
2465
2466 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2467
2468 tsf = ath9k_hw_gettsf32(ah);
2469
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302470 timer_next = tsf + trig_timeout;
2471
Joe Perches226afe62010-12-02 19:12:37 -08002472 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2473 "current tsf %x period %x timer_next %x\n",
2474 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302475
2476 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302477 * Program generic timer registers
2478 */
2479 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2480 timer_next);
2481 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2482 timer_period);
2483 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2484 gen_tmr_configuration[timer->index].mode_mask);
2485
2486 /* Enable both trigger and thresh interrupt masks */
2487 REG_SET_BIT(ah, AR_IMR_S5,
2488 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2489 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302490}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002491EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302492
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002493void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302494{
2495 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2496
2497 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2498 (timer->index >= ATH_MAX_GEN_TIMER)) {
2499 return;
2500 }
2501
2502 /* Clear generic timer enable bits. */
2503 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2504 gen_tmr_configuration[timer->index].mode_mask);
2505
2506 /* Disable both trigger and thresh interrupt masks */
2507 REG_CLR_BIT(ah, AR_IMR_S5,
2508 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2509 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2510
2511 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302512}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002513EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302514
2515void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2516{
2517 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2518
2519 /* free the hardware generic timer slot */
2520 timer_table->timers[timer->index] = NULL;
2521 kfree(timer);
2522}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002523EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302524
2525/*
2526 * Generic Timer Interrupts handling
2527 */
2528void ath_gen_timer_isr(struct ath_hw *ah)
2529{
2530 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2531 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002532 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302533 u32 trigger_mask, thresh_mask, index;
2534
2535 /* get hardware generic timer interrupt status */
2536 trigger_mask = ah->intr_gen_timer_trigger;
2537 thresh_mask = ah->intr_gen_timer_thresh;
2538 trigger_mask &= timer_table->timer_mask.val;
2539 thresh_mask &= timer_table->timer_mask.val;
2540
2541 trigger_mask &= ~thresh_mask;
2542
2543 while (thresh_mask) {
2544 index = rightmost_index(timer_table, &thresh_mask);
2545 timer = timer_table->timers[index];
2546 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002547 ath_dbg(common, ATH_DBG_HWTIMER,
2548 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302549 timer->overflow(timer->arg);
2550 }
2551
2552 while (trigger_mask) {
2553 index = rightmost_index(timer_table, &trigger_mask);
2554 timer = timer_table->timers[index];
2555 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002556 ath_dbg(common, ATH_DBG_HWTIMER,
2557 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302558 timer->trigger(timer->arg);
2559 }
2560}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002561EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002562
Sujith05020d22010-03-17 14:25:23 +05302563/********/
2564/* HTC */
2565/********/
2566
2567void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2568{
2569 ah->htc_reset_init = true;
2570}
2571EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2572
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002573static struct {
2574 u32 version;
2575 const char * name;
2576} ath_mac_bb_names[] = {
2577 /* Devices with external radios */
2578 { AR_SREV_VERSION_5416_PCI, "5416" },
2579 { AR_SREV_VERSION_5416_PCIE, "5418" },
2580 { AR_SREV_VERSION_9100, "9100" },
2581 { AR_SREV_VERSION_9160, "9160" },
2582 /* Single-chip solutions */
2583 { AR_SREV_VERSION_9280, "9280" },
2584 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002585 { AR_SREV_VERSION_9287, "9287" },
2586 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002587 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02002588 { AR_SREV_VERSION_9330, "9330" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05302589 { AR_SREV_VERSION_9485, "9485" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002590};
2591
2592/* For devices with external radios */
2593static struct {
2594 u16 version;
2595 const char * name;
2596} ath_rf_names[] = {
2597 { 0, "5133" },
2598 { AR_RAD5133_SREV_MAJOR, "5133" },
2599 { AR_RAD5122_SREV_MAJOR, "5122" },
2600 { AR_RAD2133_SREV_MAJOR, "2133" },
2601 { AR_RAD2122_SREV_MAJOR, "2122" }
2602};
2603
2604/*
2605 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2606 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002607static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002608{
2609 int i;
2610
2611 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2612 if (ath_mac_bb_names[i].version == mac_bb_version) {
2613 return ath_mac_bb_names[i].name;
2614 }
2615 }
2616
2617 return "????";
2618}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002619
2620/*
2621 * Return the RF name. "????" is returned if the RF is unknown.
2622 * Used for devices with external radios.
2623 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002624static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002625{
2626 int i;
2627
2628 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2629 if (ath_rf_names[i].version == rf_version) {
2630 return ath_rf_names[i].name;
2631 }
2632 }
2633
2634 return "????";
2635}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002636
2637void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2638{
2639 int used;
2640
2641 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002642 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002643 used = snprintf(hw_name, len,
2644 "Atheros AR%s Rev:%x",
2645 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2646 ah->hw_version.macRev);
2647 }
2648 else {
2649 used = snprintf(hw_name, len,
2650 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2651 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2652 ah->hw_version.macRev,
2653 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2654 AR_RADIO_SREV_MAJOR)),
2655 ah->hw_version.phyRev);
2656 }
2657
2658 hw_name[used] = '\0';
2659}
2660EXPORT_SYMBOL(ath9k_hw_name);