blob: 839ba64c9e49f46cd40b690f4207cdc719b33d49 [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
Gabor Juhos88e641d2011-06-21 11:23:30 +0200618 if (AR_SREV_9330(ah))
619 ah->bb_watchdog_timeout_ms = 85;
620 else
621 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400623 common->state = ATH_HW_INITIALIZED;
624
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700625 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700626}
627
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400628int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530629{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400630 int ret;
631 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530632
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400633 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
634 switch (ah->hw_version.devid) {
635 case AR5416_DEVID_PCI:
636 case AR5416_DEVID_PCIE:
637 case AR5416_AR9100_DEVID:
638 case AR9160_DEVID_PCI:
639 case AR9280_DEVID_PCI:
640 case AR9280_DEVID_PCIE:
641 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400642 case AR9287_DEVID_PCI:
643 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400644 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400645 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800646 case AR9300_DEVID_AR9485_PCIE:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530647 case AR9300_DEVID_AR9340:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400648 break;
649 default:
650 if (common->bus_ops->ath_bus_type == ATH_USB)
651 break;
Joe Perches38002762010-12-02 19:12:36 -0800652 ath_err(common, "Hardware device ID 0x%04x not supported\n",
653 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400654 return -EOPNOTSUPP;
655 }
Sujithf1dc5602008-10-29 10:16:30 +0530656
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400657 ret = __ath9k_hw_init(ah);
658 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800659 ath_err(common,
660 "Unable to initialize hardware; initialization status: %d\n",
661 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400662 return ret;
663 }
Sujithf1dc5602008-10-29 10:16:30 +0530664
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400665 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530666}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400667EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530668
Sujithcbe61d82009-02-09 13:27:12 +0530669static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530670{
Sujith7d0d0df2010-04-16 11:53:57 +0530671 ENABLE_REGWRITE_BUFFER(ah);
672
Sujithf1dc5602008-10-29 10:16:30 +0530673 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
674 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
675
676 REG_WRITE(ah, AR_QOS_NO_ACK,
677 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
678 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
679 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
680
681 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
682 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
683 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
684 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
685 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530686
687 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530688}
689
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530690u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530691{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100692 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
693 udelay(100);
694 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
695
696 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530697 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530698
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100699 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530700}
701EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
702
Sujithcbe61d82009-02-09 13:27:12 +0530703static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530704 struct ath9k_channel *chan)
705{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800706 u32 pll;
707
Vivek Natarajan22983c32011-01-27 14:45:09 +0530708 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530709
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530710 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
711 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
712 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
713 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
714 AR_CH0_DPLL2_KD, 0x40);
715 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
716 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530717
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530718 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
719 AR_CH0_BB_DPLL1_REFDIV, 0x5);
720 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
721 AR_CH0_BB_DPLL1_NINI, 0x58);
722 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
723 AR_CH0_BB_DPLL1_NFRAC, 0x0);
724
725 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
726 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
727 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
728 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
729 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
730 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
731
732 /* program BB PLL phase_shift to 0x6 */
733 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
734 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
735
736 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
737 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530738 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200739 } else if (AR_SREV_9330(ah)) {
740 u32 ddr_dpll2, pll_control2, kd;
741
742 if (ah->is_clk_25mhz) {
743 ddr_dpll2 = 0x18e82f01;
744 pll_control2 = 0xe04a3d;
745 kd = 0x1d;
746 } else {
747 ddr_dpll2 = 0x19e82f01;
748 pll_control2 = 0x886666;
749 kd = 0x3d;
750 }
751
752 /* program DDR PLL ki and kd value */
753 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
754
755 /* program DDR PLL phase_shift */
756 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
757 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
758
759 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
760 udelay(1000);
761
762 /* program refdiv, nint, frac to RTC register */
763 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
764
765 /* program BB PLL kd and ki value */
766 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
767 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
768
769 /* program BB PLL phase_shift */
770 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
771 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530772 } else if (AR_SREV_9340(ah)) {
773 u32 regval, pll2_divint, pll2_divfrac, refdiv;
774
775 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
776 udelay(1000);
777
778 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
779 udelay(100);
780
781 if (ah->is_clk_25mhz) {
782 pll2_divint = 0x54;
783 pll2_divfrac = 0x1eb85;
784 refdiv = 3;
785 } else {
786 pll2_divint = 88;
787 pll2_divfrac = 0;
788 refdiv = 5;
789 }
790
791 regval = REG_READ(ah, AR_PHY_PLL_MODE);
792 regval |= (0x1 << 16);
793 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
794 udelay(100);
795
796 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
797 (pll2_divint << 18) | pll2_divfrac);
798 udelay(100);
799
800 regval = REG_READ(ah, AR_PHY_PLL_MODE);
801 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
802 (0x4 << 26) | (0x18 << 19);
803 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
804 REG_WRITE(ah, AR_PHY_PLL_MODE,
805 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
806 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530807 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800808
809 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530810
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100811 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530812
Gabor Juhosa5415d62011-06-21 11:23:29 +0200813 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530814 udelay(1000);
815
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400816 /* Switch the core clock for ar9271 to 117Mhz */
817 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530818 udelay(500);
819 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400820 }
821
Sujithf1dc5602008-10-29 10:16:30 +0530822 udelay(RTC_PLL_SETTLE_DELAY);
823
824 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530825
826 if (AR_SREV_9340(ah)) {
827 if (ah->is_clk_25mhz) {
828 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
829 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
830 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
831 } else {
832 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
833 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
834 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
835 }
836 udelay(100);
837 }
Sujithf1dc5602008-10-29 10:16:30 +0530838}
839
Sujithcbe61d82009-02-09 13:27:12 +0530840static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800841 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530842{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530843 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400844 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530845 AR_IMR_TXURN |
846 AR_IMR_RXERR |
847 AR_IMR_RXORN |
848 AR_IMR_BCNMISC;
849
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530850 if (AR_SREV_9340(ah))
851 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
852
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400853 if (AR_SREV_9300_20_OR_LATER(ah)) {
854 imr_reg |= AR_IMR_RXOK_HP;
855 if (ah->config.rx_intr_mitigation)
856 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
857 else
858 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530859
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400860 } else {
861 if (ah->config.rx_intr_mitigation)
862 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
863 else
864 imr_reg |= AR_IMR_RXOK;
865 }
866
867 if (ah->config.tx_intr_mitigation)
868 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
869 else
870 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530871
Colin McCabed97809d2008-12-01 13:38:55 -0800872 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400873 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530874
Sujith7d0d0df2010-04-16 11:53:57 +0530875 ENABLE_REGWRITE_BUFFER(ah);
876
Pavel Roskin152d5302010-03-31 18:05:37 -0400877 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500878 ah->imrs2_reg |= AR_IMR_S2_GTT;
879 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530880
881 if (!AR_SREV_9100(ah)) {
882 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530883 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530884 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
885 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400886
Sujith7d0d0df2010-04-16 11:53:57 +0530887 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530888
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400889 if (AR_SREV_9300_20_OR_LATER(ah)) {
890 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
891 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
892 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
893 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
894 }
Sujithf1dc5602008-10-29 10:16:30 +0530895}
896
Felix Fietkau0005baf2010-01-15 02:33:40 +0100897static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530898{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100899 u32 val = ath9k_hw_mac_to_clks(ah, us);
900 val = min(val, (u32) 0xFFFF);
901 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530902}
903
Felix Fietkau0005baf2010-01-15 02:33:40 +0100904static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530905{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100906 u32 val = ath9k_hw_mac_to_clks(ah, us);
907 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
908 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
909}
910
911static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
912{
913 u32 val = ath9k_hw_mac_to_clks(ah, us);
914 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
915 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530916}
917
Sujithcbe61d82009-02-09 13:27:12 +0530918static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530919{
Sujithf1dc5602008-10-29 10:16:30 +0530920 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800921 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
922 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530923 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530924 return false;
925 } else {
926 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530927 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530928 return true;
929 }
930}
931
Felix Fietkau0005baf2010-01-15 02:33:40 +0100932void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530933{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100934 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
935 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100936 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100937 int sifstime;
938
Joe Perches226afe62010-12-02 19:12:37 -0800939 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
940 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530941
Sujith2660b812009-02-09 13:27:26 +0530942 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100943 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100944
945 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
946 sifstime = 16;
947 else
948 sifstime = 10;
949
Felix Fietkaue239d852010-01-15 02:34:58 +0100950 /* As defined by IEEE 802.11-2007 17.3.8.6 */
951 slottime = ah->slottime + 3 * ah->coverage_class;
952 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100953
954 /*
955 * Workaround for early ACK timeouts, add an offset to match the
956 * initval's 64us ack timeout value.
957 * This was initially only meant to work around an issue with delayed
958 * BA frames in some implementations, but it has been found to fix ACK
959 * timeout issues in other cases as well.
960 */
961 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
962 acktimeout += 64 - sifstime - ah->slottime;
963
Felix Fietkaucaabf2b2010-12-13 08:40:51 +0100964 ath9k_hw_setslottime(ah, ah->slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100965 ath9k_hw_set_ack_timeout(ah, acktimeout);
966 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530967 if (ah->globaltxtimeout != (u32) -1)
968 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530969}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100970EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530971
Sujith285f2dd2010-01-08 10:36:07 +0530972void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700973{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400974 struct ath_common *common = ath9k_hw_common(ah);
975
Sujith736b3a22010-03-17 14:25:24 +0530976 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400977 goto free_hw;
978
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700979 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400980
981free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400982 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700983}
Sujith285f2dd2010-01-08 10:36:07 +0530984EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700985
Sujithf1dc5602008-10-29 10:16:30 +0530986/*******/
987/* INI */
988/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700989
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400990u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400991{
992 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
993
994 if (IS_CHAN_B(chan))
995 ctl |= CTL_11B;
996 else if (IS_CHAN_G(chan))
997 ctl |= CTL_11G;
998 else
999 ctl |= CTL_11A;
1000
1001 return ctl;
1002}
1003
Sujithf1dc5602008-10-29 10:16:30 +05301004/****************************************/
1005/* Reset and Channel Switching Routines */
1006/****************************************/
1007
Sujithcbe61d82009-02-09 13:27:12 +05301008static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301009{
Felix Fietkau57b32222010-04-15 17:39:22 -04001010 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301011
Sujith7d0d0df2010-04-16 11:53:57 +05301012 ENABLE_REGWRITE_BUFFER(ah);
1013
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001014 /*
1015 * set AHB_MODE not to do cacheline prefetches
1016 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001017 if (!AR_SREV_9300_20_OR_LATER(ah))
1018 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301019
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001020 /*
1021 * let mac dma reads be in 128 byte chunks
1022 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001023 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301024
Sujith7d0d0df2010-04-16 11:53:57 +05301025 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301026
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001027 /*
1028 * Restore TX Trigger Level to its pre-reset value.
1029 * The initial value depends on whether aggregation is enabled, and is
1030 * adjusted whenever underruns are detected.
1031 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001032 if (!AR_SREV_9300_20_OR_LATER(ah))
1033 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301034
Sujith7d0d0df2010-04-16 11:53:57 +05301035 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301036
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001037 /*
1038 * let mac dma writes be in 128 byte chunks
1039 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001040 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301041
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001042 /*
1043 * Setup receive FIFO threshold to hold off TX activities
1044 */
Sujithf1dc5602008-10-29 10:16:30 +05301045 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1046
Felix Fietkau57b32222010-04-15 17:39:22 -04001047 if (AR_SREV_9300_20_OR_LATER(ah)) {
1048 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1049 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1050
1051 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1052 ah->caps.rx_status_len);
1053 }
1054
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001055 /*
1056 * reduce the number of usable entries in PCU TXBUF to avoid
1057 * wrap around issues.
1058 */
Sujithf1dc5602008-10-29 10:16:30 +05301059 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001060 /* For AR9285 the number of Fifos are reduced to half.
1061 * So set the usable tx buf size also to half to
1062 * avoid data/delimiter underruns
1063 */
Sujithf1dc5602008-10-29 10:16:30 +05301064 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1065 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001066 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301067 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1068 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1069 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001070
Sujith7d0d0df2010-04-16 11:53:57 +05301071 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301072
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001073 if (AR_SREV_9300_20_OR_LATER(ah))
1074 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301075}
1076
Sujithcbe61d82009-02-09 13:27:12 +05301077static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301078{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001079 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1080 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301081
Sujithf1dc5602008-10-29 10:16:30 +05301082 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001083 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001084 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001085 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301086 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1087 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001088 case NL80211_IFTYPE_AP:
1089 set |= AR_STA_ID1_STA_AP;
1090 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001091 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001092 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301093 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301094 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001095 if (!ah->is_monitoring)
1096 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301097 break;
Sujithf1dc5602008-10-29 10:16:30 +05301098 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001099 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301100}
1101
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001102void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1103 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001104{
1105 u32 coef_exp, coef_man;
1106
1107 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1108 if ((coef_scaled >> coef_exp) & 0x1)
1109 break;
1110
1111 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1112
1113 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1114
1115 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1116 *coef_exponent = coef_exp - 16;
1117}
1118
Sujithcbe61d82009-02-09 13:27:12 +05301119static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301120{
1121 u32 rst_flags;
1122 u32 tmpReg;
1123
Sujith70768492009-02-16 13:23:12 +05301124 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001125 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1126 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301127 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1128 }
1129
Sujith7d0d0df2010-04-16 11:53:57 +05301130 ENABLE_REGWRITE_BUFFER(ah);
1131
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001132 if (AR_SREV_9300_20_OR_LATER(ah)) {
1133 REG_WRITE(ah, AR_WA, ah->WARegVal);
1134 udelay(10);
1135 }
1136
Sujithf1dc5602008-10-29 10:16:30 +05301137 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1138 AR_RTC_FORCE_WAKE_ON_INT);
1139
1140 if (AR_SREV_9100(ah)) {
1141 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1142 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1143 } else {
1144 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1145 if (tmpReg &
1146 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1147 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001148 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301149 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001150
1151 val = AR_RC_HOSTIF;
1152 if (!AR_SREV_9300_20_OR_LATER(ah))
1153 val |= AR_RC_AHB;
1154 REG_WRITE(ah, AR_RC, val);
1155
1156 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301157 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301158
1159 rst_flags = AR_RTC_RC_MAC_WARM;
1160 if (type == ATH9K_RESET_COLD)
1161 rst_flags |= AR_RTC_RC_MAC_COLD;
1162 }
1163
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001164 if (AR_SREV_9330(ah)) {
1165 int npend = 0;
1166 int i;
1167
1168 /* AR9330 WAR:
1169 * call external reset function to reset WMAC if:
1170 * - doing a cold reset
1171 * - we have pending frames in the TX queues
1172 */
1173
1174 for (i = 0; i < AR_NUM_QCU; i++) {
1175 npend = ath9k_hw_numtxpending(ah, i);
1176 if (npend)
1177 break;
1178 }
1179
1180 if (ah->external_reset &&
1181 (npend || type == ATH9K_RESET_COLD)) {
1182 int reset_err = 0;
1183
1184 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1185 "reset MAC via external reset\n");
1186
1187 reset_err = ah->external_reset();
1188 if (reset_err) {
1189 ath_err(ath9k_hw_common(ah),
1190 "External reset failed, err=%d\n",
1191 reset_err);
1192 return false;
1193 }
1194
1195 REG_WRITE(ah, AR_RTC_RESET, 1);
1196 }
1197 }
1198
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001199 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301200
1201 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301202
Sujithf1dc5602008-10-29 10:16:30 +05301203 udelay(50);
1204
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001205 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301206 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001207 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1208 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301209 return false;
1210 }
1211
1212 if (!AR_SREV_9100(ah))
1213 REG_WRITE(ah, AR_RC, 0);
1214
Sujithf1dc5602008-10-29 10:16:30 +05301215 if (AR_SREV_9100(ah))
1216 udelay(50);
1217
1218 return true;
1219}
1220
Sujithcbe61d82009-02-09 13:27:12 +05301221static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301222{
Sujith7d0d0df2010-04-16 11:53:57 +05301223 ENABLE_REGWRITE_BUFFER(ah);
1224
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001225 if (AR_SREV_9300_20_OR_LATER(ah)) {
1226 REG_WRITE(ah, AR_WA, ah->WARegVal);
1227 udelay(10);
1228 }
1229
Sujithf1dc5602008-10-29 10:16:30 +05301230 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1231 AR_RTC_FORCE_WAKE_ON_INT);
1232
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001233 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301234 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1235
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001236 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301237
Sujith7d0d0df2010-04-16 11:53:57 +05301238 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301239
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001240 if (!AR_SREV_9300_20_OR_LATER(ah))
1241 udelay(2);
1242
1243 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301244 REG_WRITE(ah, AR_RC, 0);
1245
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001246 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301247
1248 if (!ath9k_hw_wait(ah,
1249 AR_RTC_STATUS,
1250 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301251 AR_RTC_STATUS_ON,
1252 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001253 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1254 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301255 return false;
1256 }
1257
Sujithf1dc5602008-10-29 10:16:30 +05301258 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1259}
1260
Sujithcbe61d82009-02-09 13:27:12 +05301261static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301262{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001263 if (AR_SREV_9300_20_OR_LATER(ah)) {
1264 REG_WRITE(ah, AR_WA, ah->WARegVal);
1265 udelay(10);
1266 }
1267
Sujithf1dc5602008-10-29 10:16:30 +05301268 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1269 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1270
1271 switch (type) {
1272 case ATH9K_RESET_POWER_ON:
1273 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301274 case ATH9K_RESET_WARM:
1275 case ATH9K_RESET_COLD:
1276 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301277 default:
1278 return false;
1279 }
1280}
1281
Sujithcbe61d82009-02-09 13:27:12 +05301282static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301283 struct ath9k_channel *chan)
1284{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301285 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301286 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1287 return false;
1288 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301289 return false;
1290
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001291 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301292 return false;
1293
Sujith2660b812009-02-09 13:27:26 +05301294 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301295 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301296 ath9k_hw_set_rfmode(ah, chan);
1297
1298 return true;
1299}
1300
Sujithcbe61d82009-02-09 13:27:12 +05301301static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001302 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301303{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001304 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001305 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001306 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001307 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001308 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301309
1310 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1311 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001312 ath_dbg(common, ATH_DBG_QUEUE,
1313 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301314 return false;
1315 }
1316 }
1317
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001318 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001319 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301320 return false;
1321 }
1322
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001323 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301324
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001325 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001326 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001327 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001328 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301329 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001330 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301331
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001332 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001333 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301334 channel->max_antenna_gain * 2,
1335 channel->max_power * 2,
1336 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001337 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301338
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001339 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301340
1341 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1342 ath9k_hw_set_delta_slope(ah, chan);
1343
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001344 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301345
Sujithf1dc5602008-10-29 10:16:30 +05301346 return true;
1347}
1348
Felix Fietkau691680b2011-03-19 13:55:38 +01001349static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1350{
1351 u32 gpio_mask = ah->gpio_mask;
1352 int i;
1353
1354 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1355 if (!(gpio_mask & 1))
1356 continue;
1357
1358 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1359 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1360 }
1361}
1362
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001363bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301364{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001365 int count = 50;
1366 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301367
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001368 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001369 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301370
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001371 do {
1372 reg = REG_READ(ah, AR_OBS_BUS_1);
1373
1374 if ((reg & 0x7E7FFFEF) == 0x00702400)
1375 continue;
1376
1377 switch (reg & 0x7E000B00) {
1378 case 0x1E000000:
1379 case 0x52000B00:
1380 case 0x18000B00:
1381 continue;
1382 default:
1383 return true;
1384 }
1385 } while (count-- > 0);
1386
1387 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301388}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001389EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301390
Sujithcbe61d82009-02-09 13:27:12 +05301391int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001392 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001394 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001395 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301396 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397 u32 saveDefAntenna;
1398 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301399 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001400 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001401
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001402 ah->txchainmask = common->tx_chainmask;
1403 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001404
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001405 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001406 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001407
Felix Fietkaud9891c72010-09-29 17:15:27 +02001408 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001409 ath9k_hw_getnf(ah, curchan);
1410
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001411 ah->caldata = caldata;
1412 if (caldata &&
1413 (chan->channel != caldata->channel ||
1414 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1415 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1416 /* Operating channel changed, reset channel calibration data */
1417 memset(caldata, 0, sizeof(*caldata));
1418 ath9k_init_nfcal_hist_buffer(ah, chan);
1419 }
1420
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301422 (ah->chip_fullsleep != true) &&
1423 (ah->curchan != NULL) &&
1424 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001425 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301426 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301427 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001429 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301430 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001431 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301432 if (AR_SREV_9271(ah))
1433 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001434 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001435 }
1436 }
1437
1438 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1439 if (saveDefAntenna == 0)
1440 saveDefAntenna = 1;
1441
1442 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1443
Sujith46fe7822009-09-17 09:25:25 +05301444 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001445 if (AR_SREV_9100(ah) ||
1446 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301447 tsf = ath9k_hw_gettsf64(ah);
1448
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001449 saveLedState = REG_READ(ah, AR_CFG_LED) &
1450 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1451 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1452
1453 ath9k_hw_mark_phy_inactive(ah);
1454
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001455 ah->paprd_table_write_done = false;
1456
Sujith05020d22010-03-17 14:25:23 +05301457 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001458 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1459 REG_WRITE(ah,
1460 AR9271_RESET_POWER_DOWN_CONTROL,
1461 AR9271_RADIO_RF_RST);
1462 udelay(50);
1463 }
1464
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001465 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001466 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001467 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468 }
1469
Sujith05020d22010-03-17 14:25:23 +05301470 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001471 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1472 ah->htc_reset_init = false;
1473 REG_WRITE(ah,
1474 AR9271_RESET_POWER_DOWN_CONTROL,
1475 AR9271_GATE_MAC_CTL);
1476 udelay(50);
1477 }
1478
Sujith46fe7822009-09-17 09:25:25 +05301479 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001480 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301481 ath9k_hw_settsf64(ah, tsf);
1482
Felix Fietkau7a370812010-09-22 12:34:52 +02001483 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301484 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001485
Sujithe9141f72010-06-01 15:14:10 +05301486 if (!AR_SREV_9300_20_OR_LATER(ah))
1487 ar9002_hw_enable_async_fifo(ah);
1488
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001489 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001490 if (r)
1491 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492
Felix Fietkauf860d522010-06-30 02:07:48 +02001493 /*
1494 * Some AR91xx SoC devices frequently fail to accept TSF writes
1495 * right after the chip reset. When that happens, write a new
1496 * value after the initvals have been applied, with an offset
1497 * based on measured time difference
1498 */
1499 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1500 tsf += 1500;
1501 ath9k_hw_settsf64(ah, tsf);
1502 }
1503
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001504 /* Setup MFP options for CCMP */
1505 if (AR_SREV_9280_20_OR_LATER(ah)) {
1506 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1507 * frames when constructing CCMP AAD. */
1508 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1509 0xc7ff);
1510 ah->sw_mgmt_crypto = false;
1511 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1512 /* Disable hardware crypto for management frames */
1513 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1514 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1515 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1516 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1517 ah->sw_mgmt_crypto = true;
1518 } else
1519 ah->sw_mgmt_crypto = true;
1520
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001521 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1522 ath9k_hw_set_delta_slope(ah, chan);
1523
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001524 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301525 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001526
Sujith7d0d0df2010-04-16 11:53:57 +05301527 ENABLE_REGWRITE_BUFFER(ah);
1528
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001529 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1530 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001531 | macStaId1
1532 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301533 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301534 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301535 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001536 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001537 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001538 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001539 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001540 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1541
Sujith7d0d0df2010-04-16 11:53:57 +05301542 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301543
Sujith Manoharan00e00032011-01-26 21:59:05 +05301544 ath9k_hw_set_operating_mode(ah, ah->opmode);
1545
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001546 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001547 if (r)
1548 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001549
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001550 ath9k_hw_set_clockrate(ah);
1551
Sujith7d0d0df2010-04-16 11:53:57 +05301552 ENABLE_REGWRITE_BUFFER(ah);
1553
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554 for (i = 0; i < AR_NUM_DCU; i++)
1555 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1556
Sujith7d0d0df2010-04-16 11:53:57 +05301557 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301558
Sujith2660b812009-02-09 13:27:26 +05301559 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001560 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001561 ath9k_hw_resettxqueue(ah, i);
1562
Sujith2660b812009-02-09 13:27:26 +05301563 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001564 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001565 ath9k_hw_init_qos(ah);
1566
Sujith2660b812009-02-09 13:27:26 +05301567 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001568 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301569
Felix Fietkau0005baf2010-01-15 02:33:40 +01001570 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001571
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001572 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301573 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001574 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301575 }
1576
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001577 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001578
1579 ath9k_hw_set_dma(ah);
1580
1581 REG_WRITE(ah, AR_OBS, 8);
1582
Sujith0ce024c2009-12-14 14:57:00 +05301583 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001584 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1585 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1586 }
1587
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001588 if (ah->config.tx_intr_mitigation) {
1589 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1590 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1591 }
1592
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001593 ath9k_hw_init_bb(ah, chan);
1594
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001595 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001596 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001597
Sujith7d0d0df2010-04-16 11:53:57 +05301598 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001599
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001600 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001601 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1602
Sujith7d0d0df2010-04-16 11:53:57 +05301603 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301604
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001605 /*
1606 * For big endian systems turn on swapping for descriptors
1607 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001608 if (AR_SREV_9100(ah)) {
1609 u32 mask;
1610 mask = REG_READ(ah, AR_CFG);
1611 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001612 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301613 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001614 } else {
1615 mask =
1616 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1617 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001618 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301619 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001620 }
1621 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301622 if (common->bus_ops->ath_bus_type == ATH_USB) {
1623 /* Configure AR9271 target WLAN */
1624 if (AR_SREV_9271(ah))
1625 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1626 else
1627 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1628 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001629#ifdef __BIG_ENDIAN
Gabor Juhos4033bda2011-06-21 11:23:35 +02001630 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301631 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1632 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001633 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001634#endif
1635 }
1636
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001637 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301638 ath9k_hw_btcoex_enable(ah);
1639
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301640 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001641 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001642
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301643 ar9003_hw_disable_phy_restart(ah);
1644 }
1645
Felix Fietkau691680b2011-03-19 13:55:38 +01001646 ath9k_hw_apply_gpio_override(ah);
1647
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001648 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001650EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651
Sujithf1dc5602008-10-29 10:16:30 +05301652/******************************/
1653/* Power Management (Chipset) */
1654/******************************/
1655
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001656/*
1657 * Notify Power Mgt is disabled in self-generated frames.
1658 * If requested, force chip to sleep.
1659 */
Sujithcbe61d82009-02-09 13:27:12 +05301660static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301661{
1662 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1663 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001664 /*
1665 * Clear the RTC force wake bit to allow the
1666 * mac to go to sleep.
1667 */
Sujithf1dc5602008-10-29 10:16:30 +05301668 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1669 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001670 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301671 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1672
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001673 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301674 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301675 REG_CLR_BIT(ah, (AR_RTC_RESET),
1676 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301677 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001678
1679 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1680 if (AR_SREV_9300_20_OR_LATER(ah))
1681 REG_WRITE(ah, AR_WA,
1682 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001683}
1684
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001685/*
1686 * Notify Power Management is enabled in self-generating
1687 * frames. If request, set power mode of chip to
1688 * auto/normal. Duration in units of 128us (1/8 TU).
1689 */
Sujithcbe61d82009-02-09 13:27:12 +05301690static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001691{
Sujithf1dc5602008-10-29 10:16:30 +05301692 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1693 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301694 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001695
Sujithf1dc5602008-10-29 10:16:30 +05301696 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001697 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301698 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1699 AR_RTC_FORCE_WAKE_ON_INT);
1700 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001701 /*
1702 * Clear the RTC force wake bit to allow the
1703 * mac to go to sleep.
1704 */
Sujithf1dc5602008-10-29 10:16:30 +05301705 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1706 AR_RTC_FORCE_WAKE_EN);
1707 }
1708 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001709
1710 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1711 if (AR_SREV_9300_20_OR_LATER(ah))
1712 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301713}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001714
Sujithcbe61d82009-02-09 13:27:12 +05301715static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301716{
1717 u32 val;
1718 int i;
1719
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001720 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1721 if (AR_SREV_9300_20_OR_LATER(ah)) {
1722 REG_WRITE(ah, AR_WA, ah->WARegVal);
1723 udelay(10);
1724 }
1725
Sujithf1dc5602008-10-29 10:16:30 +05301726 if (setChip) {
1727 if ((REG_READ(ah, AR_RTC_STATUS) &
1728 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1729 if (ath9k_hw_set_reset_reg(ah,
1730 ATH9K_RESET_POWER_ON) != true) {
1731 return false;
1732 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001733 if (!AR_SREV_9300_20_OR_LATER(ah))
1734 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301735 }
1736 if (AR_SREV_9100(ah))
1737 REG_SET_BIT(ah, AR_RTC_RESET,
1738 AR_RTC_RESET_EN);
1739
1740 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1741 AR_RTC_FORCE_WAKE_EN);
1742 udelay(50);
1743
1744 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1745 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1746 if (val == AR_RTC_STATUS_ON)
1747 break;
1748 udelay(50);
1749 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1750 AR_RTC_FORCE_WAKE_EN);
1751 }
1752 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001753 ath_err(ath9k_hw_common(ah),
1754 "Failed to wakeup in %uus\n",
1755 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301756 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001757 }
1758 }
1759
Sujithf1dc5602008-10-29 10:16:30 +05301760 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1761
1762 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001763}
1764
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001765bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301766{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001767 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301768 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301769 static const char *modes[] = {
1770 "AWAKE",
1771 "FULL-SLEEP",
1772 "NETWORK SLEEP",
1773 "UNDEFINED"
1774 };
Sujithf1dc5602008-10-29 10:16:30 +05301775
Gabor Juhoscbdec972009-07-24 17:27:22 +02001776 if (ah->power_mode == mode)
1777 return status;
1778
Joe Perches226afe62010-12-02 19:12:37 -08001779 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1780 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301781
1782 switch (mode) {
1783 case ATH9K_PM_AWAKE:
1784 status = ath9k_hw_set_power_awake(ah, setChip);
1785 break;
1786 case ATH9K_PM_FULL_SLEEP:
1787 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301788 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301789 break;
1790 case ATH9K_PM_NETWORK_SLEEP:
1791 ath9k_set_power_network_sleep(ah, setChip);
1792 break;
1793 default:
Joe Perches38002762010-12-02 19:12:36 -08001794 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301795 return false;
1796 }
Sujith2660b812009-02-09 13:27:26 +05301797 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301798
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001799 /*
1800 * XXX: If this warning never comes up after a while then
1801 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1802 * ath9k_hw_setpower() return type void.
1803 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301804
1805 if (!(ah->ah_flags & AH_UNPLUGGED))
1806 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001807
Sujithf1dc5602008-10-29 10:16:30 +05301808 return status;
1809}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001810EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301811
Sujithf1dc5602008-10-29 10:16:30 +05301812/*******************/
1813/* Beacon Handling */
1814/*******************/
1815
Sujithcbe61d82009-02-09 13:27:12 +05301816void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001818 int flags = 0;
1819
Sujith7d0d0df2010-04-16 11:53:57 +05301820 ENABLE_REGWRITE_BUFFER(ah);
1821
Sujith2660b812009-02-09 13:27:26 +05301822 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001823 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001824 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001825 REG_SET_BIT(ah, AR_TXCFG,
1826 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01001827 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
1828 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001830 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01001831 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
1832 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
1833 TU_TO_USEC(ah->config.dma_beacon_response_time));
1834 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
1835 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001836 flags |=
1837 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1838 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001839 default:
Joe Perches226afe62010-12-02 19:12:37 -08001840 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1841 "%s: unsupported opmode: %d\n",
1842 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001843 return;
1844 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845 }
1846
Felix Fietkaudd347f22011-03-22 21:54:17 +01001847 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
1848 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
1849 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
1850 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001851
Sujith7d0d0df2010-04-16 11:53:57 +05301852 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301853
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001854 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1855}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001856EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001857
Sujithcbe61d82009-02-09 13:27:12 +05301858void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301859 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001860{
1861 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301862 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001863 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864
Sujith7d0d0df2010-04-16 11:53:57 +05301865 ENABLE_REGWRITE_BUFFER(ah);
1866
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001867 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1868
1869 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301870 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301872 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873
Sujith7d0d0df2010-04-16 11:53:57 +05301874 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301875
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876 REG_RMW_FIELD(ah, AR_RSSI_THR,
1877 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1878
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301879 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001880
1881 if (bs->bs_sleepduration > beaconintval)
1882 beaconintval = bs->bs_sleepduration;
1883
1884 dtimperiod = bs->bs_dtimperiod;
1885 if (bs->bs_sleepduration > dtimperiod)
1886 dtimperiod = bs->bs_sleepduration;
1887
1888 if (beaconintval == dtimperiod)
1889 nextTbtt = bs->bs_nextdtim;
1890 else
1891 nextTbtt = bs->bs_nexttbtt;
1892
Joe Perches226afe62010-12-02 19:12:37 -08001893 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1894 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1895 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1896 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897
Sujith7d0d0df2010-04-16 11:53:57 +05301898 ENABLE_REGWRITE_BUFFER(ah);
1899
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900 REG_WRITE(ah, AR_NEXT_DTIM,
1901 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1902 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1903
1904 REG_WRITE(ah, AR_SLEEP1,
1905 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1906 | AR_SLEEP1_ASSUME_DTIM);
1907
Sujith60b67f52008-08-07 10:52:38 +05301908 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1910 else
1911 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1912
1913 REG_WRITE(ah, AR_SLEEP2,
1914 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1915
1916 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1917 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1918
Sujith7d0d0df2010-04-16 11:53:57 +05301919 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301920
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001921 REG_SET_BIT(ah, AR_TIMER_MODE,
1922 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1923 AR_DTIM_TIMER_EN);
1924
Sujith4af9cf42009-02-12 10:06:47 +05301925 /* TSF Out of Range Threshold */
1926 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001928EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001929
Sujithf1dc5602008-10-29 10:16:30 +05301930/*******************/
1931/* HW Capabilities */
1932/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001933
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001934int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001935{
Sujith2660b812009-02-09 13:27:26 +05301936 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001937 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001938 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001939 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001940
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05301941 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001942 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001943
Sujithf74df6f2009-02-09 13:27:24 +05301944 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001945 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301946
Sujithf74df6f2009-02-09 13:27:24 +05301947 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001948 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301949 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001950 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301951
Sujith2660b812009-02-09 13:27:26 +05301952 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301953 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001954 if (regulatory->current_rd == 0x64 ||
1955 regulatory->current_rd == 0x65)
1956 regulatory->current_rd += 5;
1957 else if (regulatory->current_rd == 0x41)
1958 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001959 ath_dbg(common, ATH_DBG_REGULATORY,
1960 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001961 }
Sujithdc2222a2008-08-14 13:26:55 +05301962
Sujithf74df6f2009-02-09 13:27:24 +05301963 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001964 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001965 ath_err(common,
1966 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001967 return -EINVAL;
1968 }
1969
Felix Fietkaud4659912010-10-14 16:02:39 +02001970 if (eeval & AR5416_OPFLAGS_11A)
1971 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001972
Felix Fietkaud4659912010-10-14 16:02:39 +02001973 if (eeval & AR5416_OPFLAGS_11G)
1974 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301975
Sujithf74df6f2009-02-09 13:27:24 +05301976 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001977 /*
1978 * For AR9271 we will temporarilly uses the rx chainmax as read from
1979 * the EEPROM.
1980 */
Sujith8147f5d2009-02-20 15:13:23 +05301981 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001982 !(eeval & AR5416_OPFLAGS_11A) &&
1983 !(AR_SREV_9271(ah)))
1984 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301985 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01001986 else if (AR_SREV_9100(ah))
1987 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05301988 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001989 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301990 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301991
Felix Fietkau7a370812010-09-22 12:34:52 +02001992 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301993
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001994 /* enable key search for every frame in an aggregate */
1995 if (AR_SREV_9300_20_OR_LATER(ah))
1996 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1997
Bruno Randolfce2220d2010-09-17 11:36:25 +09001998 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1999
Felix Fietkau0db156e2011-03-23 20:57:29 +01002000 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302001 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2002 else
2003 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2004
Sujith5b5fa352010-03-17 14:25:15 +05302005 if (AR_SREV_9271(ah))
2006 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302007 else if (AR_DEVID_7010(ah))
2008 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002009 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302010 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02002011 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302012 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2013 else
2014 pCap->num_gpio_pins = AR_NUM_GPIO;
2015
Sujithf1dc5602008-10-29 10:16:30 +05302016 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2017 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2018 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2019 } else {
2020 pCap->rts_aggr_limit = (8 * 1024);
2021 }
2022
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302023#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302024 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2025 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2026 ah->rfkill_gpio =
2027 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2028 ah->rfkill_polarity =
2029 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302030
2031 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2032 }
2033#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002034 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302035 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2036 else
2037 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302038
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302039 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302040 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2041 else
2042 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2043
Vivek Natarajana6ef5302011-04-26 10:39:53 +05302044 if (common->btcoex_enabled) {
2045 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002046 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
Vivek Natarajana6ef5302011-04-26 10:39:53 +05302047 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9300;
2048 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9300;
2049 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9300;
2050 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
2051 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9280;
2052 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9280;
2053
2054 if (AR_SREV_9285(ah)) {
2055 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2056 btcoex_hw->btpriority_gpio =
2057 ATH_BTPRIORITY_GPIO_9285;
2058 } else {
2059 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
2060 }
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302061 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302062 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002063 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302064 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002065
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002066 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002067 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Gabor Juhos0e707a92011-06-21 11:23:31 +02002068 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002069 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2070
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002071 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2072 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2073 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002074 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002075 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08002076 if (!ah->config.paprd_disable &&
2077 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04002078 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002079 } else {
2080 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002081 if (AR_SREV_9280_20(ah) &&
2082 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2083 AR5416_EEP_MINOR_VER_16) ||
2084 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2085 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002086 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002087
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002088 if (AR_SREV_9300_20_OR_LATER(ah))
2089 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2090
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002091 if (AR_SREV_9300_20_OR_LATER(ah))
2092 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2093
Felix Fietkaua42acef2010-09-22 12:34:54 +02002094 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002095 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2096
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002097 if (AR_SREV_9285(ah))
2098 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2099 ant_div_ctl1 =
2100 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2101 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2102 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2103 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302104 if (AR_SREV_9300_20_OR_LATER(ah)) {
2105 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2106 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2107 }
2108
2109
Gabor Juhos431da562011-06-21 11:23:41 +02002110 if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302111 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2112 /*
2113 * enable the diversity-combining algorithm only when
2114 * both enable_lna_div and enable_fast_div are set
2115 * Table for Diversity
2116 * ant_div_alt_lnaconf bit 0-1
2117 * ant_div_main_lnaconf bit 2-3
2118 * ant_div_alt_gaintb bit 4
2119 * ant_div_main_gaintb bit 5
2120 * enable_ant_div_lnadiv bit 6
2121 * enable_ant_fast_div bit 7
2122 */
2123 if ((ant_div_ctl1 >> 0x6) == 0x3)
2124 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2125 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002126
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002127 if (AR_SREV_9485_10(ah)) {
2128 pCap->pcie_lcr_extsync_en = true;
2129 pCap->pcie_lcr_offset = 0x80;
2130 }
2131
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002132 tx_chainmask = pCap->tx_chainmask;
2133 rx_chainmask = pCap->rx_chainmask;
2134 while (tx_chainmask || rx_chainmask) {
2135 if (tx_chainmask & BIT(0))
2136 pCap->max_txchains++;
2137 if (rx_chainmask & BIT(0))
2138 pCap->max_rxchains++;
2139
2140 tx_chainmask >>= 1;
2141 rx_chainmask >>= 1;
2142 }
2143
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002144 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002145}
2146
Sujithf1dc5602008-10-29 10:16:30 +05302147/****************************/
2148/* GPIO / RFKILL / Antennae */
2149/****************************/
2150
Sujithcbe61d82009-02-09 13:27:12 +05302151static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302152 u32 gpio, u32 type)
2153{
2154 int addr;
2155 u32 gpio_shift, tmp;
2156
2157 if (gpio > 11)
2158 addr = AR_GPIO_OUTPUT_MUX3;
2159 else if (gpio > 5)
2160 addr = AR_GPIO_OUTPUT_MUX2;
2161 else
2162 addr = AR_GPIO_OUTPUT_MUX1;
2163
2164 gpio_shift = (gpio % 6) * 5;
2165
2166 if (AR_SREV_9280_20_OR_LATER(ah)
2167 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2168 REG_RMW(ah, addr, (type << gpio_shift),
2169 (0x1f << gpio_shift));
2170 } else {
2171 tmp = REG_READ(ah, addr);
2172 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2173 tmp &= ~(0x1f << gpio_shift);
2174 tmp |= (type << gpio_shift);
2175 REG_WRITE(ah, addr, tmp);
2176 }
2177}
2178
Sujithcbe61d82009-02-09 13:27:12 +05302179void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302180{
2181 u32 gpio_shift;
2182
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002183 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302184
Sujith88c1f4f2010-06-30 14:46:31 +05302185 if (AR_DEVID_7010(ah)) {
2186 gpio_shift = gpio;
2187 REG_RMW(ah, AR7010_GPIO_OE,
2188 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2189 (AR7010_GPIO_OE_MASK << gpio_shift));
2190 return;
2191 }
Sujithf1dc5602008-10-29 10:16:30 +05302192
Sujith88c1f4f2010-06-30 14:46:31 +05302193 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302194 REG_RMW(ah,
2195 AR_GPIO_OE_OUT,
2196 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2197 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2198}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002199EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302200
Sujithcbe61d82009-02-09 13:27:12 +05302201u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302202{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302203#define MS_REG_READ(x, y) \
2204 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2205
Sujith2660b812009-02-09 13:27:26 +05302206 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302207 return 0xffffffff;
2208
Sujith88c1f4f2010-06-30 14:46:31 +05302209 if (AR_DEVID_7010(ah)) {
2210 u32 val;
2211 val = REG_READ(ah, AR7010_GPIO_IN);
2212 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2213 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002214 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2215 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002216 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302217 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002218 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302219 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002220 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302221 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002222 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302223 return MS_REG_READ(AR928X, gpio) != 0;
2224 else
2225 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302226}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002227EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302228
Sujithcbe61d82009-02-09 13:27:12 +05302229void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302230 u32 ah_signal_type)
2231{
2232 u32 gpio_shift;
2233
Sujith88c1f4f2010-06-30 14:46:31 +05302234 if (AR_DEVID_7010(ah)) {
2235 gpio_shift = gpio;
2236 REG_RMW(ah, AR7010_GPIO_OE,
2237 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2238 (AR7010_GPIO_OE_MASK << gpio_shift));
2239 return;
2240 }
2241
Sujithf1dc5602008-10-29 10:16:30 +05302242 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302243 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302244 REG_RMW(ah,
2245 AR_GPIO_OE_OUT,
2246 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2247 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2248}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002249EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302250
Sujithcbe61d82009-02-09 13:27:12 +05302251void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302252{
Sujith88c1f4f2010-06-30 14:46:31 +05302253 if (AR_DEVID_7010(ah)) {
2254 val = val ? 0 : 1;
2255 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2256 AR_GPIO_BIT(gpio));
2257 return;
2258 }
2259
Sujith5b5fa352010-03-17 14:25:15 +05302260 if (AR_SREV_9271(ah))
2261 val = ~val;
2262
Sujithf1dc5602008-10-29 10:16:30 +05302263 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2264 AR_GPIO_BIT(gpio));
2265}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002266EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302267
Sujithcbe61d82009-02-09 13:27:12 +05302268u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302269{
2270 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2271}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002272EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302273
Sujithcbe61d82009-02-09 13:27:12 +05302274void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302275{
2276 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2277}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002278EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302279
Sujithf1dc5602008-10-29 10:16:30 +05302280/*********************/
2281/* General Operation */
2282/*********************/
2283
Sujithcbe61d82009-02-09 13:27:12 +05302284u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302285{
2286 u32 bits = REG_READ(ah, AR_RX_FILTER);
2287 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2288
2289 if (phybits & AR_PHY_ERR_RADAR)
2290 bits |= ATH9K_RX_FILTER_PHYRADAR;
2291 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2292 bits |= ATH9K_RX_FILTER_PHYERR;
2293
2294 return bits;
2295}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002296EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302297
Sujithcbe61d82009-02-09 13:27:12 +05302298void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302299{
2300 u32 phybits;
2301
Sujith7d0d0df2010-04-16 11:53:57 +05302302 ENABLE_REGWRITE_BUFFER(ah);
2303
Sujith7ea310b2009-09-03 12:08:43 +05302304 REG_WRITE(ah, AR_RX_FILTER, bits);
2305
Sujithf1dc5602008-10-29 10:16:30 +05302306 phybits = 0;
2307 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2308 phybits |= AR_PHY_ERR_RADAR;
2309 if (bits & ATH9K_RX_FILTER_PHYERR)
2310 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2311 REG_WRITE(ah, AR_PHY_ERR, phybits);
2312
2313 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002314 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302315 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002316 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302317
2318 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302319}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002320EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302321
Sujithcbe61d82009-02-09 13:27:12 +05302322bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302323{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302324 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2325 return false;
2326
2327 ath9k_hw_init_pll(ah, NULL);
2328 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302329}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002330EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302331
Sujithcbe61d82009-02-09 13:27:12 +05302332bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302333{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002334 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302335 return false;
2336
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302337 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2338 return false;
2339
2340 ath9k_hw_init_pll(ah, NULL);
2341 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302342}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002343EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302344
Felix Fietkaude40f312010-10-20 03:08:53 +02002345void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302346{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002347 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302348 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002349 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302350
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002351 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302352
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002353 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002354 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002355 channel->max_antenna_gain * 2,
2356 channel->max_power * 2,
2357 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002358 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302359}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002360EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302361
Sujithcbe61d82009-02-09 13:27:12 +05302362void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302363{
Sujith2660b812009-02-09 13:27:26 +05302364 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302365}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002366EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302367
Sujithcbe61d82009-02-09 13:27:12 +05302368void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302369{
2370 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2371 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2372}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002373EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302374
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002375void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302376{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002377 struct ath_common *common = ath9k_hw_common(ah);
2378
2379 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2380 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2381 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302382}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002383EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302384
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002385#define ATH9K_MAX_TSF_READ 10
2386
Sujithcbe61d82009-02-09 13:27:12 +05302387u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302388{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002389 u32 tsf_lower, tsf_upper1, tsf_upper2;
2390 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302391
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002392 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2393 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2394 tsf_lower = REG_READ(ah, AR_TSF_L32);
2395 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2396 if (tsf_upper2 == tsf_upper1)
2397 break;
2398 tsf_upper1 = tsf_upper2;
2399 }
Sujithf1dc5602008-10-29 10:16:30 +05302400
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002401 WARN_ON( i == ATH9K_MAX_TSF_READ );
2402
2403 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302404}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002405EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302406
Sujithcbe61d82009-02-09 13:27:12 +05302407void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002408{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002409 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002410 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002411}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002412EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002413
Sujithcbe61d82009-02-09 13:27:12 +05302414void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302415{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002416 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2417 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002418 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2419 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002420
Sujithf1dc5602008-10-29 10:16:30 +05302421 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002422}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002423EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002424
Sujith54e4cec2009-08-07 09:45:09 +05302425void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002426{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302428 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429 else
Sujith2660b812009-02-09 13:27:26 +05302430 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002431}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002432EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002434void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002435{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002436 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302437 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002438
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002439 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302440 macmode = AR_2040_JOINED_RX_CLEAR;
2441 else
2442 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443
Sujithf1dc5602008-10-29 10:16:30 +05302444 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302446
2447/* HW Generic timers configuration */
2448
2449static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2450{
2451 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2452 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2453 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2454 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2455 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2456 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2457 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2458 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2459 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2460 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2461 AR_NDP2_TIMER_MODE, 0x0002},
2462 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2463 AR_NDP2_TIMER_MODE, 0x0004},
2464 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2465 AR_NDP2_TIMER_MODE, 0x0008},
2466 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2467 AR_NDP2_TIMER_MODE, 0x0010},
2468 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2469 AR_NDP2_TIMER_MODE, 0x0020},
2470 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2471 AR_NDP2_TIMER_MODE, 0x0040},
2472 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2473 AR_NDP2_TIMER_MODE, 0x0080}
2474};
2475
2476/* HW generic timer primitives */
2477
2478/* compute and clear index of rightmost 1 */
2479static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2480{
2481 u32 b;
2482
2483 b = *mask;
2484 b &= (0-b);
2485 *mask &= ~b;
2486 b *= debruijn32;
2487 b >>= 27;
2488
2489 return timer_table->gen_timer_index[b];
2490}
2491
Felix Fietkaudd347f22011-03-22 21:54:17 +01002492u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302493{
2494 return REG_READ(ah, AR_TSF_L32);
2495}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002496EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302497
2498struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2499 void (*trigger)(void *),
2500 void (*overflow)(void *),
2501 void *arg,
2502 u8 timer_index)
2503{
2504 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2505 struct ath_gen_timer *timer;
2506
2507 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2508
2509 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002510 ath_err(ath9k_hw_common(ah),
2511 "Failed to allocate memory for hw timer[%d]\n",
2512 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302513 return NULL;
2514 }
2515
2516 /* allocate a hardware generic timer slot */
2517 timer_table->timers[timer_index] = timer;
2518 timer->index = timer_index;
2519 timer->trigger = trigger;
2520 timer->overflow = overflow;
2521 timer->arg = arg;
2522
2523 return timer;
2524}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002525EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302526
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002527void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2528 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302529 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002530 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302531{
2532 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302533 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302534
2535 BUG_ON(!timer_period);
2536
2537 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2538
2539 tsf = ath9k_hw_gettsf32(ah);
2540
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302541 timer_next = tsf + trig_timeout;
2542
Joe Perches226afe62010-12-02 19:12:37 -08002543 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2544 "current tsf %x period %x timer_next %x\n",
2545 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302546
2547 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302548 * Program generic timer registers
2549 */
2550 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2551 timer_next);
2552 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2553 timer_period);
2554 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2555 gen_tmr_configuration[timer->index].mode_mask);
2556
2557 /* Enable both trigger and thresh interrupt masks */
2558 REG_SET_BIT(ah, AR_IMR_S5,
2559 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2560 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302561}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002562EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302563
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002564void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302565{
2566 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2567
2568 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2569 (timer->index >= ATH_MAX_GEN_TIMER)) {
2570 return;
2571 }
2572
2573 /* Clear generic timer enable bits. */
2574 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2575 gen_tmr_configuration[timer->index].mode_mask);
2576
2577 /* Disable both trigger and thresh interrupt masks */
2578 REG_CLR_BIT(ah, AR_IMR_S5,
2579 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2580 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2581
2582 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302583}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002584EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302585
2586void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2587{
2588 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2589
2590 /* free the hardware generic timer slot */
2591 timer_table->timers[timer->index] = NULL;
2592 kfree(timer);
2593}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002594EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302595
2596/*
2597 * Generic Timer Interrupts handling
2598 */
2599void ath_gen_timer_isr(struct ath_hw *ah)
2600{
2601 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2602 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002603 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302604 u32 trigger_mask, thresh_mask, index;
2605
2606 /* get hardware generic timer interrupt status */
2607 trigger_mask = ah->intr_gen_timer_trigger;
2608 thresh_mask = ah->intr_gen_timer_thresh;
2609 trigger_mask &= timer_table->timer_mask.val;
2610 thresh_mask &= timer_table->timer_mask.val;
2611
2612 trigger_mask &= ~thresh_mask;
2613
2614 while (thresh_mask) {
2615 index = rightmost_index(timer_table, &thresh_mask);
2616 timer = timer_table->timers[index];
2617 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002618 ath_dbg(common, ATH_DBG_HWTIMER,
2619 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302620 timer->overflow(timer->arg);
2621 }
2622
2623 while (trigger_mask) {
2624 index = rightmost_index(timer_table, &trigger_mask);
2625 timer = timer_table->timers[index];
2626 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002627 ath_dbg(common, ATH_DBG_HWTIMER,
2628 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302629 timer->trigger(timer->arg);
2630 }
2631}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002632EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002633
Sujith05020d22010-03-17 14:25:23 +05302634/********/
2635/* HTC */
2636/********/
2637
2638void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2639{
2640 ah->htc_reset_init = true;
2641}
2642EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2643
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002644static struct {
2645 u32 version;
2646 const char * name;
2647} ath_mac_bb_names[] = {
2648 /* Devices with external radios */
2649 { AR_SREV_VERSION_5416_PCI, "5416" },
2650 { AR_SREV_VERSION_5416_PCIE, "5418" },
2651 { AR_SREV_VERSION_9100, "9100" },
2652 { AR_SREV_VERSION_9160, "9160" },
2653 /* Single-chip solutions */
2654 { AR_SREV_VERSION_9280, "9280" },
2655 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002656 { AR_SREV_VERSION_9287, "9287" },
2657 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002658 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02002659 { AR_SREV_VERSION_9330, "9330" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05302660 { AR_SREV_VERSION_9485, "9485" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002661};
2662
2663/* For devices with external radios */
2664static struct {
2665 u16 version;
2666 const char * name;
2667} ath_rf_names[] = {
2668 { 0, "5133" },
2669 { AR_RAD5133_SREV_MAJOR, "5133" },
2670 { AR_RAD5122_SREV_MAJOR, "5122" },
2671 { AR_RAD2133_SREV_MAJOR, "2133" },
2672 { AR_RAD2122_SREV_MAJOR, "2122" }
2673};
2674
2675/*
2676 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2677 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002678static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002679{
2680 int i;
2681
2682 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2683 if (ath_mac_bb_names[i].version == mac_bb_version) {
2684 return ath_mac_bb_names[i].name;
2685 }
2686 }
2687
2688 return "????";
2689}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002690
2691/*
2692 * Return the RF name. "????" is returned if the RF is unknown.
2693 * Used for devices with external radios.
2694 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002695static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002696{
2697 int i;
2698
2699 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2700 if (ath_rf_names[i].version == rf_version) {
2701 return ath_rf_names[i].name;
2702 }
2703 }
2704
2705 return "????";
2706}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002707
2708void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2709{
2710 int used;
2711
2712 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002713 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002714 used = snprintf(hw_name, len,
2715 "Atheros AR%s Rev:%x",
2716 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2717 ah->hw_version.macRev);
2718 }
2719 else {
2720 used = snprintf(hw_name, len,
2721 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2722 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2723 ah->hw_version.macRev,
2724 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2725 AR_RADIO_SREV_MAJOR)),
2726 ah->hw_version.phyRev);
2727 }
2728
2729 hw_name[used] = '\0';
2730}
2731EXPORT_SYMBOL(ath9k_hw_name);