blob: 9f01e50d5cda718e391f9582f71064f82c5f8733 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04002 * Copyright (c) 2008-2010 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070019#include <asm/unaligned.h>
20
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070021#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040022#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070023#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040024#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070025
Sujithcbe61d82009-02-09 13:27:12 +053026static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040028MODULE_AUTHOR("Atheros Communications");
29MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31MODULE_LICENSE("Dual BSD/GPL");
32
33static int __init ath9k_init(void)
34{
35 return 0;
36}
37module_init(ath9k_init);
38
39static void __exit ath9k_exit(void)
40{
41 return;
42}
43module_exit(ath9k_exit);
44
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040045/* Private hardware callbacks */
46
47static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
48{
49 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
50}
51
52static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
55}
56
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
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133u32 ath9k_hw_reverse_bits(u32 val, u32 n)
134{
135 u32 retval;
136 int i;
137
138 for (i = 0, retval = 0; i < n; i++) {
139 retval = (retval << 1) | (val & 1);
140 val >>= 1;
141 }
142 return retval;
143}
144
Sujithcbe61d82009-02-09 13:27:12 +0530145bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530146 u16 flags, u16 *low,
147 u16 *high)
148{
Sujith2660b812009-02-09 13:27:26 +0530149 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530150
151 if (flags & CHANNEL_5GHZ) {
152 *low = pCap->low_5ghz_chan;
153 *high = pCap->high_5ghz_chan;
154 return true;
155 }
156 if ((flags & CHANNEL_2GHZ)) {
157 *low = pCap->low_2ghz_chan;
158 *high = pCap->high_2ghz_chan;
159 return true;
160 }
161 return false;
162}
163
Sujithcbe61d82009-02-09 13:27:12 +0530164u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100165 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530166 u32 frameLen, u16 rateix,
167 bool shortPreamble)
168{
169 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530170
171 if (kbps == 0)
172 return 0;
173
Felix Fietkau545750d2009-11-23 22:21:01 +0100174 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530175 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530176 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100177 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530178 phyTime >>= 1;
179 numBits = frameLen << 3;
180 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
181 break;
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530183 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530184 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
185 numBits = OFDM_PLCP_BITS + (frameLen << 3);
186 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
187 txTime = OFDM_SIFS_TIME_QUARTER
188 + OFDM_PREAMBLE_TIME_QUARTER
189 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530190 } else if (ah->curchan &&
191 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530192 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
193 numBits = OFDM_PLCP_BITS + (frameLen << 3);
194 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
195 txTime = OFDM_SIFS_TIME_HALF +
196 OFDM_PREAMBLE_TIME_HALF
197 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
198 } else {
199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
203 + (numSymbols * OFDM_SYMBOL_TIME);
204 }
205 break;
206 default:
Joe Perches38002762010-12-02 19:12:36 -0800207 ath_err(ath9k_hw_common(ah),
208 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530209 txTime = 0;
210 break;
211 }
212
213 return txTime;
214}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400215EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530216
Sujithcbe61d82009-02-09 13:27:12 +0530217void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530218 struct ath9k_channel *chan,
219 struct chan_centers *centers)
220{
221 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530222
223 if (!IS_CHAN_HT40(chan)) {
224 centers->ctl_center = centers->ext_center =
225 centers->synth_center = chan->channel;
226 return;
227 }
228
229 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
230 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
231 centers->synth_center =
232 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
233 extoff = 1;
234 } else {
235 centers->synth_center =
236 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
237 extoff = -1;
238 }
239
240 centers->ctl_center =
241 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700242 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530243 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700244 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530245}
246
247/******************/
248/* Chip Revisions */
249/******************/
250
Sujithcbe61d82009-02-09 13:27:12 +0530251static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530252{
253 u32 val;
254
255 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
256
257 if (val == 0xFF) {
258 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530259 ah->hw_version.macVersion =
260 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
261 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530262 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530263 } else {
264 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530265 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530266
Sujithd535a422009-02-09 13:27:06 +0530267 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530268
Sujithd535a422009-02-09 13:27:06 +0530269 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530270 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530271 }
272}
273
Sujithf1dc5602008-10-29 10:16:30 +0530274/************************************/
275/* HW Attach, Detach, Init Routines */
276/************************************/
277
Sujithcbe61d82009-02-09 13:27:12 +0530278static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530279{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100280 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530281 return;
282
283 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
284 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
285 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
292
293 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
294}
295
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400296/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530297static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530298{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700299 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400300 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530301 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800302 static const u32 patternData[4] = {
303 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
304 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530306
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400307 if (!AR_SREV_9300_20_OR_LATER(ah)) {
308 loop_max = 2;
309 regAddr[1] = AR_PHY_BASE + (8 << 2);
310 } else
311 loop_max = 1;
312
313 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530314 u32 addr = regAddr[i];
315 u32 wrData, rdData;
316
317 regHold[i] = REG_READ(ah, addr);
318 for (j = 0; j < 0x100; j++) {
319 wrData = (j << 16) | j;
320 REG_WRITE(ah, addr, wrData);
321 rdData = REG_READ(ah, addr);
322 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800323 ath_err(common,
324 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
325 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530326 return false;
327 }
328 }
329 for (j = 0; j < 4; j++) {
330 wrData = patternData[j];
331 REG_WRITE(ah, addr, wrData);
332 rdData = REG_READ(ah, addr);
333 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800334 ath_err(common,
335 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
336 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530337 return false;
338 }
339 }
340 REG_WRITE(ah, regAddr[i], regHold[i]);
341 }
342 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530343
Sujithf1dc5602008-10-29 10:16:30 +0530344 return true;
345}
346
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700347static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700348{
349 int i;
350
Sujith2660b812009-02-09 13:27:26 +0530351 ah->config.dma_beacon_response_time = 2;
352 ah->config.sw_beacon_response_time = 10;
353 ah->config.additional_swba_backoff = 0;
354 ah->config.ack_6mb = 0x0;
355 ah->config.cwm_ignore_extcca = 0;
356 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530357 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530358 ah->config.pcie_waen = 0;
359 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400360 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361
362 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530363 ah->config.spurchans[i][0] = AR_NO_SPUR;
364 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700365 }
366
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500367 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
368 ah->config.ht_enable = 1;
369 else
370 ah->config.ht_enable = 0;
371
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800372 /* PAPRD needs some more work to be enabled */
373 ah->config.paprd_disable = 1;
374
Sujith0ce024c2009-12-14 14:57:00 +0530375 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400376 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400377
378 /*
379 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
380 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
381 * This means we use it for all AR5416 devices, and the few
382 * minor PCI AR9280 devices out there.
383 *
384 * Serialization is required because these devices do not handle
385 * well the case of two concurrent reads/writes due to the latency
386 * involved. During one read/write another read/write can be issued
387 * on another CPU while the previous read/write may still be working
388 * on our hardware, if we hit this case the hardware poops in a loop.
389 * We prevent this by serializing reads and writes.
390 *
391 * This issue is not present on PCI-Express devices or pre-AR5416
392 * devices (legacy, 802.11abg).
393 */
394 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700395 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700396}
397
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700398static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700400 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
401
402 regulatory->country_code = CTRY_DEFAULT;
403 regulatory->power_limit = MAX_RATE_POWER;
404 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
405
Sujithd535a422009-02-09 13:27:06 +0530406 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530407 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700408
Sujith2660b812009-02-09 13:27:26 +0530409 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200410 ah->sta_id1_defaults =
411 AR_STA_ID1_CRPT_MIC_ENABLE |
412 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530413 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Felix Fietkau4357c6b2010-12-13 08:40:50 +0100414 ah->slottime = 20;
Sujith2660b812009-02-09 13:27:26 +0530415 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200416 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700417}
418
Sujithcbe61d82009-02-09 13:27:12 +0530419static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700421 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530422 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530424 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800425 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426
Sujithf1dc5602008-10-29 10:16:30 +0530427 sum = 0;
428 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400429 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530430 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700431 common->macaddr[2 * i] = eeval >> 8;
432 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433 }
Sujithd8baa932009-03-30 15:28:25 +0530434 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530435 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437 return 0;
438}
439
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700440static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530442 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 int ecode;
444
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530445 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530446 if (!ath9k_hw_chip_test(ah))
447 return -ENODEV;
448 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400450 if (!AR_SREV_9300_20_OR_LATER(ah)) {
451 ecode = ar9002_hw_rf_claim(ah);
452 if (ecode != 0)
453 return ecode;
454 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700456 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 if (ecode != 0)
458 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530459
Joe Perches226afe62010-12-02 19:12:37 -0800460 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
461 "Eeprom VER: %d, REV: %d\n",
462 ah->eep_ops->get_eeprom_ver(ah),
463 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530464
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400465 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
466 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800467 ath_err(ath9k_hw_common(ah),
468 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530469 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400470 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400471 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472
473 if (!AR_SREV_9100(ah)) {
474 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700475 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 }
Sujithf1dc5602008-10-29 10:16:30 +0530477
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 return 0;
479}
480
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400481static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700482{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400483 if (AR_SREV_9300_20_OR_LATER(ah))
484 ar9003_hw_attach_ops(ah);
485 else
486 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700487}
488
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400489/* Called for all hardware families */
490static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700491{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700492 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700493 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700494
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400495 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
496 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700497
498 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800499 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700500 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700501 }
502
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400503 ath9k_hw_init_defaults(ah);
504 ath9k_hw_init_config(ah);
505
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400506 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400507
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700508 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800509 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700510 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700511 }
512
513 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
514 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400515 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
516 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700517 ah->config.serialize_regmode =
518 SER_REG_MODE_ON;
519 } else {
520 ah->config.serialize_regmode =
521 SER_REG_MODE_OFF;
522 }
523 }
524
Joe Perches226afe62010-12-02 19:12:37 -0800525 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700526 ah->config.serialize_regmode);
527
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500528 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
529 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
530 else
531 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
532
Felix Fietkau6da5a722010-12-12 00:51:12 +0100533 switch (ah->hw_version.macVersion) {
534 case AR_SREV_VERSION_5416_PCI:
535 case AR_SREV_VERSION_5416_PCIE:
536 case AR_SREV_VERSION_9160:
537 case AR_SREV_VERSION_9100:
538 case AR_SREV_VERSION_9280:
539 case AR_SREV_VERSION_9285:
540 case AR_SREV_VERSION_9287:
541 case AR_SREV_VERSION_9271:
542 case AR_SREV_VERSION_9300:
543 case AR_SREV_VERSION_9485:
544 break;
545 default:
Joe Perches38002762010-12-02 19:12:36 -0800546 ath_err(common,
547 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
548 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700549 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700550 }
551
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400552 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400553 ah->is_pciexpress = false;
554
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700555 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556 ath9k_hw_init_cal_settings(ah);
557
558 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200559 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700560 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400561 if (!AR_SREV_9300_20_OR_LATER(ah))
562 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563
564 ath9k_hw_init_mode_regs(ah);
565
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400566 /*
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400567 * Read back AR_WA into a permanent copy and set bits 14 and 17.
568 * We need to do this to avoid RMW of this register. We cannot
569 * read the reg when chip is asleep.
570 */
571 ah->WARegVal = REG_READ(ah, AR_WA);
572 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
573 AR_WA_ASPM_TIMER_BASED_DISABLE);
574
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700575 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530576 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700577 else
578 ath9k_hw_disablepcie(ah);
579
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400580 if (!AR_SREV_9300_20_OR_LATER(ah))
581 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530582
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700583 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700584 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700585 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700586
587 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100588 r = ath9k_hw_fill_cap_info(ah);
589 if (r)
590 return r;
591
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700592 r = ath9k_hw_init_macaddr(ah);
593 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800594 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700595 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596 }
597
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400598 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530599 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600 else
Sujith2660b812009-02-09 13:27:26 +0530601 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400603 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400605 common->state = ATH_HW_INITIALIZED;
606
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700607 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608}
609
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400610int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530611{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400612 int ret;
613 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530614
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400615 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
616 switch (ah->hw_version.devid) {
617 case AR5416_DEVID_PCI:
618 case AR5416_DEVID_PCIE:
619 case AR5416_AR9100_DEVID:
620 case AR9160_DEVID_PCI:
621 case AR9280_DEVID_PCI:
622 case AR9280_DEVID_PCIE:
623 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400624 case AR9287_DEVID_PCI:
625 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400626 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400627 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800628 case AR9300_DEVID_AR9485_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400629 break;
630 default:
631 if (common->bus_ops->ath_bus_type == ATH_USB)
632 break;
Joe Perches38002762010-12-02 19:12:36 -0800633 ath_err(common, "Hardware device ID 0x%04x not supported\n",
634 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400635 return -EOPNOTSUPP;
636 }
Sujithf1dc5602008-10-29 10:16:30 +0530637
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400638 ret = __ath9k_hw_init(ah);
639 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800640 ath_err(common,
641 "Unable to initialize hardware; initialization status: %d\n",
642 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400643 return ret;
644 }
Sujithf1dc5602008-10-29 10:16:30 +0530645
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400646 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530647}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400648EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530649
Sujithcbe61d82009-02-09 13:27:12 +0530650static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530651{
Sujith7d0d0df2010-04-16 11:53:57 +0530652 ENABLE_REGWRITE_BUFFER(ah);
653
Sujithf1dc5602008-10-29 10:16:30 +0530654 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
655 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
656
657 REG_WRITE(ah, AR_QOS_NO_ACK,
658 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
659 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
660 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
661
662 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
663 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
664 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
665 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
666 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530667
668 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530669}
670
Sujithcbe61d82009-02-09 13:27:12 +0530671static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530672 struct ath9k_channel *chan)
673{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800674 u32 pll;
675
676 if (AR_SREV_9485(ah))
677 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, 0x886666);
678
679 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530680
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100681 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530682
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400683 /* Switch the core clock for ar9271 to 117Mhz */
684 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530685 udelay(500);
686 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400687 }
688
Sujithf1dc5602008-10-29 10:16:30 +0530689 udelay(RTC_PLL_SETTLE_DELAY);
690
691 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
692}
693
Sujithcbe61d82009-02-09 13:27:12 +0530694static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800695 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530696{
Pavel Roskin152d5302010-03-31 18:05:37 -0400697 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530698 AR_IMR_TXURN |
699 AR_IMR_RXERR |
700 AR_IMR_RXORN |
701 AR_IMR_BCNMISC;
702
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400703 if (AR_SREV_9300_20_OR_LATER(ah)) {
704 imr_reg |= AR_IMR_RXOK_HP;
705 if (ah->config.rx_intr_mitigation)
706 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
707 else
708 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530709
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400710 } else {
711 if (ah->config.rx_intr_mitigation)
712 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
713 else
714 imr_reg |= AR_IMR_RXOK;
715 }
716
717 if (ah->config.tx_intr_mitigation)
718 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
719 else
720 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530721
Colin McCabed97809d2008-12-01 13:38:55 -0800722 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400723 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530724
Sujith7d0d0df2010-04-16 11:53:57 +0530725 ENABLE_REGWRITE_BUFFER(ah);
726
Pavel Roskin152d5302010-03-31 18:05:37 -0400727 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500728 ah->imrs2_reg |= AR_IMR_S2_GTT;
729 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530730
731 if (!AR_SREV_9100(ah)) {
732 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
733 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
734 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
735 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400736
Sujith7d0d0df2010-04-16 11:53:57 +0530737 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530738
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400739 if (AR_SREV_9300_20_OR_LATER(ah)) {
740 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
741 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
742 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
743 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
744 }
Sujithf1dc5602008-10-29 10:16:30 +0530745}
746
Felix Fietkau0005baf2010-01-15 02:33:40 +0100747static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530748{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100749 u32 val = ath9k_hw_mac_to_clks(ah, us);
750 val = min(val, (u32) 0xFFFF);
751 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530752}
753
Felix Fietkau0005baf2010-01-15 02:33:40 +0100754static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530755{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100756 u32 val = ath9k_hw_mac_to_clks(ah, us);
757 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
758 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
759}
760
761static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
762{
763 u32 val = ath9k_hw_mac_to_clks(ah, us);
764 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
765 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530766}
767
Sujithcbe61d82009-02-09 13:27:12 +0530768static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530769{
Sujithf1dc5602008-10-29 10:16:30 +0530770 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800771 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
772 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530773 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530774 return false;
775 } else {
776 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530777 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530778 return true;
779 }
780}
781
Felix Fietkau0005baf2010-01-15 02:33:40 +0100782void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530783{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100784 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
785 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100786 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100787 int sifstime;
788
Joe Perches226afe62010-12-02 19:12:37 -0800789 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
790 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530791
Sujith2660b812009-02-09 13:27:26 +0530792 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530793 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530794 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100795
796 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
797 sifstime = 16;
798 else
799 sifstime = 10;
800
Felix Fietkaue239d852010-01-15 02:34:58 +0100801 /* As defined by IEEE 802.11-2007 17.3.8.6 */
802 slottime = ah->slottime + 3 * ah->coverage_class;
803 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100804
805 /*
806 * Workaround for early ACK timeouts, add an offset to match the
807 * initval's 64us ack timeout value.
808 * This was initially only meant to work around an issue with delayed
809 * BA frames in some implementations, but it has been found to fix ACK
810 * timeout issues in other cases as well.
811 */
812 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
813 acktimeout += 64 - sifstime - ah->slottime;
814
Felix Fietkaucaabf2b2010-12-13 08:40:51 +0100815 ath9k_hw_setslottime(ah, ah->slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100816 ath9k_hw_set_ack_timeout(ah, acktimeout);
817 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530818 if (ah->globaltxtimeout != (u32) -1)
819 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530820}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100821EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530822
Sujith285f2dd2010-01-08 10:36:07 +0530823void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400825 struct ath_common *common = ath9k_hw_common(ah);
826
Sujith736b3a22010-03-17 14:25:24 +0530827 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400828 goto free_hw;
829
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700830 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400831
832free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400833 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834}
Sujith285f2dd2010-01-08 10:36:07 +0530835EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836
Sujithf1dc5602008-10-29 10:16:30 +0530837/*******/
838/* INI */
839/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400841u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400842{
843 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
844
845 if (IS_CHAN_B(chan))
846 ctl |= CTL_11B;
847 else if (IS_CHAN_G(chan))
848 ctl |= CTL_11G;
849 else
850 ctl |= CTL_11A;
851
852 return ctl;
853}
854
Sujithf1dc5602008-10-29 10:16:30 +0530855/****************************************/
856/* Reset and Channel Switching Routines */
857/****************************************/
858
Sujithcbe61d82009-02-09 13:27:12 +0530859static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530860{
Felix Fietkau57b32222010-04-15 17:39:22 -0400861 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530862 u32 regval;
863
Sujith7d0d0df2010-04-16 11:53:57 +0530864 ENABLE_REGWRITE_BUFFER(ah);
865
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400866 /*
867 * set AHB_MODE not to do cacheline prefetches
868 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400869 if (!AR_SREV_9300_20_OR_LATER(ah)) {
870 regval = REG_READ(ah, AR_AHB_MODE);
871 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
872 }
Sujithf1dc5602008-10-29 10:16:30 +0530873
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400874 /*
875 * let mac dma reads be in 128 byte chunks
876 */
Sujithf1dc5602008-10-29 10:16:30 +0530877 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
878 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
879
Sujith7d0d0df2010-04-16 11:53:57 +0530880 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530881
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400882 /*
883 * Restore TX Trigger Level to its pre-reset value.
884 * The initial value depends on whether aggregation is enabled, and is
885 * adjusted whenever underruns are detected.
886 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400887 if (!AR_SREV_9300_20_OR_LATER(ah))
888 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530889
Sujith7d0d0df2010-04-16 11:53:57 +0530890 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530891
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400892 /*
893 * let mac dma writes be in 128 byte chunks
894 */
Sujithf1dc5602008-10-29 10:16:30 +0530895 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
896 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
897
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400898 /*
899 * Setup receive FIFO threshold to hold off TX activities
900 */
Sujithf1dc5602008-10-29 10:16:30 +0530901 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
902
Felix Fietkau57b32222010-04-15 17:39:22 -0400903 if (AR_SREV_9300_20_OR_LATER(ah)) {
904 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
905 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
906
907 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
908 ah->caps.rx_status_len);
909 }
910
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400911 /*
912 * reduce the number of usable entries in PCU TXBUF to avoid
913 * wrap around issues.
914 */
Sujithf1dc5602008-10-29 10:16:30 +0530915 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400916 /* For AR9285 the number of Fifos are reduced to half.
917 * So set the usable tx buf size also to half to
918 * avoid data/delimiter underruns
919 */
Sujithf1dc5602008-10-29 10:16:30 +0530920 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
921 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400922 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530923 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
924 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
925 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400926
Sujith7d0d0df2010-04-16 11:53:57 +0530927 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530928
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400929 if (AR_SREV_9300_20_OR_LATER(ah))
930 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530931}
932
Sujithcbe61d82009-02-09 13:27:12 +0530933static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530934{
935 u32 val;
936
937 val = REG_READ(ah, AR_STA_ID1);
938 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
939 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800940 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530941 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
942 | AR_STA_ID1_KSRCH_MODE);
943 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
944 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800945 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400946 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530947 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
948 | AR_STA_ID1_KSRCH_MODE);
949 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
950 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800951 case NL80211_IFTYPE_STATION:
Sujithf1dc5602008-10-29 10:16:30 +0530952 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
953 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530954 default:
955 if (ah->is_monitoring)
956 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
957 break;
Sujithf1dc5602008-10-29 10:16:30 +0530958 }
959}
960
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400961void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
962 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700963{
964 u32 coef_exp, coef_man;
965
966 for (coef_exp = 31; coef_exp > 0; coef_exp--)
967 if ((coef_scaled >> coef_exp) & 0x1)
968 break;
969
970 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
971
972 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
973
974 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
975 *coef_exponent = coef_exp - 16;
976}
977
Sujithcbe61d82009-02-09 13:27:12 +0530978static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530979{
980 u32 rst_flags;
981 u32 tmpReg;
982
Sujith70768492009-02-16 13:23:12 +0530983 if (AR_SREV_9100(ah)) {
984 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
985 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
986 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
987 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
988 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
989 }
990
Sujith7d0d0df2010-04-16 11:53:57 +0530991 ENABLE_REGWRITE_BUFFER(ah);
992
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400993 if (AR_SREV_9300_20_OR_LATER(ah)) {
994 REG_WRITE(ah, AR_WA, ah->WARegVal);
995 udelay(10);
996 }
997
Sujithf1dc5602008-10-29 10:16:30 +0530998 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
999 AR_RTC_FORCE_WAKE_ON_INT);
1000
1001 if (AR_SREV_9100(ah)) {
1002 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1003 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1004 } else {
1005 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1006 if (tmpReg &
1007 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1008 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001009 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301010 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001011
1012 val = AR_RC_HOSTIF;
1013 if (!AR_SREV_9300_20_OR_LATER(ah))
1014 val |= AR_RC_AHB;
1015 REG_WRITE(ah, AR_RC, val);
1016
1017 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301018 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301019
1020 rst_flags = AR_RTC_RC_MAC_WARM;
1021 if (type == ATH9K_RESET_COLD)
1022 rst_flags |= AR_RTC_RC_MAC_COLD;
1023 }
1024
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001025 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301026
1027 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301028
Sujithf1dc5602008-10-29 10:16:30 +05301029 udelay(50);
1030
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001031 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301032 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001033 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1034 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301035 return false;
1036 }
1037
1038 if (!AR_SREV_9100(ah))
1039 REG_WRITE(ah, AR_RC, 0);
1040
Sujithf1dc5602008-10-29 10:16:30 +05301041 if (AR_SREV_9100(ah))
1042 udelay(50);
1043
1044 return true;
1045}
1046
Sujithcbe61d82009-02-09 13:27:12 +05301047static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301048{
Sujith7d0d0df2010-04-16 11:53:57 +05301049 ENABLE_REGWRITE_BUFFER(ah);
1050
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001051 if (AR_SREV_9300_20_OR_LATER(ah)) {
1052 REG_WRITE(ah, AR_WA, ah->WARegVal);
1053 udelay(10);
1054 }
1055
Sujithf1dc5602008-10-29 10:16:30 +05301056 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1057 AR_RTC_FORCE_WAKE_ON_INT);
1058
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001059 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301060 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1061
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001062 REG_WRITE(ah, AR_RTC_RESET, 0);
Luis R. Rodriguezee031112010-06-21 18:38:51 -04001063 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301064
Sujith7d0d0df2010-04-16 11:53:57 +05301065 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301066
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001067 if (!AR_SREV_9300_20_OR_LATER(ah))
1068 udelay(2);
1069
1070 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301071 REG_WRITE(ah, AR_RC, 0);
1072
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001073 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301074
1075 if (!ath9k_hw_wait(ah,
1076 AR_RTC_STATUS,
1077 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301078 AR_RTC_STATUS_ON,
1079 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001080 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1081 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301082 return false;
1083 }
1084
1085 ath9k_hw_read_revisions(ah);
1086
1087 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1088}
1089
Sujithcbe61d82009-02-09 13:27:12 +05301090static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301091{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001092 if (AR_SREV_9300_20_OR_LATER(ah)) {
1093 REG_WRITE(ah, AR_WA, ah->WARegVal);
1094 udelay(10);
1095 }
1096
Sujithf1dc5602008-10-29 10:16:30 +05301097 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1098 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1099
1100 switch (type) {
1101 case ATH9K_RESET_POWER_ON:
1102 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301103 case ATH9K_RESET_WARM:
1104 case ATH9K_RESET_COLD:
1105 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301106 default:
1107 return false;
1108 }
1109}
1110
Sujithcbe61d82009-02-09 13:27:12 +05301111static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301112 struct ath9k_channel *chan)
1113{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301114 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301115 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1116 return false;
1117 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301118 return false;
1119
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001120 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301121 return false;
1122
Sujith2660b812009-02-09 13:27:26 +05301123 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301124 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301125 ath9k_hw_set_rfmode(ah, chan);
1126
1127 return true;
1128}
1129
Sujithcbe61d82009-02-09 13:27:12 +05301130static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001131 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301132{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001133 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001134 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001135 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001136 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001137 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301138
1139 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1140 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001141 ath_dbg(common, ATH_DBG_QUEUE,
1142 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301143 return false;
1144 }
1145 }
1146
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001147 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001148 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301149 return false;
1150 }
1151
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001152 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301153
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001154 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001155 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001156 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001157 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301158 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001159 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301160
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001161 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001162 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301163 channel->max_antenna_gain * 2,
1164 channel->max_power * 2,
1165 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001166 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301167
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001168 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301169
1170 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1171 ath9k_hw_set_delta_slope(ah, chan);
1172
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001173 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301174
Sujithf1dc5602008-10-29 10:16:30 +05301175 return true;
1176}
1177
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001178bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301179{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001180 int count = 50;
1181 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301182
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001183 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001184 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301185
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001186 do {
1187 reg = REG_READ(ah, AR_OBS_BUS_1);
1188
1189 if ((reg & 0x7E7FFFEF) == 0x00702400)
1190 continue;
1191
1192 switch (reg & 0x7E000B00) {
1193 case 0x1E000000:
1194 case 0x52000B00:
1195 case 0x18000B00:
1196 continue;
1197 default:
1198 return true;
1199 }
1200 } while (count-- > 0);
1201
1202 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301203}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001204EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301205
Sujithcbe61d82009-02-09 13:27:12 +05301206int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001207 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001209 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001210 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301211 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001212 u32 saveDefAntenna;
1213 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301214 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001215 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001216
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001217 ah->txchainmask = common->tx_chainmask;
1218 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001219
Sujith Manoharan6d501922011-01-04 13:43:39 +05301220 if ((common->bus_ops->ath_bus_type != ATH_USB) && !ah->chip_fullsleep) {
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001221 ath9k_hw_abortpcurecv(ah);
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001222 if (!ath9k_hw_stopdmarecv(ah)) {
Joe Perches226afe62010-12-02 19:12:37 -08001223 ath_dbg(common, ATH_DBG_XMIT,
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001224 "Failed to stop receive dma\n");
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001225 bChannelChange = false;
1226 }
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001227 }
1228
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001229 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001230 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001231
Felix Fietkaud9891c72010-09-29 17:15:27 +02001232 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001233 ath9k_hw_getnf(ah, curchan);
1234
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001235 ah->caldata = caldata;
1236 if (caldata &&
1237 (chan->channel != caldata->channel ||
1238 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1239 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1240 /* Operating channel changed, reset channel calibration data */
1241 memset(caldata, 0, sizeof(*caldata));
1242 ath9k_init_nfcal_hist_buffer(ah, chan);
1243 }
1244
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301246 (ah->chip_fullsleep != true) &&
1247 (ah->curchan != NULL) &&
1248 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301250 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301251 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001252
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001253 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301254 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001255 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301256 if (AR_SREV_9271(ah))
1257 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001258 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259 }
1260 }
1261
1262 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1263 if (saveDefAntenna == 0)
1264 saveDefAntenna = 1;
1265
1266 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1267
Sujith46fe7822009-09-17 09:25:25 +05301268 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001269 if (AR_SREV_9100(ah) ||
1270 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301271 tsf = ath9k_hw_gettsf64(ah);
1272
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001273 saveLedState = REG_READ(ah, AR_CFG_LED) &
1274 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1275 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1276
1277 ath9k_hw_mark_phy_inactive(ah);
1278
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001279 ah->paprd_table_write_done = false;
1280
Sujith05020d22010-03-17 14:25:23 +05301281 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001282 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1283 REG_WRITE(ah,
1284 AR9271_RESET_POWER_DOWN_CONTROL,
1285 AR9271_RADIO_RF_RST);
1286 udelay(50);
1287 }
1288
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001290 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001291 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001292 }
1293
Sujith05020d22010-03-17 14:25:23 +05301294 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001295 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1296 ah->htc_reset_init = false;
1297 REG_WRITE(ah,
1298 AR9271_RESET_POWER_DOWN_CONTROL,
1299 AR9271_GATE_MAC_CTL);
1300 udelay(50);
1301 }
1302
Sujith46fe7822009-09-17 09:25:25 +05301303 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001304 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301305 ath9k_hw_settsf64(ah, tsf);
1306
Felix Fietkau7a370812010-09-22 12:34:52 +02001307 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301308 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001309
Sujithe9141f72010-06-01 15:14:10 +05301310 if (!AR_SREV_9300_20_OR_LATER(ah))
1311 ar9002_hw_enable_async_fifo(ah);
1312
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001313 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001314 if (r)
1315 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316
Felix Fietkauf860d522010-06-30 02:07:48 +02001317 /*
1318 * Some AR91xx SoC devices frequently fail to accept TSF writes
1319 * right after the chip reset. When that happens, write a new
1320 * value after the initvals have been applied, with an offset
1321 * based on measured time difference
1322 */
1323 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1324 tsf += 1500;
1325 ath9k_hw_settsf64(ah, tsf);
1326 }
1327
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001328 /* Setup MFP options for CCMP */
1329 if (AR_SREV_9280_20_OR_LATER(ah)) {
1330 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1331 * frames when constructing CCMP AAD. */
1332 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1333 0xc7ff);
1334 ah->sw_mgmt_crypto = false;
1335 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1336 /* Disable hardware crypto for management frames */
1337 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1338 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1339 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1340 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1341 ah->sw_mgmt_crypto = true;
1342 } else
1343 ah->sw_mgmt_crypto = true;
1344
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1346 ath9k_hw_set_delta_slope(ah, chan);
1347
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001348 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301349 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001350
Sujith6819d572010-04-16 11:53:56 +05301351 ath9k_hw_set_operating_mode(ah, ah->opmode);
1352
Sujith7d0d0df2010-04-16 11:53:57 +05301353 ENABLE_REGWRITE_BUFFER(ah);
1354
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001355 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1356 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357 | macStaId1
1358 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301359 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301360 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301361 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001362 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001363 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001364 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001366 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1367
Sujith7d0d0df2010-04-16 11:53:57 +05301368 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301369
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001370 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001371 if (r)
1372 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001373
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001374 ath9k_hw_set_clockrate(ah);
1375
Sujith7d0d0df2010-04-16 11:53:57 +05301376 ENABLE_REGWRITE_BUFFER(ah);
1377
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378 for (i = 0; i < AR_NUM_DCU; i++)
1379 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1380
Sujith7d0d0df2010-04-16 11:53:57 +05301381 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301382
Sujith2660b812009-02-09 13:27:26 +05301383 ah->intr_txqs = 0;
1384 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001385 ath9k_hw_resettxqueue(ah, i);
1386
Sujith2660b812009-02-09 13:27:26 +05301387 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001388 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389 ath9k_hw_init_qos(ah);
1390
Sujith2660b812009-02-09 13:27:26 +05301391 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001392 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301393
Felix Fietkau0005baf2010-01-15 02:33:40 +01001394 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001395
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001396 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301397 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001398 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301399 }
1400
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001401 REG_WRITE(ah, AR_STA_ID1,
1402 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1403
1404 ath9k_hw_set_dma(ah);
1405
1406 REG_WRITE(ah, AR_OBS, 8);
1407
Sujith0ce024c2009-12-14 14:57:00 +05301408 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001409 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1410 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1411 }
1412
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001413 if (ah->config.tx_intr_mitigation) {
1414 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1415 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1416 }
1417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001418 ath9k_hw_init_bb(ah, chan);
1419
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001420 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001421 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422
Sujith7d0d0df2010-04-16 11:53:57 +05301423 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001424
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001425 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1427
Sujith7d0d0df2010-04-16 11:53:57 +05301428 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301429
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001430 /*
1431 * For big endian systems turn on swapping for descriptors
1432 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001433 if (AR_SREV_9100(ah)) {
1434 u32 mask;
1435 mask = REG_READ(ah, AR_CFG);
1436 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001437 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301438 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001439 } else {
1440 mask =
1441 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1442 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001443 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301444 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001445 }
1446 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301447 if (common->bus_ops->ath_bus_type == ATH_USB) {
1448 /* Configure AR9271 target WLAN */
1449 if (AR_SREV_9271(ah))
1450 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1451 else
1452 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1453 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001454#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001455 else
1456 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457#endif
1458 }
1459
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001460 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301461 ath9k_hw_btcoex_enable(ah);
1462
Felix Fietkau00c86592010-07-30 21:02:09 +02001463 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001464 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001465
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001466 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001467}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001468EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469
Sujithf1dc5602008-10-29 10:16:30 +05301470/******************************/
1471/* Power Management (Chipset) */
1472/******************************/
1473
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001474/*
1475 * Notify Power Mgt is disabled in self-generated frames.
1476 * If requested, force chip to sleep.
1477 */
Sujithcbe61d82009-02-09 13:27:12 +05301478static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301479{
1480 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1481 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001482 /*
1483 * Clear the RTC force wake bit to allow the
1484 * mac to go to sleep.
1485 */
Sujithf1dc5602008-10-29 10:16:30 +05301486 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1487 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001488 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301489 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1490
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001491 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301492 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301493 REG_CLR_BIT(ah, (AR_RTC_RESET),
1494 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301495 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001496
1497 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1498 if (AR_SREV_9300_20_OR_LATER(ah))
1499 REG_WRITE(ah, AR_WA,
1500 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001501}
1502
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001503/*
1504 * Notify Power Management is enabled in self-generating
1505 * frames. If request, set power mode of chip to
1506 * auto/normal. Duration in units of 128us (1/8 TU).
1507 */
Sujithcbe61d82009-02-09 13:27:12 +05301508static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509{
Sujithf1dc5602008-10-29 10:16:30 +05301510 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1511 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301512 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001513
Sujithf1dc5602008-10-29 10:16:30 +05301514 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001515 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301516 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1517 AR_RTC_FORCE_WAKE_ON_INT);
1518 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001519 /*
1520 * Clear the RTC force wake bit to allow the
1521 * mac to go to sleep.
1522 */
Sujithf1dc5602008-10-29 10:16:30 +05301523 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1524 AR_RTC_FORCE_WAKE_EN);
1525 }
1526 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001527
1528 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1529 if (AR_SREV_9300_20_OR_LATER(ah))
1530 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301531}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001532
Sujithcbe61d82009-02-09 13:27:12 +05301533static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301534{
1535 u32 val;
1536 int i;
1537
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001538 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1539 if (AR_SREV_9300_20_OR_LATER(ah)) {
1540 REG_WRITE(ah, AR_WA, ah->WARegVal);
1541 udelay(10);
1542 }
1543
Sujithf1dc5602008-10-29 10:16:30 +05301544 if (setChip) {
1545 if ((REG_READ(ah, AR_RTC_STATUS) &
1546 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1547 if (ath9k_hw_set_reset_reg(ah,
1548 ATH9K_RESET_POWER_ON) != true) {
1549 return false;
1550 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001551 if (!AR_SREV_9300_20_OR_LATER(ah))
1552 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301553 }
1554 if (AR_SREV_9100(ah))
1555 REG_SET_BIT(ah, AR_RTC_RESET,
1556 AR_RTC_RESET_EN);
1557
1558 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1559 AR_RTC_FORCE_WAKE_EN);
1560 udelay(50);
1561
1562 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1563 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1564 if (val == AR_RTC_STATUS_ON)
1565 break;
1566 udelay(50);
1567 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1568 AR_RTC_FORCE_WAKE_EN);
1569 }
1570 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001571 ath_err(ath9k_hw_common(ah),
1572 "Failed to wakeup in %uus\n",
1573 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301574 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001575 }
1576 }
1577
Sujithf1dc5602008-10-29 10:16:30 +05301578 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1579
1580 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001581}
1582
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001583bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301584{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001585 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301586 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301587 static const char *modes[] = {
1588 "AWAKE",
1589 "FULL-SLEEP",
1590 "NETWORK SLEEP",
1591 "UNDEFINED"
1592 };
Sujithf1dc5602008-10-29 10:16:30 +05301593
Gabor Juhoscbdec972009-07-24 17:27:22 +02001594 if (ah->power_mode == mode)
1595 return status;
1596
Joe Perches226afe62010-12-02 19:12:37 -08001597 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1598 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301599
1600 switch (mode) {
1601 case ATH9K_PM_AWAKE:
1602 status = ath9k_hw_set_power_awake(ah, setChip);
1603 break;
1604 case ATH9K_PM_FULL_SLEEP:
1605 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301606 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301607 break;
1608 case ATH9K_PM_NETWORK_SLEEP:
1609 ath9k_set_power_network_sleep(ah, setChip);
1610 break;
1611 default:
Joe Perches38002762010-12-02 19:12:36 -08001612 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301613 return false;
1614 }
Sujith2660b812009-02-09 13:27:26 +05301615 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301616
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001617 /*
1618 * XXX: If this warning never comes up after a while then
1619 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1620 * ath9k_hw_setpower() return type void.
1621 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301622
1623 if (!(ah->ah_flags & AH_UNPLUGGED))
1624 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001625
Sujithf1dc5602008-10-29 10:16:30 +05301626 return status;
1627}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001628EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301629
Sujithf1dc5602008-10-29 10:16:30 +05301630/*******************/
1631/* Beacon Handling */
1632/*******************/
1633
Sujithcbe61d82009-02-09 13:27:12 +05301634void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001635{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636 int flags = 0;
1637
Sujith7d0d0df2010-04-16 11:53:57 +05301638 ENABLE_REGWRITE_BUFFER(ah);
1639
Sujith2660b812009-02-09 13:27:26 +05301640 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001641 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001642 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001643 REG_SET_BIT(ah, AR_TXCFG,
1644 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1645 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1646 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301647 (ah->atim_window ? ah->
1648 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001650 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1652 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1653 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301654 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301655 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001656 REG_WRITE(ah, AR_NEXT_SWBA,
1657 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301658 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301659 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001660 flags |=
1661 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1662 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001663 default:
Joe Perches226afe62010-12-02 19:12:37 -08001664 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1665 "%s: unsupported opmode: %d\n",
1666 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001667 return;
1668 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001669 }
1670
1671 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1672 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1673 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1674 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1675
Sujith7d0d0df2010-04-16 11:53:57 +05301676 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301677
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001678 beacon_period &= ~ATH9K_BEACON_ENA;
1679 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001680 ath9k_hw_reset_tsf(ah);
1681 }
1682
1683 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1684}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001685EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686
Sujithcbe61d82009-02-09 13:27:12 +05301687void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301688 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001689{
1690 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301691 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001692 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001693
Sujith7d0d0df2010-04-16 11:53:57 +05301694 ENABLE_REGWRITE_BUFFER(ah);
1695
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001696 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1697
1698 REG_WRITE(ah, AR_BEACON_PERIOD,
1699 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1700 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1701 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1702
Sujith7d0d0df2010-04-16 11:53:57 +05301703 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301704
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001705 REG_RMW_FIELD(ah, AR_RSSI_THR,
1706 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1707
1708 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1709
1710 if (bs->bs_sleepduration > beaconintval)
1711 beaconintval = bs->bs_sleepduration;
1712
1713 dtimperiod = bs->bs_dtimperiod;
1714 if (bs->bs_sleepduration > dtimperiod)
1715 dtimperiod = bs->bs_sleepduration;
1716
1717 if (beaconintval == dtimperiod)
1718 nextTbtt = bs->bs_nextdtim;
1719 else
1720 nextTbtt = bs->bs_nexttbtt;
1721
Joe Perches226afe62010-12-02 19:12:37 -08001722 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1723 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1724 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1725 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726
Sujith7d0d0df2010-04-16 11:53:57 +05301727 ENABLE_REGWRITE_BUFFER(ah);
1728
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729 REG_WRITE(ah, AR_NEXT_DTIM,
1730 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1731 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1732
1733 REG_WRITE(ah, AR_SLEEP1,
1734 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1735 | AR_SLEEP1_ASSUME_DTIM);
1736
Sujith60b67f52008-08-07 10:52:38 +05301737 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1739 else
1740 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1741
1742 REG_WRITE(ah, AR_SLEEP2,
1743 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1744
1745 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1746 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1747
Sujith7d0d0df2010-04-16 11:53:57 +05301748 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301749
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001750 REG_SET_BIT(ah, AR_TIMER_MODE,
1751 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1752 AR_DTIM_TIMER_EN);
1753
Sujith4af9cf42009-02-12 10:06:47 +05301754 /* TSF Out of Range Threshold */
1755 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001757EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758
Sujithf1dc5602008-10-29 10:16:30 +05301759/*******************/
1760/* HW Capabilities */
1761/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001763int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764{
Sujith2660b812009-02-09 13:27:26 +05301765 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001766 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001767 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001768 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001769
Sujithf1dc5602008-10-29 10:16:30 +05301770 u16 capField = 0, eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001771 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001772
Sujithf74df6f2009-02-09 13:27:24 +05301773 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001774 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301775
Sujithf74df6f2009-02-09 13:27:24 +05301776 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001777 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301778 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001779 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301780
Sujithf74df6f2009-02-09 13:27:24 +05301781 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301782
Sujith2660b812009-02-09 13:27:26 +05301783 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301784 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001785 if (regulatory->current_rd == 0x64 ||
1786 regulatory->current_rd == 0x65)
1787 regulatory->current_rd += 5;
1788 else if (regulatory->current_rd == 0x41)
1789 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001790 ath_dbg(common, ATH_DBG_REGULATORY,
1791 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792 }
Sujithdc2222a2008-08-14 13:26:55 +05301793
Sujithf74df6f2009-02-09 13:27:24 +05301794 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001795 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001796 ath_err(common,
1797 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001798 return -EINVAL;
1799 }
1800
Felix Fietkaud4659912010-10-14 16:02:39 +02001801 if (eeval & AR5416_OPFLAGS_11A)
1802 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803
Felix Fietkaud4659912010-10-14 16:02:39 +02001804 if (eeval & AR5416_OPFLAGS_11G)
1805 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301806
Sujithf74df6f2009-02-09 13:27:24 +05301807 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001808 /*
1809 * For AR9271 we will temporarilly uses the rx chainmax as read from
1810 * the EEPROM.
1811 */
Sujith8147f5d2009-02-20 15:13:23 +05301812 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001813 !(eeval & AR5416_OPFLAGS_11A) &&
1814 !(AR_SREV_9271(ah)))
1815 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301816 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
1817 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001818 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301819 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301820
Felix Fietkau7a370812010-09-22 12:34:52 +02001821 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301822
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001823 /* enable key search for every frame in an aggregate */
1824 if (AR_SREV_9300_20_OR_LATER(ah))
1825 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1826
Sujithf1dc5602008-10-29 10:16:30 +05301827 pCap->low_2ghz_chan = 2312;
1828 pCap->high_2ghz_chan = 2732;
1829
1830 pCap->low_5ghz_chan = 4920;
1831 pCap->high_5ghz_chan = 6100;
1832
Bruno Randolfce2220d2010-09-17 11:36:25 +09001833 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1834
Sujith2660b812009-02-09 13:27:26 +05301835 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05301836 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1837 else
1838 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1839
Sujithf1dc5602008-10-29 10:16:30 +05301840 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
1841 pCap->total_queues =
1842 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
1843 else
1844 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
1845
1846 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
1847 pCap->keycache_size =
1848 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
1849 else
1850 pCap->keycache_size = AR_KEYTABLE_SIZE;
1851
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05001852 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
1853 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
1854 else
1855 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05301856
Sujith5b5fa352010-03-17 14:25:15 +05301857 if (AR_SREV_9271(ah))
1858 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301859 else if (AR_DEVID_7010(ah))
1860 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001861 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301862 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001863 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301864 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1865 else
1866 pCap->num_gpio_pins = AR_NUM_GPIO;
1867
Sujithf1dc5602008-10-29 10:16:30 +05301868 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1869 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1870 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1871 } else {
1872 pCap->rts_aggr_limit = (8 * 1024);
1873 }
1874
1875 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
1876
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301877#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301878 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1879 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1880 ah->rfkill_gpio =
1881 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1882 ah->rfkill_polarity =
1883 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301884
1885 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1886 }
1887#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001888 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301889 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1890 else
1891 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301892
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301893 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301894 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1895 else
1896 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1897
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001898 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05301899 pCap->reg_cap =
1900 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1901 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
1902 AR_EEPROM_EEREGCAP_EN_KK_U2 |
1903 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
1904 } else {
1905 pCap->reg_cap =
1906 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1907 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
1908 }
1909
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05301910 /* Advertise midband for AR5416 with FCC midband set in eeprom */
1911 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
1912 AR_SREV_5416(ah))
1913 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05301914
Vasanthakumar Thiagarajan8f5dcb12010-11-26 06:10:06 -08001915 if (AR_SREV_9280_20_OR_LATER(ah) && common->btcoex_enabled) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001916 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
1917 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301918
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301919 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001920 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1921 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301922 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001923 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301924 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301925 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001926 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301927 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001928
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001929 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08001930 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1931 if (!AR_SREV_9485(ah))
1932 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1933
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001934 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1935 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1936 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001937 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04001938 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08001939 if (!ah->config.paprd_disable &&
1940 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04001941 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001942 } else {
1943 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001944 if (AR_SREV_9280_20(ah) &&
1945 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
1946 AR5416_EEP_MINOR_VER_16) ||
1947 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
1948 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001949 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04001950
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04001951 if (AR_SREV_9300_20_OR_LATER(ah))
1952 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
1953
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08001954 if (AR_SREV_9300_20_OR_LATER(ah))
1955 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
1956
Felix Fietkaua42acef2010-09-22 12:34:54 +02001957 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07001958 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
1959
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001960 if (AR_SREV_9285(ah))
1961 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
1962 ant_div_ctl1 =
1963 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
1964 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
1965 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
1966 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05301967 if (AR_SREV_9300_20_OR_LATER(ah)) {
1968 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
1969 pCap->hw_caps |= ATH9K_HW_CAP_APM;
1970 }
1971
1972
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001973
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08001974 if (AR_SREV_9485_10(ah)) {
1975 pCap->pcie_lcr_extsync_en = true;
1976 pCap->pcie_lcr_offset = 0x80;
1977 }
1978
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001979 tx_chainmask = pCap->tx_chainmask;
1980 rx_chainmask = pCap->rx_chainmask;
1981 while (tx_chainmask || rx_chainmask) {
1982 if (tx_chainmask & BIT(0))
1983 pCap->max_txchains++;
1984 if (rx_chainmask & BIT(0))
1985 pCap->max_rxchains++;
1986
1987 tx_chainmask >>= 1;
1988 rx_chainmask >>= 1;
1989 }
1990
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001991 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001992}
1993
Sujithf1dc5602008-10-29 10:16:30 +05301994/****************************/
1995/* GPIO / RFKILL / Antennae */
1996/****************************/
1997
Sujithcbe61d82009-02-09 13:27:12 +05301998static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301999 u32 gpio, u32 type)
2000{
2001 int addr;
2002 u32 gpio_shift, tmp;
2003
2004 if (gpio > 11)
2005 addr = AR_GPIO_OUTPUT_MUX3;
2006 else if (gpio > 5)
2007 addr = AR_GPIO_OUTPUT_MUX2;
2008 else
2009 addr = AR_GPIO_OUTPUT_MUX1;
2010
2011 gpio_shift = (gpio % 6) * 5;
2012
2013 if (AR_SREV_9280_20_OR_LATER(ah)
2014 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2015 REG_RMW(ah, addr, (type << gpio_shift),
2016 (0x1f << gpio_shift));
2017 } else {
2018 tmp = REG_READ(ah, addr);
2019 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2020 tmp &= ~(0x1f << gpio_shift);
2021 tmp |= (type << gpio_shift);
2022 REG_WRITE(ah, addr, tmp);
2023 }
2024}
2025
Sujithcbe61d82009-02-09 13:27:12 +05302026void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302027{
2028 u32 gpio_shift;
2029
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002030 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302031
Sujith88c1f4f2010-06-30 14:46:31 +05302032 if (AR_DEVID_7010(ah)) {
2033 gpio_shift = gpio;
2034 REG_RMW(ah, AR7010_GPIO_OE,
2035 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2036 (AR7010_GPIO_OE_MASK << gpio_shift));
2037 return;
2038 }
Sujithf1dc5602008-10-29 10:16:30 +05302039
Sujith88c1f4f2010-06-30 14:46:31 +05302040 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302041 REG_RMW(ah,
2042 AR_GPIO_OE_OUT,
2043 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2044 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2045}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002046EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302047
Sujithcbe61d82009-02-09 13:27:12 +05302048u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302049{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302050#define MS_REG_READ(x, y) \
2051 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2052
Sujith2660b812009-02-09 13:27:26 +05302053 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302054 return 0xffffffff;
2055
Sujith88c1f4f2010-06-30 14:46:31 +05302056 if (AR_DEVID_7010(ah)) {
2057 u32 val;
2058 val = REG_READ(ah, AR7010_GPIO_IN);
2059 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2060 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002061 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2062 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002063 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302064 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002065 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302066 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002067 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302068 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002069 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302070 return MS_REG_READ(AR928X, gpio) != 0;
2071 else
2072 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302073}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002074EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302075
Sujithcbe61d82009-02-09 13:27:12 +05302076void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302077 u32 ah_signal_type)
2078{
2079 u32 gpio_shift;
2080
Sujith88c1f4f2010-06-30 14:46:31 +05302081 if (AR_DEVID_7010(ah)) {
2082 gpio_shift = gpio;
2083 REG_RMW(ah, AR7010_GPIO_OE,
2084 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2085 (AR7010_GPIO_OE_MASK << gpio_shift));
2086 return;
2087 }
2088
Sujithf1dc5602008-10-29 10:16:30 +05302089 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302090 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302091 REG_RMW(ah,
2092 AR_GPIO_OE_OUT,
2093 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2094 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2095}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002096EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302097
Sujithcbe61d82009-02-09 13:27:12 +05302098void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302099{
Sujith88c1f4f2010-06-30 14:46:31 +05302100 if (AR_DEVID_7010(ah)) {
2101 val = val ? 0 : 1;
2102 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2103 AR_GPIO_BIT(gpio));
2104 return;
2105 }
2106
Sujith5b5fa352010-03-17 14:25:15 +05302107 if (AR_SREV_9271(ah))
2108 val = ~val;
2109
Sujithf1dc5602008-10-29 10:16:30 +05302110 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2111 AR_GPIO_BIT(gpio));
2112}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002113EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302114
Sujithcbe61d82009-02-09 13:27:12 +05302115u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302116{
2117 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2118}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002119EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302120
Sujithcbe61d82009-02-09 13:27:12 +05302121void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302122{
2123 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2124}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002125EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302126
Sujithf1dc5602008-10-29 10:16:30 +05302127/*********************/
2128/* General Operation */
2129/*********************/
2130
Sujithcbe61d82009-02-09 13:27:12 +05302131u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302132{
2133 u32 bits = REG_READ(ah, AR_RX_FILTER);
2134 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2135
2136 if (phybits & AR_PHY_ERR_RADAR)
2137 bits |= ATH9K_RX_FILTER_PHYRADAR;
2138 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2139 bits |= ATH9K_RX_FILTER_PHYERR;
2140
2141 return bits;
2142}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002143EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302144
Sujithcbe61d82009-02-09 13:27:12 +05302145void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302146{
2147 u32 phybits;
2148
Sujith7d0d0df2010-04-16 11:53:57 +05302149 ENABLE_REGWRITE_BUFFER(ah);
2150
Sujith7ea310b2009-09-03 12:08:43 +05302151 REG_WRITE(ah, AR_RX_FILTER, bits);
2152
Sujithf1dc5602008-10-29 10:16:30 +05302153 phybits = 0;
2154 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2155 phybits |= AR_PHY_ERR_RADAR;
2156 if (bits & ATH9K_RX_FILTER_PHYERR)
2157 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2158 REG_WRITE(ah, AR_PHY_ERR, phybits);
2159
2160 if (phybits)
2161 REG_WRITE(ah, AR_RXCFG,
2162 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2163 else
2164 REG_WRITE(ah, AR_RXCFG,
2165 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302166
2167 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302168}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002169EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302170
Sujithcbe61d82009-02-09 13:27:12 +05302171bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302172{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302173 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2174 return false;
2175
2176 ath9k_hw_init_pll(ah, NULL);
2177 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302178}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002179EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302180
Sujithcbe61d82009-02-09 13:27:12 +05302181bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302182{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002183 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302184 return false;
2185
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302186 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2187 return false;
2188
2189 ath9k_hw_init_pll(ah, NULL);
2190 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302191}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002192EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302193
Felix Fietkaude40f312010-10-20 03:08:53 +02002194void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302195{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002196 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302197 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002198 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302199
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002200 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302201
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002202 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002203 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002204 channel->max_antenna_gain * 2,
2205 channel->max_power * 2,
2206 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002207 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302208}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002209EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302210
Sujithcbe61d82009-02-09 13:27:12 +05302211void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302212{
Sujith2660b812009-02-09 13:27:26 +05302213 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302214}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002215EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302216
Sujithcbe61d82009-02-09 13:27:12 +05302217void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302218{
2219 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2220 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2221}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002222EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302223
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002224void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302225{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002226 struct ath_common *common = ath9k_hw_common(ah);
2227
2228 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2229 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2230 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302231}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002232EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302233
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002234#define ATH9K_MAX_TSF_READ 10
2235
Sujithcbe61d82009-02-09 13:27:12 +05302236u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302237{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002238 u32 tsf_lower, tsf_upper1, tsf_upper2;
2239 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302240
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002241 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2242 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2243 tsf_lower = REG_READ(ah, AR_TSF_L32);
2244 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2245 if (tsf_upper2 == tsf_upper1)
2246 break;
2247 tsf_upper1 = tsf_upper2;
2248 }
Sujithf1dc5602008-10-29 10:16:30 +05302249
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002250 WARN_ON( i == ATH9K_MAX_TSF_READ );
2251
2252 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302253}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002254EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302255
Sujithcbe61d82009-02-09 13:27:12 +05302256void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002257{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002258 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002259 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002260}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002261EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002262
Sujithcbe61d82009-02-09 13:27:12 +05302263void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302264{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002265 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2266 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002267 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2268 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002269
Sujithf1dc5602008-10-29 10:16:30 +05302270 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002272EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002273
Sujith54e4cec2009-08-07 09:45:09 +05302274void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002276 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302277 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 else
Sujith2660b812009-02-09 13:27:26 +05302279 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002281EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002282
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002283void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002284{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002285 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302286 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002288 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302289 macmode = AR_2040_JOINED_RX_CLEAR;
2290 else
2291 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292
Sujithf1dc5602008-10-29 10:16:30 +05302293 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302295
2296/* HW Generic timers configuration */
2297
2298static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2299{
2300 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2301 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2302 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2303 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2304 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2305 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2306 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2307 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2308 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2309 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2310 AR_NDP2_TIMER_MODE, 0x0002},
2311 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2312 AR_NDP2_TIMER_MODE, 0x0004},
2313 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2314 AR_NDP2_TIMER_MODE, 0x0008},
2315 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2316 AR_NDP2_TIMER_MODE, 0x0010},
2317 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2318 AR_NDP2_TIMER_MODE, 0x0020},
2319 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2320 AR_NDP2_TIMER_MODE, 0x0040},
2321 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2322 AR_NDP2_TIMER_MODE, 0x0080}
2323};
2324
2325/* HW generic timer primitives */
2326
2327/* compute and clear index of rightmost 1 */
2328static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2329{
2330 u32 b;
2331
2332 b = *mask;
2333 b &= (0-b);
2334 *mask &= ~b;
2335 b *= debruijn32;
2336 b >>= 27;
2337
2338 return timer_table->gen_timer_index[b];
2339}
2340
Felix Fietkau744bcb42010-10-15 20:03:33 +02002341static u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302342{
2343 return REG_READ(ah, AR_TSF_L32);
2344}
2345
2346struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2347 void (*trigger)(void *),
2348 void (*overflow)(void *),
2349 void *arg,
2350 u8 timer_index)
2351{
2352 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2353 struct ath_gen_timer *timer;
2354
2355 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2356
2357 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002358 ath_err(ath9k_hw_common(ah),
2359 "Failed to allocate memory for hw timer[%d]\n",
2360 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302361 return NULL;
2362 }
2363
2364 /* allocate a hardware generic timer slot */
2365 timer_table->timers[timer_index] = timer;
2366 timer->index = timer_index;
2367 timer->trigger = trigger;
2368 timer->overflow = overflow;
2369 timer->arg = arg;
2370
2371 return timer;
2372}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002373EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302374
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002375void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2376 struct ath_gen_timer *timer,
2377 u32 timer_next,
2378 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302379{
2380 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2381 u32 tsf;
2382
2383 BUG_ON(!timer_period);
2384
2385 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2386
2387 tsf = ath9k_hw_gettsf32(ah);
2388
Joe Perches226afe62010-12-02 19:12:37 -08002389 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2390 "current tsf %x period %x timer_next %x\n",
2391 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302392
2393 /*
2394 * Pull timer_next forward if the current TSF already passed it
2395 * because of software latency
2396 */
2397 if (timer_next < tsf)
2398 timer_next = tsf + timer_period;
2399
2400 /*
2401 * Program generic timer registers
2402 */
2403 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2404 timer_next);
2405 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2406 timer_period);
2407 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2408 gen_tmr_configuration[timer->index].mode_mask);
2409
2410 /* Enable both trigger and thresh interrupt masks */
2411 REG_SET_BIT(ah, AR_IMR_S5,
2412 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2413 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302414}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002415EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302416
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002417void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302418{
2419 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2420
2421 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2422 (timer->index >= ATH_MAX_GEN_TIMER)) {
2423 return;
2424 }
2425
2426 /* Clear generic timer enable bits. */
2427 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2428 gen_tmr_configuration[timer->index].mode_mask);
2429
2430 /* Disable both trigger and thresh interrupt masks */
2431 REG_CLR_BIT(ah, AR_IMR_S5,
2432 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2433 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2434
2435 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302436}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002437EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302438
2439void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2440{
2441 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2442
2443 /* free the hardware generic timer slot */
2444 timer_table->timers[timer->index] = NULL;
2445 kfree(timer);
2446}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002447EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302448
2449/*
2450 * Generic Timer Interrupts handling
2451 */
2452void ath_gen_timer_isr(struct ath_hw *ah)
2453{
2454 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2455 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002456 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302457 u32 trigger_mask, thresh_mask, index;
2458
2459 /* get hardware generic timer interrupt status */
2460 trigger_mask = ah->intr_gen_timer_trigger;
2461 thresh_mask = ah->intr_gen_timer_thresh;
2462 trigger_mask &= timer_table->timer_mask.val;
2463 thresh_mask &= timer_table->timer_mask.val;
2464
2465 trigger_mask &= ~thresh_mask;
2466
2467 while (thresh_mask) {
2468 index = rightmost_index(timer_table, &thresh_mask);
2469 timer = timer_table->timers[index];
2470 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002471 ath_dbg(common, ATH_DBG_HWTIMER,
2472 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302473 timer->overflow(timer->arg);
2474 }
2475
2476 while (trigger_mask) {
2477 index = rightmost_index(timer_table, &trigger_mask);
2478 timer = timer_table->timers[index];
2479 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002480 ath_dbg(common, ATH_DBG_HWTIMER,
2481 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302482 timer->trigger(timer->arg);
2483 }
2484}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002485EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002486
Sujith05020d22010-03-17 14:25:23 +05302487/********/
2488/* HTC */
2489/********/
2490
2491void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2492{
2493 ah->htc_reset_init = true;
2494}
2495EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2496
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002497static struct {
2498 u32 version;
2499 const char * name;
2500} ath_mac_bb_names[] = {
2501 /* Devices with external radios */
2502 { AR_SREV_VERSION_5416_PCI, "5416" },
2503 { AR_SREV_VERSION_5416_PCIE, "5418" },
2504 { AR_SREV_VERSION_9100, "9100" },
2505 { AR_SREV_VERSION_9160, "9160" },
2506 /* Single-chip solutions */
2507 { AR_SREV_VERSION_9280, "9280" },
2508 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002509 { AR_SREV_VERSION_9287, "9287" },
2510 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002511 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002512};
2513
2514/* For devices with external radios */
2515static struct {
2516 u16 version;
2517 const char * name;
2518} ath_rf_names[] = {
2519 { 0, "5133" },
2520 { AR_RAD5133_SREV_MAJOR, "5133" },
2521 { AR_RAD5122_SREV_MAJOR, "5122" },
2522 { AR_RAD2133_SREV_MAJOR, "2133" },
2523 { AR_RAD2122_SREV_MAJOR, "2122" }
2524};
2525
2526/*
2527 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2528 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002529static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002530{
2531 int i;
2532
2533 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2534 if (ath_mac_bb_names[i].version == mac_bb_version) {
2535 return ath_mac_bb_names[i].name;
2536 }
2537 }
2538
2539 return "????";
2540}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002541
2542/*
2543 * Return the RF name. "????" is returned if the RF is unknown.
2544 * Used for devices with external radios.
2545 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002546static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002547{
2548 int i;
2549
2550 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2551 if (ath_rf_names[i].version == rf_version) {
2552 return ath_rf_names[i].name;
2553 }
2554 }
2555
2556 return "????";
2557}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002558
2559void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2560{
2561 int used;
2562
2563 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002564 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002565 used = snprintf(hw_name, len,
2566 "Atheros AR%s Rev:%x",
2567 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2568 ah->hw_version.macRev);
2569 }
2570 else {
2571 used = snprintf(hw_name, len,
2572 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2573 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2574 ah->hw_version.macRev,
2575 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2576 AR_RADIO_SREV_MAJOR)),
2577 ah->hw_version.phyRev);
2578 }
2579
2580 hw_name[used] = '\0';
2581}
2582EXPORT_SYMBOL(ath9k_hw_name);