blob: ff2875b233dad551faf0b30f70ec5c5949c9e677 [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>
19
Sujith394cf0a2009-02-09 13:26:54 +053020#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021#include "initvals.h"
22
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +053023static int btcoex_enable;
24module_param(btcoex_enable, bool, 0);
25MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
26
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080027#define ATH9K_CLOCK_RATE_CCK 22
28#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
29#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Sujithcbe61d82009-02-09 13:27:12 +053031static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
32static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +053033 enum ath9k_ht_macmode macmode);
Sujithcbe61d82009-02-09 13:27:12 +053034static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053035 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +053036 u32 reg, u32 value);
Sujithcbe61d82009-02-09 13:27:12 +053037static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
38static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070039
Sujithf1dc5602008-10-29 10:16:30 +053040/********************/
41/* Helper Functions */
42/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070043
Sujithcbe61d82009-02-09 13:27:12 +053044static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053045{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080046 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053047
Sujith2660b812009-02-09 13:27:26 +053048 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080049 return clks / ATH9K_CLOCK_RATE_CCK;
50 if (conf->channel->band == IEEE80211_BAND_2GHZ)
51 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
Sujithcbe61d82009-02-09 13:27:12 +053052
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080053 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053054}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070055
Sujithcbe61d82009-02-09 13:27:12 +053056static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053057{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080058 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053059
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080060 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053061 return ath9k_hw_mac_usec(ah, clks) / 2;
62 else
63 return ath9k_hw_mac_usec(ah, clks);
64}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065
Sujithcbe61d82009-02-09 13:27:12 +053066static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053067{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080068 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053069
Sujith2660b812009-02-09 13:27:26 +053070 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080071 return usecs *ATH9K_CLOCK_RATE_CCK;
72 if (conf->channel->band == IEEE80211_BAND_2GHZ)
73 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
74 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053075}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076
Sujithcbe61d82009-02-09 13:27:12 +053077static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053078{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080079 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053080
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080081 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053082 return ath9k_hw_mac_clks(ah, usecs) * 2;
83 else
84 return ath9k_hw_mac_clks(ah, usecs);
85}
86
Gabor Juhosfb4a3d32009-04-29 13:01:58 +020087/*
88 * Read and write, they both share the same lock. We do this to serialize
89 * reads and writes on Atheros 802.11n PCI devices only. This is required
90 * as the FIFO on these devices can only accept sanely 2 requests. After
91 * that the device goes bananas. Serializing the reads/writes prevents this
92 * from happening.
93 */
94
95void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
96{
97 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
98 unsigned long flags;
99 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
100 iowrite32(val, ah->ah_sc->mem + reg_offset);
101 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
102 } else
103 iowrite32(val, ah->ah_sc->mem + reg_offset);
104}
105
106unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
107{
108 u32 val;
109 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
110 unsigned long flags;
111 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
112 val = ioread32(ah->ah_sc->mem + reg_offset);
113 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
114 } else
115 val = ioread32(ah->ah_sc->mem + reg_offset);
116 return val;
117}
118
Sujith0caa7b12009-02-16 13:23:20 +0530119bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120{
121 int i;
122
Sujith0caa7b12009-02-16 13:23:20 +0530123 BUG_ON(timeout < AH_TIME_QUANTUM);
124
125 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126 if ((REG_READ(ah, reg) & mask) == val)
127 return true;
128
129 udelay(AH_TIME_QUANTUM);
130 }
Sujith04bd4632008-11-28 22:18:05 +0530131
Sujithd8baa932009-03-30 15:28:25 +0530132 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith0caa7b12009-02-16 13:23:20 +0530133 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
134 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136 return false;
137}
138
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139u32 ath9k_hw_reverse_bits(u32 val, u32 n)
140{
141 u32 retval;
142 int i;
143
144 for (i = 0, retval = 0; i < n; i++) {
145 retval = (retval << 1) | (val & 1);
146 val >>= 1;
147 }
148 return retval;
149}
150
Sujithcbe61d82009-02-09 13:27:12 +0530151bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530152 u16 flags, u16 *low,
153 u16 *high)
154{
Sujith2660b812009-02-09 13:27:26 +0530155 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530156
157 if (flags & CHANNEL_5GHZ) {
158 *low = pCap->low_5ghz_chan;
159 *high = pCap->high_5ghz_chan;
160 return true;
161 }
162 if ((flags & CHANNEL_2GHZ)) {
163 *low = pCap->low_2ghz_chan;
164 *high = pCap->high_2ghz_chan;
165 return true;
166 }
167 return false;
168}
169
Sujithcbe61d82009-02-09 13:27:12 +0530170u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400171 const struct ath_rate_table *rates,
Sujithf1dc5602008-10-29 10:16:30 +0530172 u32 frameLen, u16 rateix,
173 bool shortPreamble)
174{
175 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
176 u32 kbps;
177
Sujithe63835b2008-11-18 09:07:53 +0530178 kbps = rates->info[rateix].ratekbps;
Sujithf1dc5602008-10-29 10:16:30 +0530179
180 if (kbps == 0)
181 return 0;
182
183 switch (rates->info[rateix].phy) {
Sujith46d14a52008-11-18 09:08:13 +0530184 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530185 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Sujithe63835b2008-11-18 09:07:53 +0530186 if (shortPreamble && rates->info[rateix].short_preamble)
Sujithf1dc5602008-10-29 10:16:30 +0530187 phyTime >>= 1;
188 numBits = frameLen << 3;
189 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
190 break;
Sujith46d14a52008-11-18 09:08:13 +0530191 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530192 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530193 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
194 numBits = OFDM_PLCP_BITS + (frameLen << 3);
195 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
196 txTime = OFDM_SIFS_TIME_QUARTER
197 + OFDM_PREAMBLE_TIME_QUARTER
198 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530199 } else if (ah->curchan &&
200 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530201 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
202 numBits = OFDM_PLCP_BITS + (frameLen << 3);
203 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
204 txTime = OFDM_SIFS_TIME_HALF +
205 OFDM_PREAMBLE_TIME_HALF
206 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
207 } else {
208 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
209 numBits = OFDM_PLCP_BITS + (frameLen << 3);
210 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
211 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
212 + (numSymbols * OFDM_SYMBOL_TIME);
213 }
214 break;
215 default:
Sujithd8baa932009-03-30 15:28:25 +0530216 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530217 "Unknown phy %u (rate ix %u)\n",
Sujithf1dc5602008-10-29 10:16:30 +0530218 rates->info[rateix].phy, rateix);
219 txTime = 0;
220 break;
221 }
222
223 return txTime;
224}
225
Sujithcbe61d82009-02-09 13:27:12 +0530226void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530227 struct ath9k_channel *chan,
228 struct chan_centers *centers)
229{
230 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530231
232 if (!IS_CHAN_HT40(chan)) {
233 centers->ctl_center = centers->ext_center =
234 centers->synth_center = chan->channel;
235 return;
236 }
237
238 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
239 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
240 centers->synth_center =
241 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
242 extoff = 1;
243 } else {
244 centers->synth_center =
245 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
246 extoff = -1;
247 }
248
249 centers->ctl_center =
250 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
251 centers->ext_center =
252 centers->synth_center + (extoff *
Sujith2660b812009-02-09 13:27:26 +0530253 ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
Sujithf1dc5602008-10-29 10:16:30 +0530254 HT40_CHANNEL_CENTER_SHIFT : 15));
Sujithf1dc5602008-10-29 10:16:30 +0530255}
256
257/******************/
258/* Chip Revisions */
259/******************/
260
Sujithcbe61d82009-02-09 13:27:12 +0530261static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530262{
263 u32 val;
264
265 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
266
267 if (val == 0xFF) {
268 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530269 ah->hw_version.macVersion =
270 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
271 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530272 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530273 } else {
274 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530275 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530276
Sujithd535a422009-02-09 13:27:06 +0530277 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530278
Sujithd535a422009-02-09 13:27:06 +0530279 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530280 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530281 }
282}
283
Sujithcbe61d82009-02-09 13:27:12 +0530284static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530285{
286 u32 val;
287 int i;
288
289 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
290
291 for (i = 0; i < 8; i++)
292 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
293 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
294 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
295
296 return ath9k_hw_reverse_bits(val, 8);
297}
298
299/************************************/
300/* HW Attach, Detach, Init Routines */
301/************************************/
302
Sujithcbe61d82009-02-09 13:27:12 +0530303static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530304{
Sujithfeed0292009-01-29 11:37:35 +0530305 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530306 return;
307
308 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
309 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
310 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
311 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
312 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
313 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
315 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
317
318 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
319}
320
Sujithcbe61d82009-02-09 13:27:12 +0530321static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530322{
323 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
324 u32 regHold[2];
325 u32 patternData[4] = { 0x55555555,
326 0xaaaaaaaa,
327 0x66666666,
328 0x99999999 };
329 int i, j;
330
331 for (i = 0; i < 2; i++) {
332 u32 addr = regAddr[i];
333 u32 wrData, rdData;
334
335 regHold[i] = REG_READ(ah, addr);
336 for (j = 0; j < 0x100; j++) {
337 wrData = (j << 16) | j;
338 REG_WRITE(ah, addr, wrData);
339 rdData = REG_READ(ah, addr);
340 if (rdData != wrData) {
Sujithd8baa932009-03-30 15:28:25 +0530341 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530342 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530343 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530344 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530345 return false;
346 }
347 }
348 for (j = 0; j < 4; j++) {
349 wrData = patternData[j];
350 REG_WRITE(ah, addr, wrData);
351 rdData = REG_READ(ah, addr);
352 if (wrData != rdData) {
Sujithd8baa932009-03-30 15:28:25 +0530353 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530354 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530355 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530356 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530357 return false;
358 }
359 }
360 REG_WRITE(ah, regAddr[i], regHold[i]);
361 }
362 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530363
Sujithf1dc5602008-10-29 10:16:30 +0530364 return true;
365}
366
367static const char *ath9k_hw_devname(u16 devid)
368{
369 switch (devid) {
370 case AR5416_DEVID_PCI:
Sujithf1dc5602008-10-29 10:16:30 +0530371 return "Atheros 5416";
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +0100372 case AR5416_DEVID_PCIE:
373 return "Atheros 5418";
Sujithf1dc5602008-10-29 10:16:30 +0530374 case AR9160_DEVID_PCI:
375 return "Atheros 9160";
Gabor Juhos0c1aa492009-01-14 20:17:12 +0100376 case AR5416_AR9100_DEVID:
377 return "Atheros 9100";
Sujithf1dc5602008-10-29 10:16:30 +0530378 case AR9280_DEVID_PCI:
379 case AR9280_DEVID_PCIE:
380 return "Atheros 9280";
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530381 case AR9285_DEVID_PCIE:
382 return "Atheros 9285";
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530383 case AR5416_DEVID_AR9287_PCI:
384 case AR5416_DEVID_AR9287_PCIE:
385 return "Atheros 9287";
Sujithf1dc5602008-10-29 10:16:30 +0530386 }
387
388 return NULL;
389}
390
Sujithcbe61d82009-02-09 13:27:12 +0530391static void ath9k_hw_set_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392{
393 int i;
394
Sujith2660b812009-02-09 13:27:26 +0530395 ah->config.dma_beacon_response_time = 2;
396 ah->config.sw_beacon_response_time = 10;
397 ah->config.additional_swba_backoff = 0;
398 ah->config.ack_6mb = 0x0;
399 ah->config.cwm_ignore_extcca = 0;
400 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530401 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530402 ah->config.pcie_waen = 0;
403 ah->config.analog_shiftreg = 1;
404 ah->config.ht_enable = 1;
405 ah->config.ofdm_trig_low = 200;
406 ah->config.ofdm_trig_high = 500;
407 ah->config.cck_trig_high = 200;
408 ah->config.cck_trig_low = 100;
409 ah->config.enable_ani = 1;
Sujith2660b812009-02-09 13:27:26 +0530410 ah->config.diversity_control = 0;
411 ah->config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412
413 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530414 ah->config.spurchans[i][0] = AR_NO_SPUR;
415 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416 }
417
Sujith0ef1f162009-03-30 15:28:35 +0530418 ah->config.intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400419
420 /*
421 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
422 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
423 * This means we use it for all AR5416 devices, and the few
424 * minor PCI AR9280 devices out there.
425 *
426 * Serialization is required because these devices do not handle
427 * well the case of two concurrent reads/writes due to the latency
428 * involved. During one read/write another read/write can be issued
429 * on another CPU while the previous read/write may still be working
430 * on our hardware, if we hit this case the hardware poops in a loop.
431 * We prevent this by serializing reads and writes.
432 *
433 * This issue is not present on PCI-Express devices or pre-AR5416
434 * devices (legacy, 802.11abg).
435 */
436 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700437 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438}
439
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700440static void ath9k_hw_newstate(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441{
Sujithd535a422009-02-09 13:27:06 +0530442 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530443 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530444 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445
446 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700447 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530448 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449 if (!AR_SREV_9100(ah))
450 ah->ah_flags = AH_USE_EEPROM;
451
Sujithd6bad492009-02-09 13:27:08 +0530452 ah->regulatory.power_limit = MAX_RATE_POWER;
453 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530454 ah->atim_window = 0;
455 ah->diversity_control = ah->config.diversity_control;
456 ah->antenna_switch_swap =
457 ah->config.antenna_switch_swap;
458 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
459 ah->beacon_interval = 100;
460 ah->enable_32kHz_clock = DONT_USE_32KHZ;
461 ah->slottime = (u32) -1;
462 ah->acktimeout = (u32) -1;
463 ah->ctstimeout = (u32) -1;
464 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465
Sujith2660b812009-02-09 13:27:26 +0530466 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Gabor Juhoscbdec972009-07-24 17:27:22 +0200468 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469}
470
Sujithcbe61d82009-02-09 13:27:12 +0530471static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472{
473 bool rfStatus = false;
474 int ecode = 0;
475
476 rfStatus = ath9k_hw_init_rf(ah, &ecode);
477 if (!rfStatus) {
Sujithd8baa932009-03-30 15:28:25 +0530478 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
479 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480 return ecode;
481 }
482
483 return 0;
484}
485
Sujithcbe61d82009-02-09 13:27:12 +0530486static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487{
488 u32 val;
489
490 REG_WRITE(ah, AR_PHY(0), 0x00000007);
491
492 val = ath9k_hw_get_radiorev(ah);
493 switch (val & AR_RADIO_SREV_MAJOR) {
494 case 0:
495 val = AR_RAD5133_SREV_MAJOR;
496 break;
497 case AR_RAD5133_SREV_MAJOR:
498 case AR_RAD5122_SREV_MAJOR:
499 case AR_RAD2133_SREV_MAJOR:
500 case AR_RAD2122_SREV_MAJOR:
501 break;
502 default:
Sujithd8baa932009-03-30 15:28:25 +0530503 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
504 "Radio Chip Rev 0x%02X not supported\n",
505 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 return -EOPNOTSUPP;
507 }
508
Sujithd535a422009-02-09 13:27:06 +0530509 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510
511 return 0;
512}
513
Sujithcbe61d82009-02-09 13:27:12 +0530514static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515{
Sujithf1dc5602008-10-29 10:16:30 +0530516 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530518 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519
Sujithf1dc5602008-10-29 10:16:30 +0530520 sum = 0;
521 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530522 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530523 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530524 ah->macaddr[2 * i] = eeval >> 8;
525 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700526 }
Sujithd8baa932009-03-30 15:28:25 +0530527 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530528 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700529
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530 return 0;
531}
532
Sujithcbe61d82009-02-09 13:27:12 +0530533static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530534{
535 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530536
Sujithf74df6f2009-02-09 13:27:24 +0530537 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
538 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530539
540 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530541 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530542 ar9280Modes_backoff_13db_rxgain_9280_2,
543 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
544 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530545 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530546 ar9280Modes_backoff_23db_rxgain_9280_2,
547 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
548 else
Sujith2660b812009-02-09 13:27:26 +0530549 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530550 ar9280Modes_original_rxgain_9280_2,
551 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530552 } else {
Sujith2660b812009-02-09 13:27:26 +0530553 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530554 ar9280Modes_original_rxgain_9280_2,
555 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530556 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530557}
558
Sujithcbe61d82009-02-09 13:27:12 +0530559static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530560{
561 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530562
Sujithf74df6f2009-02-09 13:27:24 +0530563 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
564 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530565
566 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530567 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530568 ar9280Modes_high_power_tx_gain_9280_2,
569 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
570 else
Sujith2660b812009-02-09 13:27:26 +0530571 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530572 ar9280Modes_original_tx_gain_9280_2,
573 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530574 } else {
Sujith2660b812009-02-09 13:27:26 +0530575 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530576 ar9280Modes_original_tx_gain_9280_2,
577 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530578 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530579}
580
Sujithcbe61d82009-02-09 13:27:12 +0530581static int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700582{
583 int ecode;
584
Sujithd8baa932009-03-30 15:28:25 +0530585 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587
588 ecode = ath9k_hw_rf_claim(ah);
589 if (ecode != 0)
590 return ecode;
591
592 ecode = ath9k_hw_eeprom_attach(ah);
593 if (ecode != 0)
594 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530595
596 DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
597 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
598
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 ecode = ath9k_hw_rfattach(ah);
600 if (ecode != 0)
601 return ecode;
602
603 if (!AR_SREV_9100(ah)) {
604 ath9k_hw_ani_setup(ah);
605 ath9k_hw_ani_attach(ah);
606 }
Sujithf1dc5602008-10-29 10:16:30 +0530607
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 return 0;
609}
610
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700611static int ath9k_hw_do_attach(struct ath_hw *ah,
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700612 struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613{
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700614 int r;
Sujithf6688cd2008-12-07 21:43:10 +0530615 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700617 ath9k_hw_newstate(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618 ath9k_hw_set_defaults(ah);
619
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700620 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithd8baa932009-03-30 15:28:25 +0530621 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700622 r = -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 goto bad;
624 }
625
626 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithd8baa932009-03-30 15:28:25 +0530627 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700628 r = -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629 goto bad;
630 }
631
Sujith2660b812009-02-09 13:27:26 +0530632 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
David S. Miller2d6a5e92009-03-17 15:01:30 -0700633 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
634 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
Sujith2660b812009-02-09 13:27:26 +0530635 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700636 SER_REG_MODE_ON;
637 } else {
Sujith2660b812009-02-09 13:27:26 +0530638 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 SER_REG_MODE_OFF;
640 }
641 }
Sujithf1dc5602008-10-29 10:16:30 +0530642
Sujithcbe61d82009-02-09 13:27:12 +0530643 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530644 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645
Luis R. Rodriguezfbf54662009-08-03 12:24:34 -0700646 switch (ah->hw_version.macVersion) {
647 case AR_SREV_VERSION_5416_PCI:
648 case AR_SREV_VERSION_5416_PCIE:
649 case AR_SREV_VERSION_9160:
650 case AR_SREV_VERSION_9100:
651 case AR_SREV_VERSION_9280:
652 case AR_SREV_VERSION_9285:
653 case AR_SREV_VERSION_9287:
654 break;
655 default:
Sujithd8baa932009-03-30 15:28:25 +0530656 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530657 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530658 "this driver\n", ah->hw_version.macVersion,
659 ah->hw_version.macRev);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700660 r = -EOPNOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700661 goto bad;
662 }
663
664 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530665 ah->iq_caldata.calData = &iq_cal_multi_sample;
666 ah->supp_cals = IQ_MISMATCH_CAL;
667 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668 }
Sujithd535a422009-02-09 13:27:06 +0530669 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670
671 if (AR_SREV_9160_10_OR_LATER(ah)) {
672 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530673 ah->iq_caldata.calData = &iq_cal_single_sample;
674 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700675 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530676 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700677 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530678 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700679 &adc_init_dc_cal;
680 } else {
Sujith2660b812009-02-09 13:27:26 +0530681 ah->iq_caldata.calData = &iq_cal_multi_sample;
682 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700683 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530684 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700685 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530686 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687 &adc_init_dc_cal;
688 }
Sujith2660b812009-02-09 13:27:26 +0530689 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700690 }
691
Sujith9c81e8b2009-03-09 09:31:49 +0530692 ah->ani_function = ATH9K_ANI_ALL;
693 if (AR_SREV_9280_10_OR_LATER(ah))
694 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530695 if (AR_SREV_9287_11_OR_LATER(ah)) {
696 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
697 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
698 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
699 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
700 if (ah->config.pcie_clock_req)
701 INIT_INI_ARRAY(&ah->iniPcieSerdes,
702 ar9287PciePhy_clkreq_off_L1_9287_1_1,
703 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
704 else
705 INIT_INI_ARRAY(&ah->iniPcieSerdes,
706 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
707 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
708 2);
709 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
710 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
711 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
712 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
713 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530715 if (ah->config.pcie_clock_req)
716 INIT_INI_ARRAY(&ah->iniPcieSerdes,
717 ar9287PciePhy_clkreq_off_L1_9287_1_0,
718 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
719 else
720 INIT_INI_ARRAY(&ah->iniPcieSerdes,
721 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
722 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
723 2);
724 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
725
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530726
Sujith2660b812009-02-09 13:27:26 +0530727 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530728 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530730 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
731
Sujith2660b812009-02-09 13:27:26 +0530732 if (ah->config.pcie_clock_req) {
733 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530734 ar9285PciePhy_clkreq_off_L1_9285_1_2,
735 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
736 } else {
Sujith2660b812009-02-09 13:27:26 +0530737 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530738 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
739 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
740 2);
741 }
742 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530744 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530746 ARRAY_SIZE(ar9285Common_9285), 2);
747
Sujith2660b812009-02-09 13:27:26 +0530748 if (ah->config.pcie_clock_req) {
749 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530750 ar9285PciePhy_clkreq_off_L1_9285,
751 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
752 } else {
Sujith2660b812009-02-09 13:27:26 +0530753 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530754 ar9285PciePhy_clkreq_always_on_L1_9285,
755 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
756 }
757 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar9280Common_9280_2), 2);
762
Sujith2660b812009-02-09 13:27:26 +0530763 if (ah->config.pcie_clock_req) {
764 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530765 ar9280PciePhy_clkreq_off_L1_9280,
766 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 } else {
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530769 ar9280PciePhy_clkreq_always_on_L1_9280,
770 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 }
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530774 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar9280Common_9280), 2);
780 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530787 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700788 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530789 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530791 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700792 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530793 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530795 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530797 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530799 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 ARRAY_SIZE(ar5416Bank7_9160), 2);
801 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530802 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 ar5416Addac_91601_1,
804 ARRAY_SIZE(ar5416Addac_91601_1), 2);
805 } else {
Sujith2660b812009-02-09 13:27:26 +0530806 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807 ARRAY_SIZE(ar5416Addac_9160), 2);
808 }
809 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530810 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530812 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530814 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530816 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700817 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530818 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530820 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700821 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530822 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700823 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530824 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700825 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530826 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530828 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700829 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530830 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831 ARRAY_SIZE(ar5416Addac_9100), 2);
832 } else {
Sujith2660b812009-02-09 13:27:26 +0530833 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530835 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530837 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700838 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530839 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530841 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700842 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530843 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700844 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530845 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700846 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530847 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700848 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530849 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700850 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530851 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700852 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530853 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854 ARRAY_SIZE(ar5416Addac), 2);
855 }
856
Sujith2660b812009-02-09 13:27:26 +0530857 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700858 ath9k_hw_configpcipowersave(ah, 0);
859 else
Sujithf1dc5602008-10-29 10:16:30 +0530860 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700861
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700862 r = ath9k_hw_post_attach(ah);
863 if (r)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864 goto bad;
865
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530866 if (AR_SREV_9287_11(ah))
867 INIT_INI_ARRAY(&ah->iniModesRxGain,
868 ar9287Modes_rx_gain_9287_1_1,
869 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
870 else if (AR_SREV_9287_10(ah))
871 INIT_INI_ARRAY(&ah->iniModesRxGain,
872 ar9287Modes_rx_gain_9287_1_0,
873 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
874 else if (AR_SREV_9280_20(ah))
875 ath9k_hw_init_rxgain_ini(ah);
876
877 if (AR_SREV_9287_11(ah)) {
878 INIT_INI_ARRAY(&ah->iniModesTxGain,
879 ar9287Modes_tx_gain_9287_1_1,
880 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
881 } else if (AR_SREV_9287_10(ah)) {
882 INIT_INI_ARRAY(&ah->iniModesTxGain,
883 ar9287Modes_tx_gain_9287_1_0,
884 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
885 } else if (AR_SREV_9280_20(ah)) {
886 ath9k_hw_init_txgain_ini(ah);
887 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530888 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
889
890 /* txgain table */
891 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
892 INIT_INI_ARRAY(&ah->iniModesTxGain,
893 ar9285Modes_high_power_tx_gain_9285_1_2,
894 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
895 } else {
896 INIT_INI_ARRAY(&ah->iniModesTxGain,
897 ar9285Modes_original_tx_gain_9285_1_2,
898 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
899 }
900
901 }
902
Sujitheef7a572009-03-30 15:28:28 +0530903 ath9k_hw_fill_cap_info(ah);
Sujith06d0f062009-02-12 10:06:45 +0530904
905 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
906 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
907
908 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530909 for (i = 0; i < ah->iniModes.ia_rows; i++) {
910 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700911
Sujith2660b812009-02-09 13:27:26 +0530912 for (j = 1; j < ah->iniModes.ia_columns; j++) {
913 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700914
Sujith2660b812009-02-09 13:27:26 +0530915 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530916 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530917 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700918 reg, val);
919 }
920 }
921 }
Sujithf6688cd2008-12-07 21:43:10 +0530922
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700923 r = ath9k_hw_init_macaddr(ah);
924 if (r) {
Sujithd8baa932009-03-30 15:28:25 +0530925 DPRINTF(sc, ATH_DBG_FATAL,
926 "Failed to initialize MAC address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700927 goto bad;
928 }
929
930 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530931 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700932 else
Sujith2660b812009-02-09 13:27:26 +0530933 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700934
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700935 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700936
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700937 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700938bad:
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700939 ath9k_hw_detach(ah);
940 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700941}
942
Sujithcbe61d82009-02-09 13:27:12 +0530943static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530944 struct ath9k_channel *chan)
945{
946 u32 synthDelay;
947
948 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530949 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530950 synthDelay = (4 * synthDelay) / 22;
951 else
952 synthDelay /= 10;
953
954 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
955
956 udelay(synthDelay + BASE_ACTIVATE_DELAY);
957}
958
Sujithcbe61d82009-02-09 13:27:12 +0530959static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530960{
961 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
962 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
963
964 REG_WRITE(ah, AR_QOS_NO_ACK,
965 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
966 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
967 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
968
969 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
970 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
971 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
972 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
973 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
974}
975
Sujithcbe61d82009-02-09 13:27:12 +0530976static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530977 struct ath9k_channel *chan)
978{
979 u32 pll;
980
981 if (AR_SREV_9100(ah)) {
982 if (chan && IS_CHAN_5GHZ(chan))
983 pll = 0x1450;
984 else
985 pll = 0x1458;
986 } else {
987 if (AR_SREV_9280_10_OR_LATER(ah)) {
988 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
989
990 if (chan && IS_CHAN_HALF_RATE(chan))
991 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
992 else if (chan && IS_CHAN_QUARTER_RATE(chan))
993 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
994
995 if (chan && IS_CHAN_5GHZ(chan)) {
996 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
997
998
999 if (AR_SREV_9280_20(ah)) {
1000 if (((chan->channel % 20) == 0)
1001 || ((chan->channel % 10) == 0))
1002 pll = 0x2850;
1003 else
1004 pll = 0x142c;
1005 }
1006 } else {
1007 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1008 }
1009
1010 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1011
1012 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1013
1014 if (chan && IS_CHAN_HALF_RATE(chan))
1015 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1016 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1017 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1018
1019 if (chan && IS_CHAN_5GHZ(chan))
1020 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1021 else
1022 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1023 } else {
1024 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1025
1026 if (chan && IS_CHAN_HALF_RATE(chan))
1027 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1028 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1029 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1030
1031 if (chan && IS_CHAN_5GHZ(chan))
1032 pll |= SM(0xa, AR_RTC_PLL_DIV);
1033 else
1034 pll |= SM(0xb, AR_RTC_PLL_DIV);
1035 }
1036 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001037 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301038
1039 udelay(RTC_PLL_SETTLE_DELAY);
1040
1041 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1042}
1043
Sujithcbe61d82009-02-09 13:27:12 +05301044static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301045{
Sujithf1dc5602008-10-29 10:16:30 +05301046 int rx_chainmask, tx_chainmask;
1047
Sujith2660b812009-02-09 13:27:26 +05301048 rx_chainmask = ah->rxchainmask;
1049 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301050
1051 switch (rx_chainmask) {
1052 case 0x5:
1053 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1054 AR_PHY_SWAP_ALT_CHAIN);
1055 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301056 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301057 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1058 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1059 break;
1060 }
1061 case 0x1:
1062 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301063 case 0x7:
1064 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1065 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1066 break;
1067 default:
1068 break;
1069 }
1070
1071 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1072 if (tx_chainmask == 0x5) {
1073 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1074 AR_PHY_SWAP_ALT_CHAIN);
1075 }
1076 if (AR_SREV_9100(ah))
1077 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1078 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1079}
1080
Sujithcbe61d82009-02-09 13:27:12 +05301081static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001082 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301083{
Sujith2660b812009-02-09 13:27:26 +05301084 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301085 AR_IMR_TXURN |
1086 AR_IMR_RXERR |
1087 AR_IMR_RXORN |
1088 AR_IMR_BCNMISC;
1089
Sujith0ef1f162009-03-30 15:28:35 +05301090 if (ah->config.intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301091 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301092 else
Sujith2660b812009-02-09 13:27:26 +05301093 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301094
Sujith2660b812009-02-09 13:27:26 +05301095 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301096
Colin McCabed97809d2008-12-01 13:38:55 -08001097 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301098 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301099
Sujith2660b812009-02-09 13:27:26 +05301100 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301101 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1102
1103 if (!AR_SREV_9100(ah)) {
1104 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1105 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1106 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1107 }
1108}
1109
Sujithcbe61d82009-02-09 13:27:12 +05301110static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301111{
Sujithf1dc5602008-10-29 10:16:30 +05301112 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd4632008-11-28 22:18:05 +05301113 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301114 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301115 return false;
1116 } else {
1117 REG_RMW_FIELD(ah, AR_TIME_OUT,
1118 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301119 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301120 return true;
1121 }
1122}
1123
Sujithcbe61d82009-02-09 13:27:12 +05301124static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301125{
Sujithf1dc5602008-10-29 10:16:30 +05301126 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd4632008-11-28 22:18:05 +05301127 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301128 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301129 return false;
1130 } else {
1131 REG_RMW_FIELD(ah, AR_TIME_OUT,
1132 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301133 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301134 return true;
1135 }
1136}
1137
Sujithcbe61d82009-02-09 13:27:12 +05301138static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301139{
Sujithf1dc5602008-10-29 10:16:30 +05301140 if (tu > 0xFFFF) {
1141 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301142 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301143 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301144 return false;
1145 } else {
1146 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301147 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301148 return true;
1149 }
1150}
1151
Sujithcbe61d82009-02-09 13:27:12 +05301152static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301153{
Sujith2660b812009-02-09 13:27:26 +05301154 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1155 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301156
Sujith2660b812009-02-09 13:27:26 +05301157 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301158 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301159 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1160 if (ah->slottime != (u32) -1)
1161 ath9k_hw_setslottime(ah, ah->slottime);
1162 if (ah->acktimeout != (u32) -1)
1163 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1164 if (ah->ctstimeout != (u32) -1)
1165 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1166 if (ah->globaltxtimeout != (u32) -1)
1167 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301168}
1169
1170const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1171{
1172 return vendorid == ATHEROS_VENDOR_ID ?
1173 ath9k_hw_devname(devid) : NULL;
1174}
1175
Sujithcbe61d82009-02-09 13:27:12 +05301176void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001177{
1178 if (!AR_SREV_9100(ah))
1179 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001180
Sujithf1dc5602008-10-29 10:16:30 +05301181 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001182 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1183 kfree(ah);
1184}
1185
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -07001186int ath9k_hw_attach(struct ath_hw *ah, struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001187{
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -07001188 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301189 case AR5416_DEVID_PCI:
1190 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001191 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301192 case AR9160_DEVID_PCI:
1193 case AR9280_DEVID_PCI:
1194 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301195 case AR9285_DEVID_PCIE:
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301196 case AR5416_DEVID_AR9287_PCI:
1197 case AR5416_DEVID_AR9287_PCIE:
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -07001198 return ath9k_hw_do_attach(ah, sc);
Sujithf1dc5602008-10-29 10:16:30 +05301199 default:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200 break;
1201 }
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001202 return -EOPNOTSUPP;
Sujithf1dc5602008-10-29 10:16:30 +05301203}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204
Sujithf1dc5602008-10-29 10:16:30 +05301205/*******/
1206/* INI */
1207/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208
Sujithcbe61d82009-02-09 13:27:12 +05301209static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301210 struct ath9k_channel *chan)
1211{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301212 /*
1213 * Set the RX_ABORT and RX_DIS and clear if off only after
1214 * RXE is set for MAC. This prevents frames with corrupted
1215 * descriptor status.
1216 */
1217 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1218
1219
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001220 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301221 AR_SREV_9280_10_OR_LATER(ah))
1222 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001223
Sujithf1dc5602008-10-29 10:16:30 +05301224 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1225}
1226
Sujithcbe61d82009-02-09 13:27:12 +05301227static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301228 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301229 u32 reg, u32 value)
1230{
1231 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1232
Sujithd535a422009-02-09 13:27:06 +05301233 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301234 case AR9280_DEVID_PCI:
1235 if (reg == 0x7894) {
Sujithd8baa932009-03-30 15:28:25 +05301236 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301237 "ini VAL: %x EEPROM: %x\n", value,
1238 (pBase->version & 0xff));
1239
1240 if ((pBase->version & 0xff) > 0x0a) {
Sujithd8baa932009-03-30 15:28:25 +05301241 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301242 "PWDCLKIND: %d\n",
1243 pBase->pwdclkind);
1244 value &= ~AR_AN_TOP2_PWDCLKIND;
1245 value |= AR_AN_TOP2_PWDCLKIND &
1246 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1247 } else {
Sujithd8baa932009-03-30 15:28:25 +05301248 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301249 "PWDCLKIND Earlier Rev\n");
1250 }
1251
Sujithd8baa932009-03-30 15:28:25 +05301252 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301253 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001254 }
Sujithf1dc5602008-10-29 10:16:30 +05301255 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256 }
1257
Sujithf1dc5602008-10-29 10:16:30 +05301258 return value;
1259}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001260
Sujithcbe61d82009-02-09 13:27:12 +05301261static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301262 struct ar5416_eeprom_def *pEepData,
1263 u32 reg, u32 value)
1264{
Sujith2660b812009-02-09 13:27:26 +05301265 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301266 return value;
1267 else
1268 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1269}
1270
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301271static void ath9k_olc_init(struct ath_hw *ah)
1272{
1273 u32 i;
1274
1275 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1276 ah->originalGain[i] =
1277 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1278 AR_PHY_TX_GAIN);
1279 ah->PDADCdelta = 0;
1280}
1281
Bob Copeland3a702e42009-03-30 22:30:29 -04001282static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1283 struct ath9k_channel *chan)
1284{
1285 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1286
1287 if (IS_CHAN_B(chan))
1288 ctl |= CTL_11B;
1289 else if (IS_CHAN_G(chan))
1290 ctl |= CTL_11G;
1291 else
1292 ctl |= CTL_11A;
1293
1294 return ctl;
1295}
1296
Sujithcbe61d82009-02-09 13:27:12 +05301297static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301298 struct ath9k_channel *chan,
1299 enum ath9k_ht_macmode macmode)
1300{
1301 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001302 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301303 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001304
Sujithf1dc5602008-10-29 10:16:30 +05301305 switch (chan->chanmode) {
1306 case CHANNEL_A:
1307 case CHANNEL_A_HT20:
1308 modesIndex = 1;
1309 freqIndex = 1;
1310 break;
1311 case CHANNEL_A_HT40PLUS:
1312 case CHANNEL_A_HT40MINUS:
1313 modesIndex = 2;
1314 freqIndex = 1;
1315 break;
1316 case CHANNEL_G:
1317 case CHANNEL_G_HT20:
1318 case CHANNEL_B:
1319 modesIndex = 4;
1320 freqIndex = 2;
1321 break;
1322 case CHANNEL_G_HT40PLUS:
1323 case CHANNEL_G_HT40MINUS:
1324 modesIndex = 3;
1325 freqIndex = 2;
1326 break;
1327
1328 default:
1329 return -EINVAL;
1330 }
1331
1332 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301333 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301334 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301335
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001336 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301337 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301338 } else {
1339 struct ar5416IniArray temp;
1340 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301341 sizeof(u32) * ah->iniAddac.ia_rows *
1342 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301343
Sujith2660b812009-02-09 13:27:26 +05301344 memcpy(ah->addac5416_21,
1345 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301346
Sujith2660b812009-02-09 13:27:26 +05301347 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301348
Sujith2660b812009-02-09 13:27:26 +05301349 temp.ia_array = ah->addac5416_21;
1350 temp.ia_columns = ah->iniAddac.ia_columns;
1351 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301352 REG_WRITE_ARRAY(&temp, 1, regWrites);
1353 }
1354
1355 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1356
Sujith2660b812009-02-09 13:27:26 +05301357 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1358 u32 reg = INI_RA(&ah->iniModes, i, 0);
1359 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301360
Sujithf1dc5602008-10-29 10:16:30 +05301361 REG_WRITE(ah, reg, val);
1362
1363 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301364 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301365 udelay(100);
1366 }
1367
1368 DO_DELAY(regWrites);
1369 }
1370
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301371 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301372 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301373
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301374 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1375 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301376 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301377
Sujith2660b812009-02-09 13:27:26 +05301378 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1379 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1380 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301381
1382 REG_WRITE(ah, reg, val);
1383
1384 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301385 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301386 udelay(100);
1387 }
1388
1389 DO_DELAY(regWrites);
1390 }
1391
1392 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1393
1394 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301395 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301396 regWrites);
1397 }
1398
1399 ath9k_hw_override_ini(ah, chan);
1400 ath9k_hw_set_regs(ah, chan, macmode);
1401 ath9k_hw_init_chain_masks(ah);
1402
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301403 if (OLC_FOR_AR9280_20_LATER)
1404 ath9k_olc_init(ah);
1405
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001406 ah->eep_ops->set_txpower(ah, chan,
1407 ath9k_regd_get_ctl(&ah->regulatory, chan),
1408 channel->max_antenna_gain * 2,
1409 channel->max_power * 2,
1410 min((u32) MAX_RATE_POWER,
1411 (u32) ah->regulatory.power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001412
Sujithf1dc5602008-10-29 10:16:30 +05301413 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Sujithd8baa932009-03-30 15:28:25 +05301414 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301415 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001416 return -EIO;
1417 }
1418
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419 return 0;
1420}
1421
Sujithf1dc5602008-10-29 10:16:30 +05301422/****************************************/
1423/* Reset and Channel Switching Routines */
1424/****************************************/
1425
Sujithcbe61d82009-02-09 13:27:12 +05301426static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301427{
1428 u32 rfMode = 0;
1429
1430 if (chan == NULL)
1431 return;
1432
1433 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1434 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1435
1436 if (!AR_SREV_9280_10_OR_LATER(ah))
1437 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1438 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1439
1440 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1441 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1442
1443 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1444}
1445
Sujithcbe61d82009-02-09 13:27:12 +05301446static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301447{
1448 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1449}
1450
Sujithcbe61d82009-02-09 13:27:12 +05301451static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301452{
1453 u32 regval;
1454
1455 regval = REG_READ(ah, AR_AHB_MODE);
1456 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1457
1458 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1459 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1460
Sujith2660b812009-02-09 13:27:26 +05301461 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301462
1463 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1464 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1465
1466 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1467
1468 if (AR_SREV_9285(ah)) {
1469 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1470 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1471 } else {
1472 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1473 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1474 }
1475}
1476
Sujithcbe61d82009-02-09 13:27:12 +05301477static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301478{
1479 u32 val;
1480
1481 val = REG_READ(ah, AR_STA_ID1);
1482 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1483 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001484 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301485 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1486 | AR_STA_ID1_KSRCH_MODE);
1487 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1488 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001489 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001490 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301491 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1492 | AR_STA_ID1_KSRCH_MODE);
1493 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1494 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001495 case NL80211_IFTYPE_STATION:
1496 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301497 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1498 break;
1499 }
1500}
1501
Sujithcbe61d82009-02-09 13:27:12 +05301502static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001503 u32 coef_scaled,
1504 u32 *coef_mantissa,
1505 u32 *coef_exponent)
1506{
1507 u32 coef_exp, coef_man;
1508
1509 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1510 if ((coef_scaled >> coef_exp) & 0x1)
1511 break;
1512
1513 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1514
1515 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1516
1517 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1518 *coef_exponent = coef_exp - 16;
1519}
1520
Sujithcbe61d82009-02-09 13:27:12 +05301521static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301522 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001523{
1524 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1525 u32 clockMhzScaled = 0x64000000;
1526 struct chan_centers centers;
1527
1528 if (IS_CHAN_HALF_RATE(chan))
1529 clockMhzScaled = clockMhzScaled >> 1;
1530 else if (IS_CHAN_QUARTER_RATE(chan))
1531 clockMhzScaled = clockMhzScaled >> 2;
1532
1533 ath9k_hw_get_channel_centers(ah, chan, &centers);
1534 coef_scaled = clockMhzScaled / centers.synth_center;
1535
1536 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1537 &ds_coef_exp);
1538
1539 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1540 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1541 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1542 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1543
1544 coef_scaled = (9 * coef_scaled) / 10;
1545
1546 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1547 &ds_coef_exp);
1548
1549 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1550 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1551 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1552 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1553}
1554
Sujithcbe61d82009-02-09 13:27:12 +05301555static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301556{
1557 u32 rst_flags;
1558 u32 tmpReg;
1559
Sujith70768492009-02-16 13:23:12 +05301560 if (AR_SREV_9100(ah)) {
1561 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1562 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1563 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1564 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1565 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1566 }
1567
Sujithf1dc5602008-10-29 10:16:30 +05301568 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1569 AR_RTC_FORCE_WAKE_ON_INT);
1570
1571 if (AR_SREV_9100(ah)) {
1572 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1573 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1574 } else {
1575 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1576 if (tmpReg &
1577 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1578 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1579 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1580 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1581 } else {
1582 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1583 }
1584
1585 rst_flags = AR_RTC_RC_MAC_WARM;
1586 if (type == ATH9K_RESET_COLD)
1587 rst_flags |= AR_RTC_RC_MAC_COLD;
1588 }
1589
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001590 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301591 udelay(50);
1592
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001593 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301594 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301595 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301596 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301597 return false;
1598 }
1599
1600 if (!AR_SREV_9100(ah))
1601 REG_WRITE(ah, AR_RC, 0);
1602
1603 ath9k_hw_init_pll(ah, NULL);
1604
1605 if (AR_SREV_9100(ah))
1606 udelay(50);
1607
1608 return true;
1609}
1610
Sujithcbe61d82009-02-09 13:27:12 +05301611static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301612{
1613 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1614 AR_RTC_FORCE_WAKE_ON_INT);
1615
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001616 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301617 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001618 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301619
1620 if (!ath9k_hw_wait(ah,
1621 AR_RTC_STATUS,
1622 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301623 AR_RTC_STATUS_ON,
1624 AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301625 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301626 return false;
1627 }
1628
1629 ath9k_hw_read_revisions(ah);
1630
1631 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1632}
1633
Sujithcbe61d82009-02-09 13:27:12 +05301634static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301635{
1636 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1637 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1638
1639 switch (type) {
1640 case ATH9K_RESET_POWER_ON:
1641 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301642 case ATH9K_RESET_WARM:
1643 case ATH9K_RESET_COLD:
1644 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301645 default:
1646 return false;
1647 }
1648}
1649
Sujithcbe61d82009-02-09 13:27:12 +05301650static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301651 enum ath9k_ht_macmode macmode)
1652{
1653 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301654 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301655
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301656 if (AR_SREV_9285_10_OR_LATER(ah))
1657 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1658 AR_PHY_FC_ENABLE_DAC_FIFO);
1659
Sujithf1dc5602008-10-29 10:16:30 +05301660 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301661 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301662
1663 if (IS_CHAN_HT40(chan)) {
1664 phymode |= AR_PHY_FC_DYN2040_EN;
1665
1666 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1667 (chan->chanmode == CHANNEL_G_HT40PLUS))
1668 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1669
Sujith2660b812009-02-09 13:27:26 +05301670 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301671 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1672 }
1673 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1674
1675 ath9k_hw_set11nmac2040(ah, macmode);
1676
1677 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1678 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1679}
1680
Sujithcbe61d82009-02-09 13:27:12 +05301681static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301682 struct ath9k_channel *chan)
1683{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301684 if (OLC_FOR_AR9280_20_LATER) {
1685 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1686 return false;
1687 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301688 return false;
1689
1690 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1691 return false;
1692
Sujith2660b812009-02-09 13:27:26 +05301693 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301694 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301695 ath9k_hw_set_rfmode(ah, chan);
1696
1697 return true;
1698}
1699
Sujithcbe61d82009-02-09 13:27:12 +05301700static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301701 struct ath9k_channel *chan,
1702 enum ath9k_ht_macmode macmode)
1703{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001704 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301705 u32 synthDelay, qnum;
1706
1707 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1708 if (ath9k_hw_numtxpending(ah, qnum)) {
1709 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301710 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301711 return false;
1712 }
1713 }
1714
1715 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1716 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301717 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujithd8baa932009-03-30 15:28:25 +05301718 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301719 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301720 return false;
1721 }
1722
1723 ath9k_hw_set_regs(ah, chan, macmode);
1724
1725 if (AR_SREV_9280_10_OR_LATER(ah)) {
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001726 ath9k_hw_ar9280_set_channel(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301727 } else {
1728 if (!(ath9k_hw_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301729 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1730 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301731 return false;
1732 }
1733 }
1734
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001735 ah->eep_ops->set_txpower(ah, chan,
Bob Copelandc02cf372009-03-30 22:30:28 -04001736 ath9k_regd_get_ctl(&ah->regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301737 channel->max_antenna_gain * 2,
1738 channel->max_power * 2,
1739 min((u32) MAX_RATE_POWER,
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001740 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301741
1742 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301743 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301744 synthDelay = (4 * synthDelay) / 22;
1745 else
1746 synthDelay /= 10;
1747
1748 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1749
1750 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1751
1752 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1753 ath9k_hw_set_delta_slope(ah, chan);
1754
1755 if (AR_SREV_9280_10_OR_LATER(ah))
1756 ath9k_hw_9280_spur_mitigate(ah, chan);
1757 else
1758 ath9k_hw_spur_mitigate(ah, chan);
1759
1760 if (!chan->oneTimeCalsDone)
1761 chan->oneTimeCalsDone = true;
1762
1763 return true;
1764}
1765
Sujithcbe61d82009-02-09 13:27:12 +05301766static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001767{
1768 int bb_spur = AR_NO_SPUR;
1769 int freq;
1770 int bin, cur_bin;
1771 int bb_spur_off, spur_subchannel_sd;
1772 int spur_freq_sd;
1773 int spur_delta_phase;
1774 int denominator;
1775 int upper, lower, cur_vit_mask;
1776 int tmp, newVal;
1777 int i;
1778 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1779 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1780 };
1781 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1782 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1783 };
1784 int inc[4] = { 0, 100, 0, 0 };
1785 struct chan_centers centers;
1786
1787 int8_t mask_m[123];
1788 int8_t mask_p[123];
1789 int8_t mask_amt;
1790 int tmp_mask;
1791 int cur_bb_spur;
1792 bool is2GHz = IS_CHAN_2GHZ(chan);
1793
1794 memset(&mask_m, 0, sizeof(int8_t) * 123);
1795 memset(&mask_p, 0, sizeof(int8_t) * 123);
1796
1797 ath9k_hw_get_channel_centers(ah, chan, &centers);
1798 freq = centers.synth_center;
1799
Sujith2660b812009-02-09 13:27:26 +05301800 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301802 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803
1804 if (is2GHz)
1805 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1806 else
1807 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1808
1809 if (AR_NO_SPUR == cur_bb_spur)
1810 break;
1811 cur_bb_spur = cur_bb_spur - freq;
1812
1813 if (IS_CHAN_HT40(chan)) {
1814 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1815 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1816 bb_spur = cur_bb_spur;
1817 break;
1818 }
1819 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1820 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1821 bb_spur = cur_bb_spur;
1822 break;
1823 }
1824 }
1825
1826 if (AR_NO_SPUR == bb_spur) {
1827 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1828 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1829 return;
1830 } else {
1831 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1832 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1833 }
1834
1835 bin = bb_spur * 320;
1836
1837 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1838
1839 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1840 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1841 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1842 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1843 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1844
1845 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1846 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1847 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1848 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1849 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1850 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1851
1852 if (IS_CHAN_HT40(chan)) {
1853 if (bb_spur < 0) {
1854 spur_subchannel_sd = 1;
1855 bb_spur_off = bb_spur + 10;
1856 } else {
1857 spur_subchannel_sd = 0;
1858 bb_spur_off = bb_spur - 10;
1859 }
1860 } else {
1861 spur_subchannel_sd = 0;
1862 bb_spur_off = bb_spur;
1863 }
1864
1865 if (IS_CHAN_HT40(chan))
1866 spur_delta_phase =
1867 ((bb_spur * 262144) /
1868 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1869 else
1870 spur_delta_phase =
1871 ((bb_spur * 524288) /
1872 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1873
1874 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1875 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1876
1877 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1878 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1879 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1880 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1881
1882 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1883 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1884
1885 cur_bin = -6000;
1886 upper = bin + 100;
1887 lower = bin - 100;
1888
1889 for (i = 0; i < 4; i++) {
1890 int pilot_mask = 0;
1891 int chan_mask = 0;
1892 int bp = 0;
1893 for (bp = 0; bp < 30; bp++) {
1894 if ((cur_bin > lower) && (cur_bin < upper)) {
1895 pilot_mask = pilot_mask | 0x1 << bp;
1896 chan_mask = chan_mask | 0x1 << bp;
1897 }
1898 cur_bin += 100;
1899 }
1900 cur_bin += inc[i];
1901 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1902 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1903 }
1904
1905 cur_vit_mask = 6100;
1906 upper = bin + 120;
1907 lower = bin - 120;
1908
1909 for (i = 0; i < 123; i++) {
1910 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001911
1912 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001913 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001914
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001915 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001916 mask_amt = 1;
1917 else
1918 mask_amt = 0;
1919 if (cur_vit_mask < 0)
1920 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1921 else
1922 mask_p[cur_vit_mask / 100] = mask_amt;
1923 }
1924 cur_vit_mask -= 100;
1925 }
1926
1927 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1928 | (mask_m[48] << 26) | (mask_m[49] << 24)
1929 | (mask_m[50] << 22) | (mask_m[51] << 20)
1930 | (mask_m[52] << 18) | (mask_m[53] << 16)
1931 | (mask_m[54] << 14) | (mask_m[55] << 12)
1932 | (mask_m[56] << 10) | (mask_m[57] << 8)
1933 | (mask_m[58] << 6) | (mask_m[59] << 4)
1934 | (mask_m[60] << 2) | (mask_m[61] << 0);
1935 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1936 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1937
1938 tmp_mask = (mask_m[31] << 28)
1939 | (mask_m[32] << 26) | (mask_m[33] << 24)
1940 | (mask_m[34] << 22) | (mask_m[35] << 20)
1941 | (mask_m[36] << 18) | (mask_m[37] << 16)
1942 | (mask_m[48] << 14) | (mask_m[39] << 12)
1943 | (mask_m[40] << 10) | (mask_m[41] << 8)
1944 | (mask_m[42] << 6) | (mask_m[43] << 4)
1945 | (mask_m[44] << 2) | (mask_m[45] << 0);
1946 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1947 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1948
1949 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1950 | (mask_m[18] << 26) | (mask_m[18] << 24)
1951 | (mask_m[20] << 22) | (mask_m[20] << 20)
1952 | (mask_m[22] << 18) | (mask_m[22] << 16)
1953 | (mask_m[24] << 14) | (mask_m[24] << 12)
1954 | (mask_m[25] << 10) | (mask_m[26] << 8)
1955 | (mask_m[27] << 6) | (mask_m[28] << 4)
1956 | (mask_m[29] << 2) | (mask_m[30] << 0);
1957 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1958 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1959
1960 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1961 | (mask_m[2] << 26) | (mask_m[3] << 24)
1962 | (mask_m[4] << 22) | (mask_m[5] << 20)
1963 | (mask_m[6] << 18) | (mask_m[7] << 16)
1964 | (mask_m[8] << 14) | (mask_m[9] << 12)
1965 | (mask_m[10] << 10) | (mask_m[11] << 8)
1966 | (mask_m[12] << 6) | (mask_m[13] << 4)
1967 | (mask_m[14] << 2) | (mask_m[15] << 0);
1968 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1969 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1970
1971 tmp_mask = (mask_p[15] << 28)
1972 | (mask_p[14] << 26) | (mask_p[13] << 24)
1973 | (mask_p[12] << 22) | (mask_p[11] << 20)
1974 | (mask_p[10] << 18) | (mask_p[9] << 16)
1975 | (mask_p[8] << 14) | (mask_p[7] << 12)
1976 | (mask_p[6] << 10) | (mask_p[5] << 8)
1977 | (mask_p[4] << 6) | (mask_p[3] << 4)
1978 | (mask_p[2] << 2) | (mask_p[1] << 0);
1979 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1980 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1981
1982 tmp_mask = (mask_p[30] << 28)
1983 | (mask_p[29] << 26) | (mask_p[28] << 24)
1984 | (mask_p[27] << 22) | (mask_p[26] << 20)
1985 | (mask_p[25] << 18) | (mask_p[24] << 16)
1986 | (mask_p[23] << 14) | (mask_p[22] << 12)
1987 | (mask_p[21] << 10) | (mask_p[20] << 8)
1988 | (mask_p[19] << 6) | (mask_p[18] << 4)
1989 | (mask_p[17] << 2) | (mask_p[16] << 0);
1990 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1991 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1992
1993 tmp_mask = (mask_p[45] << 28)
1994 | (mask_p[44] << 26) | (mask_p[43] << 24)
1995 | (mask_p[42] << 22) | (mask_p[41] << 20)
1996 | (mask_p[40] << 18) | (mask_p[39] << 16)
1997 | (mask_p[38] << 14) | (mask_p[37] << 12)
1998 | (mask_p[36] << 10) | (mask_p[35] << 8)
1999 | (mask_p[34] << 6) | (mask_p[33] << 4)
2000 | (mask_p[32] << 2) | (mask_p[31] << 0);
2001 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2002 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2003
2004 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2005 | (mask_p[59] << 26) | (mask_p[58] << 24)
2006 | (mask_p[57] << 22) | (mask_p[56] << 20)
2007 | (mask_p[55] << 18) | (mask_p[54] << 16)
2008 | (mask_p[53] << 14) | (mask_p[52] << 12)
2009 | (mask_p[51] << 10) | (mask_p[50] << 8)
2010 | (mask_p[49] << 6) | (mask_p[48] << 4)
2011 | (mask_p[47] << 2) | (mask_p[46] << 0);
2012 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2013 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2014}
2015
Sujithcbe61d82009-02-09 13:27:12 +05302016static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002017{
2018 int bb_spur = AR_NO_SPUR;
2019 int bin, cur_bin;
2020 int spur_freq_sd;
2021 int spur_delta_phase;
2022 int denominator;
2023 int upper, lower, cur_vit_mask;
2024 int tmp, new;
2025 int i;
2026 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2027 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2028 };
2029 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2030 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2031 };
2032 int inc[4] = { 0, 100, 0, 0 };
2033
2034 int8_t mask_m[123];
2035 int8_t mask_p[123];
2036 int8_t mask_amt;
2037 int tmp_mask;
2038 int cur_bb_spur;
2039 bool is2GHz = IS_CHAN_2GHZ(chan);
2040
2041 memset(&mask_m, 0, sizeof(int8_t) * 123);
2042 memset(&mask_p, 0, sizeof(int8_t) * 123);
2043
2044 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302045 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002046 if (AR_NO_SPUR == cur_bb_spur)
2047 break;
2048 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2049 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2050 bb_spur = cur_bb_spur;
2051 break;
2052 }
2053 }
2054
2055 if (AR_NO_SPUR == bb_spur)
2056 return;
2057
2058 bin = bb_spur * 32;
2059
2060 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2061 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2062 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2063 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2064 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2065
2066 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2067
2068 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2069 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2070 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2071 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2072 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2073 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2074
2075 spur_delta_phase = ((bb_spur * 524288) / 100) &
2076 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2077
2078 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2079 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2080
2081 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2082 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2083 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2084 REG_WRITE(ah, AR_PHY_TIMING11, new);
2085
2086 cur_bin = -6000;
2087 upper = bin + 100;
2088 lower = bin - 100;
2089
2090 for (i = 0; i < 4; i++) {
2091 int pilot_mask = 0;
2092 int chan_mask = 0;
2093 int bp = 0;
2094 for (bp = 0; bp < 30; bp++) {
2095 if ((cur_bin > lower) && (cur_bin < upper)) {
2096 pilot_mask = pilot_mask | 0x1 << bp;
2097 chan_mask = chan_mask | 0x1 << bp;
2098 }
2099 cur_bin += 100;
2100 }
2101 cur_bin += inc[i];
2102 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2103 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2104 }
2105
2106 cur_vit_mask = 6100;
2107 upper = bin + 120;
2108 lower = bin - 120;
2109
2110 for (i = 0; i < 123; i++) {
2111 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002112
2113 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002114 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002115
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002116 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002117 mask_amt = 1;
2118 else
2119 mask_amt = 0;
2120 if (cur_vit_mask < 0)
2121 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2122 else
2123 mask_p[cur_vit_mask / 100] = mask_amt;
2124 }
2125 cur_vit_mask -= 100;
2126 }
2127
2128 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2129 | (mask_m[48] << 26) | (mask_m[49] << 24)
2130 | (mask_m[50] << 22) | (mask_m[51] << 20)
2131 | (mask_m[52] << 18) | (mask_m[53] << 16)
2132 | (mask_m[54] << 14) | (mask_m[55] << 12)
2133 | (mask_m[56] << 10) | (mask_m[57] << 8)
2134 | (mask_m[58] << 6) | (mask_m[59] << 4)
2135 | (mask_m[60] << 2) | (mask_m[61] << 0);
2136 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2137 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2138
2139 tmp_mask = (mask_m[31] << 28)
2140 | (mask_m[32] << 26) | (mask_m[33] << 24)
2141 | (mask_m[34] << 22) | (mask_m[35] << 20)
2142 | (mask_m[36] << 18) | (mask_m[37] << 16)
2143 | (mask_m[48] << 14) | (mask_m[39] << 12)
2144 | (mask_m[40] << 10) | (mask_m[41] << 8)
2145 | (mask_m[42] << 6) | (mask_m[43] << 4)
2146 | (mask_m[44] << 2) | (mask_m[45] << 0);
2147 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2148 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2149
2150 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2151 | (mask_m[18] << 26) | (mask_m[18] << 24)
2152 | (mask_m[20] << 22) | (mask_m[20] << 20)
2153 | (mask_m[22] << 18) | (mask_m[22] << 16)
2154 | (mask_m[24] << 14) | (mask_m[24] << 12)
2155 | (mask_m[25] << 10) | (mask_m[26] << 8)
2156 | (mask_m[27] << 6) | (mask_m[28] << 4)
2157 | (mask_m[29] << 2) | (mask_m[30] << 0);
2158 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2159 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2160
2161 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2162 | (mask_m[2] << 26) | (mask_m[3] << 24)
2163 | (mask_m[4] << 22) | (mask_m[5] << 20)
2164 | (mask_m[6] << 18) | (mask_m[7] << 16)
2165 | (mask_m[8] << 14) | (mask_m[9] << 12)
2166 | (mask_m[10] << 10) | (mask_m[11] << 8)
2167 | (mask_m[12] << 6) | (mask_m[13] << 4)
2168 | (mask_m[14] << 2) | (mask_m[15] << 0);
2169 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2170 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2171
2172 tmp_mask = (mask_p[15] << 28)
2173 | (mask_p[14] << 26) | (mask_p[13] << 24)
2174 | (mask_p[12] << 22) | (mask_p[11] << 20)
2175 | (mask_p[10] << 18) | (mask_p[9] << 16)
2176 | (mask_p[8] << 14) | (mask_p[7] << 12)
2177 | (mask_p[6] << 10) | (mask_p[5] << 8)
2178 | (mask_p[4] << 6) | (mask_p[3] << 4)
2179 | (mask_p[2] << 2) | (mask_p[1] << 0);
2180 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2181 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2182
2183 tmp_mask = (mask_p[30] << 28)
2184 | (mask_p[29] << 26) | (mask_p[28] << 24)
2185 | (mask_p[27] << 22) | (mask_p[26] << 20)
2186 | (mask_p[25] << 18) | (mask_p[24] << 16)
2187 | (mask_p[23] << 14) | (mask_p[22] << 12)
2188 | (mask_p[21] << 10) | (mask_p[20] << 8)
2189 | (mask_p[19] << 6) | (mask_p[18] << 4)
2190 | (mask_p[17] << 2) | (mask_p[16] << 0);
2191 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2192 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2193
2194 tmp_mask = (mask_p[45] << 28)
2195 | (mask_p[44] << 26) | (mask_p[43] << 24)
2196 | (mask_p[42] << 22) | (mask_p[41] << 20)
2197 | (mask_p[40] << 18) | (mask_p[39] << 16)
2198 | (mask_p[38] << 14) | (mask_p[37] << 12)
2199 | (mask_p[36] << 10) | (mask_p[35] << 8)
2200 | (mask_p[34] << 6) | (mask_p[33] << 4)
2201 | (mask_p[32] << 2) | (mask_p[31] << 0);
2202 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2203 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2204
2205 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2206 | (mask_p[59] << 26) | (mask_p[58] << 24)
2207 | (mask_p[57] << 22) | (mask_p[56] << 20)
2208 | (mask_p[55] << 18) | (mask_p[54] << 16)
2209 | (mask_p[53] << 14) | (mask_p[52] << 12)
2210 | (mask_p[51] << 10) | (mask_p[50] << 8)
2211 | (mask_p[49] << 6) | (mask_p[48] << 4)
2212 | (mask_p[47] << 2) | (mask_p[46] << 0);
2213 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2214 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2215}
2216
Johannes Berg3b319aa2009-06-13 14:50:26 +05302217static void ath9k_enable_rfkill(struct ath_hw *ah)
2218{
2219 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2220 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2221
2222 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2223 AR_GPIO_INPUT_MUX2_RFSILENT);
2224
2225 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2226 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2227}
2228
Sujithcbe61d82009-02-09 13:27:12 +05302229int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002230 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002231{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002232 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002233 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302234 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002235 u32 saveDefAntenna;
2236 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002237 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238
Sujith2660b812009-02-09 13:27:26 +05302239 ah->extprotspacing = sc->ht_extprotspacing;
2240 ah->txchainmask = sc->tx_chainmask;
2241 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002243 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2244 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002245
2246 if (curchan)
2247 ath9k_hw_getnf(ah, curchan);
2248
2249 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302250 (ah->chip_fullsleep != true) &&
2251 (ah->curchan != NULL) &&
2252 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302254 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002255 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302256 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002258 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302259 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002260 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002261 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002262 }
2263 }
2264
2265 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2266 if (saveDefAntenna == 0)
2267 saveDefAntenna = 1;
2268
2269 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2270
2271 saveLedState = REG_READ(ah, AR_CFG_LED) &
2272 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2273 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2274
2275 ath9k_hw_mark_phy_inactive(ah);
2276
2277 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujithd8baa932009-03-30 15:28:25 +05302278 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002279 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 }
2281
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302282 if (AR_SREV_9280_10_OR_LATER(ah))
2283 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002284
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302285 if (AR_SREV_9287_10_OR_LATER(ah)) {
2286 /* Enable ASYNC FIFO */
2287 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2288 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2289 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2290 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2291 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2292 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2293 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2294 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002295 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2296 if (r)
2297 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002298
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002299 /* Setup MFP options for CCMP */
2300 if (AR_SREV_9280_20_OR_LATER(ah)) {
2301 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2302 * frames when constructing CCMP AAD. */
2303 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2304 0xc7ff);
2305 ah->sw_mgmt_crypto = false;
2306 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2307 /* Disable hardware crypto for management frames */
2308 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2309 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2310 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2311 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2312 ah->sw_mgmt_crypto = true;
2313 } else
2314 ah->sw_mgmt_crypto = true;
2315
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002316 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2317 ath9k_hw_set_delta_slope(ah, chan);
2318
2319 if (AR_SREV_9280_10_OR_LATER(ah))
2320 ath9k_hw_9280_spur_mitigate(ah, chan);
2321 else
2322 ath9k_hw_spur_mitigate(ah, chan);
2323
Sujithd6509152009-03-13 08:56:05 +05302324 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002325
2326 ath9k_hw_decrease_chain_power(ah, chan);
2327
Sujithba52da52009-02-09 13:27:10 +05302328 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2329 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002330 | macStaId1
2331 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302332 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302333 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302334 | ah->sta_id1_defaults);
2335 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002336
Sujithba52da52009-02-09 13:27:10 +05302337 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2338 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339
2340 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2341
Sujithba52da52009-02-09 13:27:10 +05302342 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2343 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2344 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002345
2346 REG_WRITE(ah, AR_ISR, ~0);
2347
2348 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2349
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002350 if (AR_SREV_9280_10_OR_LATER(ah))
2351 ath9k_hw_ar9280_set_channel(ah, chan);
2352 else
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002353 if (!(ath9k_hw_set_channel(ah, chan)))
2354 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355
2356 for (i = 0; i < AR_NUM_DCU; i++)
2357 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2358
Sujith2660b812009-02-09 13:27:26 +05302359 ah->intr_txqs = 0;
2360 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002361 ath9k_hw_resettxqueue(ah, i);
2362
Sujith2660b812009-02-09 13:27:26 +05302363 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364 ath9k_hw_init_qos(ah);
2365
Sujith2660b812009-02-09 13:27:26 +05302366 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302367 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302368
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002369 ath9k_hw_init_user_settings(ah);
2370
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302371 if (AR_SREV_9287_10_OR_LATER(ah)) {
2372 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2373 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2374 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2375 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2376 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2377 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2378
2379 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2380 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2381
2382 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2383 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2384 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2385 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2386 }
2387 if (AR_SREV_9287_10_OR_LATER(ah)) {
2388 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2389 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2390 }
2391
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002392 REG_WRITE(ah, AR_STA_ID1,
2393 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2394
2395 ath9k_hw_set_dma(ah);
2396
2397 REG_WRITE(ah, AR_OBS, 8);
2398
Sujith0ef1f162009-03-30 15:28:35 +05302399 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002400 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2401 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2402 }
2403
2404 ath9k_hw_init_bb(ah, chan);
2405
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002406 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002407 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002408
Sujith2660b812009-02-09 13:27:26 +05302409 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2411 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2412 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2413 }
2414
2415 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2416
2417 if (AR_SREV_9100(ah)) {
2418 u32 mask;
2419 mask = REG_READ(ah, AR_CFG);
2420 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2421 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302422 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423 } else {
2424 mask =
2425 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2426 REG_WRITE(ah, AR_CFG, mask);
2427 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302428 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429 }
2430 } else {
2431#ifdef __BIG_ENDIAN
2432 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2433#endif
2434 }
2435
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002436 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437}
2438
Sujithf1dc5602008-10-29 10:16:30 +05302439/************************/
2440/* Key Cache Management */
2441/************************/
2442
Sujithcbe61d82009-02-09 13:27:12 +05302443bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002444{
Sujithf1dc5602008-10-29 10:16:30 +05302445 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002446
Sujith2660b812009-02-09 13:27:26 +05302447 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302448 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2449 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002450 return false;
2451 }
2452
Sujithf1dc5602008-10-29 10:16:30 +05302453 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454
Sujithf1dc5602008-10-29 10:16:30 +05302455 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2456 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2457 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2458 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2459 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2460 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2461 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2462 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2463
2464 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2465 u16 micentry = entry + 64;
2466
2467 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2468 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2469 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2470 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2471
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002472 }
2473
Sujith2660b812009-02-09 13:27:26 +05302474 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302475 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476
2477 return true;
2478}
2479
Sujithcbe61d82009-02-09 13:27:12 +05302480bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002481{
Sujithf1dc5602008-10-29 10:16:30 +05302482 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483
Sujith2660b812009-02-09 13:27:26 +05302484 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302485 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2486 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002487 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 }
2489
Sujithf1dc5602008-10-29 10:16:30 +05302490 if (mac != NULL) {
2491 macHi = (mac[5] << 8) | mac[4];
2492 macLo = (mac[3] << 24) |
2493 (mac[2] << 16) |
2494 (mac[1] << 8) |
2495 mac[0];
2496 macLo >>= 1;
2497 macLo |= (macHi & 1) << 31;
2498 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002499 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302500 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002501 }
Sujithf1dc5602008-10-29 10:16:30 +05302502 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2503 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504
2505 return true;
2506}
2507
Sujithcbe61d82009-02-09 13:27:12 +05302508bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302509 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002510 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002511{
Sujith2660b812009-02-09 13:27:26 +05302512 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302513 u32 key0, key1, key2, key3, key4;
2514 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002515
Sujithf1dc5602008-10-29 10:16:30 +05302516 if (entry >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302517 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2518 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302519 return false;
2520 }
2521
2522 switch (k->kv_type) {
2523 case ATH9K_CIPHER_AES_OCB:
2524 keyType = AR_KEYTABLE_TYPE_AES;
2525 break;
2526 case ATH9K_CIPHER_AES_CCM:
2527 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Sujithd8baa932009-03-30 15:28:25 +05302528 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302529 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302530 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002531 return false;
2532 }
Sujithf1dc5602008-10-29 10:16:30 +05302533 keyType = AR_KEYTABLE_TYPE_CCM;
2534 break;
2535 case ATH9K_CIPHER_TKIP:
2536 keyType = AR_KEYTABLE_TYPE_TKIP;
2537 if (ATH9K_IS_MIC_ENABLED(ah)
2538 && entry + 64 >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302539 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302540 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002541 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002542 }
Sujithf1dc5602008-10-29 10:16:30 +05302543 break;
2544 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002545 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Sujithd8baa932009-03-30 15:28:25 +05302546 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302547 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302548 return false;
2549 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002550 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302551 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002552 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302553 keyType = AR_KEYTABLE_TYPE_104;
2554 else
2555 keyType = AR_KEYTABLE_TYPE_128;
2556 break;
2557 case ATH9K_CIPHER_CLR:
2558 keyType = AR_KEYTABLE_TYPE_CLR;
2559 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560 default:
Sujithd8baa932009-03-30 15:28:25 +05302561 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302562 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 return false;
2564 }
Sujithf1dc5602008-10-29 10:16:30 +05302565
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002566 key0 = get_unaligned_le32(k->kv_val + 0);
2567 key1 = get_unaligned_le16(k->kv_val + 4);
2568 key2 = get_unaligned_le32(k->kv_val + 6);
2569 key3 = get_unaligned_le16(k->kv_val + 10);
2570 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002571 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302572 key4 &= 0xff;
2573
Jouni Malinen672903b2009-03-02 15:06:31 +02002574 /*
2575 * Note: Key cache registers access special memory area that requires
2576 * two 32-bit writes to actually update the values in the internal
2577 * memory. Consequently, the exact order and pairs used here must be
2578 * maintained.
2579 */
2580
Sujithf1dc5602008-10-29 10:16:30 +05302581 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2582 u16 micentry = entry + 64;
2583
Jouni Malinen672903b2009-03-02 15:06:31 +02002584 /*
2585 * Write inverted key[47:0] first to avoid Michael MIC errors
2586 * on frames that could be sent or received at the same time.
2587 * The correct key will be written in the end once everything
2588 * else is ready.
2589 */
Sujithf1dc5602008-10-29 10:16:30 +05302590 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2591 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002592
2593 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302594 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2595 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002596
2597 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302598 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2599 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002600
2601 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302602 (void) ath9k_hw_keysetmac(ah, entry, mac);
2603
Sujith2660b812009-02-09 13:27:26 +05302604 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002605 /*
2606 * TKIP uses two key cache entries:
2607 * Michael MIC TX/RX keys in the same key cache entry
2608 * (idx = main index + 64):
2609 * key0 [31:0] = RX key [31:0]
2610 * key1 [15:0] = TX key [31:16]
2611 * key1 [31:16] = reserved
2612 * key2 [31:0] = RX key [63:32]
2613 * key3 [15:0] = TX key [15:0]
2614 * key3 [31:16] = reserved
2615 * key4 [31:0] = TX key [63:32]
2616 */
Sujithf1dc5602008-10-29 10:16:30 +05302617 u32 mic0, mic1, mic2, mic3, mic4;
2618
2619 mic0 = get_unaligned_le32(k->kv_mic + 0);
2620 mic2 = get_unaligned_le32(k->kv_mic + 4);
2621 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2622 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2623 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002624
2625 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302626 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2627 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002628
2629 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302630 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2631 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002632
2633 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302634 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2635 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2636 AR_KEYTABLE_TYPE_CLR);
2637
2638 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002639 /*
2640 * TKIP uses four key cache entries (two for group
2641 * keys):
2642 * Michael MIC TX/RX keys are in different key cache
2643 * entries (idx = main index + 64 for TX and
2644 * main index + 32 + 96 for RX):
2645 * key0 [31:0] = TX/RX MIC key [31:0]
2646 * key1 [31:0] = reserved
2647 * key2 [31:0] = TX/RX MIC key [63:32]
2648 * key3 [31:0] = reserved
2649 * key4 [31:0] = reserved
2650 *
2651 * Upper layer code will call this function separately
2652 * for TX and RX keys when these registers offsets are
2653 * used.
2654 */
Sujithf1dc5602008-10-29 10:16:30 +05302655 u32 mic0, mic2;
2656
2657 mic0 = get_unaligned_le32(k->kv_mic + 0);
2658 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002659
2660 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302661 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2662 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002663
2664 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302665 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2666 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002667
2668 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302669 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2670 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2671 AR_KEYTABLE_TYPE_CLR);
2672 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002673
2674 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302675 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2676 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002677
2678 /*
2679 * Write the correct (un-inverted) key[47:0] last to enable
2680 * TKIP now that all other registers are set with correct
2681 * values.
2682 */
Sujithf1dc5602008-10-29 10:16:30 +05302683 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2684 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2685 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002686 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302687 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2688 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002689
2690 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302691 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2692 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002693
2694 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302695 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2696 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2697
Jouni Malinen672903b2009-03-02 15:06:31 +02002698 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302699 (void) ath9k_hw_keysetmac(ah, entry, mac);
2700 }
2701
Sujithf1dc5602008-10-29 10:16:30 +05302702 return true;
2703}
2704
Sujithcbe61d82009-02-09 13:27:12 +05302705bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302706{
Sujith2660b812009-02-09 13:27:26 +05302707 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302708 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2709 if (val & AR_KEYTABLE_VALID)
2710 return true;
2711 }
2712 return false;
2713}
2714
2715/******************************/
2716/* Power Management (Chipset) */
2717/******************************/
2718
Sujithcbe61d82009-02-09 13:27:12 +05302719static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302720{
2721 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2722 if (setChip) {
2723 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2724 AR_RTC_FORCE_WAKE_EN);
2725 if (!AR_SREV_9100(ah))
2726 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2727
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002728 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302729 AR_RTC_RESET_EN);
2730 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002731}
2732
Sujithcbe61d82009-02-09 13:27:12 +05302733static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734{
Sujithf1dc5602008-10-29 10:16:30 +05302735 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2736 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302737 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002738
Sujithf1dc5602008-10-29 10:16:30 +05302739 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2740 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2741 AR_RTC_FORCE_WAKE_ON_INT);
2742 } else {
2743 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2744 AR_RTC_FORCE_WAKE_EN);
2745 }
2746 }
2747}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002748
Sujithcbe61d82009-02-09 13:27:12 +05302749static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302750{
2751 u32 val;
2752 int i;
2753
2754 if (setChip) {
2755 if ((REG_READ(ah, AR_RTC_STATUS) &
2756 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2757 if (ath9k_hw_set_reset_reg(ah,
2758 ATH9K_RESET_POWER_ON) != true) {
2759 return false;
2760 }
2761 }
2762 if (AR_SREV_9100(ah))
2763 REG_SET_BIT(ah, AR_RTC_RESET,
2764 AR_RTC_RESET_EN);
2765
2766 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2767 AR_RTC_FORCE_WAKE_EN);
2768 udelay(50);
2769
2770 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2771 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2772 if (val == AR_RTC_STATUS_ON)
2773 break;
2774 udelay(50);
2775 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2776 AR_RTC_FORCE_WAKE_EN);
2777 }
2778 if (i == 0) {
Sujithd8baa932009-03-30 15:28:25 +05302779 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302780 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302781 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002782 }
2783 }
2784
Sujithf1dc5602008-10-29 10:16:30 +05302785 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2786
2787 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002788}
2789
Gabor Juhos04717cc2009-07-14 20:17:13 -04002790static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2791 enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302792{
Sujithcbe61d82009-02-09 13:27:12 +05302793 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302794 static const char *modes[] = {
2795 "AWAKE",
2796 "FULL-SLEEP",
2797 "NETWORK SLEEP",
2798 "UNDEFINED"
2799 };
Sujithf1dc5602008-10-29 10:16:30 +05302800
Gabor Juhoscbdec972009-07-24 17:27:22 +02002801 if (ah->power_mode == mode)
2802 return status;
2803
Sujithd8baa932009-03-30 15:28:25 +05302804 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2805 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302806
2807 switch (mode) {
2808 case ATH9K_PM_AWAKE:
2809 status = ath9k_hw_set_power_awake(ah, setChip);
2810 break;
2811 case ATH9K_PM_FULL_SLEEP:
2812 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302813 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302814 break;
2815 case ATH9K_PM_NETWORK_SLEEP:
2816 ath9k_set_power_network_sleep(ah, setChip);
2817 break;
2818 default:
Sujithd8baa932009-03-30 15:28:25 +05302819 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302820 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302821 return false;
2822 }
Sujith2660b812009-02-09 13:27:26 +05302823 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302824
2825 return status;
2826}
2827
Gabor Juhos04717cc2009-07-14 20:17:13 -04002828bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2829{
2830 unsigned long flags;
2831 bool ret;
2832
2833 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2834 ret = ath9k_hw_setpower_nolock(ah, mode);
2835 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2836
2837 return ret;
2838}
2839
Gabor Juhos0bc07982009-07-14 20:17:14 -04002840void ath9k_ps_wakeup(struct ath_softc *sc)
2841{
Gabor Juhos709ade92009-07-14 20:17:15 -04002842 unsigned long flags;
2843
2844 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2845 if (++sc->ps_usecount != 1)
2846 goto unlock;
2847
Gabor Juhoscbdec972009-07-24 17:27:22 +02002848 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
Gabor Juhos709ade92009-07-14 20:17:15 -04002849
2850 unlock:
2851 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002852}
2853
2854void ath9k_ps_restore(struct ath_softc *sc)
2855{
Gabor Juhos709ade92009-07-14 20:17:15 -04002856 unsigned long flags;
2857
2858 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2859 if (--sc->ps_usecount != 0)
2860 goto unlock;
2861
Gabor Juhos96148322009-07-24 17:27:21 +02002862 if (sc->ps_enabled &&
2863 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
2864 SC_OP_WAIT_FOR_CAB |
2865 SC_OP_WAIT_FOR_PSPOLL_DATA |
2866 SC_OP_WAIT_FOR_TX_ACK)))
2867 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
Gabor Juhos709ade92009-07-14 20:17:15 -04002868
2869 unlock:
2870 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002871}
2872
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002873/*
2874 * Helper for ASPM support.
2875 *
2876 * Disable PLL when in L0s as well as receiver clock when in L1.
2877 * This power saving option must be enabled through the SerDes.
2878 *
2879 * Programming the SerDes must go through the same 288 bit serial shift
2880 * register as the other analog registers. Hence the 9 writes.
2881 */
Sujithcbe61d82009-02-09 13:27:12 +05302882void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302883{
Sujithf1dc5602008-10-29 10:16:30 +05302884 u8 i;
2885
Sujith2660b812009-02-09 13:27:26 +05302886 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302887 return;
2888
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002889 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302890 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302891 return;
2892
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002893 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302894 if (restore)
2895 return;
2896
2897 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002898 /*
2899 * AR9280 2.0 or later chips use SerDes values from the
2900 * initvals.h initialized depending on chipset during
2901 * ath9k_hw_do_attach()
2902 */
Sujith2660b812009-02-09 13:27:26 +05302903 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2904 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2905 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302906 }
Sujithf1dc5602008-10-29 10:16:30 +05302907 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302908 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302909 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2910 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2911
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002912 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302913 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2914 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2915 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2916
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002917 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302918 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302919 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2920 else
2921 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2922
2923 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2924 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2925 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2926
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002927 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302928 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2929
Sujithf1dc5602008-10-29 10:16:30 +05302930 } else {
2931 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2932 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002933
2934 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302935 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2936 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2937 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002938
2939 /*
2940 * Ignore ah->ah_config.pcie_clock_req setting for
2941 * pre-AR9280 11n
2942 */
Sujithf1dc5602008-10-29 10:16:30 +05302943 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002944
Sujithf1dc5602008-10-29 10:16:30 +05302945 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2946 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2947 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002948
2949 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302950 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2951 }
2952
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002953 udelay(1000);
2954
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002955 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302956 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2957
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002958 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302959 if (ah->config.pcie_waen) {
2960 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302961 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302962 if (AR_SREV_9285(ah))
2963 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002964 /*
2965 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2966 * otherwise card may disappear.
2967 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302968 else if (AR_SREV_9280(ah))
2969 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302970 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302971 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302972 }
2973}
2974
2975/**********************/
2976/* Interrupt Handling */
2977/**********************/
2978
Sujithcbe61d82009-02-09 13:27:12 +05302979bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002980{
2981 u32 host_isr;
2982
2983 if (AR_SREV_9100(ah))
2984 return true;
2985
2986 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2987 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2988 return true;
2989
2990 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2991 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2992 && (host_isr != AR_INTR_SPURIOUS))
2993 return true;
2994
2995 return false;
2996}
2997
Sujithcbe61d82009-02-09 13:27:12 +05302998bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002999{
3000 u32 isr = 0;
3001 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05303002 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003003 u32 sync_cause = 0;
3004 bool fatal_int = false;
3005
3006 if (!AR_SREV_9100(ah)) {
3007 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3008 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3009 == AR_RTC_STATUS_ON) {
3010 isr = REG_READ(ah, AR_ISR);
3011 }
3012 }
3013
Sujithf1dc5602008-10-29 10:16:30 +05303014 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3015 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003016
3017 *masked = 0;
3018
3019 if (!isr && !sync_cause)
3020 return false;
3021 } else {
3022 *masked = 0;
3023 isr = REG_READ(ah, AR_ISR);
3024 }
3025
3026 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003027 if (isr & AR_ISR_BCNMISC) {
3028 u32 isr2;
3029 isr2 = REG_READ(ah, AR_ISR_S2);
3030 if (isr2 & AR_ISR_S2_TIM)
3031 mask2 |= ATH9K_INT_TIM;
3032 if (isr2 & AR_ISR_S2_DTIM)
3033 mask2 |= ATH9K_INT_DTIM;
3034 if (isr2 & AR_ISR_S2_DTIMSYNC)
3035 mask2 |= ATH9K_INT_DTIMSYNC;
3036 if (isr2 & (AR_ISR_S2_CABEND))
3037 mask2 |= ATH9K_INT_CABEND;
3038 if (isr2 & AR_ISR_S2_GTT)
3039 mask2 |= ATH9K_INT_GTT;
3040 if (isr2 & AR_ISR_S2_CST)
3041 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05303042 if (isr2 & AR_ISR_S2_TSFOOR)
3043 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003044 }
3045
3046 isr = REG_READ(ah, AR_ISR_RAC);
3047 if (isr == 0xffffffff) {
3048 *masked = 0;
3049 return false;
3050 }
3051
3052 *masked = isr & ATH9K_INT_COMMON;
3053
Sujith0ef1f162009-03-30 15:28:35 +05303054 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003055 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3056 *masked |= ATH9K_INT_RX;
3057 }
3058
3059 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3060 *masked |= ATH9K_INT_RX;
3061 if (isr &
3062 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3063 AR_ISR_TXEOL)) {
3064 u32 s0_s, s1_s;
3065
3066 *masked |= ATH9K_INT_TX;
3067
3068 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05303069 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3070 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003071
3072 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05303073 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3074 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003075 }
3076
3077 if (isr & AR_ISR_RXORN) {
3078 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303079 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003080 }
3081
3082 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05303083 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003084 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3085 if (isr5 & AR_ISR_S5_TIM_TIMER)
3086 *masked |= ATH9K_INT_TIM_TIMER;
3087 }
3088 }
3089
3090 *masked |= mask2;
3091 }
Sujithf1dc5602008-10-29 10:16:30 +05303092
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003093 if (AR_SREV_9100(ah))
3094 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303095
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003096 if (sync_cause) {
3097 fatal_int =
3098 (sync_cause &
3099 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3100 ? true : false;
3101
3102 if (fatal_int) {
3103 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
3104 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303105 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003106 }
3107 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
3108 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303109 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003110 }
Steven Luoa89bff92009-04-12 02:57:54 -07003111 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003112 }
3113 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3114 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303115 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003116 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3117 REG_WRITE(ah, AR_RC, 0);
3118 *masked |= ATH9K_INT_FATAL;
3119 }
3120 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3121 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303122 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003123 }
3124
3125 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3126 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3127 }
Sujithf1dc5602008-10-29 10:16:30 +05303128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003129 return true;
3130}
3131
Sujithcbe61d82009-02-09 13:27:12 +05303132enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003133{
Sujith2660b812009-02-09 13:27:26 +05303134 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003135 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303136 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003137
Sujith04bd4632008-11-28 22:18:05 +05303138 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003139
3140 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303141 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003142 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3143 (void) REG_READ(ah, AR_IER);
3144 if (!AR_SREV_9100(ah)) {
3145 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3146 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3147
3148 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3149 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3150 }
3151 }
3152
3153 mask = ints & ATH9K_INT_COMMON;
3154 mask2 = 0;
3155
3156 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303157 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003158 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303159 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003160 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303161 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003162 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303163 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003164 mask |= AR_IMR_TXEOL;
3165 }
3166 if (ints & ATH9K_INT_RX) {
3167 mask |= AR_IMR_RXERR;
Sujith0ef1f162009-03-30 15:28:35 +05303168 if (ah->config.intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003169 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3170 else
3171 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303172 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003173 mask |= AR_IMR_GENTMR;
3174 }
3175
3176 if (ints & (ATH9K_INT_BMISC)) {
3177 mask |= AR_IMR_BCNMISC;
3178 if (ints & ATH9K_INT_TIM)
3179 mask2 |= AR_IMR_S2_TIM;
3180 if (ints & ATH9K_INT_DTIM)
3181 mask2 |= AR_IMR_S2_DTIM;
3182 if (ints & ATH9K_INT_DTIMSYNC)
3183 mask2 |= AR_IMR_S2_DTIMSYNC;
3184 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303185 mask2 |= AR_IMR_S2_CABEND;
3186 if (ints & ATH9K_INT_TSFOOR)
3187 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003188 }
3189
3190 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3191 mask |= AR_IMR_BCNMISC;
3192 if (ints & ATH9K_INT_GTT)
3193 mask2 |= AR_IMR_S2_GTT;
3194 if (ints & ATH9K_INT_CST)
3195 mask2 |= AR_IMR_S2_CST;
3196 }
3197
Sujith04bd4632008-11-28 22:18:05 +05303198 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003199 REG_WRITE(ah, AR_IMR, mask);
3200 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3201 AR_IMR_S2_DTIM |
3202 AR_IMR_S2_DTIMSYNC |
3203 AR_IMR_S2_CABEND |
3204 AR_IMR_S2_CABTO |
3205 AR_IMR_S2_TSFOOR |
3206 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3207 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303208 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003209
Sujith60b67f52008-08-07 10:52:38 +05303210 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003211 if (ints & ATH9K_INT_TIM_TIMER)
3212 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3213 else
3214 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3215 }
3216
3217 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303218 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003219 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3220 if (!AR_SREV_9100(ah)) {
3221 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3222 AR_INTR_MAC_IRQ);
3223 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3224
3225
3226 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3227 AR_INTR_SYNC_DEFAULT);
3228 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3229 AR_INTR_SYNC_DEFAULT);
3230 }
3231 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3232 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3233 }
3234
3235 return omask;
3236}
3237
Sujithf1dc5602008-10-29 10:16:30 +05303238/*******************/
3239/* Beacon Handling */
3240/*******************/
3241
Sujithcbe61d82009-02-09 13:27:12 +05303242void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003243{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003244 int flags = 0;
3245
Sujith2660b812009-02-09 13:27:26 +05303246 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003247
Sujith2660b812009-02-09 13:27:26 +05303248 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003249 case NL80211_IFTYPE_STATION:
3250 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003251 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3252 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3253 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3254 flags |= AR_TBTT_TIMER_EN;
3255 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003256 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003257 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003258 REG_SET_BIT(ah, AR_TXCFG,
3259 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3260 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3261 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303262 (ah->atim_window ? ah->
3263 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003264 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003265 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003266 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3267 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3268 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303269 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303270 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003271 REG_WRITE(ah, AR_NEXT_SWBA,
3272 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303273 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303274 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003275 flags |=
3276 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3277 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003278 default:
3279 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3280 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303281 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003282 return;
3283 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003284 }
3285
3286 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3287 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3288 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3289 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3290
3291 beacon_period &= ~ATH9K_BEACON_ENA;
3292 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3293 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3294 ath9k_hw_reset_tsf(ah);
3295 }
3296
3297 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3298}
3299
Sujithcbe61d82009-02-09 13:27:12 +05303300void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303301 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003302{
3303 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303304 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003305
3306 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3307
3308 REG_WRITE(ah, AR_BEACON_PERIOD,
3309 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3310 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3311 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3312
3313 REG_RMW_FIELD(ah, AR_RSSI_THR,
3314 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3315
3316 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3317
3318 if (bs->bs_sleepduration > beaconintval)
3319 beaconintval = bs->bs_sleepduration;
3320
3321 dtimperiod = bs->bs_dtimperiod;
3322 if (bs->bs_sleepduration > dtimperiod)
3323 dtimperiod = bs->bs_sleepduration;
3324
3325 if (beaconintval == dtimperiod)
3326 nextTbtt = bs->bs_nextdtim;
3327 else
3328 nextTbtt = bs->bs_nexttbtt;
3329
Sujith04bd4632008-11-28 22:18:05 +05303330 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3331 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3332 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3333 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003334
3335 REG_WRITE(ah, AR_NEXT_DTIM,
3336 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3337 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3338
3339 REG_WRITE(ah, AR_SLEEP1,
3340 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3341 | AR_SLEEP1_ASSUME_DTIM);
3342
Sujith60b67f52008-08-07 10:52:38 +05303343 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003344 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3345 else
3346 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3347
3348 REG_WRITE(ah, AR_SLEEP2,
3349 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3350
3351 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3352 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3353
3354 REG_SET_BIT(ah, AR_TIMER_MODE,
3355 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3356 AR_DTIM_TIMER_EN);
3357
Sujith4af9cf42009-02-12 10:06:47 +05303358 /* TSF Out of Range Threshold */
3359 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003360}
3361
Sujithf1dc5602008-10-29 10:16:30 +05303362/*******************/
3363/* HW Capabilities */
3364/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003365
Sujitheef7a572009-03-30 15:28:28 +05303366void ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003367{
Sujith2660b812009-02-09 13:27:26 +05303368 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303369 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003370
Sujithf74df6f2009-02-09 13:27:24 +05303371 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303372 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303373
Sujithf74df6f2009-02-09 13:27:24 +05303374 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303375 if (AR_SREV_9285_10_OR_LATER(ah))
3376 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303377 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303378
Sujithf74df6f2009-02-09 13:27:24 +05303379 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303380
Sujith2660b812009-02-09 13:27:26 +05303381 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303382 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303383 if (ah->regulatory.current_rd == 0x64 ||
3384 ah->regulatory.current_rd == 0x65)
3385 ah->regulatory.current_rd += 5;
3386 else if (ah->regulatory.current_rd == 0x41)
3387 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303388 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303389 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003390 }
Sujithdc2222a2008-08-14 13:26:55 +05303391
Sujithf74df6f2009-02-09 13:27:24 +05303392 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303393 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003394
Sujithf1dc5602008-10-29 10:16:30 +05303395 if (eeval & AR5416_OPFLAGS_11A) {
3396 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303397 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303398 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3399 set_bit(ATH9K_MODE_11NA_HT20,
3400 pCap->wireless_modes);
3401 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3402 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3403 pCap->wireless_modes);
3404 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3405 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003406 }
3407 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003408 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003409
Sujithf1dc5602008-10-29 10:16:30 +05303410 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303411 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303412 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303413 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3414 set_bit(ATH9K_MODE_11NG_HT20,
3415 pCap->wireless_modes);
3416 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3417 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3418 pCap->wireless_modes);
3419 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3420 pCap->wireless_modes);
3421 }
3422 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003423 }
Sujithf1dc5602008-10-29 10:16:30 +05303424
Sujithf74df6f2009-02-09 13:27:24 +05303425 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303426 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3427 !(eeval & AR5416_OPFLAGS_11A))
3428 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3429 else
3430 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303431
Sujithd535a422009-02-09 13:27:06 +05303432 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303433 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303434
3435 pCap->low_2ghz_chan = 2312;
3436 pCap->high_2ghz_chan = 2732;
3437
3438 pCap->low_5ghz_chan = 4920;
3439 pCap->high_5ghz_chan = 6100;
3440
3441 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3442 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3443 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3444
3445 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3446 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3447 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3448
Sujith2660b812009-02-09 13:27:26 +05303449 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303450 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3451 else
3452 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3453
3454 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3455 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3456 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3457 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3458
3459 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3460 pCap->total_queues =
3461 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3462 else
3463 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3464
3465 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3466 pCap->keycache_size =
3467 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3468 else
3469 pCap->keycache_size = AR_KEYTABLE_SIZE;
3470
3471 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303472 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3473
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303474 if (AR_SREV_9285_10_OR_LATER(ah))
3475 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3476 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303477 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3478 else
3479 pCap->num_gpio_pins = AR_NUM_GPIO;
3480
Sujithf1dc5602008-10-29 10:16:30 +05303481 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3482 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3483 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3484 } else {
3485 pCap->rts_aggr_limit = (8 * 1024);
3486 }
3487
3488 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3489
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303490#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303491 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3492 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3493 ah->rfkill_gpio =
3494 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3495 ah->rfkill_polarity =
3496 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303497
3498 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3499 }
3500#endif
3501
Sujithd535a422009-02-09 13:27:06 +05303502 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3503 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3504 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3505 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
Vivek Natarajan882b7092009-04-14 16:21:01 +05303506 (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
3507 (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
Sujithf1dc5602008-10-29 10:16:30 +05303508 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3509 else
3510 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3511
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303512 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303513 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3514 else
3515 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3516
Sujithd6bad492009-02-09 13:27:08 +05303517 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303518 pCap->reg_cap =
3519 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3520 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3521 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3522 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3523 } else {
3524 pCap->reg_cap =
3525 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3526 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3527 }
3528
3529 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3530
3531 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303532 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303533 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303534 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303535
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303536 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303537 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303538 ah->btactive_gpio = 6;
3539 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303540 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003541}
3542
Sujithcbe61d82009-02-09 13:27:12 +05303543bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303544 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003545{
Sujithf1dc5602008-10-29 10:16:30 +05303546 switch (type) {
3547 case ATH9K_CAP_CIPHER:
3548 switch (capability) {
3549 case ATH9K_CIPHER_AES_CCM:
3550 case ATH9K_CIPHER_AES_OCB:
3551 case ATH9K_CIPHER_TKIP:
3552 case ATH9K_CIPHER_WEP:
3553 case ATH9K_CIPHER_MIC:
3554 case ATH9K_CIPHER_CLR:
3555 return true;
3556 default:
3557 return false;
3558 }
3559 case ATH9K_CAP_TKIP_MIC:
3560 switch (capability) {
3561 case 0:
3562 return true;
3563 case 1:
Sujith2660b812009-02-09 13:27:26 +05303564 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303565 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3566 false;
3567 }
3568 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303569 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303570 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303571 case ATH9K_CAP_DIVERSITY:
3572 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3573 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3574 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303575 case ATH9K_CAP_MCAST_KEYSRCH:
3576 switch (capability) {
3577 case 0:
3578 return true;
3579 case 1:
3580 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3581 return false;
3582 } else {
Sujith2660b812009-02-09 13:27:26 +05303583 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303584 AR_STA_ID1_MCAST_KSRCH) ? true :
3585 false;
3586 }
3587 }
3588 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303589 case ATH9K_CAP_TXPOW:
3590 switch (capability) {
3591 case 0:
3592 return 0;
3593 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303594 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303595 return 0;
3596 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303597 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303598 return 0;
3599 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303600 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303601 return 0;
3602 }
3603 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303604 case ATH9K_CAP_DS:
3605 return (AR_SREV_9280_20_OR_LATER(ah) &&
3606 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3607 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303608 default:
3609 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003610 }
Sujithf1dc5602008-10-29 10:16:30 +05303611}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003612
Sujithcbe61d82009-02-09 13:27:12 +05303613bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303614 u32 capability, u32 setting, int *status)
3615{
Sujithf1dc5602008-10-29 10:16:30 +05303616 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003617
Sujithf1dc5602008-10-29 10:16:30 +05303618 switch (type) {
3619 case ATH9K_CAP_TKIP_MIC:
3620 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303621 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303622 AR_STA_ID1_CRPT_MIC_ENABLE;
3623 else
Sujith2660b812009-02-09 13:27:26 +05303624 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303625 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3626 return true;
3627 case ATH9K_CAP_DIVERSITY:
3628 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3629 if (setting)
3630 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3631 else
3632 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3633 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3634 return true;
3635 case ATH9K_CAP_MCAST_KEYSRCH:
3636 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303637 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303638 else
Sujith2660b812009-02-09 13:27:26 +05303639 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303640 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303641 default:
3642 return false;
3643 }
3644}
3645
3646/****************************/
3647/* GPIO / RFKILL / Antennae */
3648/****************************/
3649
Sujithcbe61d82009-02-09 13:27:12 +05303650static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303651 u32 gpio, u32 type)
3652{
3653 int addr;
3654 u32 gpio_shift, tmp;
3655
3656 if (gpio > 11)
3657 addr = AR_GPIO_OUTPUT_MUX3;
3658 else if (gpio > 5)
3659 addr = AR_GPIO_OUTPUT_MUX2;
3660 else
3661 addr = AR_GPIO_OUTPUT_MUX1;
3662
3663 gpio_shift = (gpio % 6) * 5;
3664
3665 if (AR_SREV_9280_20_OR_LATER(ah)
3666 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3667 REG_RMW(ah, addr, (type << gpio_shift),
3668 (0x1f << gpio_shift));
3669 } else {
3670 tmp = REG_READ(ah, addr);
3671 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3672 tmp &= ~(0x1f << gpio_shift);
3673 tmp |= (type << gpio_shift);
3674 REG_WRITE(ah, addr, tmp);
3675 }
3676}
3677
Sujithcbe61d82009-02-09 13:27:12 +05303678void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303679{
3680 u32 gpio_shift;
3681
Sujith2660b812009-02-09 13:27:26 +05303682 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303683
3684 gpio_shift = gpio << 1;
3685
3686 REG_RMW(ah,
3687 AR_GPIO_OE_OUT,
3688 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3689 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3690}
3691
Sujithcbe61d82009-02-09 13:27:12 +05303692u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303693{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303694#define MS_REG_READ(x, y) \
3695 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3696
Sujith2660b812009-02-09 13:27:26 +05303697 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303698 return 0xffffffff;
3699
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303700 if (AR_SREV_9287_10_OR_LATER(ah))
3701 return MS_REG_READ(AR9287, gpio) != 0;
3702 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303703 return MS_REG_READ(AR9285, gpio) != 0;
3704 else if (AR_SREV_9280_10_OR_LATER(ah))
3705 return MS_REG_READ(AR928X, gpio) != 0;
3706 else
3707 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303708}
3709
Sujithcbe61d82009-02-09 13:27:12 +05303710void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303711 u32 ah_signal_type)
3712{
3713 u32 gpio_shift;
3714
3715 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3716
3717 gpio_shift = 2 * gpio;
3718
3719 REG_RMW(ah,
3720 AR_GPIO_OE_OUT,
3721 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3722 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3723}
3724
Sujithcbe61d82009-02-09 13:27:12 +05303725void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303726{
3727 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3728 AR_GPIO_BIT(gpio));
3729}
3730
Sujithcbe61d82009-02-09 13:27:12 +05303731u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303732{
3733 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3734}
3735
Sujithcbe61d82009-02-09 13:27:12 +05303736void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303737{
3738 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3739}
3740
Sujithcbe61d82009-02-09 13:27:12 +05303741bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303742 enum ath9k_ant_setting settings,
3743 struct ath9k_channel *chan,
3744 u8 *tx_chainmask,
3745 u8 *rx_chainmask,
3746 u8 *antenna_cfgd)
3747{
Sujithf1dc5602008-10-29 10:16:30 +05303748 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3749
3750 if (AR_SREV_9280(ah)) {
3751 if (!tx_chainmask_cfg) {
3752
3753 tx_chainmask_cfg = *tx_chainmask;
3754 rx_chainmask_cfg = *rx_chainmask;
3755 }
3756
3757 switch (settings) {
3758 case ATH9K_ANT_FIXED_A:
3759 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3760 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3761 *antenna_cfgd = true;
3762 break;
3763 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303764 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303765 ATH9K_ANTENNA1_CHAINMASK) {
3766 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3767 }
3768 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3769 *antenna_cfgd = true;
3770 break;
3771 case ATH9K_ANT_VARIABLE:
3772 *tx_chainmask = tx_chainmask_cfg;
3773 *rx_chainmask = rx_chainmask_cfg;
3774 *antenna_cfgd = true;
3775 break;
3776 default:
3777 break;
3778 }
3779 } else {
Sujith2660b812009-02-09 13:27:26 +05303780 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303781 }
3782
3783 return true;
3784}
3785
3786/*********************/
3787/* General Operation */
3788/*********************/
3789
Sujithcbe61d82009-02-09 13:27:12 +05303790u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303791{
3792 u32 bits = REG_READ(ah, AR_RX_FILTER);
3793 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3794
3795 if (phybits & AR_PHY_ERR_RADAR)
3796 bits |= ATH9K_RX_FILTER_PHYRADAR;
3797 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3798 bits |= ATH9K_RX_FILTER_PHYERR;
3799
3800 return bits;
3801}
3802
Sujithcbe61d82009-02-09 13:27:12 +05303803void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303804{
3805 u32 phybits;
3806
3807 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3808 phybits = 0;
3809 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3810 phybits |= AR_PHY_ERR_RADAR;
3811 if (bits & ATH9K_RX_FILTER_PHYERR)
3812 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3813 REG_WRITE(ah, AR_PHY_ERR, phybits);
3814
3815 if (phybits)
3816 REG_WRITE(ah, AR_RXCFG,
3817 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3818 else
3819 REG_WRITE(ah, AR_RXCFG,
3820 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3821}
3822
Sujithcbe61d82009-02-09 13:27:12 +05303823bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303824{
3825 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3826}
3827
Sujithcbe61d82009-02-09 13:27:12 +05303828bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303829{
3830 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3831 return false;
3832
3833 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3834}
3835
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003836void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303837{
Sujith2660b812009-02-09 13:27:26 +05303838 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003839 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303840
Sujithd6bad492009-02-09 13:27:08 +05303841 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303842
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003843 ah->eep_ops->set_txpower(ah, chan,
3844 ath9k_regd_get_ctl(&ah->regulatory, chan),
3845 channel->max_antenna_gain * 2,
3846 channel->max_power * 2,
3847 min((u32) MAX_RATE_POWER,
3848 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303849}
3850
Sujithcbe61d82009-02-09 13:27:12 +05303851void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303852{
Sujithba52da52009-02-09 13:27:10 +05303853 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303854}
3855
Sujithcbe61d82009-02-09 13:27:12 +05303856void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303857{
Sujith2660b812009-02-09 13:27:26 +05303858 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303859}
3860
Sujithcbe61d82009-02-09 13:27:12 +05303861void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303862{
3863 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3864 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3865}
3866
Sujithba52da52009-02-09 13:27:10 +05303867void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303868{
Sujithba52da52009-02-09 13:27:10 +05303869 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3870 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303871}
3872
Sujithba52da52009-02-09 13:27:10 +05303873void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303874{
Sujithba52da52009-02-09 13:27:10 +05303875 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3876 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3877 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303878}
3879
Sujithcbe61d82009-02-09 13:27:12 +05303880u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303881{
3882 u64 tsf;
3883
3884 tsf = REG_READ(ah, AR_TSF_U32);
3885 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3886
3887 return tsf;
3888}
3889
Sujithcbe61d82009-02-09 13:27:12 +05303890void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003891{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003892 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003893 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003894}
3895
Sujithcbe61d82009-02-09 13:27:12 +05303896void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303897{
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003898 ath9k_ps_wakeup(ah->ah_sc);
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003899 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3900 AH_TSF_WRITE_TIMEOUT))
3901 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
3902 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
3903
Sujithf1dc5602008-10-29 10:16:30 +05303904 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003905 ath9k_ps_restore(ah->ah_sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003906}
3907
Sujithcbe61d82009-02-09 13:27:12 +05303908bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003909{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003910 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303911 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003912 else
Sujith2660b812009-02-09 13:27:26 +05303913 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303914
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003915 return true;
3916}
3917
Sujithcbe61d82009-02-09 13:27:12 +05303918bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003919{
Sujithf1dc5602008-10-29 10:16:30 +05303920 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd4632008-11-28 22:18:05 +05303921 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303922 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303923 return false;
3924 } else {
3925 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303926 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303927 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003928 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003929}
3930
Sujithcbe61d82009-02-09 13:27:12 +05303931void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003932{
Sujithf1dc5602008-10-29 10:16:30 +05303933 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003934
Sujithf1dc5602008-10-29 10:16:30 +05303935 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303936 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303937 macmode = AR_2040_JOINED_RX_CLEAR;
3938 else
3939 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003940
Sujithf1dc5602008-10-29 10:16:30 +05303941 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003942}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303943
3944/***************************/
3945/* Bluetooth Coexistence */
3946/***************************/
3947
Sujithcbe61d82009-02-09 13:27:12 +05303948void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303949{
3950 /* connect bt_active to baseband */
3951 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3952 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3953 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3954
3955 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3956 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3957
3958 /* Set input mux for bt_active to gpio pin */
3959 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3960 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303961 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303962
3963 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303964 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303965
3966 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303967 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303968 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3969}