blob: a3881b64f76674c595569f53357b063f90a4a394 [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;
254 case AR9300_DEVID_AR9340:
255 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
256 val = REG_READ(ah, AR_SREV);
257 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
258 return;
259 }
260
Sujithf1dc5602008-10-29 10:16:30 +0530261 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
262
263 if (val == 0xFF) {
264 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530265 ah->hw_version.macVersion =
266 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
267 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530268 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530269 } else {
270 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530271 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530272
Sujithd535a422009-02-09 13:27:06 +0530273 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530274
Sujithd535a422009-02-09 13:27:06 +0530275 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530276 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530277 }
278}
279
Sujithf1dc5602008-10-29 10:16:30 +0530280/************************************/
281/* HW Attach, Detach, Init Routines */
282/************************************/
283
Sujithcbe61d82009-02-09 13:27:12 +0530284static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530285{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100286 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530287 return;
288
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
296 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
297 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
298
299 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
300}
301
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400302/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530303static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530304{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700305 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400306 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530307 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800308 static const u32 patternData[4] = {
309 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
310 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400311 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530312
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400313 if (!AR_SREV_9300_20_OR_LATER(ah)) {
314 loop_max = 2;
315 regAddr[1] = AR_PHY_BASE + (8 << 2);
316 } else
317 loop_max = 1;
318
319 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530320 u32 addr = regAddr[i];
321 u32 wrData, rdData;
322
323 regHold[i] = REG_READ(ah, addr);
324 for (j = 0; j < 0x100; j++) {
325 wrData = (j << 16) | j;
326 REG_WRITE(ah, addr, wrData);
327 rdData = REG_READ(ah, addr);
328 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800329 ath_err(common,
330 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
331 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530332 return false;
333 }
334 }
335 for (j = 0; j < 4; j++) {
336 wrData = patternData[j];
337 REG_WRITE(ah, addr, wrData);
338 rdData = REG_READ(ah, addr);
339 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800340 ath_err(common,
341 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
342 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530343 return false;
344 }
345 }
346 REG_WRITE(ah, regAddr[i], regHold[i]);
347 }
348 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530349
Sujithf1dc5602008-10-29 10:16:30 +0530350 return true;
351}
352
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700353static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700354{
355 int i;
356
Sujith2660b812009-02-09 13:27:26 +0530357 ah->config.dma_beacon_response_time = 2;
358 ah->config.sw_beacon_response_time = 10;
359 ah->config.additional_swba_backoff = 0;
360 ah->config.ack_6mb = 0x0;
361 ah->config.cwm_ignore_extcca = 0;
362 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530363 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530364 ah->config.pcie_waen = 0;
365 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400366 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700367
368 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530369 ah->config.spurchans[i][0] = AR_NO_SPUR;
370 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700371 }
372
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800373 /* PAPRD needs some more work to be enabled */
374 ah->config.paprd_disable = 1;
375
Sujith0ce024c2009-12-14 14:57:00 +0530376 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400377 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400378
379 /*
380 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
381 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
382 * This means we use it for all AR5416 devices, and the few
383 * minor PCI AR9280 devices out there.
384 *
385 * Serialization is required because these devices do not handle
386 * well the case of two concurrent reads/writes due to the latency
387 * involved. During one read/write another read/write can be issued
388 * on another CPU while the previous read/write may still be working
389 * on our hardware, if we hit this case the hardware poops in a loop.
390 * We prevent this by serializing reads and writes.
391 *
392 * This issue is not present on PCI-Express devices or pre-AR5416
393 * devices (legacy, 802.11abg).
394 */
395 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700396 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700397}
398
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700399static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700401 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
402
403 regulatory->country_code = CTRY_DEFAULT;
404 regulatory->power_limit = MAX_RATE_POWER;
405 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
406
Sujithd535a422009-02-09 13:27:06 +0530407 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530408 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409
Sujith2660b812009-02-09 13:27:26 +0530410 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200411 ah->sta_id1_defaults =
412 AR_STA_ID1_CRPT_MIC_ENABLE |
413 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100414 if (AR_SREV_9100(ah))
415 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith2660b812009-02-09 13:27:26 +0530416 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Felix Fietkau4357c6b2010-12-13 08:40:50 +0100417 ah->slottime = 20;
Sujith2660b812009-02-09 13:27:26 +0530418 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200419 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420}
421
Sujithcbe61d82009-02-09 13:27:12 +0530422static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700424 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530425 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530427 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800428 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429
Sujithf1dc5602008-10-29 10:16:30 +0530430 sum = 0;
431 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400432 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530433 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700434 common->macaddr[2 * i] = eeval >> 8;
435 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436 }
Sujithd8baa932009-03-30 15:28:25 +0530437 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530438 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440 return 0;
441}
442
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700443static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530445 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446 int ecode;
447
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530448 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530449 if (!ath9k_hw_chip_test(ah))
450 return -ENODEV;
451 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400453 if (!AR_SREV_9300_20_OR_LATER(ah)) {
454 ecode = ar9002_hw_rf_claim(ah);
455 if (ecode != 0)
456 return ecode;
457 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700459 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460 if (ecode != 0)
461 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530462
Joe Perches226afe62010-12-02 19:12:37 -0800463 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
464 "Eeprom VER: %d, REV: %d\n",
465 ah->eep_ops->get_eeprom_ver(ah),
466 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530467
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400468 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
469 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800470 ath_err(ath9k_hw_common(ah),
471 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530472 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400473 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400474 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475
Vasanthakumar Thiagarajan070c4d52011-04-19 19:29:05 +0530476 if (!AR_SREV_9100(ah) && !AR_SREV_9340(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700477 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700478 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700479 }
Sujithf1dc5602008-10-29 10:16:30 +0530480
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700481 return 0;
482}
483
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400484static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700485{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400486 if (AR_SREV_9300_20_OR_LATER(ah))
487 ar9003_hw_attach_ops(ah);
488 else
489 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700490}
491
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400492/* Called for all hardware families */
493static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700494{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700495 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700496 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700497
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530498 ath9k_hw_read_revisions(ah);
499
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530500 /*
501 * Read back AR_WA into a permanent copy and set bits 14 and 17.
502 * We need to do this to avoid RMW of this register. We cannot
503 * read the reg when chip is asleep.
504 */
505 ah->WARegVal = REG_READ(ah, AR_WA);
506 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
507 AR_WA_ASPM_TIMER_BASED_DISABLE);
508
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800510 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700511 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700512 }
513
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400514 ath9k_hw_init_defaults(ah);
515 ath9k_hw_init_config(ah);
516
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400517 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400518
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700519 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800520 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700521 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700522 }
523
524 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
525 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400526 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
527 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528 ah->config.serialize_regmode =
529 SER_REG_MODE_ON;
530 } else {
531 ah->config.serialize_regmode =
532 SER_REG_MODE_OFF;
533 }
534 }
535
Joe Perches226afe62010-12-02 19:12:37 -0800536 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700537 ah->config.serialize_regmode);
538
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500539 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
540 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
541 else
542 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
543
Felix Fietkau6da5a722010-12-12 00:51:12 +0100544 switch (ah->hw_version.macVersion) {
545 case AR_SREV_VERSION_5416_PCI:
546 case AR_SREV_VERSION_5416_PCIE:
547 case AR_SREV_VERSION_9160:
548 case AR_SREV_VERSION_9100:
549 case AR_SREV_VERSION_9280:
550 case AR_SREV_VERSION_9285:
551 case AR_SREV_VERSION_9287:
552 case AR_SREV_VERSION_9271:
553 case AR_SREV_VERSION_9300:
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200554 case AR_SREV_VERSION_9330:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100555 case AR_SREV_VERSION_9485:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530556 case AR_SREV_VERSION_9340:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100557 break;
558 default:
Joe Perches38002762010-12-02 19:12:36 -0800559 ath_err(common,
560 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
561 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700562 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 }
564
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200565 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
566 AR_SREV_9330(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400567 ah->is_pciexpress = false;
568
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700569 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700570 ath9k_hw_init_cal_settings(ah);
571
572 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200573 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700574 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400575 if (!AR_SREV_9300_20_OR_LATER(ah))
576 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700577
578 ath9k_hw_init_mode_regs(ah);
579
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400580
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700581 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530582 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700583 else
584 ath9k_hw_disablepcie(ah);
585
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400586 if (!AR_SREV_9300_20_OR_LATER(ah))
587 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530588
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700589 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700590 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700591 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700592
593 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100594 r = ath9k_hw_fill_cap_info(ah);
595 if (r)
596 return r;
597
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700598 r = ath9k_hw_init_macaddr(ah);
599 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800600 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700601 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602 }
603
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400604 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530605 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700606 else
Sujith2660b812009-02-09 13:27:26 +0530607 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400609 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400611 common->state = ATH_HW_INITIALIZED;
612
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700613 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614}
615
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400616int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530617{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400618 int ret;
619 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530620
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400621 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
622 switch (ah->hw_version.devid) {
623 case AR5416_DEVID_PCI:
624 case AR5416_DEVID_PCIE:
625 case AR5416_AR9100_DEVID:
626 case AR9160_DEVID_PCI:
627 case AR9280_DEVID_PCI:
628 case AR9280_DEVID_PCIE:
629 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400630 case AR9287_DEVID_PCI:
631 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400632 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400633 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800634 case AR9300_DEVID_AR9485_PCIE:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530635 case AR9300_DEVID_AR9340:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400636 break;
637 default:
638 if (common->bus_ops->ath_bus_type == ATH_USB)
639 break;
Joe Perches38002762010-12-02 19:12:36 -0800640 ath_err(common, "Hardware device ID 0x%04x not supported\n",
641 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400642 return -EOPNOTSUPP;
643 }
Sujithf1dc5602008-10-29 10:16:30 +0530644
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400645 ret = __ath9k_hw_init(ah);
646 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800647 ath_err(common,
648 "Unable to initialize hardware; initialization status: %d\n",
649 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400650 return ret;
651 }
Sujithf1dc5602008-10-29 10:16:30 +0530652
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400653 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530654}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400655EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530656
Sujithcbe61d82009-02-09 13:27:12 +0530657static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530658{
Sujith7d0d0df2010-04-16 11:53:57 +0530659 ENABLE_REGWRITE_BUFFER(ah);
660
Sujithf1dc5602008-10-29 10:16:30 +0530661 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
662 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
663
664 REG_WRITE(ah, AR_QOS_NO_ACK,
665 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
666 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
667 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
668
669 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
670 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
671 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
672 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
673 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530674
675 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530676}
677
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530678u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530679{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100680 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
681 udelay(100);
682 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
683
684 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530685 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530686
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100687 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530688}
689EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
690
Sujithcbe61d82009-02-09 13:27:12 +0530691static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530692 struct ath9k_channel *chan)
693{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800694 u32 pll;
695
Vivek Natarajan22983c32011-01-27 14:45:09 +0530696 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530697
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530698 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
699 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
700 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
701 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
702 AR_CH0_DPLL2_KD, 0x40);
703 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
704 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530705
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530706 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
707 AR_CH0_BB_DPLL1_REFDIV, 0x5);
708 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
709 AR_CH0_BB_DPLL1_NINI, 0x58);
710 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
711 AR_CH0_BB_DPLL1_NFRAC, 0x0);
712
713 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
714 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
715 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
716 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
717 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
718 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
719
720 /* program BB PLL phase_shift to 0x6 */
721 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
722 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
723
724 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
725 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530726 udelay(1000);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530727 } else if (AR_SREV_9340(ah)) {
728 u32 regval, pll2_divint, pll2_divfrac, refdiv;
729
730 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
731 udelay(1000);
732
733 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
734 udelay(100);
735
736 if (ah->is_clk_25mhz) {
737 pll2_divint = 0x54;
738 pll2_divfrac = 0x1eb85;
739 refdiv = 3;
740 } else {
741 pll2_divint = 88;
742 pll2_divfrac = 0;
743 refdiv = 5;
744 }
745
746 regval = REG_READ(ah, AR_PHY_PLL_MODE);
747 regval |= (0x1 << 16);
748 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
749 udelay(100);
750
751 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
752 (pll2_divint << 18) | pll2_divfrac);
753 udelay(100);
754
755 regval = REG_READ(ah, AR_PHY_PLL_MODE);
756 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
757 (0x4 << 26) | (0x18 << 19);
758 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
759 REG_WRITE(ah, AR_PHY_PLL_MODE,
760 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
761 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530762 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800763
764 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530765
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100766 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530767
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530768 if (AR_SREV_9485(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530769 udelay(1000);
770
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400771 /* Switch the core clock for ar9271 to 117Mhz */
772 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530773 udelay(500);
774 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400775 }
776
Sujithf1dc5602008-10-29 10:16:30 +0530777 udelay(RTC_PLL_SETTLE_DELAY);
778
779 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530780
781 if (AR_SREV_9340(ah)) {
782 if (ah->is_clk_25mhz) {
783 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
784 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
785 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
786 } else {
787 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
788 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
789 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
790 }
791 udelay(100);
792 }
Sujithf1dc5602008-10-29 10:16:30 +0530793}
794
Sujithcbe61d82009-02-09 13:27:12 +0530795static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800796 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530797{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530798 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400799 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530800 AR_IMR_TXURN |
801 AR_IMR_RXERR |
802 AR_IMR_RXORN |
803 AR_IMR_BCNMISC;
804
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530805 if (AR_SREV_9340(ah))
806 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
807
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400808 if (AR_SREV_9300_20_OR_LATER(ah)) {
809 imr_reg |= AR_IMR_RXOK_HP;
810 if (ah->config.rx_intr_mitigation)
811 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
812 else
813 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530814
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400815 } else {
816 if (ah->config.rx_intr_mitigation)
817 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
818 else
819 imr_reg |= AR_IMR_RXOK;
820 }
821
822 if (ah->config.tx_intr_mitigation)
823 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
824 else
825 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530826
Colin McCabed97809d2008-12-01 13:38:55 -0800827 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400828 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530829
Sujith7d0d0df2010-04-16 11:53:57 +0530830 ENABLE_REGWRITE_BUFFER(ah);
831
Pavel Roskin152d5302010-03-31 18:05:37 -0400832 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500833 ah->imrs2_reg |= AR_IMR_S2_GTT;
834 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530835
836 if (!AR_SREV_9100(ah)) {
837 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530838 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530839 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
840 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400841
Sujith7d0d0df2010-04-16 11:53:57 +0530842 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530843
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400844 if (AR_SREV_9300_20_OR_LATER(ah)) {
845 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
846 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
847 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
848 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
849 }
Sujithf1dc5602008-10-29 10:16:30 +0530850}
851
Felix Fietkau0005baf2010-01-15 02:33:40 +0100852static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530853{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100854 u32 val = ath9k_hw_mac_to_clks(ah, us);
855 val = min(val, (u32) 0xFFFF);
856 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530857}
858
Felix Fietkau0005baf2010-01-15 02:33:40 +0100859static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530860{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100861 u32 val = ath9k_hw_mac_to_clks(ah, us);
862 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
863 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
864}
865
866static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
867{
868 u32 val = ath9k_hw_mac_to_clks(ah, us);
869 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
870 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530871}
872
Sujithcbe61d82009-02-09 13:27:12 +0530873static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530874{
Sujithf1dc5602008-10-29 10:16:30 +0530875 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800876 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
877 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530878 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530879 return false;
880 } else {
881 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530882 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530883 return true;
884 }
885}
886
Felix Fietkau0005baf2010-01-15 02:33:40 +0100887void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530888{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100889 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
890 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100891 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100892 int sifstime;
893
Joe Perches226afe62010-12-02 19:12:37 -0800894 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
895 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530896
Sujith2660b812009-02-09 13:27:26 +0530897 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100898 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100899
900 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
901 sifstime = 16;
902 else
903 sifstime = 10;
904
Felix Fietkaue239d852010-01-15 02:34:58 +0100905 /* As defined by IEEE 802.11-2007 17.3.8.6 */
906 slottime = ah->slottime + 3 * ah->coverage_class;
907 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100908
909 /*
910 * Workaround for early ACK timeouts, add an offset to match the
911 * initval's 64us ack timeout value.
912 * This was initially only meant to work around an issue with delayed
913 * BA frames in some implementations, but it has been found to fix ACK
914 * timeout issues in other cases as well.
915 */
916 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
917 acktimeout += 64 - sifstime - ah->slottime;
918
Felix Fietkaucaabf2b2010-12-13 08:40:51 +0100919 ath9k_hw_setslottime(ah, ah->slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100920 ath9k_hw_set_ack_timeout(ah, acktimeout);
921 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530922 if (ah->globaltxtimeout != (u32) -1)
923 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530924}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100925EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530926
Sujith285f2dd2010-01-08 10:36:07 +0530927void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700928{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400929 struct ath_common *common = ath9k_hw_common(ah);
930
Sujith736b3a22010-03-17 14:25:24 +0530931 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400932 goto free_hw;
933
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700934 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400935
936free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400937 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700938}
Sujith285f2dd2010-01-08 10:36:07 +0530939EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700940
Sujithf1dc5602008-10-29 10:16:30 +0530941/*******/
942/* INI */
943/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700944
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400945u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400946{
947 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
948
949 if (IS_CHAN_B(chan))
950 ctl |= CTL_11B;
951 else if (IS_CHAN_G(chan))
952 ctl |= CTL_11G;
953 else
954 ctl |= CTL_11A;
955
956 return ctl;
957}
958
Sujithf1dc5602008-10-29 10:16:30 +0530959/****************************************/
960/* Reset and Channel Switching Routines */
961/****************************************/
962
Sujithcbe61d82009-02-09 13:27:12 +0530963static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530964{
Felix Fietkau57b32222010-04-15 17:39:22 -0400965 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530966
Sujith7d0d0df2010-04-16 11:53:57 +0530967 ENABLE_REGWRITE_BUFFER(ah);
968
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400969 /*
970 * set AHB_MODE not to do cacheline prefetches
971 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100972 if (!AR_SREV_9300_20_OR_LATER(ah))
973 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +0530974
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400975 /*
976 * let mac dma reads be in 128 byte chunks
977 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100978 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +0530979
Sujith7d0d0df2010-04-16 11:53:57 +0530980 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530981
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400982 /*
983 * Restore TX Trigger Level to its pre-reset value.
984 * The initial value depends on whether aggregation is enabled, and is
985 * adjusted whenever underruns are detected.
986 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400987 if (!AR_SREV_9300_20_OR_LATER(ah))
988 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530989
Sujith7d0d0df2010-04-16 11:53:57 +0530990 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530991
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400992 /*
993 * let mac dma writes be in 128 byte chunks
994 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100995 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +0530996
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400997 /*
998 * Setup receive FIFO threshold to hold off TX activities
999 */
Sujithf1dc5602008-10-29 10:16:30 +05301000 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1001
Felix Fietkau57b32222010-04-15 17:39:22 -04001002 if (AR_SREV_9300_20_OR_LATER(ah)) {
1003 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1004 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1005
1006 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1007 ah->caps.rx_status_len);
1008 }
1009
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001010 /*
1011 * reduce the number of usable entries in PCU TXBUF to avoid
1012 * wrap around issues.
1013 */
Sujithf1dc5602008-10-29 10:16:30 +05301014 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001015 /* For AR9285 the number of Fifos are reduced to half.
1016 * So set the usable tx buf size also to half to
1017 * avoid data/delimiter underruns
1018 */
Sujithf1dc5602008-10-29 10:16:30 +05301019 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1020 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001021 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301022 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1023 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1024 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001025
Sujith7d0d0df2010-04-16 11:53:57 +05301026 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301027
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001028 if (AR_SREV_9300_20_OR_LATER(ah))
1029 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301030}
1031
Sujithcbe61d82009-02-09 13:27:12 +05301032static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301033{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001034 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1035 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301036
Sujithf1dc5602008-10-29 10:16:30 +05301037 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001038 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001039 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001040 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301041 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1042 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001043 case NL80211_IFTYPE_AP:
1044 set |= AR_STA_ID1_STA_AP;
1045 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001046 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001047 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301048 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301049 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001050 if (!ah->is_monitoring)
1051 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301052 break;
Sujithf1dc5602008-10-29 10:16:30 +05301053 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001054 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301055}
1056
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001057void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1058 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001059{
1060 u32 coef_exp, coef_man;
1061
1062 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1063 if ((coef_scaled >> coef_exp) & 0x1)
1064 break;
1065
1066 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1067
1068 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1069
1070 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1071 *coef_exponent = coef_exp - 16;
1072}
1073
Sujithcbe61d82009-02-09 13:27:12 +05301074static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301075{
1076 u32 rst_flags;
1077 u32 tmpReg;
1078
Sujith70768492009-02-16 13:23:12 +05301079 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001080 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1081 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301082 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1083 }
1084
Sujith7d0d0df2010-04-16 11:53:57 +05301085 ENABLE_REGWRITE_BUFFER(ah);
1086
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001087 if (AR_SREV_9300_20_OR_LATER(ah)) {
1088 REG_WRITE(ah, AR_WA, ah->WARegVal);
1089 udelay(10);
1090 }
1091
Sujithf1dc5602008-10-29 10:16:30 +05301092 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1093 AR_RTC_FORCE_WAKE_ON_INT);
1094
1095 if (AR_SREV_9100(ah)) {
1096 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1097 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1098 } else {
1099 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1100 if (tmpReg &
1101 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1102 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001103 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301104 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001105
1106 val = AR_RC_HOSTIF;
1107 if (!AR_SREV_9300_20_OR_LATER(ah))
1108 val |= AR_RC_AHB;
1109 REG_WRITE(ah, AR_RC, val);
1110
1111 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301112 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301113
1114 rst_flags = AR_RTC_RC_MAC_WARM;
1115 if (type == ATH9K_RESET_COLD)
1116 rst_flags |= AR_RTC_RC_MAC_COLD;
1117 }
1118
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001119 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301120
1121 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301122
Sujithf1dc5602008-10-29 10:16:30 +05301123 udelay(50);
1124
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001125 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301126 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001127 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1128 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301129 return false;
1130 }
1131
1132 if (!AR_SREV_9100(ah))
1133 REG_WRITE(ah, AR_RC, 0);
1134
Sujithf1dc5602008-10-29 10:16:30 +05301135 if (AR_SREV_9100(ah))
1136 udelay(50);
1137
1138 return true;
1139}
1140
Sujithcbe61d82009-02-09 13:27:12 +05301141static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301142{
Sujith7d0d0df2010-04-16 11:53:57 +05301143 ENABLE_REGWRITE_BUFFER(ah);
1144
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001145 if (AR_SREV_9300_20_OR_LATER(ah)) {
1146 REG_WRITE(ah, AR_WA, ah->WARegVal);
1147 udelay(10);
1148 }
1149
Sujithf1dc5602008-10-29 10:16:30 +05301150 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1151 AR_RTC_FORCE_WAKE_ON_INT);
1152
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001153 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301154 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1155
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001156 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301157
Sujith7d0d0df2010-04-16 11:53:57 +05301158 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301159
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001160 if (!AR_SREV_9300_20_OR_LATER(ah))
1161 udelay(2);
1162
1163 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301164 REG_WRITE(ah, AR_RC, 0);
1165
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001166 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301167
1168 if (!ath9k_hw_wait(ah,
1169 AR_RTC_STATUS,
1170 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301171 AR_RTC_STATUS_ON,
1172 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001173 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1174 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301175 return false;
1176 }
1177
Sujithf1dc5602008-10-29 10:16:30 +05301178 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1179}
1180
Sujithcbe61d82009-02-09 13:27:12 +05301181static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301182{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001183 if (AR_SREV_9300_20_OR_LATER(ah)) {
1184 REG_WRITE(ah, AR_WA, ah->WARegVal);
1185 udelay(10);
1186 }
1187
Sujithf1dc5602008-10-29 10:16:30 +05301188 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1189 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1190
1191 switch (type) {
1192 case ATH9K_RESET_POWER_ON:
1193 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301194 case ATH9K_RESET_WARM:
1195 case ATH9K_RESET_COLD:
1196 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301197 default:
1198 return false;
1199 }
1200}
1201
Sujithcbe61d82009-02-09 13:27:12 +05301202static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301203 struct ath9k_channel *chan)
1204{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301205 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301206 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1207 return false;
1208 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301209 return false;
1210
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001211 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301212 return false;
1213
Sujith2660b812009-02-09 13:27:26 +05301214 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301215 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301216 ath9k_hw_set_rfmode(ah, chan);
1217
1218 return true;
1219}
1220
Sujithcbe61d82009-02-09 13:27:12 +05301221static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001222 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301223{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001224 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001225 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001226 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001227 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001228 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301229
1230 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1231 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001232 ath_dbg(common, ATH_DBG_QUEUE,
1233 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301234 return false;
1235 }
1236 }
1237
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001238 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001239 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301240 return false;
1241 }
1242
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001243 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301244
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001245 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001246 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001247 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001248 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301249 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001250 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301251
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001252 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001253 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301254 channel->max_antenna_gain * 2,
1255 channel->max_power * 2,
1256 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001257 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301258
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001259 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301260
1261 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1262 ath9k_hw_set_delta_slope(ah, chan);
1263
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001264 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301265
Sujithf1dc5602008-10-29 10:16:30 +05301266 return true;
1267}
1268
Felix Fietkau691680b2011-03-19 13:55:38 +01001269static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1270{
1271 u32 gpio_mask = ah->gpio_mask;
1272 int i;
1273
1274 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1275 if (!(gpio_mask & 1))
1276 continue;
1277
1278 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1279 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1280 }
1281}
1282
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001283bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301284{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001285 int count = 50;
1286 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301287
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001288 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001289 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301290
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001291 do {
1292 reg = REG_READ(ah, AR_OBS_BUS_1);
1293
1294 if ((reg & 0x7E7FFFEF) == 0x00702400)
1295 continue;
1296
1297 switch (reg & 0x7E000B00) {
1298 case 0x1E000000:
1299 case 0x52000B00:
1300 case 0x18000B00:
1301 continue;
1302 default:
1303 return true;
1304 }
1305 } while (count-- > 0);
1306
1307 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301308}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001309EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301310
Sujithcbe61d82009-02-09 13:27:12 +05301311int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001312 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001313{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001314 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001315 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301316 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317 u32 saveDefAntenna;
1318 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301319 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001320 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001321
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001322 ah->txchainmask = common->tx_chainmask;
1323 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001325 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001326 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001327
Felix Fietkaud9891c72010-09-29 17:15:27 +02001328 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001329 ath9k_hw_getnf(ah, curchan);
1330
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001331 ah->caldata = caldata;
1332 if (caldata &&
1333 (chan->channel != caldata->channel ||
1334 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1335 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1336 /* Operating channel changed, reset channel calibration data */
1337 memset(caldata, 0, sizeof(*caldata));
1338 ath9k_init_nfcal_hist_buffer(ah, chan);
1339 }
1340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001341 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301342 (ah->chip_fullsleep != true) &&
1343 (ah->curchan != NULL) &&
1344 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301346 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301347 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001349 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301350 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001351 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301352 if (AR_SREV_9271(ah))
1353 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001354 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001355 }
1356 }
1357
1358 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1359 if (saveDefAntenna == 0)
1360 saveDefAntenna = 1;
1361
1362 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1363
Sujith46fe7822009-09-17 09:25:25 +05301364 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001365 if (AR_SREV_9100(ah) ||
1366 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301367 tsf = ath9k_hw_gettsf64(ah);
1368
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001369 saveLedState = REG_READ(ah, AR_CFG_LED) &
1370 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1371 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1372
1373 ath9k_hw_mark_phy_inactive(ah);
1374
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001375 ah->paprd_table_write_done = false;
1376
Sujith05020d22010-03-17 14:25:23 +05301377 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001378 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1379 REG_WRITE(ah,
1380 AR9271_RESET_POWER_DOWN_CONTROL,
1381 AR9271_RADIO_RF_RST);
1382 udelay(50);
1383 }
1384
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001385 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001386 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001387 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388 }
1389
Sujith05020d22010-03-17 14:25:23 +05301390 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001391 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1392 ah->htc_reset_init = false;
1393 REG_WRITE(ah,
1394 AR9271_RESET_POWER_DOWN_CONTROL,
1395 AR9271_GATE_MAC_CTL);
1396 udelay(50);
1397 }
1398
Sujith46fe7822009-09-17 09:25:25 +05301399 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001400 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301401 ath9k_hw_settsf64(ah, tsf);
1402
Felix Fietkau7a370812010-09-22 12:34:52 +02001403 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301404 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001405
Sujithe9141f72010-06-01 15:14:10 +05301406 if (!AR_SREV_9300_20_OR_LATER(ah))
1407 ar9002_hw_enable_async_fifo(ah);
1408
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001409 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001410 if (r)
1411 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001412
Felix Fietkauf860d522010-06-30 02:07:48 +02001413 /*
1414 * Some AR91xx SoC devices frequently fail to accept TSF writes
1415 * right after the chip reset. When that happens, write a new
1416 * value after the initvals have been applied, with an offset
1417 * based on measured time difference
1418 */
1419 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1420 tsf += 1500;
1421 ath9k_hw_settsf64(ah, tsf);
1422 }
1423
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001424 /* Setup MFP options for CCMP */
1425 if (AR_SREV_9280_20_OR_LATER(ah)) {
1426 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1427 * frames when constructing CCMP AAD. */
1428 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1429 0xc7ff);
1430 ah->sw_mgmt_crypto = false;
1431 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1432 /* Disable hardware crypto for management frames */
1433 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1434 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1435 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1436 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1437 ah->sw_mgmt_crypto = true;
1438 } else
1439 ah->sw_mgmt_crypto = true;
1440
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001441 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1442 ath9k_hw_set_delta_slope(ah, chan);
1443
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001444 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301445 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001446
Sujith7d0d0df2010-04-16 11:53:57 +05301447 ENABLE_REGWRITE_BUFFER(ah);
1448
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001449 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1450 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001451 | macStaId1
1452 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301453 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301454 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301455 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001456 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001458 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001460 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1461
Sujith7d0d0df2010-04-16 11:53:57 +05301462 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301463
Sujith Manoharan00e00032011-01-26 21:59:05 +05301464 ath9k_hw_set_operating_mode(ah, ah->opmode);
1465
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001466 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001467 if (r)
1468 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001470 ath9k_hw_set_clockrate(ah);
1471
Sujith7d0d0df2010-04-16 11:53:57 +05301472 ENABLE_REGWRITE_BUFFER(ah);
1473
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001474 for (i = 0; i < AR_NUM_DCU; i++)
1475 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1476
Sujith7d0d0df2010-04-16 11:53:57 +05301477 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301478
Sujith2660b812009-02-09 13:27:26 +05301479 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001480 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001481 ath9k_hw_resettxqueue(ah, i);
1482
Sujith2660b812009-02-09 13:27:26 +05301483 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001484 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001485 ath9k_hw_init_qos(ah);
1486
Sujith2660b812009-02-09 13:27:26 +05301487 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001488 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301489
Felix Fietkau0005baf2010-01-15 02:33:40 +01001490 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001491
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001492 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301493 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001494 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301495 }
1496
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001497 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001498
1499 ath9k_hw_set_dma(ah);
1500
1501 REG_WRITE(ah, AR_OBS, 8);
1502
Sujith0ce024c2009-12-14 14:57:00 +05301503 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1505 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1506 }
1507
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001508 if (ah->config.tx_intr_mitigation) {
1509 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1510 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1511 }
1512
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001513 ath9k_hw_init_bb(ah, chan);
1514
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001515 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001516 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001517
Sujith7d0d0df2010-04-16 11:53:57 +05301518 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001519
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001520 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001521 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1522
Sujith7d0d0df2010-04-16 11:53:57 +05301523 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301524
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001525 /*
1526 * For big endian systems turn on swapping for descriptors
1527 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528 if (AR_SREV_9100(ah)) {
1529 u32 mask;
1530 mask = REG_READ(ah, AR_CFG);
1531 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001532 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301533 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001534 } else {
1535 mask =
1536 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1537 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001538 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301539 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001540 }
1541 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301542 if (common->bus_ops->ath_bus_type == ATH_USB) {
1543 /* Configure AR9271 target WLAN */
1544 if (AR_SREV_9271(ah))
1545 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1546 else
1547 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1548 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001549#ifdef __BIG_ENDIAN
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301550 else if (AR_SREV_9340(ah))
1551 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1552 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001553 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554#endif
1555 }
1556
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001557 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301558 ath9k_hw_btcoex_enable(ah);
1559
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301560 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001561 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001562
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301563 ar9003_hw_disable_phy_restart(ah);
1564 }
1565
Felix Fietkau691680b2011-03-19 13:55:38 +01001566 ath9k_hw_apply_gpio_override(ah);
1567
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001568 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001569}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001570EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001571
Sujithf1dc5602008-10-29 10:16:30 +05301572/******************************/
1573/* Power Management (Chipset) */
1574/******************************/
1575
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001576/*
1577 * Notify Power Mgt is disabled in self-generated frames.
1578 * If requested, force chip to sleep.
1579 */
Sujithcbe61d82009-02-09 13:27:12 +05301580static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301581{
1582 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1583 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001584 /*
1585 * Clear the RTC force wake bit to allow the
1586 * mac to go to sleep.
1587 */
Sujithf1dc5602008-10-29 10:16:30 +05301588 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1589 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001590 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301591 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1592
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001593 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301594 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301595 REG_CLR_BIT(ah, (AR_RTC_RESET),
1596 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301597 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001598
1599 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1600 if (AR_SREV_9300_20_OR_LATER(ah))
1601 REG_WRITE(ah, AR_WA,
1602 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001603}
1604
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001605/*
1606 * Notify Power Management is enabled in self-generating
1607 * frames. If request, set power mode of chip to
1608 * auto/normal. Duration in units of 128us (1/8 TU).
1609 */
Sujithcbe61d82009-02-09 13:27:12 +05301610static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001611{
Sujithf1dc5602008-10-29 10:16:30 +05301612 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1613 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301614 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001615
Sujithf1dc5602008-10-29 10:16:30 +05301616 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001617 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301618 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1619 AR_RTC_FORCE_WAKE_ON_INT);
1620 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001621 /*
1622 * Clear the RTC force wake bit to allow the
1623 * mac to go to sleep.
1624 */
Sujithf1dc5602008-10-29 10:16:30 +05301625 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1626 AR_RTC_FORCE_WAKE_EN);
1627 }
1628 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001629
1630 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1631 if (AR_SREV_9300_20_OR_LATER(ah))
1632 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301633}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001634
Sujithcbe61d82009-02-09 13:27:12 +05301635static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301636{
1637 u32 val;
1638 int i;
1639
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001640 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1641 if (AR_SREV_9300_20_OR_LATER(ah)) {
1642 REG_WRITE(ah, AR_WA, ah->WARegVal);
1643 udelay(10);
1644 }
1645
Sujithf1dc5602008-10-29 10:16:30 +05301646 if (setChip) {
1647 if ((REG_READ(ah, AR_RTC_STATUS) &
1648 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1649 if (ath9k_hw_set_reset_reg(ah,
1650 ATH9K_RESET_POWER_ON) != true) {
1651 return false;
1652 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001653 if (!AR_SREV_9300_20_OR_LATER(ah))
1654 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301655 }
1656 if (AR_SREV_9100(ah))
1657 REG_SET_BIT(ah, AR_RTC_RESET,
1658 AR_RTC_RESET_EN);
1659
1660 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1661 AR_RTC_FORCE_WAKE_EN);
1662 udelay(50);
1663
1664 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1665 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1666 if (val == AR_RTC_STATUS_ON)
1667 break;
1668 udelay(50);
1669 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1670 AR_RTC_FORCE_WAKE_EN);
1671 }
1672 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001673 ath_err(ath9k_hw_common(ah),
1674 "Failed to wakeup in %uus\n",
1675 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301676 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001677 }
1678 }
1679
Sujithf1dc5602008-10-29 10:16:30 +05301680 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1681
1682 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001683}
1684
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001685bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301686{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001687 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301688 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301689 static const char *modes[] = {
1690 "AWAKE",
1691 "FULL-SLEEP",
1692 "NETWORK SLEEP",
1693 "UNDEFINED"
1694 };
Sujithf1dc5602008-10-29 10:16:30 +05301695
Gabor Juhoscbdec972009-07-24 17:27:22 +02001696 if (ah->power_mode == mode)
1697 return status;
1698
Joe Perches226afe62010-12-02 19:12:37 -08001699 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1700 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301701
1702 switch (mode) {
1703 case ATH9K_PM_AWAKE:
1704 status = ath9k_hw_set_power_awake(ah, setChip);
1705 break;
1706 case ATH9K_PM_FULL_SLEEP:
1707 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301708 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301709 break;
1710 case ATH9K_PM_NETWORK_SLEEP:
1711 ath9k_set_power_network_sleep(ah, setChip);
1712 break;
1713 default:
Joe Perches38002762010-12-02 19:12:36 -08001714 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301715 return false;
1716 }
Sujith2660b812009-02-09 13:27:26 +05301717 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301718
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001719 /*
1720 * XXX: If this warning never comes up after a while then
1721 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1722 * ath9k_hw_setpower() return type void.
1723 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301724
1725 if (!(ah->ah_flags & AH_UNPLUGGED))
1726 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001727
Sujithf1dc5602008-10-29 10:16:30 +05301728 return status;
1729}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001730EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301731
Sujithf1dc5602008-10-29 10:16:30 +05301732/*******************/
1733/* Beacon Handling */
1734/*******************/
1735
Sujithcbe61d82009-02-09 13:27:12 +05301736void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001737{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738 int flags = 0;
1739
Sujith7d0d0df2010-04-16 11:53:57 +05301740 ENABLE_REGWRITE_BUFFER(ah);
1741
Sujith2660b812009-02-09 13:27:26 +05301742 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001743 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001744 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001745 REG_SET_BIT(ah, AR_TXCFG,
1746 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01001747 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
1748 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001749 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001750 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01001751 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
1752 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
1753 TU_TO_USEC(ah->config.dma_beacon_response_time));
1754 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
1755 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756 flags |=
1757 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1758 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001759 default:
Joe Perches226afe62010-12-02 19:12:37 -08001760 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1761 "%s: unsupported opmode: %d\n",
1762 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001763 return;
1764 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001765 }
1766
Felix Fietkaudd347f22011-03-22 21:54:17 +01001767 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
1768 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
1769 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
1770 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001771
Sujith7d0d0df2010-04-16 11:53:57 +05301772 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301773
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1775}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001776EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001777
Sujithcbe61d82009-02-09 13:27:12 +05301778void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301779 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780{
1781 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301782 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001783 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001784
Sujith7d0d0df2010-04-16 11:53:57 +05301785 ENABLE_REGWRITE_BUFFER(ah);
1786
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1788
1789 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301790 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001791 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301792 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001793
Sujith7d0d0df2010-04-16 11:53:57 +05301794 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301795
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001796 REG_RMW_FIELD(ah, AR_RSSI_THR,
1797 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1798
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05301799 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001800
1801 if (bs->bs_sleepduration > beaconintval)
1802 beaconintval = bs->bs_sleepduration;
1803
1804 dtimperiod = bs->bs_dtimperiod;
1805 if (bs->bs_sleepduration > dtimperiod)
1806 dtimperiod = bs->bs_sleepduration;
1807
1808 if (beaconintval == dtimperiod)
1809 nextTbtt = bs->bs_nextdtim;
1810 else
1811 nextTbtt = bs->bs_nexttbtt;
1812
Joe Perches226afe62010-12-02 19:12:37 -08001813 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1814 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1815 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1816 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817
Sujith7d0d0df2010-04-16 11:53:57 +05301818 ENABLE_REGWRITE_BUFFER(ah);
1819
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001820 REG_WRITE(ah, AR_NEXT_DTIM,
1821 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1822 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1823
1824 REG_WRITE(ah, AR_SLEEP1,
1825 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1826 | AR_SLEEP1_ASSUME_DTIM);
1827
Sujith60b67f52008-08-07 10:52:38 +05301828 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1830 else
1831 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1832
1833 REG_WRITE(ah, AR_SLEEP2,
1834 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1835
1836 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1837 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1838
Sujith7d0d0df2010-04-16 11:53:57 +05301839 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301840
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001841 REG_SET_BIT(ah, AR_TIMER_MODE,
1842 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1843 AR_DTIM_TIMER_EN);
1844
Sujith4af9cf42009-02-12 10:06:47 +05301845 /* TSF Out of Range Threshold */
1846 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001847}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001848EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001849
Sujithf1dc5602008-10-29 10:16:30 +05301850/*******************/
1851/* HW Capabilities */
1852/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001853
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001854int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001855{
Sujith2660b812009-02-09 13:27:26 +05301856 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001857 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001858 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001859 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001860
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05301861 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001862 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863
Sujithf74df6f2009-02-09 13:27:24 +05301864 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001865 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301866
Sujithf74df6f2009-02-09 13:27:24 +05301867 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001868 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301869 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001870 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301871
Sujith2660b812009-02-09 13:27:26 +05301872 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301873 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001874 if (regulatory->current_rd == 0x64 ||
1875 regulatory->current_rd == 0x65)
1876 regulatory->current_rd += 5;
1877 else if (regulatory->current_rd == 0x41)
1878 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001879 ath_dbg(common, ATH_DBG_REGULATORY,
1880 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001881 }
Sujithdc2222a2008-08-14 13:26:55 +05301882
Sujithf74df6f2009-02-09 13:27:24 +05301883 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001884 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001885 ath_err(common,
1886 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001887 return -EINVAL;
1888 }
1889
Felix Fietkaud4659912010-10-14 16:02:39 +02001890 if (eeval & AR5416_OPFLAGS_11A)
1891 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001892
Felix Fietkaud4659912010-10-14 16:02:39 +02001893 if (eeval & AR5416_OPFLAGS_11G)
1894 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301895
Sujithf74df6f2009-02-09 13:27:24 +05301896 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001897 /*
1898 * For AR9271 we will temporarilly uses the rx chainmax as read from
1899 * the EEPROM.
1900 */
Sujith8147f5d2009-02-20 15:13:23 +05301901 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001902 !(eeval & AR5416_OPFLAGS_11A) &&
1903 !(AR_SREV_9271(ah)))
1904 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301905 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01001906 else if (AR_SREV_9100(ah))
1907 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05301908 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001909 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301910 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301911
Felix Fietkau7a370812010-09-22 12:34:52 +02001912 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301913
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001914 /* enable key search for every frame in an aggregate */
1915 if (AR_SREV_9300_20_OR_LATER(ah))
1916 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1917
Bruno Randolfce2220d2010-09-17 11:36:25 +09001918 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1919
Felix Fietkau0db156e2011-03-23 20:57:29 +01001920 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05301921 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1922 else
1923 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1924
Sujith5b5fa352010-03-17 14:25:15 +05301925 if (AR_SREV_9271(ah))
1926 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301927 else if (AR_DEVID_7010(ah))
1928 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001929 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301930 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001931 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301932 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1933 else
1934 pCap->num_gpio_pins = AR_NUM_GPIO;
1935
Sujithf1dc5602008-10-29 10:16:30 +05301936 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1937 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1938 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1939 } else {
1940 pCap->rts_aggr_limit = (8 * 1024);
1941 }
1942
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301943#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301944 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1945 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1946 ah->rfkill_gpio =
1947 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1948 ah->rfkill_polarity =
1949 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301950
1951 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1952 }
1953#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001954 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301955 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1956 else
1957 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301958
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301959 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301960 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1961 else
1962 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1963
Vivek Natarajana6ef5302011-04-26 10:39:53 +05301964 if (common->btcoex_enabled) {
1965 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001966 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
Vivek Natarajana6ef5302011-04-26 10:39:53 +05301967 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9300;
1968 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9300;
1969 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9300;
1970 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
1971 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9280;
1972 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9280;
1973
1974 if (AR_SREV_9285(ah)) {
1975 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1976 btcoex_hw->btpriority_gpio =
1977 ATH_BTPRIORITY_GPIO_9285;
1978 } else {
1979 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
1980 }
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301981 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301982 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001983 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301984 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001985
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001986 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08001987 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1988 if (!AR_SREV_9485(ah))
1989 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1990
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001991 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1992 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1993 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001994 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04001995 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08001996 if (!ah->config.paprd_disable &&
1997 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04001998 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001999 } else {
2000 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002001 if (AR_SREV_9280_20(ah) &&
2002 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2003 AR5416_EEP_MINOR_VER_16) ||
2004 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2005 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002006 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002007
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002008 if (AR_SREV_9300_20_OR_LATER(ah))
2009 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2010
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002011 if (AR_SREV_9300_20_OR_LATER(ah))
2012 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2013
Felix Fietkaua42acef2010-09-22 12:34:54 +02002014 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002015 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2016
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002017 if (AR_SREV_9285(ah))
2018 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2019 ant_div_ctl1 =
2020 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2021 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2022 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2023 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302024 if (AR_SREV_9300_20_OR_LATER(ah)) {
2025 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2026 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2027 }
2028
2029
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302030 if (AR_SREV_9485(ah)) {
2031 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2032 /*
2033 * enable the diversity-combining algorithm only when
2034 * both enable_lna_div and enable_fast_div are set
2035 * Table for Diversity
2036 * ant_div_alt_lnaconf bit 0-1
2037 * ant_div_main_lnaconf bit 2-3
2038 * ant_div_alt_gaintb bit 4
2039 * ant_div_main_gaintb bit 5
2040 * enable_ant_div_lnadiv bit 6
2041 * enable_ant_fast_div bit 7
2042 */
2043 if ((ant_div_ctl1 >> 0x6) == 0x3)
2044 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2045 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002046
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002047 if (AR_SREV_9485_10(ah)) {
2048 pCap->pcie_lcr_extsync_en = true;
2049 pCap->pcie_lcr_offset = 0x80;
2050 }
2051
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002052 tx_chainmask = pCap->tx_chainmask;
2053 rx_chainmask = pCap->rx_chainmask;
2054 while (tx_chainmask || rx_chainmask) {
2055 if (tx_chainmask & BIT(0))
2056 pCap->max_txchains++;
2057 if (rx_chainmask & BIT(0))
2058 pCap->max_rxchains++;
2059
2060 tx_chainmask >>= 1;
2061 rx_chainmask >>= 1;
2062 }
2063
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002064 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002065}
2066
Sujithf1dc5602008-10-29 10:16:30 +05302067/****************************/
2068/* GPIO / RFKILL / Antennae */
2069/****************************/
2070
Sujithcbe61d82009-02-09 13:27:12 +05302071static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302072 u32 gpio, u32 type)
2073{
2074 int addr;
2075 u32 gpio_shift, tmp;
2076
2077 if (gpio > 11)
2078 addr = AR_GPIO_OUTPUT_MUX3;
2079 else if (gpio > 5)
2080 addr = AR_GPIO_OUTPUT_MUX2;
2081 else
2082 addr = AR_GPIO_OUTPUT_MUX1;
2083
2084 gpio_shift = (gpio % 6) * 5;
2085
2086 if (AR_SREV_9280_20_OR_LATER(ah)
2087 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2088 REG_RMW(ah, addr, (type << gpio_shift),
2089 (0x1f << gpio_shift));
2090 } else {
2091 tmp = REG_READ(ah, addr);
2092 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2093 tmp &= ~(0x1f << gpio_shift);
2094 tmp |= (type << gpio_shift);
2095 REG_WRITE(ah, addr, tmp);
2096 }
2097}
2098
Sujithcbe61d82009-02-09 13:27:12 +05302099void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302100{
2101 u32 gpio_shift;
2102
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002103 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302104
Sujith88c1f4f2010-06-30 14:46:31 +05302105 if (AR_DEVID_7010(ah)) {
2106 gpio_shift = gpio;
2107 REG_RMW(ah, AR7010_GPIO_OE,
2108 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2109 (AR7010_GPIO_OE_MASK << gpio_shift));
2110 return;
2111 }
Sujithf1dc5602008-10-29 10:16:30 +05302112
Sujith88c1f4f2010-06-30 14:46:31 +05302113 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302114 REG_RMW(ah,
2115 AR_GPIO_OE_OUT,
2116 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2117 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2118}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002119EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302120
Sujithcbe61d82009-02-09 13:27:12 +05302121u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302122{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302123#define MS_REG_READ(x, y) \
2124 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2125
Sujith2660b812009-02-09 13:27:26 +05302126 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302127 return 0xffffffff;
2128
Sujith88c1f4f2010-06-30 14:46:31 +05302129 if (AR_DEVID_7010(ah)) {
2130 u32 val;
2131 val = REG_READ(ah, AR7010_GPIO_IN);
2132 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2133 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002134 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2135 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002136 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302137 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002138 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302139 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002140 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302141 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002142 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302143 return MS_REG_READ(AR928X, gpio) != 0;
2144 else
2145 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302146}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002147EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302148
Sujithcbe61d82009-02-09 13:27:12 +05302149void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302150 u32 ah_signal_type)
2151{
2152 u32 gpio_shift;
2153
Sujith88c1f4f2010-06-30 14:46:31 +05302154 if (AR_DEVID_7010(ah)) {
2155 gpio_shift = gpio;
2156 REG_RMW(ah, AR7010_GPIO_OE,
2157 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2158 (AR7010_GPIO_OE_MASK << gpio_shift));
2159 return;
2160 }
2161
Sujithf1dc5602008-10-29 10:16:30 +05302162 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302163 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302164 REG_RMW(ah,
2165 AR_GPIO_OE_OUT,
2166 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2167 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2168}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002169EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302170
Sujithcbe61d82009-02-09 13:27:12 +05302171void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302172{
Sujith88c1f4f2010-06-30 14:46:31 +05302173 if (AR_DEVID_7010(ah)) {
2174 val = val ? 0 : 1;
2175 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2176 AR_GPIO_BIT(gpio));
2177 return;
2178 }
2179
Sujith5b5fa352010-03-17 14:25:15 +05302180 if (AR_SREV_9271(ah))
2181 val = ~val;
2182
Sujithf1dc5602008-10-29 10:16:30 +05302183 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2184 AR_GPIO_BIT(gpio));
2185}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002186EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302187
Sujithcbe61d82009-02-09 13:27:12 +05302188u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302189{
2190 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2191}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002192EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302193
Sujithcbe61d82009-02-09 13:27:12 +05302194void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302195{
2196 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2197}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002198EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302199
Sujithf1dc5602008-10-29 10:16:30 +05302200/*********************/
2201/* General Operation */
2202/*********************/
2203
Sujithcbe61d82009-02-09 13:27:12 +05302204u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302205{
2206 u32 bits = REG_READ(ah, AR_RX_FILTER);
2207 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2208
2209 if (phybits & AR_PHY_ERR_RADAR)
2210 bits |= ATH9K_RX_FILTER_PHYRADAR;
2211 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2212 bits |= ATH9K_RX_FILTER_PHYERR;
2213
2214 return bits;
2215}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002216EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302217
Sujithcbe61d82009-02-09 13:27:12 +05302218void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302219{
2220 u32 phybits;
2221
Sujith7d0d0df2010-04-16 11:53:57 +05302222 ENABLE_REGWRITE_BUFFER(ah);
2223
Sujith7ea310b2009-09-03 12:08:43 +05302224 REG_WRITE(ah, AR_RX_FILTER, bits);
2225
Sujithf1dc5602008-10-29 10:16:30 +05302226 phybits = 0;
2227 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2228 phybits |= AR_PHY_ERR_RADAR;
2229 if (bits & ATH9K_RX_FILTER_PHYERR)
2230 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2231 REG_WRITE(ah, AR_PHY_ERR, phybits);
2232
2233 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002234 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302235 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002236 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302237
2238 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302239}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002240EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302241
Sujithcbe61d82009-02-09 13:27:12 +05302242bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302243{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302244 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2245 return false;
2246
2247 ath9k_hw_init_pll(ah, NULL);
2248 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302249}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002250EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302251
Sujithcbe61d82009-02-09 13:27:12 +05302252bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302253{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002254 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302255 return false;
2256
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302257 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2258 return false;
2259
2260 ath9k_hw_init_pll(ah, NULL);
2261 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302262}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002263EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302264
Felix Fietkaude40f312010-10-20 03:08:53 +02002265void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302266{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002267 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302268 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002269 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302270
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002271 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302272
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002273 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002274 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002275 channel->max_antenna_gain * 2,
2276 channel->max_power * 2,
2277 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002278 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302279}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002280EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302281
Sujithcbe61d82009-02-09 13:27:12 +05302282void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302283{
Sujith2660b812009-02-09 13:27:26 +05302284 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302285}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002286EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302287
Sujithcbe61d82009-02-09 13:27:12 +05302288void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302289{
2290 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2291 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2292}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002293EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302294
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002295void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302296{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002297 struct ath_common *common = ath9k_hw_common(ah);
2298
2299 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2300 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2301 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302302}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002303EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302304
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002305#define ATH9K_MAX_TSF_READ 10
2306
Sujithcbe61d82009-02-09 13:27:12 +05302307u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302308{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002309 u32 tsf_lower, tsf_upper1, tsf_upper2;
2310 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302311
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002312 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2313 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2314 tsf_lower = REG_READ(ah, AR_TSF_L32);
2315 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2316 if (tsf_upper2 == tsf_upper1)
2317 break;
2318 tsf_upper1 = tsf_upper2;
2319 }
Sujithf1dc5602008-10-29 10:16:30 +05302320
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002321 WARN_ON( i == ATH9K_MAX_TSF_READ );
2322
2323 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302324}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002325EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302326
Sujithcbe61d82009-02-09 13:27:12 +05302327void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002328{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002329 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002330 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002331}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002332EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002333
Sujithcbe61d82009-02-09 13:27:12 +05302334void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302335{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002336 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2337 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002338 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2339 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002340
Sujithf1dc5602008-10-29 10:16:30 +05302341 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002343EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002344
Sujith54e4cec2009-08-07 09:45:09 +05302345void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002347 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302348 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349 else
Sujith2660b812009-02-09 13:27:26 +05302350 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002351}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002352EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002354void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002356 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302357 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002358
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002359 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302360 macmode = AR_2040_JOINED_RX_CLEAR;
2361 else
2362 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002363
Sujithf1dc5602008-10-29 10:16:30 +05302364 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002365}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302366
2367/* HW Generic timers configuration */
2368
2369static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2370{
2371 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2372 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2373 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2374 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2375 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2376 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2377 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2378 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2379 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2380 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2381 AR_NDP2_TIMER_MODE, 0x0002},
2382 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2383 AR_NDP2_TIMER_MODE, 0x0004},
2384 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2385 AR_NDP2_TIMER_MODE, 0x0008},
2386 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2387 AR_NDP2_TIMER_MODE, 0x0010},
2388 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2389 AR_NDP2_TIMER_MODE, 0x0020},
2390 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2391 AR_NDP2_TIMER_MODE, 0x0040},
2392 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2393 AR_NDP2_TIMER_MODE, 0x0080}
2394};
2395
2396/* HW generic timer primitives */
2397
2398/* compute and clear index of rightmost 1 */
2399static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2400{
2401 u32 b;
2402
2403 b = *mask;
2404 b &= (0-b);
2405 *mask &= ~b;
2406 b *= debruijn32;
2407 b >>= 27;
2408
2409 return timer_table->gen_timer_index[b];
2410}
2411
Felix Fietkaudd347f22011-03-22 21:54:17 +01002412u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302413{
2414 return REG_READ(ah, AR_TSF_L32);
2415}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002416EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302417
2418struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2419 void (*trigger)(void *),
2420 void (*overflow)(void *),
2421 void *arg,
2422 u8 timer_index)
2423{
2424 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2425 struct ath_gen_timer *timer;
2426
2427 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2428
2429 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002430 ath_err(ath9k_hw_common(ah),
2431 "Failed to allocate memory for hw timer[%d]\n",
2432 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302433 return NULL;
2434 }
2435
2436 /* allocate a hardware generic timer slot */
2437 timer_table->timers[timer_index] = timer;
2438 timer->index = timer_index;
2439 timer->trigger = trigger;
2440 timer->overflow = overflow;
2441 timer->arg = arg;
2442
2443 return timer;
2444}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002445EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302446
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002447void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2448 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302449 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002450 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302451{
2452 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302453 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302454
2455 BUG_ON(!timer_period);
2456
2457 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2458
2459 tsf = ath9k_hw_gettsf32(ah);
2460
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302461 timer_next = tsf + trig_timeout;
2462
Joe Perches226afe62010-12-02 19:12:37 -08002463 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2464 "current tsf %x period %x timer_next %x\n",
2465 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302466
2467 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302468 * Program generic timer registers
2469 */
2470 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2471 timer_next);
2472 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2473 timer_period);
2474 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2475 gen_tmr_configuration[timer->index].mode_mask);
2476
2477 /* Enable both trigger and thresh interrupt masks */
2478 REG_SET_BIT(ah, AR_IMR_S5,
2479 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2480 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302481}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002482EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302483
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002484void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302485{
2486 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2487
2488 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2489 (timer->index >= ATH_MAX_GEN_TIMER)) {
2490 return;
2491 }
2492
2493 /* Clear generic timer enable bits. */
2494 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2495 gen_tmr_configuration[timer->index].mode_mask);
2496
2497 /* Disable both trigger and thresh interrupt masks */
2498 REG_CLR_BIT(ah, AR_IMR_S5,
2499 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2500 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2501
2502 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302503}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002504EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302505
2506void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2507{
2508 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2509
2510 /* free the hardware generic timer slot */
2511 timer_table->timers[timer->index] = NULL;
2512 kfree(timer);
2513}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002514EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302515
2516/*
2517 * Generic Timer Interrupts handling
2518 */
2519void ath_gen_timer_isr(struct ath_hw *ah)
2520{
2521 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2522 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002523 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302524 u32 trigger_mask, thresh_mask, index;
2525
2526 /* get hardware generic timer interrupt status */
2527 trigger_mask = ah->intr_gen_timer_trigger;
2528 thresh_mask = ah->intr_gen_timer_thresh;
2529 trigger_mask &= timer_table->timer_mask.val;
2530 thresh_mask &= timer_table->timer_mask.val;
2531
2532 trigger_mask &= ~thresh_mask;
2533
2534 while (thresh_mask) {
2535 index = rightmost_index(timer_table, &thresh_mask);
2536 timer = timer_table->timers[index];
2537 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002538 ath_dbg(common, ATH_DBG_HWTIMER,
2539 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302540 timer->overflow(timer->arg);
2541 }
2542
2543 while (trigger_mask) {
2544 index = rightmost_index(timer_table, &trigger_mask);
2545 timer = timer_table->timers[index];
2546 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002547 ath_dbg(common, ATH_DBG_HWTIMER,
2548 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302549 timer->trigger(timer->arg);
2550 }
2551}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002552EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002553
Sujith05020d22010-03-17 14:25:23 +05302554/********/
2555/* HTC */
2556/********/
2557
2558void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2559{
2560 ah->htc_reset_init = true;
2561}
2562EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2563
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002564static struct {
2565 u32 version;
2566 const char * name;
2567} ath_mac_bb_names[] = {
2568 /* Devices with external radios */
2569 { AR_SREV_VERSION_5416_PCI, "5416" },
2570 { AR_SREV_VERSION_5416_PCIE, "5418" },
2571 { AR_SREV_VERSION_9100, "9100" },
2572 { AR_SREV_VERSION_9160, "9160" },
2573 /* Single-chip solutions */
2574 { AR_SREV_VERSION_9280, "9280" },
2575 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002576 { AR_SREV_VERSION_9287, "9287" },
2577 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002578 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02002579 { AR_SREV_VERSION_9330, "9330" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05302580 { AR_SREV_VERSION_9485, "9485" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002581};
2582
2583/* For devices with external radios */
2584static struct {
2585 u16 version;
2586 const char * name;
2587} ath_rf_names[] = {
2588 { 0, "5133" },
2589 { AR_RAD5133_SREV_MAJOR, "5133" },
2590 { AR_RAD5122_SREV_MAJOR, "5122" },
2591 { AR_RAD2133_SREV_MAJOR, "2133" },
2592 { AR_RAD2122_SREV_MAJOR, "2122" }
2593};
2594
2595/*
2596 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2597 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002598static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002599{
2600 int i;
2601
2602 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2603 if (ath_mac_bb_names[i].version == mac_bb_version) {
2604 return ath_mac_bb_names[i].name;
2605 }
2606 }
2607
2608 return "????";
2609}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002610
2611/*
2612 * Return the RF name. "????" is returned if the RF is unknown.
2613 * Used for devices with external radios.
2614 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002615static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002616{
2617 int i;
2618
2619 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2620 if (ath_rf_names[i].version == rf_version) {
2621 return ath_rf_names[i].name;
2622 }
2623 }
2624
2625 return "????";
2626}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002627
2628void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2629{
2630 int used;
2631
2632 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002633 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002634 used = snprintf(hw_name, len,
2635 "Atheros AR%s Rev:%x",
2636 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2637 ah->hw_version.macRev);
2638 }
2639 else {
2640 used = snprintf(hw_name, len,
2641 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2642 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2643 ah->hw_version.macRev,
2644 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2645 AR_RADIO_SREV_MAJOR)),
2646 ah->hw_version.phyRev);
2647 }
2648
2649 hw_name[used] = '\0';
2650}
2651EXPORT_SYMBOL(ath9k_hw_name);