blob: 910726203ec71e3c4f8150eb84bc3f2b649d6093 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 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>
18#include <asm/unaligned.h>
Vasanthakumar Thiagarajan7b6840a2009-09-07 17:46:49 +053019#include <linux/pci.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070021#include "hw.h"
Sujith394cf0a2009-02-09 13:26:54 +053022#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023#include "initvals.h"
24
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080025#define ATH9K_CLOCK_RATE_CCK 22
26#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
27#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Sujithcbe61d82009-02-09 13:27:12 +053029static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
30static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +053031 enum ath9k_ht_macmode macmode);
Sujithcbe61d82009-02-09 13:27:12 +053032static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053033 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +053034 u32 reg, u32 value);
Sujithcbe61d82009-02-09 13:27:12 +053035static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
36static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070037
Sujithf1dc5602008-10-29 10:16:30 +053038/********************/
39/* Helper Functions */
40/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070041
Sujithcbe61d82009-02-09 13:27:12 +053042static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053043{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080044 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053045
Sujith2660b812009-02-09 13:27:26 +053046 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080047 return clks / ATH9K_CLOCK_RATE_CCK;
48 if (conf->channel->band == IEEE80211_BAND_2GHZ)
49 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
Sujithcbe61d82009-02-09 13:27:12 +053050
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080051 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053052}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070053
Sujithcbe61d82009-02-09 13:27:12 +053054static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053055{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080056 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053057
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080058 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053059 return ath9k_hw_mac_usec(ah, clks) / 2;
60 else
61 return ath9k_hw_mac_usec(ah, clks);
62}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070063
Sujithcbe61d82009-02-09 13:27:12 +053064static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053065{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080066 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053067
Sujith2660b812009-02-09 13:27:26 +053068 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080069 return usecs *ATH9K_CLOCK_RATE_CCK;
70 if (conf->channel->band == IEEE80211_BAND_2GHZ)
71 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
72 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053073}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070074
Sujithcbe61d82009-02-09 13:27:12 +053075static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053076{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080077 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053078
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080079 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053080 return ath9k_hw_mac_clks(ah, usecs) * 2;
81 else
82 return ath9k_hw_mac_clks(ah, usecs);
83}
84
Gabor Juhosfb4a3d32009-04-29 13:01:58 +020085/*
86 * Read and write, they both share the same lock. We do this to serialize
87 * reads and writes on Atheros 802.11n PCI devices only. This is required
88 * as the FIFO on these devices can only accept sanely 2 requests. After
89 * that the device goes bananas. Serializing the reads/writes prevents this
90 * from happening.
91 */
92
93void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
94{
95 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
96 unsigned long flags;
97 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
98 iowrite32(val, ah->ah_sc->mem + reg_offset);
99 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
100 } else
101 iowrite32(val, ah->ah_sc->mem + reg_offset);
102}
103
104unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
105{
106 u32 val;
107 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
108 unsigned long flags;
109 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
110 val = ioread32(ah->ah_sc->mem + reg_offset);
111 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
112 } else
113 val = ioread32(ah->ah_sc->mem + reg_offset);
114 return val;
115}
116
Sujith0caa7b12009-02-16 13:23:20 +0530117bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700118{
119 int i;
120
Sujith0caa7b12009-02-16 13:23:20 +0530121 BUG_ON(timeout < AH_TIME_QUANTUM);
122
123 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124 if ((REG_READ(ah, reg) & mask) == val)
125 return true;
126
127 udelay(AH_TIME_QUANTUM);
128 }
Sujith04bd4632008-11-28 22:18:05 +0530129
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700130 DPRINTF(ah, ATH_DBG_ANY,
Sujith0caa7b12009-02-16 13:23:20 +0530131 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
132 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530133
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700134 return false;
135}
136
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700137u32 ath9k_hw_reverse_bits(u32 val, u32 n)
138{
139 u32 retval;
140 int i;
141
142 for (i = 0, retval = 0; i < n; i++) {
143 retval = (retval << 1) | (val & 1);
144 val >>= 1;
145 }
146 return retval;
147}
148
Sujithcbe61d82009-02-09 13:27:12 +0530149bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530150 u16 flags, u16 *low,
151 u16 *high)
152{
Sujith2660b812009-02-09 13:27:26 +0530153 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530154
155 if (flags & CHANNEL_5GHZ) {
156 *low = pCap->low_5ghz_chan;
157 *high = pCap->high_5ghz_chan;
158 return true;
159 }
160 if ((flags & CHANNEL_2GHZ)) {
161 *low = pCap->low_2ghz_chan;
162 *high = pCap->high_2ghz_chan;
163 return true;
164 }
165 return false;
166}
167
Sujithcbe61d82009-02-09 13:27:12 +0530168u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400169 const struct ath_rate_table *rates,
Sujithf1dc5602008-10-29 10:16:30 +0530170 u32 frameLen, u16 rateix,
171 bool shortPreamble)
172{
173 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
174 u32 kbps;
175
Sujithe63835b2008-11-18 09:07:53 +0530176 kbps = rates->info[rateix].ratekbps;
Sujithf1dc5602008-10-29 10:16:30 +0530177
178 if (kbps == 0)
179 return 0;
180
181 switch (rates->info[rateix].phy) {
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530183 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Sujithe63835b2008-11-18 09:07:53 +0530184 if (shortPreamble && rates->info[rateix].short_preamble)
Sujithf1dc5602008-10-29 10:16:30 +0530185 phyTime >>= 1;
186 numBits = frameLen << 3;
187 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
188 break;
Sujith46d14a52008-11-18 09:08:13 +0530189 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530190 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530191 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
192 numBits = OFDM_PLCP_BITS + (frameLen << 3);
193 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
194 txTime = OFDM_SIFS_TIME_QUARTER
195 + OFDM_PREAMBLE_TIME_QUARTER
196 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530197 } else if (ah->curchan &&
198 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME_HALF +
203 OFDM_PREAMBLE_TIME_HALF
204 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
205 } else {
206 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
207 numBits = OFDM_PLCP_BITS + (frameLen << 3);
208 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
209 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
210 + (numSymbols * OFDM_SYMBOL_TIME);
211 }
212 break;
213 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700214 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530215 "Unknown phy %u (rate ix %u)\n",
Sujithf1dc5602008-10-29 10:16:30 +0530216 rates->info[rateix].phy, rateix);
217 txTime = 0;
218 break;
219 }
220
221 return txTime;
222}
223
Sujithcbe61d82009-02-09 13:27:12 +0530224void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530225 struct ath9k_channel *chan,
226 struct chan_centers *centers)
227{
228 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530229
230 if (!IS_CHAN_HT40(chan)) {
231 centers->ctl_center = centers->ext_center =
232 centers->synth_center = chan->channel;
233 return;
234 }
235
236 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
237 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
238 centers->synth_center =
239 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
240 extoff = 1;
241 } else {
242 centers->synth_center =
243 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
244 extoff = -1;
245 }
246
247 centers->ctl_center =
248 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
249 centers->ext_center =
250 centers->synth_center + (extoff *
Sujith2660b812009-02-09 13:27:26 +0530251 ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
Sujithf1dc5602008-10-29 10:16:30 +0530252 HT40_CHANNEL_CENTER_SHIFT : 15));
Sujithf1dc5602008-10-29 10:16:30 +0530253}
254
255/******************/
256/* Chip Revisions */
257/******************/
258
Sujithcbe61d82009-02-09 13:27:12 +0530259static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530260{
261 u32 val;
262
263 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
264
265 if (val == 0xFF) {
266 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530267 ah->hw_version.macVersion =
268 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
269 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530270 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530271 } else {
272 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530273 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530274
Sujithd535a422009-02-09 13:27:06 +0530275 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530276
Sujithd535a422009-02-09 13:27:06 +0530277 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530278 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530279 }
280}
281
Sujithcbe61d82009-02-09 13:27:12 +0530282static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530283{
284 u32 val;
285 int i;
286
287 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
288
289 for (i = 0; i < 8; i++)
290 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
291 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
292 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
293
294 return ath9k_hw_reverse_bits(val, 8);
295}
296
297/************************************/
298/* HW Attach, Detach, Init Routines */
299/************************************/
300
Sujithcbe61d82009-02-09 13:27:12 +0530301static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530302{
Sujithfeed0292009-01-29 11:37:35 +0530303 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530304 return;
305
306 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
307 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
308 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
309 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
310 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
311 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
312 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
313 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
315
316 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
317}
318
Sujithcbe61d82009-02-09 13:27:12 +0530319static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530320{
321 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
322 u32 regHold[2];
323 u32 patternData[4] = { 0x55555555,
324 0xaaaaaaaa,
325 0x66666666,
326 0x99999999 };
327 int i, j;
328
329 for (i = 0; i < 2; i++) {
330 u32 addr = regAddr[i];
331 u32 wrData, rdData;
332
333 regHold[i] = REG_READ(ah, addr);
334 for (j = 0; j < 0x100; j++) {
335 wrData = (j << 16) | j;
336 REG_WRITE(ah, addr, wrData);
337 rdData = REG_READ(ah, addr);
338 if (rdData != wrData) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700339 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530340 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530341 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530342 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530343 return false;
344 }
345 }
346 for (j = 0; j < 4; j++) {
347 wrData = patternData[j];
348 REG_WRITE(ah, addr, wrData);
349 rdData = REG_READ(ah, addr);
350 if (wrData != rdData) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700351 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530352 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530353 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530354 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530355 return false;
356 }
357 }
358 REG_WRITE(ah, regAddr[i], regHold[i]);
359 }
360 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530361
Sujithf1dc5602008-10-29 10:16:30 +0530362 return true;
363}
364
365static const char *ath9k_hw_devname(u16 devid)
366{
367 switch (devid) {
368 case AR5416_DEVID_PCI:
Sujithf1dc5602008-10-29 10:16:30 +0530369 return "Atheros 5416";
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +0100370 case AR5416_DEVID_PCIE:
371 return "Atheros 5418";
Sujithf1dc5602008-10-29 10:16:30 +0530372 case AR9160_DEVID_PCI:
373 return "Atheros 9160";
Gabor Juhos0c1aa492009-01-14 20:17:12 +0100374 case AR5416_AR9100_DEVID:
375 return "Atheros 9100";
Sujithf1dc5602008-10-29 10:16:30 +0530376 case AR9280_DEVID_PCI:
377 case AR9280_DEVID_PCIE:
378 return "Atheros 9280";
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530379 case AR9285_DEVID_PCIE:
380 return "Atheros 9285";
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530381 case AR5416_DEVID_AR9287_PCI:
382 case AR5416_DEVID_AR9287_PCIE:
383 return "Atheros 9287";
Sujithf1dc5602008-10-29 10:16:30 +0530384 }
385
386 return NULL;
387}
388
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700389static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390{
391 int i;
392
Sujith2660b812009-02-09 13:27:26 +0530393 ah->config.dma_beacon_response_time = 2;
394 ah->config.sw_beacon_response_time = 10;
395 ah->config.additional_swba_backoff = 0;
396 ah->config.ack_6mb = 0x0;
397 ah->config.cwm_ignore_extcca = 0;
398 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530399 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530400 ah->config.pcie_waen = 0;
401 ah->config.analog_shiftreg = 1;
402 ah->config.ht_enable = 1;
403 ah->config.ofdm_trig_low = 200;
404 ah->config.ofdm_trig_high = 500;
405 ah->config.cck_trig_high = 200;
406 ah->config.cck_trig_low = 100;
407 ah->config.enable_ani = 1;
Sujith1cf68732009-08-13 09:34:32 +0530408 ah->config.diversity_control = ATH9K_ANT_VARIABLE;
Sujith2660b812009-02-09 13:27:26 +0530409 ah->config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700410
411 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530412 ah->config.spurchans[i][0] = AR_NO_SPUR;
413 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414 }
415
Sujith0ef1f162009-03-30 15:28:35 +0530416 ah->config.intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400417
418 /*
419 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
420 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
421 * This means we use it for all AR5416 devices, and the few
422 * minor PCI AR9280 devices out there.
423 *
424 * Serialization is required because these devices do not handle
425 * well the case of two concurrent reads/writes due to the latency
426 * involved. During one read/write another read/write can be issued
427 * on another CPU while the previous read/write may still be working
428 * on our hardware, if we hit this case the hardware poops in a loop.
429 * We prevent this by serializing reads and writes.
430 *
431 * This issue is not present on PCI-Express devices or pre-AR5416
432 * devices (legacy, 802.11abg).
433 */
434 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700435 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436}
437
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700438static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700440 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
441
442 regulatory->country_code = CTRY_DEFAULT;
443 regulatory->power_limit = MAX_RATE_POWER;
444 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
445
Sujithd535a422009-02-09 13:27:06 +0530446 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530447 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700448
449 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700450 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530451 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 if (!AR_SREV_9100(ah))
453 ah->ah_flags = AH_USE_EEPROM;
454
Sujith2660b812009-02-09 13:27:26 +0530455 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530456 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
457 ah->beacon_interval = 100;
458 ah->enable_32kHz_clock = DONT_USE_32KHZ;
459 ah->slottime = (u32) -1;
460 ah->acktimeout = (u32) -1;
461 ah->ctstimeout = (u32) -1;
462 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700463
Sujith2660b812009-02-09 13:27:26 +0530464 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465
Gabor Juhoscbdec972009-07-24 17:27:22 +0200466 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467}
468
Sujithcbe61d82009-02-09 13:27:12 +0530469static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470{
471 bool rfStatus = false;
472 int ecode = 0;
473
474 rfStatus = ath9k_hw_init_rf(ah, &ecode);
475 if (!rfStatus) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700476 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +0530477 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 return ecode;
479 }
480
481 return 0;
482}
483
Sujithcbe61d82009-02-09 13:27:12 +0530484static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700485{
486 u32 val;
487
488 REG_WRITE(ah, AR_PHY(0), 0x00000007);
489
490 val = ath9k_hw_get_radiorev(ah);
491 switch (val & AR_RADIO_SREV_MAJOR) {
492 case 0:
493 val = AR_RAD5133_SREV_MAJOR;
494 break;
495 case AR_RAD5133_SREV_MAJOR:
496 case AR_RAD5122_SREV_MAJOR:
497 case AR_RAD2133_SREV_MAJOR:
498 case AR_RAD2122_SREV_MAJOR:
499 break;
500 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700501 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +0530502 "Radio Chip Rev 0x%02X not supported\n",
503 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504 return -EOPNOTSUPP;
505 }
506
Sujithd535a422009-02-09 13:27:06 +0530507 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508
509 return 0;
510}
511
Sujithcbe61d82009-02-09 13:27:12 +0530512static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513{
Sujithf1dc5602008-10-29 10:16:30 +0530514 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530516 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517
Sujithf1dc5602008-10-29 10:16:30 +0530518 sum = 0;
519 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530520 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530521 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530522 ah->macaddr[2 * i] = eeval >> 8;
523 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700524 }
Sujithd8baa932009-03-30 15:28:25 +0530525 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530526 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700527
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700528 return 0;
529}
530
Sujithcbe61d82009-02-09 13:27:12 +0530531static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530532{
533 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530534
Sujithf74df6f2009-02-09 13:27:24 +0530535 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
536 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530537
538 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530539 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530540 ar9280Modes_backoff_13db_rxgain_9280_2,
541 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
542 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530543 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530544 ar9280Modes_backoff_23db_rxgain_9280_2,
545 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
546 else
Sujith2660b812009-02-09 13:27:26 +0530547 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530548 ar9280Modes_original_rxgain_9280_2,
549 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530550 } else {
Sujith2660b812009-02-09 13:27:26 +0530551 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530552 ar9280Modes_original_rxgain_9280_2,
553 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530554 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530555}
556
Sujithcbe61d82009-02-09 13:27:12 +0530557static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530558{
559 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530560
Sujithf74df6f2009-02-09 13:27:24 +0530561 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
562 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530563
564 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530565 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530566 ar9280Modes_high_power_tx_gain_9280_2,
567 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
568 else
Sujith2660b812009-02-09 13:27:26 +0530569 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530570 ar9280Modes_original_tx_gain_9280_2,
571 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530572 } else {
Sujith2660b812009-02-09 13:27:26 +0530573 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530574 ar9280Modes_original_tx_gain_9280_2,
575 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530576 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530577}
578
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700579static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700580{
581 int ecode;
582
Sujithd8baa932009-03-30 15:28:25 +0530583 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700584 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700585
586 ecode = ath9k_hw_rf_claim(ah);
587 if (ecode != 0)
588 return ecode;
589
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700590 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 if (ecode != 0)
592 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530593
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700594 DPRINTF(ah, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
Sujith7d01b222009-03-13 08:55:55 +0530595 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
596
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597 ecode = ath9k_hw_rfattach(ah);
598 if (ecode != 0)
599 return ecode;
600
601 if (!AR_SREV_9100(ah)) {
602 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700603 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604 }
Sujithf1dc5602008-10-29 10:16:30 +0530605
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700606 return 0;
607}
608
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700609static bool ath9k_hw_devid_supported(u16 devid)
610{
611 switch (devid) {
612 case AR5416_DEVID_PCI:
613 case AR5416_DEVID_PCIE:
614 case AR5416_AR9100_DEVID:
615 case AR9160_DEVID_PCI:
616 case AR9280_DEVID_PCI:
617 case AR9280_DEVID_PCIE:
618 case AR9285_DEVID_PCIE:
619 case AR5416_DEVID_AR9287_PCI:
620 case AR5416_DEVID_AR9287_PCIE:
621 return true;
622 default:
623 break;
624 }
625 return false;
626}
627
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700628static bool ath9k_hw_macversion_supported(u32 macversion)
629{
630 switch (macversion) {
631 case AR_SREV_VERSION_5416_PCI:
632 case AR_SREV_VERSION_5416_PCIE:
633 case AR_SREV_VERSION_9160:
634 case AR_SREV_VERSION_9100:
635 case AR_SREV_VERSION_9280:
636 case AR_SREV_VERSION_9285:
637 case AR_SREV_VERSION_9287:
638 return true;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400639 /* Not yet */
640 case AR_SREV_VERSION_9271:
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700641 default:
642 break;
643 }
644 return false;
645}
646
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700647static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 if (AR_SREV_9160_10_OR_LATER(ah)) {
650 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530651 ah->iq_caldata.calData = &iq_cal_single_sample;
652 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530654 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530656 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657 &adc_init_dc_cal;
658 } else {
Sujith2660b812009-02-09 13:27:26 +0530659 ah->iq_caldata.calData = &iq_cal_multi_sample;
660 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700661 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530662 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530664 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700665 &adc_init_dc_cal;
666 }
Sujith2660b812009-02-09 13:27:26 +0530667 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700669}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700671static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
672{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400673 if (AR_SREV_9271(ah)) {
674 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271_1_0,
675 ARRAY_SIZE(ar9271Modes_9271_1_0), 6);
676 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271_1_0,
677 ARRAY_SIZE(ar9271Common_9271_1_0), 2);
678 return;
679 }
680
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530681 if (AR_SREV_9287_11_OR_LATER(ah)) {
682 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
683 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
684 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
685 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
686 if (ah->config.pcie_clock_req)
687 INIT_INI_ARRAY(&ah->iniPcieSerdes,
688 ar9287PciePhy_clkreq_off_L1_9287_1_1,
689 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
690 else
691 INIT_INI_ARRAY(&ah->iniPcieSerdes,
692 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
693 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
694 2);
695 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
696 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
697 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
698 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
699 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700700
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530701 if (ah->config.pcie_clock_req)
702 INIT_INI_ARRAY(&ah->iniPcieSerdes,
703 ar9287PciePhy_clkreq_off_L1_9287_1_0,
704 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
705 else
706 INIT_INI_ARRAY(&ah->iniPcieSerdes,
707 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
708 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
709 2);
710 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
711
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530712
Sujith2660b812009-02-09 13:27:26 +0530713 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530714 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530715 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530716 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
717
Sujith2660b812009-02-09 13:27:26 +0530718 if (ah->config.pcie_clock_req) {
719 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530720 ar9285PciePhy_clkreq_off_L1_9285_1_2,
721 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
722 } else {
Sujith2660b812009-02-09 13:27:26 +0530723 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530724 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
725 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
726 2);
727 }
728 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530730 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530732 ARRAY_SIZE(ar9285Common_9285), 2);
733
Sujith2660b812009-02-09 13:27:26 +0530734 if (ah->config.pcie_clock_req) {
735 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530736 ar9285PciePhy_clkreq_off_L1_9285,
737 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
738 } else {
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530740 ar9285PciePhy_clkreq_always_on_L1_9285,
741 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
742 }
743 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530744 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar9280Common_9280_2), 2);
748
Sujith2660b812009-02-09 13:27:26 +0530749 if (ah->config.pcie_clock_req) {
750 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530751 ar9280PciePhy_clkreq_off_L1_9280,
752 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753 } else {
Sujith2660b812009-02-09 13:27:26 +0530754 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530755 ar9280PciePhy_clkreq_always_on_L1_9280,
756 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 }
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530760 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530764 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ARRAY_SIZE(ar9280Common_9280), 2);
766 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530767 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700768 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530773 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530777 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Bank7_9160), 2);
787 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530788 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 ar5416Addac_91601_1,
790 ARRAY_SIZE(ar5416Addac_91601_1), 2);
791 } else {
Sujith2660b812009-02-09 13:27:26 +0530792 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793 ARRAY_SIZE(ar5416Addac_9160), 2);
794 }
795 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530796 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530798 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530800 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700801 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530802 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530804 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700805 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530806 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530808 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530810 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530812 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530814 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530816 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700817 ARRAY_SIZE(ar5416Addac_9100), 2);
818 } else {
Sujith2660b812009-02-09 13:27:26 +0530819 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700820 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530821 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530823 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530825 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700826 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530827 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530829 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700830 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530831 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530833 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530835 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530837 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700838 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530839 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840 ARRAY_SIZE(ar5416Addac), 2);
841 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700842}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700843
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700844static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
845{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530846 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530847 INIT_INI_ARRAY(&ah->iniModesRxGain,
848 ar9287Modes_rx_gain_9287_1_1,
849 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
850 else if (AR_SREV_9287_10(ah))
851 INIT_INI_ARRAY(&ah->iniModesRxGain,
852 ar9287Modes_rx_gain_9287_1_0,
853 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
854 else if (AR_SREV_9280_20(ah))
855 ath9k_hw_init_rxgain_ini(ah);
856
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530857 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530858 INIT_INI_ARRAY(&ah->iniModesTxGain,
859 ar9287Modes_tx_gain_9287_1_1,
860 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
861 } else if (AR_SREV_9287_10(ah)) {
862 INIT_INI_ARRAY(&ah->iniModesTxGain,
863 ar9287Modes_tx_gain_9287_1_0,
864 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
865 } else if (AR_SREV_9280_20(ah)) {
866 ath9k_hw_init_txgain_ini(ah);
867 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530868 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
869
870 /* txgain table */
871 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
872 INIT_INI_ARRAY(&ah->iniModesTxGain,
873 ar9285Modes_high_power_tx_gain_9285_1_2,
874 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
875 } else {
876 INIT_INI_ARRAY(&ah->iniModesTxGain,
877 ar9285Modes_original_tx_gain_9285_1_2,
878 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
879 }
880
881 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700882}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530883
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700884static void ath9k_hw_init_11a_eeprom_fix(struct ath_hw *ah)
885{
886 u32 i, j;
Sujith06d0f062009-02-12 10:06:45 +0530887
888 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
889 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
890
891 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530892 for (i = 0; i < ah->iniModes.ia_rows; i++) {
893 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700894
Sujith2660b812009-02-09 13:27:26 +0530895 for (j = 1; j < ah->iniModes.ia_columns; j++) {
896 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700897
Sujith2660b812009-02-09 13:27:26 +0530898 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530899 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530900 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700901 reg, val);
902 }
903 }
904 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700905}
906
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700907int ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700908{
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700909 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700910
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700911 if (!ath9k_hw_devid_supported(ah->hw_version.devid))
912 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700913
914 ath9k_hw_init_defaults(ah);
915 ath9k_hw_init_config(ah);
916
917 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700918 DPRINTF(ah, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700919 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700920 }
921
Luis R. Rodriguez1adc93c2009-09-09 20:54:36 -0700922 if (!ath9k_hw_setpower_nolock(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700923 DPRINTF(ah, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700924 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700925 }
926
927 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
928 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
929 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
930 ah->config.serialize_regmode =
931 SER_REG_MODE_ON;
932 } else {
933 ah->config.serialize_regmode =
934 SER_REG_MODE_OFF;
935 }
936 }
937
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700938 DPRINTF(ah, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700939 ah->config.serialize_regmode);
940
941 if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700942 DPRINTF(ah, ATH_DBG_FATAL,
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700943 "Mac Chip Rev 0x%02x.%x is not supported by "
944 "this driver\n", ah->hw_version.macVersion,
945 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700946 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700947 }
948
949 if (AR_SREV_9100(ah)) {
950 ah->iq_caldata.calData = &iq_cal_multi_sample;
951 ah->supp_cals = IQ_MISMATCH_CAL;
952 ah->is_pciexpress = false;
953 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400954
955 if (AR_SREV_9271(ah))
956 ah->is_pciexpress = false;
957
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700958 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
959
960 ath9k_hw_init_cal_settings(ah);
961
962 ah->ani_function = ATH9K_ANI_ALL;
963 if (AR_SREV_9280_10_OR_LATER(ah))
964 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
965
966 ath9k_hw_init_mode_regs(ah);
967
968 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530969 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700970 else
971 ath9k_hw_disablepcie(ah);
972
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700973 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700974 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700975 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700976
977 ath9k_hw_init_mode_gain_regs(ah);
978 ath9k_hw_fill_cap_info(ah);
979 ath9k_hw_init_11a_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530980
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700981 r = ath9k_hw_init_macaddr(ah);
982 if (r) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700983 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +0530984 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700985 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700986 }
987
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400988 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530989 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700990 else
Sujith2660b812009-02-09 13:27:26 +0530991 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700992
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700993 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700994
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700995 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700996}
997
Sujithcbe61d82009-02-09 13:27:12 +0530998static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530999 struct ath9k_channel *chan)
1000{
1001 u32 synthDelay;
1002
1003 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301004 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301005 synthDelay = (4 * synthDelay) / 22;
1006 else
1007 synthDelay /= 10;
1008
1009 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1010
1011 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1012}
1013
Sujithcbe61d82009-02-09 13:27:12 +05301014static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301015{
1016 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1017 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1018
1019 REG_WRITE(ah, AR_QOS_NO_ACK,
1020 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1021 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1022 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1023
1024 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1025 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1026 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1027 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1028 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1029}
1030
Sujithcbe61d82009-02-09 13:27:12 +05301031static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301032 struct ath9k_channel *chan)
1033{
1034 u32 pll;
1035
1036 if (AR_SREV_9100(ah)) {
1037 if (chan && IS_CHAN_5GHZ(chan))
1038 pll = 0x1450;
1039 else
1040 pll = 0x1458;
1041 } else {
1042 if (AR_SREV_9280_10_OR_LATER(ah)) {
1043 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1044
1045 if (chan && IS_CHAN_HALF_RATE(chan))
1046 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1047 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1048 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1049
1050 if (chan && IS_CHAN_5GHZ(chan)) {
1051 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1052
1053
1054 if (AR_SREV_9280_20(ah)) {
1055 if (((chan->channel % 20) == 0)
1056 || ((chan->channel % 10) == 0))
1057 pll = 0x2850;
1058 else
1059 pll = 0x142c;
1060 }
1061 } else {
1062 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1063 }
1064
1065 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1066
1067 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1068
1069 if (chan && IS_CHAN_HALF_RATE(chan))
1070 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1071 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1072 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1073
1074 if (chan && IS_CHAN_5GHZ(chan))
1075 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1076 else
1077 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1078 } else {
1079 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1080
1081 if (chan && IS_CHAN_HALF_RATE(chan))
1082 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1083 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1084 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1085
1086 if (chan && IS_CHAN_5GHZ(chan))
1087 pll |= SM(0xa, AR_RTC_PLL_DIV);
1088 else
1089 pll |= SM(0xb, AR_RTC_PLL_DIV);
1090 }
1091 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001092 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301093
1094 udelay(RTC_PLL_SETTLE_DELAY);
1095
1096 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1097}
1098
Sujithcbe61d82009-02-09 13:27:12 +05301099static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301100{
Sujithf1dc5602008-10-29 10:16:30 +05301101 int rx_chainmask, tx_chainmask;
1102
Sujith2660b812009-02-09 13:27:26 +05301103 rx_chainmask = ah->rxchainmask;
1104 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301105
1106 switch (rx_chainmask) {
1107 case 0x5:
1108 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1109 AR_PHY_SWAP_ALT_CHAIN);
1110 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301111 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301112 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1113 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1114 break;
1115 }
1116 case 0x1:
1117 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301118 case 0x7:
1119 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1120 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1121 break;
1122 default:
1123 break;
1124 }
1125
1126 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1127 if (tx_chainmask == 0x5) {
1128 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1129 AR_PHY_SWAP_ALT_CHAIN);
1130 }
1131 if (AR_SREV_9100(ah))
1132 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1133 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1134}
1135
Sujithcbe61d82009-02-09 13:27:12 +05301136static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001137 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301138{
Sujith2660b812009-02-09 13:27:26 +05301139 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301140 AR_IMR_TXURN |
1141 AR_IMR_RXERR |
1142 AR_IMR_RXORN |
1143 AR_IMR_BCNMISC;
1144
Sujith0ef1f162009-03-30 15:28:35 +05301145 if (ah->config.intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301146 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301147 else
Sujith2660b812009-02-09 13:27:26 +05301148 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301149
Sujith2660b812009-02-09 13:27:26 +05301150 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301151
Colin McCabed97809d2008-12-01 13:38:55 -08001152 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301153 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301154
Sujith2660b812009-02-09 13:27:26 +05301155 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301156 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1157
1158 if (!AR_SREV_9100(ah)) {
1159 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1160 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1161 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1162 }
1163}
1164
Sujithcbe61d82009-02-09 13:27:12 +05301165static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301166{
Sujithf1dc5602008-10-29 10:16:30 +05301167 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001168 DPRINTF(ah, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301169 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301170 return false;
1171 } else {
1172 REG_RMW_FIELD(ah, AR_TIME_OUT,
1173 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301174 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301175 return true;
1176 }
1177}
1178
Sujithcbe61d82009-02-09 13:27:12 +05301179static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301180{
Sujithf1dc5602008-10-29 10:16:30 +05301181 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001182 DPRINTF(ah, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301183 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301184 return false;
1185 } else {
1186 REG_RMW_FIELD(ah, AR_TIME_OUT,
1187 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301188 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301189 return true;
1190 }
1191}
1192
Sujithcbe61d82009-02-09 13:27:12 +05301193static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301194{
Sujithf1dc5602008-10-29 10:16:30 +05301195 if (tu > 0xFFFF) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001196 DPRINTF(ah, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301197 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301198 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301199 return false;
1200 } else {
1201 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301202 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301203 return true;
1204 }
1205}
1206
Sujithcbe61d82009-02-09 13:27:12 +05301207static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301208{
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001209 DPRINTF(ah, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
Sujith2660b812009-02-09 13:27:26 +05301210 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301211
Sujith2660b812009-02-09 13:27:26 +05301212 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301213 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301214 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1215 if (ah->slottime != (u32) -1)
1216 ath9k_hw_setslottime(ah, ah->slottime);
1217 if (ah->acktimeout != (u32) -1)
1218 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1219 if (ah->ctstimeout != (u32) -1)
1220 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1221 if (ah->globaltxtimeout != (u32) -1)
1222 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301223}
1224
1225const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1226{
1227 return vendorid == ATHEROS_VENDOR_ID ?
1228 ath9k_hw_devname(devid) : NULL;
1229}
1230
Sujithcbe61d82009-02-09 13:27:12 +05301231void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001232{
1233 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001234 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001235
Luis R. Rodriguez081b35a2009-08-03 12:24:50 -07001236 ath9k_hw_rf_free(ah);
Luis R. Rodriguez1adc93c2009-09-09 20:54:36 -07001237 ath9k_hw_setpower_nolock(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001238 kfree(ah);
Luis R. Rodriguez9db6b6a2009-08-03 12:24:52 -07001239 ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001240}
1241
Sujithf1dc5602008-10-29 10:16:30 +05301242/*******/
1243/* INI */
1244/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245
Sujithcbe61d82009-02-09 13:27:12 +05301246static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301247 struct ath9k_channel *chan)
1248{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001249 u32 val;
1250
1251 if (AR_SREV_9271(ah)) {
1252 /*
1253 * Enable spectral scan to solution for issues with stuck
1254 * beacons on AR9271 1.0. The beacon stuck issue is not seeon on
1255 * AR9271 1.1
1256 */
1257 if (AR_SREV_9271_10(ah)) {
1258 val = REG_READ(ah, AR_PHY_SPECTRAL_SCAN) | AR_PHY_SPECTRAL_SCAN_ENABLE;
1259 REG_WRITE(ah, AR_PHY_SPECTRAL_SCAN, val);
1260 }
1261 else if (AR_SREV_9271_11(ah))
1262 /*
1263 * change AR_PHY_RF_CTL3 setting to fix MAC issue
1264 * present on AR9271 1.1
1265 */
1266 REG_WRITE(ah, AR_PHY_RF_CTL3, 0x3a020001);
1267 return;
1268 }
1269
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301270 /*
1271 * Set the RX_ABORT and RX_DIS and clear if off only after
1272 * RXE is set for MAC. This prevents frames with corrupted
1273 * descriptor status.
1274 */
1275 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1276
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301277 if (AR_SREV_9280_10_OR_LATER(ah)) {
1278 val = REG_READ(ah, AR_PCU_MISC_MODE2) &
1279 (~AR_PCU_MISC_MODE2_HWWAR1);
1280
1281 if (AR_SREV_9287_10_OR_LATER(ah))
1282 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
1283
1284 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
1285 }
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301286
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001287 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301288 AR_SREV_9280_10_OR_LATER(ah))
1289 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001290 /*
1291 * Disable BB clock gating
1292 * Necessary to avoid issues on AR5416 2.0
1293 */
Sujithf1dc5602008-10-29 10:16:30 +05301294 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1295}
1296
Sujithcbe61d82009-02-09 13:27:12 +05301297static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301298 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301299 u32 reg, u32 value)
1300{
1301 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1302
Sujithd535a422009-02-09 13:27:06 +05301303 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301304 case AR9280_DEVID_PCI:
1305 if (reg == 0x7894) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001306 DPRINTF(ah, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301307 "ini VAL: %x EEPROM: %x\n", value,
1308 (pBase->version & 0xff));
1309
1310 if ((pBase->version & 0xff) > 0x0a) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001311 DPRINTF(ah, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301312 "PWDCLKIND: %d\n",
1313 pBase->pwdclkind);
1314 value &= ~AR_AN_TOP2_PWDCLKIND;
1315 value |= AR_AN_TOP2_PWDCLKIND &
1316 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1317 } else {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001318 DPRINTF(ah, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301319 "PWDCLKIND Earlier Rev\n");
1320 }
1321
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001322 DPRINTF(ah, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301323 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324 }
Sujithf1dc5602008-10-29 10:16:30 +05301325 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326 }
1327
Sujithf1dc5602008-10-29 10:16:30 +05301328 return value;
1329}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001330
Sujithcbe61d82009-02-09 13:27:12 +05301331static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301332 struct ar5416_eeprom_def *pEepData,
1333 u32 reg, u32 value)
1334{
Sujith2660b812009-02-09 13:27:26 +05301335 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301336 return value;
1337 else
1338 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1339}
1340
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301341static void ath9k_olc_init(struct ath_hw *ah)
1342{
1343 u32 i;
1344
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301345 if (OLC_FOR_AR9287_10_LATER) {
1346 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1347 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1348 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1349 AR9287_AN_TXPC0_TXPCMODE,
1350 AR9287_AN_TXPC0_TXPCMODE_S,
1351 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1352 udelay(100);
1353 } else {
1354 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1355 ah->originalGain[i] =
1356 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1357 AR_PHY_TX_GAIN);
1358 ah->PDADCdelta = 0;
1359 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301360}
1361
Bob Copeland3a702e42009-03-30 22:30:29 -04001362static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1363 struct ath9k_channel *chan)
1364{
1365 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1366
1367 if (IS_CHAN_B(chan))
1368 ctl |= CTL_11B;
1369 else if (IS_CHAN_G(chan))
1370 ctl |= CTL_11G;
1371 else
1372 ctl |= CTL_11A;
1373
1374 return ctl;
1375}
1376
Sujithcbe61d82009-02-09 13:27:12 +05301377static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301378 struct ath9k_channel *chan,
1379 enum ath9k_ht_macmode macmode)
1380{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001381 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301382 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001383 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301384 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001385
Sujithf1dc5602008-10-29 10:16:30 +05301386 switch (chan->chanmode) {
1387 case CHANNEL_A:
1388 case CHANNEL_A_HT20:
1389 modesIndex = 1;
1390 freqIndex = 1;
1391 break;
1392 case CHANNEL_A_HT40PLUS:
1393 case CHANNEL_A_HT40MINUS:
1394 modesIndex = 2;
1395 freqIndex = 1;
1396 break;
1397 case CHANNEL_G:
1398 case CHANNEL_G_HT20:
1399 case CHANNEL_B:
1400 modesIndex = 4;
1401 freqIndex = 2;
1402 break;
1403 case CHANNEL_G_HT40PLUS:
1404 case CHANNEL_G_HT40MINUS:
1405 modesIndex = 3;
1406 freqIndex = 2;
1407 break;
1408
1409 default:
1410 return -EINVAL;
1411 }
1412
1413 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301414 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301415 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301416
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001417 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301418 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301419 } else {
1420 struct ar5416IniArray temp;
1421 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301422 sizeof(u32) * ah->iniAddac.ia_rows *
1423 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301424
Sujith2660b812009-02-09 13:27:26 +05301425 memcpy(ah->addac5416_21,
1426 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301427
Sujith2660b812009-02-09 13:27:26 +05301428 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301429
Sujith2660b812009-02-09 13:27:26 +05301430 temp.ia_array = ah->addac5416_21;
1431 temp.ia_columns = ah->iniAddac.ia_columns;
1432 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301433 REG_WRITE_ARRAY(&temp, 1, regWrites);
1434 }
1435
1436 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1437
Sujith2660b812009-02-09 13:27:26 +05301438 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1439 u32 reg = INI_RA(&ah->iniModes, i, 0);
1440 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301441
Sujithf1dc5602008-10-29 10:16:30 +05301442 REG_WRITE(ah, reg, val);
1443
1444 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301445 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301446 udelay(100);
1447 }
1448
1449 DO_DELAY(regWrites);
1450 }
1451
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301452 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301453 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301454
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301455 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1456 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301457 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301458
Sujith2660b812009-02-09 13:27:26 +05301459 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1460 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1461 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301462
1463 REG_WRITE(ah, reg, val);
1464
1465 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301466 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301467 udelay(100);
1468 }
1469
1470 DO_DELAY(regWrites);
1471 }
1472
1473 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1474
1475 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301476 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301477 regWrites);
1478 }
1479
1480 ath9k_hw_override_ini(ah, chan);
1481 ath9k_hw_set_regs(ah, chan, macmode);
1482 ath9k_hw_init_chain_masks(ah);
1483
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301484 if (OLC_FOR_AR9280_20_LATER)
1485 ath9k_olc_init(ah);
1486
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001487 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001488 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001489 channel->max_antenna_gain * 2,
1490 channel->max_power * 2,
1491 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001492 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001493
Sujithf1dc5602008-10-29 10:16:30 +05301494 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001495 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301496 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497 return -EIO;
1498 }
1499
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500 return 0;
1501}
1502
Sujithf1dc5602008-10-29 10:16:30 +05301503/****************************************/
1504/* Reset and Channel Switching Routines */
1505/****************************************/
1506
Sujithcbe61d82009-02-09 13:27:12 +05301507static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301508{
1509 u32 rfMode = 0;
1510
1511 if (chan == NULL)
1512 return;
1513
1514 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1515 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1516
1517 if (!AR_SREV_9280_10_OR_LATER(ah))
1518 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1519 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1520
1521 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1522 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1523
1524 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1525}
1526
Sujithcbe61d82009-02-09 13:27:12 +05301527static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301528{
1529 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1530}
1531
Sujithcbe61d82009-02-09 13:27:12 +05301532static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301533{
1534 u32 regval;
1535
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001536 /*
1537 * set AHB_MODE not to do cacheline prefetches
1538 */
Sujithf1dc5602008-10-29 10:16:30 +05301539 regval = REG_READ(ah, AR_AHB_MODE);
1540 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1541
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001542 /*
1543 * let mac dma reads be in 128 byte chunks
1544 */
Sujithf1dc5602008-10-29 10:16:30 +05301545 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1546 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1547
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001548 /*
1549 * Restore TX Trigger Level to its pre-reset value.
1550 * The initial value depends on whether aggregation is enabled, and is
1551 * adjusted whenever underruns are detected.
1552 */
Sujith2660b812009-02-09 13:27:26 +05301553 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301554
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001555 /*
1556 * let mac dma writes be in 128 byte chunks
1557 */
Sujithf1dc5602008-10-29 10:16:30 +05301558 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1559 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1560
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001561 /*
1562 * Setup receive FIFO threshold to hold off TX activities
1563 */
Sujithf1dc5602008-10-29 10:16:30 +05301564 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1565
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001566 /*
1567 * reduce the number of usable entries in PCU TXBUF to avoid
1568 * wrap around issues.
1569 */
Sujithf1dc5602008-10-29 10:16:30 +05301570 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001571 /* For AR9285 the number of Fifos are reduced to half.
1572 * So set the usable tx buf size also to half to
1573 * avoid data/delimiter underruns
1574 */
Sujithf1dc5602008-10-29 10:16:30 +05301575 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1576 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001577 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301578 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1579 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1580 }
1581}
1582
Sujithcbe61d82009-02-09 13:27:12 +05301583static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301584{
1585 u32 val;
1586
1587 val = REG_READ(ah, AR_STA_ID1);
1588 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1589 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001590 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301591 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1592 | AR_STA_ID1_KSRCH_MODE);
1593 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1594 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001595 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001596 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301597 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1598 | AR_STA_ID1_KSRCH_MODE);
1599 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1600 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001601 case NL80211_IFTYPE_STATION:
1602 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301603 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1604 break;
1605 }
1606}
1607
Sujithcbe61d82009-02-09 13:27:12 +05301608static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609 u32 coef_scaled,
1610 u32 *coef_mantissa,
1611 u32 *coef_exponent)
1612{
1613 u32 coef_exp, coef_man;
1614
1615 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1616 if ((coef_scaled >> coef_exp) & 0x1)
1617 break;
1618
1619 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1620
1621 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1622
1623 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1624 *coef_exponent = coef_exp - 16;
1625}
1626
Sujithcbe61d82009-02-09 13:27:12 +05301627static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301628 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001629{
1630 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1631 u32 clockMhzScaled = 0x64000000;
1632 struct chan_centers centers;
1633
1634 if (IS_CHAN_HALF_RATE(chan))
1635 clockMhzScaled = clockMhzScaled >> 1;
1636 else if (IS_CHAN_QUARTER_RATE(chan))
1637 clockMhzScaled = clockMhzScaled >> 2;
1638
1639 ath9k_hw_get_channel_centers(ah, chan, &centers);
1640 coef_scaled = clockMhzScaled / centers.synth_center;
1641
1642 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1643 &ds_coef_exp);
1644
1645 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1646 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1647 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1648 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1649
1650 coef_scaled = (9 * coef_scaled) / 10;
1651
1652 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1653 &ds_coef_exp);
1654
1655 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1656 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1657 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1658 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1659}
1660
Sujithcbe61d82009-02-09 13:27:12 +05301661static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301662{
1663 u32 rst_flags;
1664 u32 tmpReg;
1665
Sujith70768492009-02-16 13:23:12 +05301666 if (AR_SREV_9100(ah)) {
1667 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1668 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1669 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1670 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1671 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1672 }
1673
Sujithf1dc5602008-10-29 10:16:30 +05301674 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1675 AR_RTC_FORCE_WAKE_ON_INT);
1676
1677 if (AR_SREV_9100(ah)) {
1678 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1679 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1680 } else {
1681 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1682 if (tmpReg &
1683 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1684 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1685 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1686 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1687 } else {
1688 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1689 }
1690
1691 rst_flags = AR_RTC_RC_MAC_WARM;
1692 if (type == ATH9K_RESET_COLD)
1693 rst_flags |= AR_RTC_RC_MAC_COLD;
1694 }
1695
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001696 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301697 udelay(50);
1698
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001699 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301700 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001701 DPRINTF(ah, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301702 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301703 return false;
1704 }
1705
1706 if (!AR_SREV_9100(ah))
1707 REG_WRITE(ah, AR_RC, 0);
1708
1709 ath9k_hw_init_pll(ah, NULL);
1710
1711 if (AR_SREV_9100(ah))
1712 udelay(50);
1713
1714 return true;
1715}
1716
Sujithcbe61d82009-02-09 13:27:12 +05301717static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301718{
1719 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1720 AR_RTC_FORCE_WAKE_ON_INT);
1721
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301722 if (!AR_SREV_9100(ah))
1723 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1724
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001725 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301726 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301727
1728 if (!AR_SREV_9100(ah))
1729 REG_WRITE(ah, AR_RC, 0);
1730
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001731 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301732
1733 if (!ath9k_hw_wait(ah,
1734 AR_RTC_STATUS,
1735 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301736 AR_RTC_STATUS_ON,
1737 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001738 DPRINTF(ah, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301739 return false;
1740 }
1741
1742 ath9k_hw_read_revisions(ah);
1743
1744 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1745}
1746
Sujithcbe61d82009-02-09 13:27:12 +05301747static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301748{
1749 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1750 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1751
1752 switch (type) {
1753 case ATH9K_RESET_POWER_ON:
1754 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301755 case ATH9K_RESET_WARM:
1756 case ATH9K_RESET_COLD:
1757 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301758 default:
1759 return false;
1760 }
1761}
1762
Sujithcbe61d82009-02-09 13:27:12 +05301763static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301764 enum ath9k_ht_macmode macmode)
1765{
1766 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301767 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301768
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301769 if (AR_SREV_9285_10_OR_LATER(ah))
1770 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1771 AR_PHY_FC_ENABLE_DAC_FIFO);
1772
Sujithf1dc5602008-10-29 10:16:30 +05301773 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301774 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301775
1776 if (IS_CHAN_HT40(chan)) {
1777 phymode |= AR_PHY_FC_DYN2040_EN;
1778
1779 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1780 (chan->chanmode == CHANNEL_G_HT40PLUS))
1781 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1782
Sujith2660b812009-02-09 13:27:26 +05301783 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301784 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1785 }
1786 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1787
1788 ath9k_hw_set11nmac2040(ah, macmode);
1789
1790 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1791 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1792}
1793
Sujithcbe61d82009-02-09 13:27:12 +05301794static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301795 struct ath9k_channel *chan)
1796{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301797 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301798 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1799 return false;
1800 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301801 return false;
1802
Luis R. Rodriguez1adc93c2009-09-09 20:54:36 -07001803 if (!ath9k_hw_setpower_nolock(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301804 return false;
1805
Sujith2660b812009-02-09 13:27:26 +05301806 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301807 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301808 ath9k_hw_set_rfmode(ah, chan);
1809
1810 return true;
1811}
1812
Sujithcbe61d82009-02-09 13:27:12 +05301813static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301814 struct ath9k_channel *chan,
1815 enum ath9k_ht_macmode macmode)
1816{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001817 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001818 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301819 u32 synthDelay, qnum;
1820
1821 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1822 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001823 DPRINTF(ah, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301824 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301825 return false;
1826 }
1827 }
1828
1829 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1830 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301831 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001832 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301833 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301834 return false;
1835 }
1836
1837 ath9k_hw_set_regs(ah, chan, macmode);
1838
1839 if (AR_SREV_9280_10_OR_LATER(ah)) {
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001840 ath9k_hw_ar9280_set_channel(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301841 } else {
1842 if (!(ath9k_hw_set_channel(ah, chan))) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07001843 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +05301844 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301845 return false;
1846 }
1847 }
1848
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001849 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001850 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301851 channel->max_antenna_gain * 2,
1852 channel->max_power * 2,
1853 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001854 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301855
1856 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301857 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301858 synthDelay = (4 * synthDelay) / 22;
1859 else
1860 synthDelay /= 10;
1861
1862 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1863
1864 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1865
1866 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1867 ath9k_hw_set_delta_slope(ah, chan);
1868
1869 if (AR_SREV_9280_10_OR_LATER(ah))
1870 ath9k_hw_9280_spur_mitigate(ah, chan);
1871 else
1872 ath9k_hw_spur_mitigate(ah, chan);
1873
1874 if (!chan->oneTimeCalsDone)
1875 chan->oneTimeCalsDone = true;
1876
1877 return true;
1878}
1879
Sujithcbe61d82009-02-09 13:27:12 +05301880static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001881{
1882 int bb_spur = AR_NO_SPUR;
1883 int freq;
1884 int bin, cur_bin;
1885 int bb_spur_off, spur_subchannel_sd;
1886 int spur_freq_sd;
1887 int spur_delta_phase;
1888 int denominator;
1889 int upper, lower, cur_vit_mask;
1890 int tmp, newVal;
1891 int i;
1892 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1893 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1894 };
1895 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1896 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1897 };
1898 int inc[4] = { 0, 100, 0, 0 };
1899 struct chan_centers centers;
1900
1901 int8_t mask_m[123];
1902 int8_t mask_p[123];
1903 int8_t mask_amt;
1904 int tmp_mask;
1905 int cur_bb_spur;
1906 bool is2GHz = IS_CHAN_2GHZ(chan);
1907
1908 memset(&mask_m, 0, sizeof(int8_t) * 123);
1909 memset(&mask_p, 0, sizeof(int8_t) * 123);
1910
1911 ath9k_hw_get_channel_centers(ah, chan, &centers);
1912 freq = centers.synth_center;
1913
Sujith2660b812009-02-09 13:27:26 +05301914 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301916 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001917
1918 if (is2GHz)
1919 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1920 else
1921 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1922
1923 if (AR_NO_SPUR == cur_bb_spur)
1924 break;
1925 cur_bb_spur = cur_bb_spur - freq;
1926
1927 if (IS_CHAN_HT40(chan)) {
1928 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1929 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1930 bb_spur = cur_bb_spur;
1931 break;
1932 }
1933 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1934 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1935 bb_spur = cur_bb_spur;
1936 break;
1937 }
1938 }
1939
1940 if (AR_NO_SPUR == bb_spur) {
1941 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1942 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1943 return;
1944 } else {
1945 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1946 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1947 }
1948
1949 bin = bb_spur * 320;
1950
1951 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1952
1953 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1954 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1955 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1956 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1957 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1958
1959 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1960 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1961 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1962 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1963 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1964 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1965
1966 if (IS_CHAN_HT40(chan)) {
1967 if (bb_spur < 0) {
1968 spur_subchannel_sd = 1;
1969 bb_spur_off = bb_spur + 10;
1970 } else {
1971 spur_subchannel_sd = 0;
1972 bb_spur_off = bb_spur - 10;
1973 }
1974 } else {
1975 spur_subchannel_sd = 0;
1976 bb_spur_off = bb_spur;
1977 }
1978
1979 if (IS_CHAN_HT40(chan))
1980 spur_delta_phase =
1981 ((bb_spur * 262144) /
1982 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1983 else
1984 spur_delta_phase =
1985 ((bb_spur * 524288) /
1986 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1987
1988 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1989 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1990
1991 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1992 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1993 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1994 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1995
1996 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1997 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1998
1999 cur_bin = -6000;
2000 upper = bin + 100;
2001 lower = bin - 100;
2002
2003 for (i = 0; i < 4; i++) {
2004 int pilot_mask = 0;
2005 int chan_mask = 0;
2006 int bp = 0;
2007 for (bp = 0; bp < 30; bp++) {
2008 if ((cur_bin > lower) && (cur_bin < upper)) {
2009 pilot_mask = pilot_mask | 0x1 << bp;
2010 chan_mask = chan_mask | 0x1 << bp;
2011 }
2012 cur_bin += 100;
2013 }
2014 cur_bin += inc[i];
2015 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2016 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2017 }
2018
2019 cur_vit_mask = 6100;
2020 upper = bin + 120;
2021 lower = bin - 120;
2022
2023 for (i = 0; i < 123; i++) {
2024 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03002025
2026 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002027 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03002028
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002029 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002030 mask_amt = 1;
2031 else
2032 mask_amt = 0;
2033 if (cur_vit_mask < 0)
2034 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2035 else
2036 mask_p[cur_vit_mask / 100] = mask_amt;
2037 }
2038 cur_vit_mask -= 100;
2039 }
2040
2041 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2042 | (mask_m[48] << 26) | (mask_m[49] << 24)
2043 | (mask_m[50] << 22) | (mask_m[51] << 20)
2044 | (mask_m[52] << 18) | (mask_m[53] << 16)
2045 | (mask_m[54] << 14) | (mask_m[55] << 12)
2046 | (mask_m[56] << 10) | (mask_m[57] << 8)
2047 | (mask_m[58] << 6) | (mask_m[59] << 4)
2048 | (mask_m[60] << 2) | (mask_m[61] << 0);
2049 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2050 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2051
2052 tmp_mask = (mask_m[31] << 28)
2053 | (mask_m[32] << 26) | (mask_m[33] << 24)
2054 | (mask_m[34] << 22) | (mask_m[35] << 20)
2055 | (mask_m[36] << 18) | (mask_m[37] << 16)
2056 | (mask_m[48] << 14) | (mask_m[39] << 12)
2057 | (mask_m[40] << 10) | (mask_m[41] << 8)
2058 | (mask_m[42] << 6) | (mask_m[43] << 4)
2059 | (mask_m[44] << 2) | (mask_m[45] << 0);
2060 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2061 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2062
2063 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2064 | (mask_m[18] << 26) | (mask_m[18] << 24)
2065 | (mask_m[20] << 22) | (mask_m[20] << 20)
2066 | (mask_m[22] << 18) | (mask_m[22] << 16)
2067 | (mask_m[24] << 14) | (mask_m[24] << 12)
2068 | (mask_m[25] << 10) | (mask_m[26] << 8)
2069 | (mask_m[27] << 6) | (mask_m[28] << 4)
2070 | (mask_m[29] << 2) | (mask_m[30] << 0);
2071 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2072 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2073
2074 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2075 | (mask_m[2] << 26) | (mask_m[3] << 24)
2076 | (mask_m[4] << 22) | (mask_m[5] << 20)
2077 | (mask_m[6] << 18) | (mask_m[7] << 16)
2078 | (mask_m[8] << 14) | (mask_m[9] << 12)
2079 | (mask_m[10] << 10) | (mask_m[11] << 8)
2080 | (mask_m[12] << 6) | (mask_m[13] << 4)
2081 | (mask_m[14] << 2) | (mask_m[15] << 0);
2082 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2083 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2084
2085 tmp_mask = (mask_p[15] << 28)
2086 | (mask_p[14] << 26) | (mask_p[13] << 24)
2087 | (mask_p[12] << 22) | (mask_p[11] << 20)
2088 | (mask_p[10] << 18) | (mask_p[9] << 16)
2089 | (mask_p[8] << 14) | (mask_p[7] << 12)
2090 | (mask_p[6] << 10) | (mask_p[5] << 8)
2091 | (mask_p[4] << 6) | (mask_p[3] << 4)
2092 | (mask_p[2] << 2) | (mask_p[1] << 0);
2093 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2094 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2095
2096 tmp_mask = (mask_p[30] << 28)
2097 | (mask_p[29] << 26) | (mask_p[28] << 24)
2098 | (mask_p[27] << 22) | (mask_p[26] << 20)
2099 | (mask_p[25] << 18) | (mask_p[24] << 16)
2100 | (mask_p[23] << 14) | (mask_p[22] << 12)
2101 | (mask_p[21] << 10) | (mask_p[20] << 8)
2102 | (mask_p[19] << 6) | (mask_p[18] << 4)
2103 | (mask_p[17] << 2) | (mask_p[16] << 0);
2104 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2105 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2106
2107 tmp_mask = (mask_p[45] << 28)
2108 | (mask_p[44] << 26) | (mask_p[43] << 24)
2109 | (mask_p[42] << 22) | (mask_p[41] << 20)
2110 | (mask_p[40] << 18) | (mask_p[39] << 16)
2111 | (mask_p[38] << 14) | (mask_p[37] << 12)
2112 | (mask_p[36] << 10) | (mask_p[35] << 8)
2113 | (mask_p[34] << 6) | (mask_p[33] << 4)
2114 | (mask_p[32] << 2) | (mask_p[31] << 0);
2115 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2116 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2117
2118 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2119 | (mask_p[59] << 26) | (mask_p[58] << 24)
2120 | (mask_p[57] << 22) | (mask_p[56] << 20)
2121 | (mask_p[55] << 18) | (mask_p[54] << 16)
2122 | (mask_p[53] << 14) | (mask_p[52] << 12)
2123 | (mask_p[51] << 10) | (mask_p[50] << 8)
2124 | (mask_p[49] << 6) | (mask_p[48] << 4)
2125 | (mask_p[47] << 2) | (mask_p[46] << 0);
2126 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2127 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2128}
2129
Sujithcbe61d82009-02-09 13:27:12 +05302130static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002131{
2132 int bb_spur = AR_NO_SPUR;
2133 int bin, cur_bin;
2134 int spur_freq_sd;
2135 int spur_delta_phase;
2136 int denominator;
2137 int upper, lower, cur_vit_mask;
2138 int tmp, new;
2139 int i;
2140 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2141 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2142 };
2143 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2144 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2145 };
2146 int inc[4] = { 0, 100, 0, 0 };
2147
2148 int8_t mask_m[123];
2149 int8_t mask_p[123];
2150 int8_t mask_amt;
2151 int tmp_mask;
2152 int cur_bb_spur;
2153 bool is2GHz = IS_CHAN_2GHZ(chan);
2154
2155 memset(&mask_m, 0, sizeof(int8_t) * 123);
2156 memset(&mask_p, 0, sizeof(int8_t) * 123);
2157
2158 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302159 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002160 if (AR_NO_SPUR == cur_bb_spur)
2161 break;
2162 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2163 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2164 bb_spur = cur_bb_spur;
2165 break;
2166 }
2167 }
2168
2169 if (AR_NO_SPUR == bb_spur)
2170 return;
2171
2172 bin = bb_spur * 32;
2173
2174 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2175 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2176 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2177 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2178 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2179
2180 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2181
2182 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2183 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2184 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2185 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2186 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2187 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2188
2189 spur_delta_phase = ((bb_spur * 524288) / 100) &
2190 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2191
2192 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2193 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2194
2195 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2196 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2197 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2198 REG_WRITE(ah, AR_PHY_TIMING11, new);
2199
2200 cur_bin = -6000;
2201 upper = bin + 100;
2202 lower = bin - 100;
2203
2204 for (i = 0; i < 4; i++) {
2205 int pilot_mask = 0;
2206 int chan_mask = 0;
2207 int bp = 0;
2208 for (bp = 0; bp < 30; bp++) {
2209 if ((cur_bin > lower) && (cur_bin < upper)) {
2210 pilot_mask = pilot_mask | 0x1 << bp;
2211 chan_mask = chan_mask | 0x1 << bp;
2212 }
2213 cur_bin += 100;
2214 }
2215 cur_bin += inc[i];
2216 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2217 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2218 }
2219
2220 cur_vit_mask = 6100;
2221 upper = bin + 120;
2222 lower = bin - 120;
2223
2224 for (i = 0; i < 123; i++) {
2225 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002226
2227 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002228 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002229
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002230 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002231 mask_amt = 1;
2232 else
2233 mask_amt = 0;
2234 if (cur_vit_mask < 0)
2235 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2236 else
2237 mask_p[cur_vit_mask / 100] = mask_amt;
2238 }
2239 cur_vit_mask -= 100;
2240 }
2241
2242 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2243 | (mask_m[48] << 26) | (mask_m[49] << 24)
2244 | (mask_m[50] << 22) | (mask_m[51] << 20)
2245 | (mask_m[52] << 18) | (mask_m[53] << 16)
2246 | (mask_m[54] << 14) | (mask_m[55] << 12)
2247 | (mask_m[56] << 10) | (mask_m[57] << 8)
2248 | (mask_m[58] << 6) | (mask_m[59] << 4)
2249 | (mask_m[60] << 2) | (mask_m[61] << 0);
2250 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2251 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2252
2253 tmp_mask = (mask_m[31] << 28)
2254 | (mask_m[32] << 26) | (mask_m[33] << 24)
2255 | (mask_m[34] << 22) | (mask_m[35] << 20)
2256 | (mask_m[36] << 18) | (mask_m[37] << 16)
2257 | (mask_m[48] << 14) | (mask_m[39] << 12)
2258 | (mask_m[40] << 10) | (mask_m[41] << 8)
2259 | (mask_m[42] << 6) | (mask_m[43] << 4)
2260 | (mask_m[44] << 2) | (mask_m[45] << 0);
2261 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2262 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2263
2264 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2265 | (mask_m[18] << 26) | (mask_m[18] << 24)
2266 | (mask_m[20] << 22) | (mask_m[20] << 20)
2267 | (mask_m[22] << 18) | (mask_m[22] << 16)
2268 | (mask_m[24] << 14) | (mask_m[24] << 12)
2269 | (mask_m[25] << 10) | (mask_m[26] << 8)
2270 | (mask_m[27] << 6) | (mask_m[28] << 4)
2271 | (mask_m[29] << 2) | (mask_m[30] << 0);
2272 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2273 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2274
2275 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2276 | (mask_m[2] << 26) | (mask_m[3] << 24)
2277 | (mask_m[4] << 22) | (mask_m[5] << 20)
2278 | (mask_m[6] << 18) | (mask_m[7] << 16)
2279 | (mask_m[8] << 14) | (mask_m[9] << 12)
2280 | (mask_m[10] << 10) | (mask_m[11] << 8)
2281 | (mask_m[12] << 6) | (mask_m[13] << 4)
2282 | (mask_m[14] << 2) | (mask_m[15] << 0);
2283 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2284 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2285
2286 tmp_mask = (mask_p[15] << 28)
2287 | (mask_p[14] << 26) | (mask_p[13] << 24)
2288 | (mask_p[12] << 22) | (mask_p[11] << 20)
2289 | (mask_p[10] << 18) | (mask_p[9] << 16)
2290 | (mask_p[8] << 14) | (mask_p[7] << 12)
2291 | (mask_p[6] << 10) | (mask_p[5] << 8)
2292 | (mask_p[4] << 6) | (mask_p[3] << 4)
2293 | (mask_p[2] << 2) | (mask_p[1] << 0);
2294 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2295 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2296
2297 tmp_mask = (mask_p[30] << 28)
2298 | (mask_p[29] << 26) | (mask_p[28] << 24)
2299 | (mask_p[27] << 22) | (mask_p[26] << 20)
2300 | (mask_p[25] << 18) | (mask_p[24] << 16)
2301 | (mask_p[23] << 14) | (mask_p[22] << 12)
2302 | (mask_p[21] << 10) | (mask_p[20] << 8)
2303 | (mask_p[19] << 6) | (mask_p[18] << 4)
2304 | (mask_p[17] << 2) | (mask_p[16] << 0);
2305 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2306 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2307
2308 tmp_mask = (mask_p[45] << 28)
2309 | (mask_p[44] << 26) | (mask_p[43] << 24)
2310 | (mask_p[42] << 22) | (mask_p[41] << 20)
2311 | (mask_p[40] << 18) | (mask_p[39] << 16)
2312 | (mask_p[38] << 14) | (mask_p[37] << 12)
2313 | (mask_p[36] << 10) | (mask_p[35] << 8)
2314 | (mask_p[34] << 6) | (mask_p[33] << 4)
2315 | (mask_p[32] << 2) | (mask_p[31] << 0);
2316 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2317 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2318
2319 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2320 | (mask_p[59] << 26) | (mask_p[58] << 24)
2321 | (mask_p[57] << 22) | (mask_p[56] << 20)
2322 | (mask_p[55] << 18) | (mask_p[54] << 16)
2323 | (mask_p[53] << 14) | (mask_p[52] << 12)
2324 | (mask_p[51] << 10) | (mask_p[50] << 8)
2325 | (mask_p[49] << 6) | (mask_p[48] << 4)
2326 | (mask_p[47] << 2) | (mask_p[46] << 0);
2327 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2328 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2329}
2330
Johannes Berg3b319aa2009-06-13 14:50:26 +05302331static void ath9k_enable_rfkill(struct ath_hw *ah)
2332{
2333 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2334 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2335
2336 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2337 AR_GPIO_INPUT_MUX2_RFSILENT);
2338
2339 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2340 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2341}
2342
Sujithcbe61d82009-02-09 13:27:12 +05302343int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002344 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002345{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002347 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302348 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349 u32 saveDefAntenna;
2350 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05302351 u64 tsf = 0;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002352 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353
Sujith2660b812009-02-09 13:27:26 +05302354 ah->extprotspacing = sc->ht_extprotspacing;
2355 ah->txchainmask = sc->tx_chainmask;
2356 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002357
Luis R. Rodriguez1adc93c2009-09-09 20:54:36 -07002358 if (!ath9k_hw_setpower_nolock(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002359 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05302361 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 ath9k_hw_getnf(ah, curchan);
2363
2364 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302365 (ah->chip_fullsleep != true) &&
2366 (ah->curchan != NULL) &&
2367 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002368 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302369 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05302370 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
2371 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002372
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002373 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302374 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002375 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002376 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002377 }
2378 }
2379
2380 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2381 if (saveDefAntenna == 0)
2382 saveDefAntenna = 1;
2383
2384 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2385
Sujith46fe7822009-09-17 09:25:25 +05302386 /* For chips on which RTC reset is done, save TSF before it gets cleared */
2387 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
2388 tsf = ath9k_hw_gettsf64(ah);
2389
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002390 saveLedState = REG_READ(ah, AR_CFG_LED) &
2391 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2392 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2393
2394 ath9k_hw_mark_phy_inactive(ah);
2395
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002396 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2397 REG_WRITE(ah,
2398 AR9271_RESET_POWER_DOWN_CONTROL,
2399 AR9271_RADIO_RF_RST);
2400 udelay(50);
2401 }
2402
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002404 DPRINTF(ah, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002405 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 }
2407
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002408 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2409 ah->htc_reset_init = false;
2410 REG_WRITE(ah,
2411 AR9271_RESET_POWER_DOWN_CONTROL,
2412 AR9271_GATE_MAC_CTL);
2413 udelay(50);
2414 }
2415
Sujith46fe7822009-09-17 09:25:25 +05302416 /* Restore TSF */
2417 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
2418 ath9k_hw_settsf64(ah, tsf);
2419
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302420 if (AR_SREV_9280_10_OR_LATER(ah))
2421 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002422
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302423 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302424 /* Enable ASYNC FIFO */
2425 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2426 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2427 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2428 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2429 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2430 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2431 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2432 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002433 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2434 if (r)
2435 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002437 /* Setup MFP options for CCMP */
2438 if (AR_SREV_9280_20_OR_LATER(ah)) {
2439 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2440 * frames when constructing CCMP AAD. */
2441 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2442 0xc7ff);
2443 ah->sw_mgmt_crypto = false;
2444 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2445 /* Disable hardware crypto for management frames */
2446 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2447 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2448 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2449 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2450 ah->sw_mgmt_crypto = true;
2451 } else
2452 ah->sw_mgmt_crypto = true;
2453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2455 ath9k_hw_set_delta_slope(ah, chan);
2456
2457 if (AR_SREV_9280_10_OR_LATER(ah))
2458 ath9k_hw_9280_spur_mitigate(ah, chan);
2459 else
2460 ath9k_hw_spur_mitigate(ah, chan);
2461
Sujithd6509152009-03-13 08:56:05 +05302462 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463
2464 ath9k_hw_decrease_chain_power(ah, chan);
2465
Sujithba52da52009-02-09 13:27:10 +05302466 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2467 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002468 | macStaId1
2469 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302470 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302471 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302472 | ah->sta_id1_defaults);
2473 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002474
Sujithba52da52009-02-09 13:27:10 +05302475 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2476 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002477
2478 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2479
Sujithba52da52009-02-09 13:27:10 +05302480 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2481 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2482 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483
2484 REG_WRITE(ah, AR_ISR, ~0);
2485
2486 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2487
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002488 if (AR_SREV_9280_10_OR_LATER(ah))
2489 ath9k_hw_ar9280_set_channel(ah, chan);
2490 else
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002491 if (!(ath9k_hw_set_channel(ah, chan)))
2492 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002493
2494 for (i = 0; i < AR_NUM_DCU; i++)
2495 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2496
Sujith2660b812009-02-09 13:27:26 +05302497 ah->intr_txqs = 0;
2498 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002499 ath9k_hw_resettxqueue(ah, i);
2500
Sujith2660b812009-02-09 13:27:26 +05302501 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002502 ath9k_hw_init_qos(ah);
2503
Sujith2660b812009-02-09 13:27:26 +05302504 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302505 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302506
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002507 ath9k_hw_init_user_settings(ah);
2508
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302509 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302510 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2511 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2512 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2513 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2514 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2515 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2516
2517 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2518 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2519
2520 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2521 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2522 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2523 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2524 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302525 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302526 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2527 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2528 }
2529
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002530 REG_WRITE(ah, AR_STA_ID1,
2531 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2532
2533 ath9k_hw_set_dma(ah);
2534
2535 REG_WRITE(ah, AR_OBS, 8);
2536
Sujith0ef1f162009-03-30 15:28:35 +05302537 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002538 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2539 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2540 }
2541
2542 ath9k_hw_init_bb(ah, chan);
2543
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002544 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002545 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002546
Sujith2660b812009-02-09 13:27:26 +05302547 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002548 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2549 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2550 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2551 }
2552
2553 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2554
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002555 /*
2556 * For big endian systems turn on swapping for descriptors
2557 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002558 if (AR_SREV_9100(ah)) {
2559 u32 mask;
2560 mask = REG_READ(ah, AR_CFG);
2561 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002562 DPRINTF(ah, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302563 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002564 } else {
2565 mask =
2566 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2567 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002568 DPRINTF(ah, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302569 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002570 }
2571 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002572 /* Configure AR9271 target WLAN */
2573 if (AR_SREV_9271(ah))
2574 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002575#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002576 else
2577 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578#endif
2579 }
2580
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002581 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302582 ath9k_hw_btcoex_enable(ah);
2583
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002584 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002585}
2586
Sujithf1dc5602008-10-29 10:16:30 +05302587/************************/
2588/* Key Cache Management */
2589/************************/
2590
Sujithcbe61d82009-02-09 13:27:12 +05302591bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002592{
Sujithf1dc5602008-10-29 10:16:30 +05302593 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002594
Sujith2660b812009-02-09 13:27:26 +05302595 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002596 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +05302597 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002598 return false;
2599 }
2600
Sujithf1dc5602008-10-29 10:16:30 +05302601 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002602
Sujithf1dc5602008-10-29 10:16:30 +05302603 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2604 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2605 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2606 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2607 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2608 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2609 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2610 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2611
2612 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2613 u16 micentry = entry + 64;
2614
2615 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2616 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2617 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2618 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2619
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002620 }
2621
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002622 return true;
2623}
2624
Sujithcbe61d82009-02-09 13:27:12 +05302625bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002626{
Sujithf1dc5602008-10-29 10:16:30 +05302627 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002628
Sujith2660b812009-02-09 13:27:26 +05302629 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002630 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +05302631 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002632 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002633 }
2634
Sujithf1dc5602008-10-29 10:16:30 +05302635 if (mac != NULL) {
2636 macHi = (mac[5] << 8) | mac[4];
2637 macLo = (mac[3] << 24) |
2638 (mac[2] << 16) |
2639 (mac[1] << 8) |
2640 mac[0];
2641 macLo >>= 1;
2642 macLo |= (macHi & 1) << 31;
2643 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002644 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302645 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002646 }
Sujithf1dc5602008-10-29 10:16:30 +05302647 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2648 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002649
2650 return true;
2651}
2652
Sujithcbe61d82009-02-09 13:27:12 +05302653bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302654 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002655 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002656{
Sujith2660b812009-02-09 13:27:26 +05302657 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302658 u32 key0, key1, key2, key3, key4;
2659 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002660
Sujithf1dc5602008-10-29 10:16:30 +05302661 if (entry >= pCap->keycache_size) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002662 DPRINTF(ah, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +05302663 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302664 return false;
2665 }
2666
2667 switch (k->kv_type) {
2668 case ATH9K_CIPHER_AES_OCB:
2669 keyType = AR_KEYTABLE_TYPE_AES;
2670 break;
2671 case ATH9K_CIPHER_AES_CCM:
2672 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002673 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302674 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302675 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002676 return false;
2677 }
Sujithf1dc5602008-10-29 10:16:30 +05302678 keyType = AR_KEYTABLE_TYPE_CCM;
2679 break;
2680 case ATH9K_CIPHER_TKIP:
2681 keyType = AR_KEYTABLE_TYPE_TKIP;
2682 if (ATH9K_IS_MIC_ENABLED(ah)
2683 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002684 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302685 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002686 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002687 }
Sujithf1dc5602008-10-29 10:16:30 +05302688 break;
2689 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002690 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002691 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302692 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302693 return false;
2694 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002695 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302696 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002697 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302698 keyType = AR_KEYTABLE_TYPE_104;
2699 else
2700 keyType = AR_KEYTABLE_TYPE_128;
2701 break;
2702 case ATH9K_CIPHER_CLR:
2703 keyType = AR_KEYTABLE_TYPE_CLR;
2704 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002705 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002706 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302707 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002708 return false;
2709 }
Sujithf1dc5602008-10-29 10:16:30 +05302710
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002711 key0 = get_unaligned_le32(k->kv_val + 0);
2712 key1 = get_unaligned_le16(k->kv_val + 4);
2713 key2 = get_unaligned_le32(k->kv_val + 6);
2714 key3 = get_unaligned_le16(k->kv_val + 10);
2715 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002716 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302717 key4 &= 0xff;
2718
Jouni Malinen672903b2009-03-02 15:06:31 +02002719 /*
2720 * Note: Key cache registers access special memory area that requires
2721 * two 32-bit writes to actually update the values in the internal
2722 * memory. Consequently, the exact order and pairs used here must be
2723 * maintained.
2724 */
2725
Sujithf1dc5602008-10-29 10:16:30 +05302726 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2727 u16 micentry = entry + 64;
2728
Jouni Malinen672903b2009-03-02 15:06:31 +02002729 /*
2730 * Write inverted key[47:0] first to avoid Michael MIC errors
2731 * on frames that could be sent or received at the same time.
2732 * The correct key will be written in the end once everything
2733 * else is ready.
2734 */
Sujithf1dc5602008-10-29 10:16:30 +05302735 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2736 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002737
2738 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302739 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2740 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002741
2742 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302743 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2744 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002745
2746 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302747 (void) ath9k_hw_keysetmac(ah, entry, mac);
2748
Sujith2660b812009-02-09 13:27:26 +05302749 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002750 /*
2751 * TKIP uses two key cache entries:
2752 * Michael MIC TX/RX keys in the same key cache entry
2753 * (idx = main index + 64):
2754 * key0 [31:0] = RX key [31:0]
2755 * key1 [15:0] = TX key [31:16]
2756 * key1 [31:16] = reserved
2757 * key2 [31:0] = RX key [63:32]
2758 * key3 [15:0] = TX key [15:0]
2759 * key3 [31:16] = reserved
2760 * key4 [31:0] = TX key [63:32]
2761 */
Sujithf1dc5602008-10-29 10:16:30 +05302762 u32 mic0, mic1, mic2, mic3, mic4;
2763
2764 mic0 = get_unaligned_le32(k->kv_mic + 0);
2765 mic2 = get_unaligned_le32(k->kv_mic + 4);
2766 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2767 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2768 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002769
2770 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302771 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2772 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002773
2774 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302775 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2776 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002777
2778 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302779 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2780 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2781 AR_KEYTABLE_TYPE_CLR);
2782
2783 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002784 /*
2785 * TKIP uses four key cache entries (two for group
2786 * keys):
2787 * Michael MIC TX/RX keys are in different key cache
2788 * entries (idx = main index + 64 for TX and
2789 * main index + 32 + 96 for RX):
2790 * key0 [31:0] = TX/RX MIC key [31:0]
2791 * key1 [31:0] = reserved
2792 * key2 [31:0] = TX/RX MIC key [63:32]
2793 * key3 [31:0] = reserved
2794 * key4 [31:0] = reserved
2795 *
2796 * Upper layer code will call this function separately
2797 * for TX and RX keys when these registers offsets are
2798 * used.
2799 */
Sujithf1dc5602008-10-29 10:16:30 +05302800 u32 mic0, mic2;
2801
2802 mic0 = get_unaligned_le32(k->kv_mic + 0);
2803 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002804
2805 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302806 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2807 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002808
2809 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302810 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2811 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002812
2813 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302814 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2815 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2816 AR_KEYTABLE_TYPE_CLR);
2817 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002818
2819 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302820 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2821 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002822
2823 /*
2824 * Write the correct (un-inverted) key[47:0] last to enable
2825 * TKIP now that all other registers are set with correct
2826 * values.
2827 */
Sujithf1dc5602008-10-29 10:16:30 +05302828 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2829 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2830 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002831 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302832 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2833 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002834
2835 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302836 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2837 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002838
2839 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302840 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2841 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2842
Jouni Malinen672903b2009-03-02 15:06:31 +02002843 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302844 (void) ath9k_hw_keysetmac(ah, entry, mac);
2845 }
2846
Sujithf1dc5602008-10-29 10:16:30 +05302847 return true;
2848}
2849
Sujithcbe61d82009-02-09 13:27:12 +05302850bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302851{
Sujith2660b812009-02-09 13:27:26 +05302852 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302853 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2854 if (val & AR_KEYTABLE_VALID)
2855 return true;
2856 }
2857 return false;
2858}
2859
2860/******************************/
2861/* Power Management (Chipset) */
2862/******************************/
2863
Sujithcbe61d82009-02-09 13:27:12 +05302864static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302865{
2866 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2867 if (setChip) {
2868 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2869 AR_RTC_FORCE_WAKE_EN);
2870 if (!AR_SREV_9100(ah))
2871 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2872
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002873 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302874 AR_RTC_RESET_EN);
2875 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002876}
2877
Sujithcbe61d82009-02-09 13:27:12 +05302878static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002879{
Sujithf1dc5602008-10-29 10:16:30 +05302880 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2881 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302882 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002883
Sujithf1dc5602008-10-29 10:16:30 +05302884 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2885 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2886 AR_RTC_FORCE_WAKE_ON_INT);
2887 } else {
2888 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2889 AR_RTC_FORCE_WAKE_EN);
2890 }
2891 }
2892}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002893
Sujithcbe61d82009-02-09 13:27:12 +05302894static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302895{
2896 u32 val;
2897 int i;
2898
2899 if (setChip) {
2900 if ((REG_READ(ah, AR_RTC_STATUS) &
2901 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2902 if (ath9k_hw_set_reset_reg(ah,
2903 ATH9K_RESET_POWER_ON) != true) {
2904 return false;
2905 }
2906 }
2907 if (AR_SREV_9100(ah))
2908 REG_SET_BIT(ah, AR_RTC_RESET,
2909 AR_RTC_RESET_EN);
2910
2911 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2912 AR_RTC_FORCE_WAKE_EN);
2913 udelay(50);
2914
2915 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2916 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2917 if (val == AR_RTC_STATUS_ON)
2918 break;
2919 udelay(50);
2920 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2921 AR_RTC_FORCE_WAKE_EN);
2922 }
2923 if (i == 0) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002924 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302925 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302926 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002927 }
2928 }
2929
Sujithf1dc5602008-10-29 10:16:30 +05302930 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2931
2932 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002933}
2934
Luis R. Rodrigueza91d75a2009-09-09 20:29:18 -07002935bool ath9k_hw_setpower_nolock(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302936{
Sujithcbe61d82009-02-09 13:27:12 +05302937 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302938 static const char *modes[] = {
2939 "AWAKE",
2940 "FULL-SLEEP",
2941 "NETWORK SLEEP",
2942 "UNDEFINED"
2943 };
Sujithf1dc5602008-10-29 10:16:30 +05302944
Gabor Juhoscbdec972009-07-24 17:27:22 +02002945 if (ah->power_mode == mode)
2946 return status;
2947
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002948 DPRINTF(ah, ATH_DBG_RESET, "%s -> %s\n",
Sujithd8baa932009-03-30 15:28:25 +05302949 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302950
2951 switch (mode) {
2952 case ATH9K_PM_AWAKE:
2953 status = ath9k_hw_set_power_awake(ah, setChip);
2954 break;
2955 case ATH9K_PM_FULL_SLEEP:
2956 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302957 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302958 break;
2959 case ATH9K_PM_NETWORK_SLEEP:
2960 ath9k_set_power_network_sleep(ah, setChip);
2961 break;
2962 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07002963 DPRINTF(ah, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302964 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302965 return false;
2966 }
Sujith2660b812009-02-09 13:27:26 +05302967 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302968
2969 return status;
2970}
2971
Gabor Juhos04717cc2009-07-14 20:17:13 -04002972bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2973{
2974 unsigned long flags;
2975 bool ret;
2976
2977 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2978 ret = ath9k_hw_setpower_nolock(ah, mode);
2979 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2980
2981 return ret;
2982}
2983
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002984/*
2985 * Helper for ASPM support.
2986 *
2987 * Disable PLL when in L0s as well as receiver clock when in L1.
2988 * This power saving option must be enabled through the SerDes.
2989 *
2990 * Programming the SerDes must go through the same 288 bit serial shift
2991 * register as the other analog registers. Hence the 9 writes.
2992 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302993void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore, int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302994{
Sujithf1dc5602008-10-29 10:16:30 +05302995 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302996 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302997
Sujith2660b812009-02-09 13:27:26 +05302998 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302999 return;
3000
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003001 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05303002 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05303003 return;
3004
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003005 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303006 if (!restore) {
3007 if (AR_SREV_9280_20_OR_LATER(ah)) {
3008 /*
3009 * AR9280 2.0 or later chips use SerDes values from the
3010 * initvals.h initialized depending on chipset during
3011 * ath9k_hw_init()
3012 */
3013 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
3014 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
3015 INI_RA(&ah->iniPcieSerdes, i, 1));
3016 }
3017 } else if (AR_SREV_9280(ah) &&
3018 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
3019 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
3020 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05303021
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303022 /* RX shut off when elecidle is asserted */
3023 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
3024 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
3025 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
3026
3027 /* Shut off CLKREQ active in L1 */
3028 if (ah->config.pcie_clock_req)
3029 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
3030 else
3031 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
3032
3033 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3034 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3035 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
3036
3037 /* Load the new settings */
3038 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
3039
3040 } else {
3041 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
3042 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
3043
3044 /* RX shut off when elecidle is asserted */
3045 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
3046 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
3047 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
3048
3049 /*
3050 * Ignore ah->ah_config.pcie_clock_req setting for
3051 * pre-AR9280 11n
3052 */
3053 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
3054
3055 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3056 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3057 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
3058
3059 /* Load the new settings */
3060 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05303061 }
Sujithf1dc5602008-10-29 10:16:30 +05303062
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303063 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05303064
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303065 /* set bit 19 to allow forcing of pcie core into L1 state */
3066 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05303067
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303068 /* Several PCIe massages to ensure proper behaviour */
3069 if (ah->config.pcie_waen) {
3070 val = ah->config.pcie_waen;
3071 if (!power_off)
3072 val &= (~AR_WA_D3_L1_DISABLE);
3073 } else {
3074 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
3075 AR_SREV_9287(ah)) {
3076 val = AR9285_WA_DEFAULT;
3077 if (!power_off)
3078 val &= (~AR_WA_D3_L1_DISABLE);
3079 } else if (AR_SREV_9280(ah)) {
3080 /*
3081 * On AR9280 chips bit 22 of 0x4004 needs to be
3082 * set otherwise card may disappear.
3083 */
3084 val = AR9280_WA_DEFAULT;
3085 if (!power_off)
3086 val &= (~AR_WA_D3_L1_DISABLE);
3087 } else
3088 val = AR_WA_DEFAULT;
3089 }
Sujithf1dc5602008-10-29 10:16:30 +05303090
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303091 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05303092 }
3093
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303094 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003095 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303096 * Set PCIe workaround bits
3097 * bit 14 in WA register (disable L1) should only
3098 * be set when device enters D3 and be cleared
3099 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003100 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05303101 if (ah->config.pcie_waen) {
3102 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
3103 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
3104 } else {
3105 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
3106 AR_SREV_9287(ah)) &&
3107 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
3108 (AR_SREV_9280(ah) &&
3109 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
3110 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
3111 }
3112 }
Sujithf1dc5602008-10-29 10:16:30 +05303113 }
3114}
3115
3116/**********************/
3117/* Interrupt Handling */
3118/**********************/
3119
Sujithcbe61d82009-02-09 13:27:12 +05303120bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003121{
3122 u32 host_isr;
3123
3124 if (AR_SREV_9100(ah))
3125 return true;
3126
3127 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
3128 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
3129 return true;
3130
3131 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
3132 if ((host_isr & AR_INTR_SYNC_DEFAULT)
3133 && (host_isr != AR_INTR_SPURIOUS))
3134 return true;
3135
3136 return false;
3137}
3138
Sujithcbe61d82009-02-09 13:27:12 +05303139bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140{
3141 u32 isr = 0;
3142 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05303143 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003144 u32 sync_cause = 0;
3145 bool fatal_int = false;
3146
3147 if (!AR_SREV_9100(ah)) {
3148 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3149 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3150 == AR_RTC_STATUS_ON) {
3151 isr = REG_READ(ah, AR_ISR);
3152 }
3153 }
3154
Sujithf1dc5602008-10-29 10:16:30 +05303155 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3156 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003157
3158 *masked = 0;
3159
3160 if (!isr && !sync_cause)
3161 return false;
3162 } else {
3163 *masked = 0;
3164 isr = REG_READ(ah, AR_ISR);
3165 }
3166
3167 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003168 if (isr & AR_ISR_BCNMISC) {
3169 u32 isr2;
3170 isr2 = REG_READ(ah, AR_ISR_S2);
3171 if (isr2 & AR_ISR_S2_TIM)
3172 mask2 |= ATH9K_INT_TIM;
3173 if (isr2 & AR_ISR_S2_DTIM)
3174 mask2 |= ATH9K_INT_DTIM;
3175 if (isr2 & AR_ISR_S2_DTIMSYNC)
3176 mask2 |= ATH9K_INT_DTIMSYNC;
3177 if (isr2 & (AR_ISR_S2_CABEND))
3178 mask2 |= ATH9K_INT_CABEND;
3179 if (isr2 & AR_ISR_S2_GTT)
3180 mask2 |= ATH9K_INT_GTT;
3181 if (isr2 & AR_ISR_S2_CST)
3182 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05303183 if (isr2 & AR_ISR_S2_TSFOOR)
3184 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003185 }
3186
3187 isr = REG_READ(ah, AR_ISR_RAC);
3188 if (isr == 0xffffffff) {
3189 *masked = 0;
3190 return false;
3191 }
3192
3193 *masked = isr & ATH9K_INT_COMMON;
3194
Sujith0ef1f162009-03-30 15:28:35 +05303195 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003196 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3197 *masked |= ATH9K_INT_RX;
3198 }
3199
3200 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3201 *masked |= ATH9K_INT_RX;
3202 if (isr &
3203 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3204 AR_ISR_TXEOL)) {
3205 u32 s0_s, s1_s;
3206
3207 *masked |= ATH9K_INT_TX;
3208
3209 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05303210 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3211 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003212
3213 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05303214 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3215 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003216 }
3217
3218 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003219 DPRINTF(ah, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303220 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003221 }
3222
3223 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05303224 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003225 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3226 if (isr5 & AR_ISR_S5_TIM_TIMER)
3227 *masked |= ATH9K_INT_TIM_TIMER;
3228 }
3229 }
3230
3231 *masked |= mask2;
3232 }
Sujithf1dc5602008-10-29 10:16:30 +05303233
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003234 if (AR_SREV_9100(ah))
3235 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303236
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303237 if (isr & AR_ISR_GENTMR) {
3238 u32 s5_s;
3239
3240 s5_s = REG_READ(ah, AR_ISR_S5_S);
3241 if (isr & AR_ISR_GENTMR) {
3242 ah->intr_gen_timer_trigger =
3243 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
3244
3245 ah->intr_gen_timer_thresh =
3246 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
3247
3248 if (ah->intr_gen_timer_trigger)
3249 *masked |= ATH9K_INT_GENTIMER;
3250
3251 }
3252 }
3253
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003254 if (sync_cause) {
3255 fatal_int =
3256 (sync_cause &
3257 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3258 ? true : false;
3259
3260 if (fatal_int) {
3261 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003262 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303263 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003264 }
3265 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003266 DPRINTF(ah, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303267 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003268 }
Steven Luoa89bff92009-04-12 02:57:54 -07003269 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003270 }
3271 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003272 DPRINTF(ah, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303273 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003274 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3275 REG_WRITE(ah, AR_RC, 0);
3276 *masked |= ATH9K_INT_FATAL;
3277 }
3278 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003279 DPRINTF(ah, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303280 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003281 }
3282
3283 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3284 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3285 }
Sujithf1dc5602008-10-29 10:16:30 +05303286
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003287 return true;
3288}
3289
Sujithcbe61d82009-02-09 13:27:12 +05303290enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003291{
Sujith2660b812009-02-09 13:27:26 +05303292 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003293 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303294 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003295
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003296 DPRINTF(ah, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003297
3298 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003299 DPRINTF(ah, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003300 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3301 (void) REG_READ(ah, AR_IER);
3302 if (!AR_SREV_9100(ah)) {
3303 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3304 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3305
3306 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3307 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3308 }
3309 }
3310
3311 mask = ints & ATH9K_INT_COMMON;
3312 mask2 = 0;
3313
3314 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303315 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003316 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303317 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003318 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303319 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003320 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303321 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003322 mask |= AR_IMR_TXEOL;
3323 }
3324 if (ints & ATH9K_INT_RX) {
3325 mask |= AR_IMR_RXERR;
Sujith0ef1f162009-03-30 15:28:35 +05303326 if (ah->config.intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003327 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3328 else
3329 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303330 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003331 mask |= AR_IMR_GENTMR;
3332 }
3333
3334 if (ints & (ATH9K_INT_BMISC)) {
3335 mask |= AR_IMR_BCNMISC;
3336 if (ints & ATH9K_INT_TIM)
3337 mask2 |= AR_IMR_S2_TIM;
3338 if (ints & ATH9K_INT_DTIM)
3339 mask2 |= AR_IMR_S2_DTIM;
3340 if (ints & ATH9K_INT_DTIMSYNC)
3341 mask2 |= AR_IMR_S2_DTIMSYNC;
3342 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303343 mask2 |= AR_IMR_S2_CABEND;
3344 if (ints & ATH9K_INT_TSFOOR)
3345 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003346 }
3347
3348 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3349 mask |= AR_IMR_BCNMISC;
3350 if (ints & ATH9K_INT_GTT)
3351 mask2 |= AR_IMR_S2_GTT;
3352 if (ints & ATH9K_INT_CST)
3353 mask2 |= AR_IMR_S2_CST;
3354 }
3355
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003356 DPRINTF(ah, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003357 REG_WRITE(ah, AR_IMR, mask);
3358 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3359 AR_IMR_S2_DTIM |
3360 AR_IMR_S2_DTIMSYNC |
3361 AR_IMR_S2_CABEND |
3362 AR_IMR_S2_CABTO |
3363 AR_IMR_S2_TSFOOR |
3364 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3365 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303366 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003367
Sujith60b67f52008-08-07 10:52:38 +05303368 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003369 if (ints & ATH9K_INT_TIM_TIMER)
3370 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3371 else
3372 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3373 }
3374
3375 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003376 DPRINTF(ah, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003377 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3378 if (!AR_SREV_9100(ah)) {
3379 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3380 AR_INTR_MAC_IRQ);
3381 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3382
3383
3384 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3385 AR_INTR_SYNC_DEFAULT);
3386 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3387 AR_INTR_SYNC_DEFAULT);
3388 }
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003389 DPRINTF(ah, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003390 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3391 }
3392
3393 return omask;
3394}
3395
Sujithf1dc5602008-10-29 10:16:30 +05303396/*******************/
3397/* Beacon Handling */
3398/*******************/
3399
Sujithcbe61d82009-02-09 13:27:12 +05303400void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003401{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003402 int flags = 0;
3403
Sujith2660b812009-02-09 13:27:26 +05303404 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003405
Sujith2660b812009-02-09 13:27:26 +05303406 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003407 case NL80211_IFTYPE_STATION:
3408 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003409 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3410 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3411 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3412 flags |= AR_TBTT_TIMER_EN;
3413 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003414 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003415 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003416 REG_SET_BIT(ah, AR_TXCFG,
3417 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3418 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3419 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303420 (ah->atim_window ? ah->
3421 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003422 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003423 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003424 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3425 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3426 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303427 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303428 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003429 REG_WRITE(ah, AR_NEXT_SWBA,
3430 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303431 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303432 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003433 flags |=
3434 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3435 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003436 default:
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003437 DPRINTF(ah, ATH_DBG_BEACON,
Colin McCabed97809d2008-12-01 13:38:55 -08003438 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303439 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003440 return;
3441 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003442 }
3443
3444 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3445 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3446 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3447 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3448
3449 beacon_period &= ~ATH9K_BEACON_ENA;
3450 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3451 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3452 ath9k_hw_reset_tsf(ah);
3453 }
3454
3455 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3456}
3457
Sujithcbe61d82009-02-09 13:27:12 +05303458void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303459 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003460{
3461 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303462 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003463
3464 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3465
3466 REG_WRITE(ah, AR_BEACON_PERIOD,
3467 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3468 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3469 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3470
3471 REG_RMW_FIELD(ah, AR_RSSI_THR,
3472 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3473
3474 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3475
3476 if (bs->bs_sleepduration > beaconintval)
3477 beaconintval = bs->bs_sleepduration;
3478
3479 dtimperiod = bs->bs_dtimperiod;
3480 if (bs->bs_sleepduration > dtimperiod)
3481 dtimperiod = bs->bs_sleepduration;
3482
3483 if (beaconintval == dtimperiod)
3484 nextTbtt = bs->bs_nextdtim;
3485 else
3486 nextTbtt = bs->bs_nexttbtt;
3487
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003488 DPRINTF(ah, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3489 DPRINTF(ah, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3490 DPRINTF(ah, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3491 DPRINTF(ah, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003492
3493 REG_WRITE(ah, AR_NEXT_DTIM,
3494 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3495 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3496
3497 REG_WRITE(ah, AR_SLEEP1,
3498 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3499 | AR_SLEEP1_ASSUME_DTIM);
3500
Sujith60b67f52008-08-07 10:52:38 +05303501 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003502 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3503 else
3504 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3505
3506 REG_WRITE(ah, AR_SLEEP2,
3507 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3508
3509 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3510 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3511
3512 REG_SET_BIT(ah, AR_TIMER_MODE,
3513 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3514 AR_DTIM_TIMER_EN);
3515
Sujith4af9cf42009-02-12 10:06:47 +05303516 /* TSF Out of Range Threshold */
3517 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003518}
3519
Sujithf1dc5602008-10-29 10:16:30 +05303520/*******************/
3521/* HW Capabilities */
3522/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003523
Sujitheef7a572009-03-30 15:28:28 +05303524void ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003525{
Sujith2660b812009-02-09 13:27:26 +05303526 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003527 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003528 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003529
Sujithf1dc5602008-10-29 10:16:30 +05303530 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003531
Sujithf74df6f2009-02-09 13:27:24 +05303532 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003533 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303534
Sujithf74df6f2009-02-09 13:27:24 +05303535 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303536 if (AR_SREV_9285_10_OR_LATER(ah))
3537 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003538 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303539
Sujithf74df6f2009-02-09 13:27:24 +05303540 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303541
Sujith2660b812009-02-09 13:27:26 +05303542 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303543 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003544 if (regulatory->current_rd == 0x64 ||
3545 regulatory->current_rd == 0x65)
3546 regulatory->current_rd += 5;
3547 else if (regulatory->current_rd == 0x41)
3548 regulatory->current_rd = 0x43;
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07003549 DPRINTF(ah, ATH_DBG_REGULATORY,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003550 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003551 }
Sujithdc2222a2008-08-14 13:26:55 +05303552
Sujithf74df6f2009-02-09 13:27:24 +05303553 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303554 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003555
Sujithf1dc5602008-10-29 10:16:30 +05303556 if (eeval & AR5416_OPFLAGS_11A) {
3557 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303558 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303559 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3560 set_bit(ATH9K_MODE_11NA_HT20,
3561 pCap->wireless_modes);
3562 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3563 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3564 pCap->wireless_modes);
3565 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3566 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003567 }
3568 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003569 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003570
Sujithf1dc5602008-10-29 10:16:30 +05303571 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303572 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303573 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303574 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3575 set_bit(ATH9K_MODE_11NG_HT20,
3576 pCap->wireless_modes);
3577 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3578 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3579 pCap->wireless_modes);
3580 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3581 pCap->wireless_modes);
3582 }
3583 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003584 }
Sujithf1dc5602008-10-29 10:16:30 +05303585
Sujithf74df6f2009-02-09 13:27:24 +05303586 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003587 /*
3588 * For AR9271 we will temporarilly uses the rx chainmax as read from
3589 * the EEPROM.
3590 */
Sujith8147f5d2009-02-20 15:13:23 +05303591 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003592 !(eeval & AR5416_OPFLAGS_11A) &&
3593 !(AR_SREV_9271(ah)))
3594 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303595 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3596 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003597 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303598 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303599
Sujithd535a422009-02-09 13:27:06 +05303600 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303601 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303602
3603 pCap->low_2ghz_chan = 2312;
3604 pCap->high_2ghz_chan = 2732;
3605
3606 pCap->low_5ghz_chan = 4920;
3607 pCap->high_5ghz_chan = 6100;
3608
3609 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3610 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3611 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3612
3613 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3614 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3615 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3616
Sujith2660b812009-02-09 13:27:26 +05303617 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303618 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3619 else
3620 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3621
3622 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3623 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3624 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3625 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3626
3627 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3628 pCap->total_queues =
3629 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3630 else
3631 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3632
3633 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3634 pCap->keycache_size =
3635 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3636 else
3637 pCap->keycache_size = AR_KEYTABLE_SIZE;
3638
3639 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303640 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3641
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303642 if (AR_SREV_9285_10_OR_LATER(ah))
3643 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3644 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303645 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3646 else
3647 pCap->num_gpio_pins = AR_NUM_GPIO;
3648
Sujithf1dc5602008-10-29 10:16:30 +05303649 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3650 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3651 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3652 } else {
3653 pCap->rts_aggr_limit = (8 * 1024);
3654 }
3655
3656 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3657
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303658#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303659 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3660 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3661 ah->rfkill_gpio =
3662 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3663 ah->rfkill_polarity =
3664 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303665
3666 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3667 }
3668#endif
3669
Vivek Natarajana3ca95fb2009-09-17 09:29:07 +05303670 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05303671
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303672 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303673 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3674 else
3675 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3676
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003677 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303678 pCap->reg_cap =
3679 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3680 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3681 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3682 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3683 } else {
3684 pCap->reg_cap =
3685 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3686 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3687 }
3688
3689 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3690
3691 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303692 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303693 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303694 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303695
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05303696 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07003697 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003698 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
3699 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303700
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303701 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003702 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
3703 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303704 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003705 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303706 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303707 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003708 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303709 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003710}
3711
Sujithcbe61d82009-02-09 13:27:12 +05303712bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303713 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003714{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003715 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303716 switch (type) {
3717 case ATH9K_CAP_CIPHER:
3718 switch (capability) {
3719 case ATH9K_CIPHER_AES_CCM:
3720 case ATH9K_CIPHER_AES_OCB:
3721 case ATH9K_CIPHER_TKIP:
3722 case ATH9K_CIPHER_WEP:
3723 case ATH9K_CIPHER_MIC:
3724 case ATH9K_CIPHER_CLR:
3725 return true;
3726 default:
3727 return false;
3728 }
3729 case ATH9K_CAP_TKIP_MIC:
3730 switch (capability) {
3731 case 0:
3732 return true;
3733 case 1:
Sujith2660b812009-02-09 13:27:26 +05303734 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303735 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3736 false;
3737 }
3738 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303739 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303740 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303741 case ATH9K_CAP_DIVERSITY:
3742 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3743 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3744 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303745 case ATH9K_CAP_MCAST_KEYSRCH:
3746 switch (capability) {
3747 case 0:
3748 return true;
3749 case 1:
3750 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3751 return false;
3752 } else {
Sujith2660b812009-02-09 13:27:26 +05303753 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303754 AR_STA_ID1_MCAST_KSRCH) ? true :
3755 false;
3756 }
3757 }
3758 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303759 case ATH9K_CAP_TXPOW:
3760 switch (capability) {
3761 case 0:
3762 return 0;
3763 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003764 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303765 return 0;
3766 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003767 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303768 return 0;
3769 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003770 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303771 return 0;
3772 }
3773 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303774 case ATH9K_CAP_DS:
3775 return (AR_SREV_9280_20_OR_LATER(ah) &&
3776 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3777 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303778 default:
3779 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003780 }
Sujithf1dc5602008-10-29 10:16:30 +05303781}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003782
Sujithcbe61d82009-02-09 13:27:12 +05303783bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303784 u32 capability, u32 setting, int *status)
3785{
Sujithf1dc5602008-10-29 10:16:30 +05303786 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003787
Sujithf1dc5602008-10-29 10:16:30 +05303788 switch (type) {
3789 case ATH9K_CAP_TKIP_MIC:
3790 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303791 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303792 AR_STA_ID1_CRPT_MIC_ENABLE;
3793 else
Sujith2660b812009-02-09 13:27:26 +05303794 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303795 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3796 return true;
3797 case ATH9K_CAP_DIVERSITY:
3798 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3799 if (setting)
3800 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3801 else
3802 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3803 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3804 return true;
3805 case ATH9K_CAP_MCAST_KEYSRCH:
3806 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303807 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303808 else
Sujith2660b812009-02-09 13:27:26 +05303809 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303810 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303811 default:
3812 return false;
3813 }
3814}
3815
3816/****************************/
3817/* GPIO / RFKILL / Antennae */
3818/****************************/
3819
Sujithcbe61d82009-02-09 13:27:12 +05303820static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303821 u32 gpio, u32 type)
3822{
3823 int addr;
3824 u32 gpio_shift, tmp;
3825
3826 if (gpio > 11)
3827 addr = AR_GPIO_OUTPUT_MUX3;
3828 else if (gpio > 5)
3829 addr = AR_GPIO_OUTPUT_MUX2;
3830 else
3831 addr = AR_GPIO_OUTPUT_MUX1;
3832
3833 gpio_shift = (gpio % 6) * 5;
3834
3835 if (AR_SREV_9280_20_OR_LATER(ah)
3836 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3837 REG_RMW(ah, addr, (type << gpio_shift),
3838 (0x1f << gpio_shift));
3839 } else {
3840 tmp = REG_READ(ah, addr);
3841 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3842 tmp &= ~(0x1f << gpio_shift);
3843 tmp |= (type << gpio_shift);
3844 REG_WRITE(ah, addr, tmp);
3845 }
3846}
3847
Sujithcbe61d82009-02-09 13:27:12 +05303848void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303849{
3850 u32 gpio_shift;
3851
Sujith2660b812009-02-09 13:27:26 +05303852 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303853
3854 gpio_shift = gpio << 1;
3855
3856 REG_RMW(ah,
3857 AR_GPIO_OE_OUT,
3858 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3859 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3860}
3861
Sujithcbe61d82009-02-09 13:27:12 +05303862u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303863{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303864#define MS_REG_READ(x, y) \
3865 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3866
Sujith2660b812009-02-09 13:27:26 +05303867 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303868 return 0xffffffff;
3869
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303870 if (AR_SREV_9287_10_OR_LATER(ah))
3871 return MS_REG_READ(AR9287, gpio) != 0;
3872 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303873 return MS_REG_READ(AR9285, gpio) != 0;
3874 else if (AR_SREV_9280_10_OR_LATER(ah))
3875 return MS_REG_READ(AR928X, gpio) != 0;
3876 else
3877 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303878}
3879
Sujithcbe61d82009-02-09 13:27:12 +05303880void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303881 u32 ah_signal_type)
3882{
3883 u32 gpio_shift;
3884
3885 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3886
3887 gpio_shift = 2 * gpio;
3888
3889 REG_RMW(ah,
3890 AR_GPIO_OE_OUT,
3891 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3892 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3893}
3894
Sujithcbe61d82009-02-09 13:27:12 +05303895void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303896{
3897 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3898 AR_GPIO_BIT(gpio));
3899}
3900
Sujithcbe61d82009-02-09 13:27:12 +05303901u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303902{
3903 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3904}
3905
Sujithcbe61d82009-02-09 13:27:12 +05303906void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303907{
3908 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3909}
3910
Sujithcbe61d82009-02-09 13:27:12 +05303911bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303912 enum ath9k_ant_setting settings,
3913 struct ath9k_channel *chan,
3914 u8 *tx_chainmask,
3915 u8 *rx_chainmask,
3916 u8 *antenna_cfgd)
3917{
Sujithf1dc5602008-10-29 10:16:30 +05303918 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3919
3920 if (AR_SREV_9280(ah)) {
3921 if (!tx_chainmask_cfg) {
3922
3923 tx_chainmask_cfg = *tx_chainmask;
3924 rx_chainmask_cfg = *rx_chainmask;
3925 }
3926
3927 switch (settings) {
3928 case ATH9K_ANT_FIXED_A:
3929 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3930 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3931 *antenna_cfgd = true;
3932 break;
3933 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303934 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303935 ATH9K_ANTENNA1_CHAINMASK) {
3936 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3937 }
3938 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3939 *antenna_cfgd = true;
3940 break;
3941 case ATH9K_ANT_VARIABLE:
3942 *tx_chainmask = tx_chainmask_cfg;
3943 *rx_chainmask = rx_chainmask_cfg;
3944 *antenna_cfgd = true;
3945 break;
3946 default:
3947 break;
3948 }
3949 } else {
Sujith1cf68732009-08-13 09:34:32 +05303950 ah->config.diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303951 }
3952
3953 return true;
3954}
3955
3956/*********************/
3957/* General Operation */
3958/*********************/
3959
Sujithcbe61d82009-02-09 13:27:12 +05303960u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303961{
3962 u32 bits = REG_READ(ah, AR_RX_FILTER);
3963 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3964
3965 if (phybits & AR_PHY_ERR_RADAR)
3966 bits |= ATH9K_RX_FILTER_PHYRADAR;
3967 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3968 bits |= ATH9K_RX_FILTER_PHYERR;
3969
3970 return bits;
3971}
3972
Sujithcbe61d82009-02-09 13:27:12 +05303973void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303974{
3975 u32 phybits;
3976
Sujith7ea310b2009-09-03 12:08:43 +05303977 REG_WRITE(ah, AR_RX_FILTER, bits);
3978
Sujithf1dc5602008-10-29 10:16:30 +05303979 phybits = 0;
3980 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3981 phybits |= AR_PHY_ERR_RADAR;
3982 if (bits & ATH9K_RX_FILTER_PHYERR)
3983 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3984 REG_WRITE(ah, AR_PHY_ERR, phybits);
3985
3986 if (phybits)
3987 REG_WRITE(ah, AR_RXCFG,
3988 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3989 else
3990 REG_WRITE(ah, AR_RXCFG,
3991 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3992}
3993
Sujithcbe61d82009-02-09 13:27:12 +05303994bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303995{
3996 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3997}
3998
Sujithcbe61d82009-02-09 13:27:12 +05303999bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304000{
Luis R. Rodriguez1adc93c2009-09-09 20:54:36 -07004001 if (!ath9k_hw_setpower_nolock(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05304002 return false;
4003
4004 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
4005}
4006
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07004007void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05304008{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07004009 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05304010 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08004011 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05304012
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07004013 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05304014
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07004015 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07004016 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07004017 channel->max_antenna_gain * 2,
4018 channel->max_power * 2,
4019 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07004020 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05304021}
4022
Sujithcbe61d82009-02-09 13:27:12 +05304023void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05304024{
Sujithba52da52009-02-09 13:27:10 +05304025 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05304026}
4027
Sujithcbe61d82009-02-09 13:27:12 +05304028void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304029{
Sujith2660b812009-02-09 13:27:26 +05304030 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05304031}
4032
Sujithcbe61d82009-02-09 13:27:12 +05304033void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05304034{
4035 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
4036 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
4037}
4038
Sujithba52da52009-02-09 13:27:10 +05304039void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05304040{
Sujithba52da52009-02-09 13:27:10 +05304041 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
4042 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05304043}
4044
Sujithba52da52009-02-09 13:27:10 +05304045void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05304046{
Sujithba52da52009-02-09 13:27:10 +05304047 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
4048 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
4049 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05304050}
4051
Sujithcbe61d82009-02-09 13:27:12 +05304052u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304053{
4054 u64 tsf;
4055
4056 tsf = REG_READ(ah, AR_TSF_U32);
4057 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
4058
4059 return tsf;
4060}
4061
Sujithcbe61d82009-02-09 13:27:12 +05304062void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004063{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004064 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01004065 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004066}
4067
Sujithcbe61d82009-02-09 13:27:12 +05304068void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304069{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02004070 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
4071 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07004072 DPRINTF(ah, ATH_DBG_RESET,
Gabor Juhosf9b604f2009-06-21 00:02:15 +02004073 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
4074
Sujithf1dc5602008-10-29 10:16:30 +05304075 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004076}
4077
Sujith54e4cec2009-08-07 09:45:09 +05304078void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004079{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004080 if (setting)
Sujith2660b812009-02-09 13:27:26 +05304081 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004082 else
Sujith2660b812009-02-09 13:27:26 +05304083 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004084}
4085
Sujithcbe61d82009-02-09 13:27:12 +05304086bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004087{
Sujithf1dc5602008-10-29 10:16:30 +05304088 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07004089 DPRINTF(ah, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05304090 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05304091 return false;
4092 } else {
4093 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05304094 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05304095 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004096 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004097}
4098
Sujithcbe61d82009-02-09 13:27:12 +05304099void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004100{
Sujithf1dc5602008-10-29 10:16:30 +05304101 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004102
Sujithf1dc5602008-10-29 10:16:30 +05304103 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05304104 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05304105 macmode = AR_2040_JOINED_RX_CLEAR;
4106 else
4107 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004108
Sujithf1dc5602008-10-29 10:16:30 +05304109 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004110}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05304111
4112/* HW Generic timers configuration */
4113
4114static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
4115{
4116 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4117 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4118 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4119 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4120 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4121 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4122 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4123 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4124 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
4125 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
4126 AR_NDP2_TIMER_MODE, 0x0002},
4127 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
4128 AR_NDP2_TIMER_MODE, 0x0004},
4129 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
4130 AR_NDP2_TIMER_MODE, 0x0008},
4131 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
4132 AR_NDP2_TIMER_MODE, 0x0010},
4133 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
4134 AR_NDP2_TIMER_MODE, 0x0020},
4135 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
4136 AR_NDP2_TIMER_MODE, 0x0040},
4137 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
4138 AR_NDP2_TIMER_MODE, 0x0080}
4139};
4140
4141/* HW generic timer primitives */
4142
4143/* compute and clear index of rightmost 1 */
4144static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
4145{
4146 u32 b;
4147
4148 b = *mask;
4149 b &= (0-b);
4150 *mask &= ~b;
4151 b *= debruijn32;
4152 b >>= 27;
4153
4154 return timer_table->gen_timer_index[b];
4155}
4156
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05304157u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05304158{
4159 return REG_READ(ah, AR_TSF_L32);
4160}
4161
4162struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
4163 void (*trigger)(void *),
4164 void (*overflow)(void *),
4165 void *arg,
4166 u8 timer_index)
4167{
4168 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4169 struct ath_gen_timer *timer;
4170
4171 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
4172
4173 if (timer == NULL) {
4174 printk(KERN_DEBUG "Failed to allocate memory"
4175 "for hw timer[%d]\n", timer_index);
4176 return NULL;
4177 }
4178
4179 /* allocate a hardware generic timer slot */
4180 timer_table->timers[timer_index] = timer;
4181 timer->index = timer_index;
4182 timer->trigger = trigger;
4183 timer->overflow = overflow;
4184 timer->arg = arg;
4185
4186 return timer;
4187}
4188
4189void ath_gen_timer_start(struct ath_hw *ah,
4190 struct ath_gen_timer *timer,
4191 u32 timer_next, u32 timer_period)
4192{
4193 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4194 u32 tsf;
4195
4196 BUG_ON(!timer_period);
4197
4198 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
4199
4200 tsf = ath9k_hw_gettsf32(ah);
4201
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07004202 DPRINTF(ah, ATH_DBG_HWTIMER, "curent tsf %x period %x"
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05304203 "timer_next %x\n", tsf, timer_period, timer_next);
4204
4205 /*
4206 * Pull timer_next forward if the current TSF already passed it
4207 * because of software latency
4208 */
4209 if (timer_next < tsf)
4210 timer_next = tsf + timer_period;
4211
4212 /*
4213 * Program generic timer registers
4214 */
4215 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
4216 timer_next);
4217 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
4218 timer_period);
4219 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
4220 gen_tmr_configuration[timer->index].mode_mask);
4221
4222 /* Enable both trigger and thresh interrupt masks */
4223 REG_SET_BIT(ah, AR_IMR_S5,
4224 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
4225 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
4226
4227 if ((ah->ah_sc->imask & ATH9K_INT_GENTIMER) == 0) {
4228 ath9k_hw_set_interrupts(ah, 0);
4229 ah->ah_sc->imask |= ATH9K_INT_GENTIMER;
4230 ath9k_hw_set_interrupts(ah, ah->ah_sc->imask);
4231 }
4232}
4233
4234void ath_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
4235{
4236 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4237
4238 if ((timer->index < AR_FIRST_NDP_TIMER) ||
4239 (timer->index >= ATH_MAX_GEN_TIMER)) {
4240 return;
4241 }
4242
4243 /* Clear generic timer enable bits. */
4244 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
4245 gen_tmr_configuration[timer->index].mode_mask);
4246
4247 /* Disable both trigger and thresh interrupt masks */
4248 REG_CLR_BIT(ah, AR_IMR_S5,
4249 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
4250 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
4251
4252 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
4253
4254 /* if no timer is enabled, turn off interrupt mask */
4255 if (timer_table->timer_mask.val == 0) {
4256 ath9k_hw_set_interrupts(ah, 0);
4257 ah->ah_sc->imask &= ~ATH9K_INT_GENTIMER;
4258 ath9k_hw_set_interrupts(ah, ah->ah_sc->imask);
4259 }
4260}
4261
4262void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
4263{
4264 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4265
4266 /* free the hardware generic timer slot */
4267 timer_table->timers[timer->index] = NULL;
4268 kfree(timer);
4269}
4270
4271/*
4272 * Generic Timer Interrupts handling
4273 */
4274void ath_gen_timer_isr(struct ath_hw *ah)
4275{
4276 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4277 struct ath_gen_timer *timer;
4278 u32 trigger_mask, thresh_mask, index;
4279
4280 /* get hardware generic timer interrupt status */
4281 trigger_mask = ah->intr_gen_timer_trigger;
4282 thresh_mask = ah->intr_gen_timer_thresh;
4283 trigger_mask &= timer_table->timer_mask.val;
4284 thresh_mask &= timer_table->timer_mask.val;
4285
4286 trigger_mask &= ~thresh_mask;
4287
4288 while (thresh_mask) {
4289 index = rightmost_index(timer_table, &thresh_mask);
4290 timer = timer_table->timers[index];
4291 BUG_ON(!timer);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07004292 DPRINTF(ah, ATH_DBG_HWTIMER,
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05304293 "TSF overflow for Gen timer %d\n", index);
4294 timer->overflow(timer->arg);
4295 }
4296
4297 while (trigger_mask) {
4298 index = rightmost_index(timer_table, &trigger_mask);
4299 timer = timer_table->timers[index];
4300 BUG_ON(!timer);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -07004301 DPRINTF(ah, ATH_DBG_HWTIMER,
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05304302 "Gen timer[%d] trigger\n", index);
4303 timer->trigger(timer->arg);
4304 }
4305}
Vasanthakumar Thiagarajan7b6840a2009-09-07 17:46:49 +05304306
4307/*
4308 * Primitive to disable ASPM
4309 */
4310void ath_pcie_aspm_disable(struct ath_softc *sc)
4311{
4312 struct pci_dev *pdev = to_pci_dev(sc->dev);
4313 u8 aspm;
4314
4315 pci_read_config_byte(pdev, ATH_PCIE_CAP_LINK_CTRL, &aspm);
4316 aspm &= ~(ATH_PCIE_CAP_LINK_L0S | ATH_PCIE_CAP_LINK_L1);
4317 pci_write_config_byte(pdev, ATH_PCIE_CAP_LINK_CTRL, aspm);
4318}