blob: e0bc4c580446a75ee2415fa65aebe852cdb46478 [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
Sujithcbe61d82009-02-09 13:27:12 +0530440static struct ath_hw *ath9k_hw_newstate(u16 devid, struct ath_softc *sc,
441 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442{
Sujithcbe61d82009-02-09 13:27:12 +0530443 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444
Sujithcbe61d82009-02-09 13:27:12 +0530445 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
446 if (ah == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530448 "Cannot allocate memory for state block\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449 *status = -ENOMEM;
450 return NULL;
451 }
452
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 ah->ah_sc = sc;
Sujithd535a422009-02-09 13:27:06 +0530454 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530455 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530456 ah->hw_version.devid = devid;
457 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458
459 ah->ah_flags = 0;
460 if ((devid == AR5416_AR9100_DEVID))
Sujithd535a422009-02-09 13:27:06 +0530461 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462 if (!AR_SREV_9100(ah))
463 ah->ah_flags = AH_USE_EEPROM;
464
Sujithd6bad492009-02-09 13:27:08 +0530465 ah->regulatory.power_limit = MAX_RATE_POWER;
466 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530467 ah->atim_window = 0;
468 ah->diversity_control = ah->config.diversity_control;
469 ah->antenna_switch_swap =
470 ah->config.antenna_switch_swap;
471 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
472 ah->beacon_interval = 100;
473 ah->enable_32kHz_clock = DONT_USE_32KHZ;
474 ah->slottime = (u32) -1;
475 ah->acktimeout = (u32) -1;
476 ah->ctstimeout = (u32) -1;
477 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478
Sujith2660b812009-02-09 13:27:26 +0530479 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480
Gabor Juhoscbdec972009-07-24 17:27:22 +0200481 ah->power_mode = ATH9K_PM_UNDEFINED;
482
Sujithcbe61d82009-02-09 13:27:12 +0530483 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484}
485
Sujithcbe61d82009-02-09 13:27:12 +0530486static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487{
488 bool rfStatus = false;
489 int ecode = 0;
490
491 rfStatus = ath9k_hw_init_rf(ah, &ecode);
492 if (!rfStatus) {
Sujithd8baa932009-03-30 15:28:25 +0530493 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
494 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 return ecode;
496 }
497
498 return 0;
499}
500
Sujithcbe61d82009-02-09 13:27:12 +0530501static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502{
503 u32 val;
504
505 REG_WRITE(ah, AR_PHY(0), 0x00000007);
506
507 val = ath9k_hw_get_radiorev(ah);
508 switch (val & AR_RADIO_SREV_MAJOR) {
509 case 0:
510 val = AR_RAD5133_SREV_MAJOR;
511 break;
512 case AR_RAD5133_SREV_MAJOR:
513 case AR_RAD5122_SREV_MAJOR:
514 case AR_RAD2133_SREV_MAJOR:
515 case AR_RAD2122_SREV_MAJOR:
516 break;
517 default:
Sujithd8baa932009-03-30 15:28:25 +0530518 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
519 "Radio Chip Rev 0x%02X not supported\n",
520 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700521 return -EOPNOTSUPP;
522 }
523
Sujithd535a422009-02-09 13:27:06 +0530524 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700525
526 return 0;
527}
528
Sujithcbe61d82009-02-09 13:27:12 +0530529static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530{
Sujithf1dc5602008-10-29 10:16:30 +0530531 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700532 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530533 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700534
Sujithf1dc5602008-10-29 10:16:30 +0530535 sum = 0;
536 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530537 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530538 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530539 ah->macaddr[2 * i] = eeval >> 8;
540 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700541 }
Sujithd8baa932009-03-30 15:28:25 +0530542 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530543 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700544
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700545 return 0;
546}
547
Sujithcbe61d82009-02-09 13:27:12 +0530548static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530549{
550 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530551
Sujithf74df6f2009-02-09 13:27:24 +0530552 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
553 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530554
555 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530556 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530557 ar9280Modes_backoff_13db_rxgain_9280_2,
558 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
559 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530560 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530561 ar9280Modes_backoff_23db_rxgain_9280_2,
562 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
563 else
Sujith2660b812009-02-09 13:27:26 +0530564 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530565 ar9280Modes_original_rxgain_9280_2,
566 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530567 } else {
Sujith2660b812009-02-09 13:27:26 +0530568 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530569 ar9280Modes_original_rxgain_9280_2,
570 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530571 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530572}
573
Sujithcbe61d82009-02-09 13:27:12 +0530574static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530575{
576 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530577
Sujithf74df6f2009-02-09 13:27:24 +0530578 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
579 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530580
581 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530582 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530583 ar9280Modes_high_power_tx_gain_9280_2,
584 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
585 else
Sujith2660b812009-02-09 13:27:26 +0530586 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530587 ar9280Modes_original_tx_gain_9280_2,
588 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530589 } else {
Sujith2660b812009-02-09 13:27:26 +0530590 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530591 ar9280Modes_original_tx_gain_9280_2,
592 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530593 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530594}
595
Sujithcbe61d82009-02-09 13:27:12 +0530596static int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597{
598 int ecode;
599
Sujithd8baa932009-03-30 15:28:25 +0530600 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602
603 ecode = ath9k_hw_rf_claim(ah);
604 if (ecode != 0)
605 return ecode;
606
607 ecode = ath9k_hw_eeprom_attach(ah);
608 if (ecode != 0)
609 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530610
611 DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
612 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
613
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614 ecode = ath9k_hw_rfattach(ah);
615 if (ecode != 0)
616 return ecode;
617
618 if (!AR_SREV_9100(ah)) {
619 ath9k_hw_ani_setup(ah);
620 ath9k_hw_ani_attach(ah);
621 }
Sujithf1dc5602008-10-29 10:16:30 +0530622
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 return 0;
624}
625
Sujithcbe61d82009-02-09 13:27:12 +0530626static struct ath_hw *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
627 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628{
Sujithcbe61d82009-02-09 13:27:12 +0530629 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630 int ecode;
Sujithf6688cd2008-12-07 21:43:10 +0530631 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700632
Sujithcbe61d82009-02-09 13:27:12 +0530633 ah = ath9k_hw_newstate(devid, sc, status);
634 if (ah == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 return NULL;
636
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637 ath9k_hw_set_defaults(ah);
638
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithd8baa932009-03-30 15:28:25 +0530640 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 ecode = -EIO;
642 goto bad;
643 }
644
645 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithd8baa932009-03-30 15:28:25 +0530646 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647 ecode = -EIO;
648 goto bad;
649 }
650
Sujith2660b812009-02-09 13:27:26 +0530651 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
David S. Miller2d6a5e92009-03-17 15:01:30 -0700652 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
653 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
Sujith2660b812009-02-09 13:27:26 +0530654 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655 SER_REG_MODE_ON;
656 } else {
Sujith2660b812009-02-09 13:27:26 +0530657 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 SER_REG_MODE_OFF;
659 }
660 }
Sujithf1dc5602008-10-29 10:16:30 +0530661
Sujithcbe61d82009-02-09 13:27:12 +0530662 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530663 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664
Sujithd535a422009-02-09 13:27:06 +0530665 if ((ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCI) &&
666 (ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCIE) &&
667 (ah->hw_version.macVersion != AR_SREV_VERSION_9160) &&
Luis R. Rodriguezed459c12009-08-03 12:24:33 -0700668 (ah->hw_version.macVersion != AR_SREV_VERSION_9100) &&
669 (ah->hw_version.macVersion != AR_SREV_VERSION_9280) &&
670 (ah->hw_version.macVersion != AR_SREV_VERSION_9285) &&
671 (ah->hw_version.macVersion != AR_SREV_VERSION_9287)) {
Sujithd8baa932009-03-30 15:28:25 +0530672 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530673 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530674 "this driver\n", ah->hw_version.macVersion,
675 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700676 ecode = -EOPNOTSUPP;
677 goto bad;
678 }
679
680 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530681 ah->iq_caldata.calData = &iq_cal_multi_sample;
682 ah->supp_cals = IQ_MISMATCH_CAL;
683 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684 }
Sujithd535a422009-02-09 13:27:06 +0530685 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700686
687 if (AR_SREV_9160_10_OR_LATER(ah)) {
688 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530689 ah->iq_caldata.calData = &iq_cal_single_sample;
690 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700691 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530692 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700693 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530694 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700695 &adc_init_dc_cal;
696 } else {
Sujith2660b812009-02-09 13:27:26 +0530697 ah->iq_caldata.calData = &iq_cal_multi_sample;
698 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700699 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530700 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700701 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530702 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 &adc_init_dc_cal;
704 }
Sujith2660b812009-02-09 13:27:26 +0530705 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700706 }
707
Sujith9c81e8b2009-03-09 09:31:49 +0530708 ah->ani_function = ATH9K_ANI_ALL;
709 if (AR_SREV_9280_10_OR_LATER(ah))
710 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530711 if (AR_SREV_9287_11_OR_LATER(ah)) {
712 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
713 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
714 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
715 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
716 if (ah->config.pcie_clock_req)
717 INIT_INI_ARRAY(&ah->iniPcieSerdes,
718 ar9287PciePhy_clkreq_off_L1_9287_1_1,
719 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
720 else
721 INIT_INI_ARRAY(&ah->iniPcieSerdes,
722 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
723 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
724 2);
725 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
726 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
727 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
728 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
729 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700730
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530731 if (ah->config.pcie_clock_req)
732 INIT_INI_ARRAY(&ah->iniPcieSerdes,
733 ar9287PciePhy_clkreq_off_L1_9287_1_0,
734 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
735 else
736 INIT_INI_ARRAY(&ah->iniPcieSerdes,
737 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
738 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
739 2);
740 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
741
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530742
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530744 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530746 ARRAY_SIZE(ar9285Common_9285_1_2), 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_1_2,
751 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 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_1_2,
755 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
756 2);
757 }
758 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530759 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530760 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530762 ARRAY_SIZE(ar9285Common_9285), 2);
763
Sujith2660b812009-02-09 13:27:26 +0530764 if (ah->config.pcie_clock_req) {
765 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530766 ar9285PciePhy_clkreq_off_L1_9285,
767 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
768 } else {
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530770 ar9285PciePhy_clkreq_always_on_L1_9285,
771 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
772 }
773 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar9280Common_9280_2), 2);
778
Sujith2660b812009-02-09 13:27:26 +0530779 if (ah->config.pcie_clock_req) {
780 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530781 ar9280PciePhy_clkreq_off_L1_9280,
782 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 } else {
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530785 ar9280PciePhy_clkreq_always_on_L1_9280,
786 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 }
Sujith2660b812009-02-09 13:27:26 +0530788 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530790 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530792 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530794 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795 ARRAY_SIZE(ar9280Common_9280), 2);
796 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530797 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530799 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530801 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530803 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530805 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530807 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530809 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530811 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530813 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700814 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530815 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816 ARRAY_SIZE(ar5416Bank7_9160), 2);
817 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530818 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819 ar5416Addac_91601_1,
820 ARRAY_SIZE(ar5416Addac_91601_1), 2);
821 } else {
Sujith2660b812009-02-09 13:27:26 +0530822 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700823 ARRAY_SIZE(ar5416Addac_9160), 2);
824 }
825 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530826 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530828 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700829 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530830 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530832 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700833 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530834 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700835 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530836 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700837 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530838 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700839 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530840 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700841 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530842 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700843 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530844 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530846 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700847 ARRAY_SIZE(ar5416Addac_9100), 2);
848 } else {
Sujith2660b812009-02-09 13:27:26 +0530849 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700850 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530851 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700852 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530853 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530855 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700856 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530857 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700858 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530859 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700860 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530861 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530863 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530865 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700866 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530867 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700868 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530869 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870 ARRAY_SIZE(ar5416Addac), 2);
871 }
872
Sujith2660b812009-02-09 13:27:26 +0530873 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700874 ath9k_hw_configpcipowersave(ah, 0);
875 else
Sujithf1dc5602008-10-29 10:16:30 +0530876 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700877
878 ecode = ath9k_hw_post_attach(ah);
879 if (ecode != 0)
880 goto bad;
881
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530882 if (AR_SREV_9287_11(ah))
883 INIT_INI_ARRAY(&ah->iniModesRxGain,
884 ar9287Modes_rx_gain_9287_1_1,
885 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
886 else if (AR_SREV_9287_10(ah))
887 INIT_INI_ARRAY(&ah->iniModesRxGain,
888 ar9287Modes_rx_gain_9287_1_0,
889 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
890 else if (AR_SREV_9280_20(ah))
891 ath9k_hw_init_rxgain_ini(ah);
892
893 if (AR_SREV_9287_11(ah)) {
894 INIT_INI_ARRAY(&ah->iniModesTxGain,
895 ar9287Modes_tx_gain_9287_1_1,
896 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
897 } else if (AR_SREV_9287_10(ah)) {
898 INIT_INI_ARRAY(&ah->iniModesTxGain,
899 ar9287Modes_tx_gain_9287_1_0,
900 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
901 } else if (AR_SREV_9280_20(ah)) {
902 ath9k_hw_init_txgain_ini(ah);
903 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530904 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
905
906 /* txgain table */
907 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
908 INIT_INI_ARRAY(&ah->iniModesTxGain,
909 ar9285Modes_high_power_tx_gain_9285_1_2,
910 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
911 } else {
912 INIT_INI_ARRAY(&ah->iniModesTxGain,
913 ar9285Modes_original_tx_gain_9285_1_2,
914 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
915 }
916
917 }
918
Sujitheef7a572009-03-30 15:28:28 +0530919 ath9k_hw_fill_cap_info(ah);
Sujith06d0f062009-02-12 10:06:45 +0530920
921 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
922 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
923
924 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530925 for (i = 0; i < ah->iniModes.ia_rows; i++) {
926 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700927
Sujith2660b812009-02-09 13:27:26 +0530928 for (j = 1; j < ah->iniModes.ia_columns; j++) {
929 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700930
Sujith2660b812009-02-09 13:27:26 +0530931 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530932 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530933 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700934 reg, val);
935 }
936 }
937 }
Sujithf6688cd2008-12-07 21:43:10 +0530938
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700939 ecode = ath9k_hw_init_macaddr(ah);
940 if (ecode != 0) {
Sujithd8baa932009-03-30 15:28:25 +0530941 DPRINTF(sc, ATH_DBG_FATAL,
942 "Failed to initialize MAC address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700943 goto bad;
944 }
945
946 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530947 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700948 else
Sujith2660b812009-02-09 13:27:26 +0530949 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700950
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700951 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700952
953 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700954bad:
Sujithcbe61d82009-02-09 13:27:12 +0530955 if (ah)
956 ath9k_hw_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700957 if (status)
958 *status = ecode;
Sujithf1dc5602008-10-29 10:16:30 +0530959
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700960 return NULL;
961}
962
Sujithcbe61d82009-02-09 13:27:12 +0530963static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530964 struct ath9k_channel *chan)
965{
966 u32 synthDelay;
967
968 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530969 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530970 synthDelay = (4 * synthDelay) / 22;
971 else
972 synthDelay /= 10;
973
974 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
975
976 udelay(synthDelay + BASE_ACTIVATE_DELAY);
977}
978
Sujithcbe61d82009-02-09 13:27:12 +0530979static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530980{
981 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
982 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
983
984 REG_WRITE(ah, AR_QOS_NO_ACK,
985 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
986 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
987 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
988
989 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
990 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
991 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
992 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
993 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
994}
995
Sujithcbe61d82009-02-09 13:27:12 +0530996static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530997 struct ath9k_channel *chan)
998{
999 u32 pll;
1000
1001 if (AR_SREV_9100(ah)) {
1002 if (chan && IS_CHAN_5GHZ(chan))
1003 pll = 0x1450;
1004 else
1005 pll = 0x1458;
1006 } else {
1007 if (AR_SREV_9280_10_OR_LATER(ah)) {
1008 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1009
1010 if (chan && IS_CHAN_HALF_RATE(chan))
1011 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1012 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1013 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1014
1015 if (chan && IS_CHAN_5GHZ(chan)) {
1016 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1017
1018
1019 if (AR_SREV_9280_20(ah)) {
1020 if (((chan->channel % 20) == 0)
1021 || ((chan->channel % 10) == 0))
1022 pll = 0x2850;
1023 else
1024 pll = 0x142c;
1025 }
1026 } else {
1027 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1028 }
1029
1030 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1031
1032 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1033
1034 if (chan && IS_CHAN_HALF_RATE(chan))
1035 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1036 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1037 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1038
1039 if (chan && IS_CHAN_5GHZ(chan))
1040 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1041 else
1042 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1043 } else {
1044 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1045
1046 if (chan && IS_CHAN_HALF_RATE(chan))
1047 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1048 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1049 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1050
1051 if (chan && IS_CHAN_5GHZ(chan))
1052 pll |= SM(0xa, AR_RTC_PLL_DIV);
1053 else
1054 pll |= SM(0xb, AR_RTC_PLL_DIV);
1055 }
1056 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001057 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301058
1059 udelay(RTC_PLL_SETTLE_DELAY);
1060
1061 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1062}
1063
Sujithcbe61d82009-02-09 13:27:12 +05301064static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301065{
Sujithf1dc5602008-10-29 10:16:30 +05301066 int rx_chainmask, tx_chainmask;
1067
Sujith2660b812009-02-09 13:27:26 +05301068 rx_chainmask = ah->rxchainmask;
1069 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301070
1071 switch (rx_chainmask) {
1072 case 0x5:
1073 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1074 AR_PHY_SWAP_ALT_CHAIN);
1075 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301076 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301077 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1078 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1079 break;
1080 }
1081 case 0x1:
1082 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301083 case 0x7:
1084 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1085 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1086 break;
1087 default:
1088 break;
1089 }
1090
1091 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1092 if (tx_chainmask == 0x5) {
1093 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1094 AR_PHY_SWAP_ALT_CHAIN);
1095 }
1096 if (AR_SREV_9100(ah))
1097 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1098 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1099}
1100
Sujithcbe61d82009-02-09 13:27:12 +05301101static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001102 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301103{
Sujith2660b812009-02-09 13:27:26 +05301104 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301105 AR_IMR_TXURN |
1106 AR_IMR_RXERR |
1107 AR_IMR_RXORN |
1108 AR_IMR_BCNMISC;
1109
Sujith0ef1f162009-03-30 15:28:35 +05301110 if (ah->config.intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301111 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301112 else
Sujith2660b812009-02-09 13:27:26 +05301113 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301114
Sujith2660b812009-02-09 13:27:26 +05301115 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301116
Colin McCabed97809d2008-12-01 13:38:55 -08001117 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301118 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301119
Sujith2660b812009-02-09 13:27:26 +05301120 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301121 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1122
1123 if (!AR_SREV_9100(ah)) {
1124 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1125 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1126 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1127 }
1128}
1129
Sujithcbe61d82009-02-09 13:27:12 +05301130static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301131{
Sujithf1dc5602008-10-29 10:16:30 +05301132 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd4632008-11-28 22:18:05 +05301133 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301134 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301135 return false;
1136 } else {
1137 REG_RMW_FIELD(ah, AR_TIME_OUT,
1138 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301139 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301140 return true;
1141 }
1142}
1143
Sujithcbe61d82009-02-09 13:27:12 +05301144static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301145{
Sujithf1dc5602008-10-29 10:16:30 +05301146 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd4632008-11-28 22:18:05 +05301147 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301148 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301149 return false;
1150 } else {
1151 REG_RMW_FIELD(ah, AR_TIME_OUT,
1152 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301153 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301154 return true;
1155 }
1156}
1157
Sujithcbe61d82009-02-09 13:27:12 +05301158static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301159{
Sujithf1dc5602008-10-29 10:16:30 +05301160 if (tu > 0xFFFF) {
1161 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301162 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301163 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301164 return false;
1165 } else {
1166 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301167 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301168 return true;
1169 }
1170}
1171
Sujithcbe61d82009-02-09 13:27:12 +05301172static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301173{
Sujith2660b812009-02-09 13:27:26 +05301174 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1175 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301176
Sujith2660b812009-02-09 13:27:26 +05301177 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301178 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301179 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1180 if (ah->slottime != (u32) -1)
1181 ath9k_hw_setslottime(ah, ah->slottime);
1182 if (ah->acktimeout != (u32) -1)
1183 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1184 if (ah->ctstimeout != (u32) -1)
1185 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1186 if (ah->globaltxtimeout != (u32) -1)
1187 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301188}
1189
1190const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1191{
1192 return vendorid == ATHEROS_VENDOR_ID ?
1193 ath9k_hw_devname(devid) : NULL;
1194}
1195
Sujithcbe61d82009-02-09 13:27:12 +05301196void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001197{
1198 if (!AR_SREV_9100(ah))
1199 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200
Sujithf1dc5602008-10-29 10:16:30 +05301201 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001202 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1203 kfree(ah);
1204}
1205
Sujithcbe61d82009-02-09 13:27:12 +05301206struct ath_hw *ath9k_hw_attach(u16 devid, struct ath_softc *sc, int *error)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001207{
Sujithcbe61d82009-02-09 13:27:12 +05301208 struct ath_hw *ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001209
Sujithf1dc5602008-10-29 10:16:30 +05301210 switch (devid) {
1211 case AR5416_DEVID_PCI:
1212 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001213 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301214 case AR9160_DEVID_PCI:
1215 case AR9280_DEVID_PCI:
1216 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301217 case AR9285_DEVID_PCIE:
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301218 case AR5416_DEVID_AR9287_PCI:
1219 case AR5416_DEVID_AR9287_PCIE:
Sujithcbe61d82009-02-09 13:27:12 +05301220 ah = ath9k_hw_do_attach(devid, sc, error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001221 break;
Sujithf1dc5602008-10-29 10:16:30 +05301222 default:
Sujithf1dc5602008-10-29 10:16:30 +05301223 *error = -ENXIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224 break;
1225 }
1226
Sujithf1dc5602008-10-29 10:16:30 +05301227 return ah;
1228}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001229
Sujithf1dc5602008-10-29 10:16:30 +05301230/*******/
1231/* INI */
1232/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001233
Sujithcbe61d82009-02-09 13:27:12 +05301234static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301235 struct ath9k_channel *chan)
1236{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301237 /*
1238 * Set the RX_ABORT and RX_DIS and clear if off only after
1239 * RXE is set for MAC. This prevents frames with corrupted
1240 * descriptor status.
1241 */
1242 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1243
1244
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001245 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301246 AR_SREV_9280_10_OR_LATER(ah))
1247 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001248
Sujithf1dc5602008-10-29 10:16:30 +05301249 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1250}
1251
Sujithcbe61d82009-02-09 13:27:12 +05301252static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301253 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301254 u32 reg, u32 value)
1255{
1256 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1257
Sujithd535a422009-02-09 13:27:06 +05301258 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301259 case AR9280_DEVID_PCI:
1260 if (reg == 0x7894) {
Sujithd8baa932009-03-30 15:28:25 +05301261 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301262 "ini VAL: %x EEPROM: %x\n", value,
1263 (pBase->version & 0xff));
1264
1265 if ((pBase->version & 0xff) > 0x0a) {
Sujithd8baa932009-03-30 15:28:25 +05301266 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301267 "PWDCLKIND: %d\n",
1268 pBase->pwdclkind);
1269 value &= ~AR_AN_TOP2_PWDCLKIND;
1270 value |= AR_AN_TOP2_PWDCLKIND &
1271 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1272 } else {
Sujithd8baa932009-03-30 15:28:25 +05301273 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301274 "PWDCLKIND Earlier Rev\n");
1275 }
1276
Sujithd8baa932009-03-30 15:28:25 +05301277 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301278 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001279 }
Sujithf1dc5602008-10-29 10:16:30 +05301280 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001281 }
1282
Sujithf1dc5602008-10-29 10:16:30 +05301283 return value;
1284}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001285
Sujithcbe61d82009-02-09 13:27:12 +05301286static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301287 struct ar5416_eeprom_def *pEepData,
1288 u32 reg, u32 value)
1289{
Sujith2660b812009-02-09 13:27:26 +05301290 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301291 return value;
1292 else
1293 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1294}
1295
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301296static void ath9k_olc_init(struct ath_hw *ah)
1297{
1298 u32 i;
1299
1300 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1301 ah->originalGain[i] =
1302 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1303 AR_PHY_TX_GAIN);
1304 ah->PDADCdelta = 0;
1305}
1306
Bob Copeland3a702e42009-03-30 22:30:29 -04001307static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1308 struct ath9k_channel *chan)
1309{
1310 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1311
1312 if (IS_CHAN_B(chan))
1313 ctl |= CTL_11B;
1314 else if (IS_CHAN_G(chan))
1315 ctl |= CTL_11G;
1316 else
1317 ctl |= CTL_11A;
1318
1319 return ctl;
1320}
1321
Sujithcbe61d82009-02-09 13:27:12 +05301322static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301323 struct ath9k_channel *chan,
1324 enum ath9k_ht_macmode macmode)
1325{
1326 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001327 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301328 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001329
Sujithf1dc5602008-10-29 10:16:30 +05301330 switch (chan->chanmode) {
1331 case CHANNEL_A:
1332 case CHANNEL_A_HT20:
1333 modesIndex = 1;
1334 freqIndex = 1;
1335 break;
1336 case CHANNEL_A_HT40PLUS:
1337 case CHANNEL_A_HT40MINUS:
1338 modesIndex = 2;
1339 freqIndex = 1;
1340 break;
1341 case CHANNEL_G:
1342 case CHANNEL_G_HT20:
1343 case CHANNEL_B:
1344 modesIndex = 4;
1345 freqIndex = 2;
1346 break;
1347 case CHANNEL_G_HT40PLUS:
1348 case CHANNEL_G_HT40MINUS:
1349 modesIndex = 3;
1350 freqIndex = 2;
1351 break;
1352
1353 default:
1354 return -EINVAL;
1355 }
1356
1357 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301358 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301359 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301360
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001361 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301362 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301363 } else {
1364 struct ar5416IniArray temp;
1365 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301366 sizeof(u32) * ah->iniAddac.ia_rows *
1367 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301368
Sujith2660b812009-02-09 13:27:26 +05301369 memcpy(ah->addac5416_21,
1370 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301371
Sujith2660b812009-02-09 13:27:26 +05301372 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301373
Sujith2660b812009-02-09 13:27:26 +05301374 temp.ia_array = ah->addac5416_21;
1375 temp.ia_columns = ah->iniAddac.ia_columns;
1376 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301377 REG_WRITE_ARRAY(&temp, 1, regWrites);
1378 }
1379
1380 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1381
Sujith2660b812009-02-09 13:27:26 +05301382 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1383 u32 reg = INI_RA(&ah->iniModes, i, 0);
1384 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301385
Sujithf1dc5602008-10-29 10:16:30 +05301386 REG_WRITE(ah, reg, val);
1387
1388 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301389 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301390 udelay(100);
1391 }
1392
1393 DO_DELAY(regWrites);
1394 }
1395
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301396 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301397 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301398
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301399 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1400 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301401 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301402
Sujith2660b812009-02-09 13:27:26 +05301403 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1404 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1405 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301406
1407 REG_WRITE(ah, reg, val);
1408
1409 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301410 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301411 udelay(100);
1412 }
1413
1414 DO_DELAY(regWrites);
1415 }
1416
1417 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1418
1419 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301420 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301421 regWrites);
1422 }
1423
1424 ath9k_hw_override_ini(ah, chan);
1425 ath9k_hw_set_regs(ah, chan, macmode);
1426 ath9k_hw_init_chain_masks(ah);
1427
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301428 if (OLC_FOR_AR9280_20_LATER)
1429 ath9k_olc_init(ah);
1430
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001431 ah->eep_ops->set_txpower(ah, chan,
1432 ath9k_regd_get_ctl(&ah->regulatory, chan),
1433 channel->max_antenna_gain * 2,
1434 channel->max_power * 2,
1435 min((u32) MAX_RATE_POWER,
1436 (u32) ah->regulatory.power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001437
Sujithf1dc5602008-10-29 10:16:30 +05301438 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Sujithd8baa932009-03-30 15:28:25 +05301439 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301440 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001441 return -EIO;
1442 }
1443
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001444 return 0;
1445}
1446
Sujithf1dc5602008-10-29 10:16:30 +05301447/****************************************/
1448/* Reset and Channel Switching Routines */
1449/****************************************/
1450
Sujithcbe61d82009-02-09 13:27:12 +05301451static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301452{
1453 u32 rfMode = 0;
1454
1455 if (chan == NULL)
1456 return;
1457
1458 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1459 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1460
1461 if (!AR_SREV_9280_10_OR_LATER(ah))
1462 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1463 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1464
1465 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1466 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1467
1468 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1469}
1470
Sujithcbe61d82009-02-09 13:27:12 +05301471static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301472{
1473 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1474}
1475
Sujithcbe61d82009-02-09 13:27:12 +05301476static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301477{
1478 u32 regval;
1479
1480 regval = REG_READ(ah, AR_AHB_MODE);
1481 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1482
1483 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1484 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1485
Sujith2660b812009-02-09 13:27:26 +05301486 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301487
1488 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1489 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1490
1491 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1492
1493 if (AR_SREV_9285(ah)) {
1494 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1495 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1496 } else {
1497 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1498 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1499 }
1500}
1501
Sujithcbe61d82009-02-09 13:27:12 +05301502static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301503{
1504 u32 val;
1505
1506 val = REG_READ(ah, AR_STA_ID1);
1507 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1508 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001509 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301510 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1511 | AR_STA_ID1_KSRCH_MODE);
1512 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1513 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001514 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001515 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301516 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1517 | AR_STA_ID1_KSRCH_MODE);
1518 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1519 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001520 case NL80211_IFTYPE_STATION:
1521 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301522 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1523 break;
1524 }
1525}
1526
Sujithcbe61d82009-02-09 13:27:12 +05301527static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528 u32 coef_scaled,
1529 u32 *coef_mantissa,
1530 u32 *coef_exponent)
1531{
1532 u32 coef_exp, coef_man;
1533
1534 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1535 if ((coef_scaled >> coef_exp) & 0x1)
1536 break;
1537
1538 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1539
1540 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1541
1542 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1543 *coef_exponent = coef_exp - 16;
1544}
1545
Sujithcbe61d82009-02-09 13:27:12 +05301546static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301547 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001548{
1549 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1550 u32 clockMhzScaled = 0x64000000;
1551 struct chan_centers centers;
1552
1553 if (IS_CHAN_HALF_RATE(chan))
1554 clockMhzScaled = clockMhzScaled >> 1;
1555 else if (IS_CHAN_QUARTER_RATE(chan))
1556 clockMhzScaled = clockMhzScaled >> 2;
1557
1558 ath9k_hw_get_channel_centers(ah, chan, &centers);
1559 coef_scaled = clockMhzScaled / centers.synth_center;
1560
1561 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1562 &ds_coef_exp);
1563
1564 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1565 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1566 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1567 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1568
1569 coef_scaled = (9 * coef_scaled) / 10;
1570
1571 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1572 &ds_coef_exp);
1573
1574 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1575 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1576 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1577 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1578}
1579
Sujithcbe61d82009-02-09 13:27:12 +05301580static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301581{
1582 u32 rst_flags;
1583 u32 tmpReg;
1584
Sujith70768492009-02-16 13:23:12 +05301585 if (AR_SREV_9100(ah)) {
1586 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1587 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1588 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1589 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1590 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1591 }
1592
Sujithf1dc5602008-10-29 10:16:30 +05301593 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1594 AR_RTC_FORCE_WAKE_ON_INT);
1595
1596 if (AR_SREV_9100(ah)) {
1597 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1598 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1599 } else {
1600 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1601 if (tmpReg &
1602 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1603 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1604 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1605 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1606 } else {
1607 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1608 }
1609
1610 rst_flags = AR_RTC_RC_MAC_WARM;
1611 if (type == ATH9K_RESET_COLD)
1612 rst_flags |= AR_RTC_RC_MAC_COLD;
1613 }
1614
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001615 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301616 udelay(50);
1617
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001618 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301619 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301620 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301621 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301622 return false;
1623 }
1624
1625 if (!AR_SREV_9100(ah))
1626 REG_WRITE(ah, AR_RC, 0);
1627
1628 ath9k_hw_init_pll(ah, NULL);
1629
1630 if (AR_SREV_9100(ah))
1631 udelay(50);
1632
1633 return true;
1634}
1635
Sujithcbe61d82009-02-09 13:27:12 +05301636static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301637{
1638 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1639 AR_RTC_FORCE_WAKE_ON_INT);
1640
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001641 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301642 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001643 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301644
1645 if (!ath9k_hw_wait(ah,
1646 AR_RTC_STATUS,
1647 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301648 AR_RTC_STATUS_ON,
1649 AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301650 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301651 return false;
1652 }
1653
1654 ath9k_hw_read_revisions(ah);
1655
1656 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1657}
1658
Sujithcbe61d82009-02-09 13:27:12 +05301659static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301660{
1661 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1662 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1663
1664 switch (type) {
1665 case ATH9K_RESET_POWER_ON:
1666 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301667 case ATH9K_RESET_WARM:
1668 case ATH9K_RESET_COLD:
1669 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301670 default:
1671 return false;
1672 }
1673}
1674
Sujithcbe61d82009-02-09 13:27:12 +05301675static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301676 enum ath9k_ht_macmode macmode)
1677{
1678 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301679 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301680
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301681 if (AR_SREV_9285_10_OR_LATER(ah))
1682 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1683 AR_PHY_FC_ENABLE_DAC_FIFO);
1684
Sujithf1dc5602008-10-29 10:16:30 +05301685 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301686 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301687
1688 if (IS_CHAN_HT40(chan)) {
1689 phymode |= AR_PHY_FC_DYN2040_EN;
1690
1691 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1692 (chan->chanmode == CHANNEL_G_HT40PLUS))
1693 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1694
Sujith2660b812009-02-09 13:27:26 +05301695 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301696 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1697 }
1698 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1699
1700 ath9k_hw_set11nmac2040(ah, macmode);
1701
1702 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1703 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1704}
1705
Sujithcbe61d82009-02-09 13:27:12 +05301706static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301707 struct ath9k_channel *chan)
1708{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301709 if (OLC_FOR_AR9280_20_LATER) {
1710 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1711 return false;
1712 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301713 return false;
1714
1715 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1716 return false;
1717
Sujith2660b812009-02-09 13:27:26 +05301718 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301719 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301720 ath9k_hw_set_rfmode(ah, chan);
1721
1722 return true;
1723}
1724
Sujithcbe61d82009-02-09 13:27:12 +05301725static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301726 struct ath9k_channel *chan,
1727 enum ath9k_ht_macmode macmode)
1728{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001729 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301730 u32 synthDelay, qnum;
1731
1732 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1733 if (ath9k_hw_numtxpending(ah, qnum)) {
1734 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301735 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301736 return false;
1737 }
1738 }
1739
1740 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1741 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301742 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujithd8baa932009-03-30 15:28:25 +05301743 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301744 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301745 return false;
1746 }
1747
1748 ath9k_hw_set_regs(ah, chan, macmode);
1749
1750 if (AR_SREV_9280_10_OR_LATER(ah)) {
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001751 ath9k_hw_ar9280_set_channel(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301752 } else {
1753 if (!(ath9k_hw_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301754 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1755 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301756 return false;
1757 }
1758 }
1759
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001760 ah->eep_ops->set_txpower(ah, chan,
Bob Copelandc02cf372009-03-30 22:30:28 -04001761 ath9k_regd_get_ctl(&ah->regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301762 channel->max_antenna_gain * 2,
1763 channel->max_power * 2,
1764 min((u32) MAX_RATE_POWER,
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001765 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301766
1767 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301768 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301769 synthDelay = (4 * synthDelay) / 22;
1770 else
1771 synthDelay /= 10;
1772
1773 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1774
1775 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1776
1777 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1778 ath9k_hw_set_delta_slope(ah, chan);
1779
1780 if (AR_SREV_9280_10_OR_LATER(ah))
1781 ath9k_hw_9280_spur_mitigate(ah, chan);
1782 else
1783 ath9k_hw_spur_mitigate(ah, chan);
1784
1785 if (!chan->oneTimeCalsDone)
1786 chan->oneTimeCalsDone = true;
1787
1788 return true;
1789}
1790
Sujithcbe61d82009-02-09 13:27:12 +05301791static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792{
1793 int bb_spur = AR_NO_SPUR;
1794 int freq;
1795 int bin, cur_bin;
1796 int bb_spur_off, spur_subchannel_sd;
1797 int spur_freq_sd;
1798 int spur_delta_phase;
1799 int denominator;
1800 int upper, lower, cur_vit_mask;
1801 int tmp, newVal;
1802 int i;
1803 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1804 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1805 };
1806 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1807 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1808 };
1809 int inc[4] = { 0, 100, 0, 0 };
1810 struct chan_centers centers;
1811
1812 int8_t mask_m[123];
1813 int8_t mask_p[123];
1814 int8_t mask_amt;
1815 int tmp_mask;
1816 int cur_bb_spur;
1817 bool is2GHz = IS_CHAN_2GHZ(chan);
1818
1819 memset(&mask_m, 0, sizeof(int8_t) * 123);
1820 memset(&mask_p, 0, sizeof(int8_t) * 123);
1821
1822 ath9k_hw_get_channel_centers(ah, chan, &centers);
1823 freq = centers.synth_center;
1824
Sujith2660b812009-02-09 13:27:26 +05301825 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301827 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001828
1829 if (is2GHz)
1830 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1831 else
1832 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1833
1834 if (AR_NO_SPUR == cur_bb_spur)
1835 break;
1836 cur_bb_spur = cur_bb_spur - freq;
1837
1838 if (IS_CHAN_HT40(chan)) {
1839 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1840 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1841 bb_spur = cur_bb_spur;
1842 break;
1843 }
1844 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1845 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1846 bb_spur = cur_bb_spur;
1847 break;
1848 }
1849 }
1850
1851 if (AR_NO_SPUR == bb_spur) {
1852 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1853 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1854 return;
1855 } else {
1856 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1857 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1858 }
1859
1860 bin = bb_spur * 320;
1861
1862 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1863
1864 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1865 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1866 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1867 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1868 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1869
1870 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1871 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1872 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1873 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1874 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1875 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1876
1877 if (IS_CHAN_HT40(chan)) {
1878 if (bb_spur < 0) {
1879 spur_subchannel_sd = 1;
1880 bb_spur_off = bb_spur + 10;
1881 } else {
1882 spur_subchannel_sd = 0;
1883 bb_spur_off = bb_spur - 10;
1884 }
1885 } else {
1886 spur_subchannel_sd = 0;
1887 bb_spur_off = bb_spur;
1888 }
1889
1890 if (IS_CHAN_HT40(chan))
1891 spur_delta_phase =
1892 ((bb_spur * 262144) /
1893 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1894 else
1895 spur_delta_phase =
1896 ((bb_spur * 524288) /
1897 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1898
1899 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1900 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1901
1902 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1903 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1904 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1905 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1906
1907 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1908 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1909
1910 cur_bin = -6000;
1911 upper = bin + 100;
1912 lower = bin - 100;
1913
1914 for (i = 0; i < 4; i++) {
1915 int pilot_mask = 0;
1916 int chan_mask = 0;
1917 int bp = 0;
1918 for (bp = 0; bp < 30; bp++) {
1919 if ((cur_bin > lower) && (cur_bin < upper)) {
1920 pilot_mask = pilot_mask | 0x1 << bp;
1921 chan_mask = chan_mask | 0x1 << bp;
1922 }
1923 cur_bin += 100;
1924 }
1925 cur_bin += inc[i];
1926 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1927 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1928 }
1929
1930 cur_vit_mask = 6100;
1931 upper = bin + 120;
1932 lower = bin - 120;
1933
1934 for (i = 0; i < 123; i++) {
1935 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001936
1937 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001938 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001939
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001940 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001941 mask_amt = 1;
1942 else
1943 mask_amt = 0;
1944 if (cur_vit_mask < 0)
1945 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1946 else
1947 mask_p[cur_vit_mask / 100] = mask_amt;
1948 }
1949 cur_vit_mask -= 100;
1950 }
1951
1952 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1953 | (mask_m[48] << 26) | (mask_m[49] << 24)
1954 | (mask_m[50] << 22) | (mask_m[51] << 20)
1955 | (mask_m[52] << 18) | (mask_m[53] << 16)
1956 | (mask_m[54] << 14) | (mask_m[55] << 12)
1957 | (mask_m[56] << 10) | (mask_m[57] << 8)
1958 | (mask_m[58] << 6) | (mask_m[59] << 4)
1959 | (mask_m[60] << 2) | (mask_m[61] << 0);
1960 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1961 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1962
1963 tmp_mask = (mask_m[31] << 28)
1964 | (mask_m[32] << 26) | (mask_m[33] << 24)
1965 | (mask_m[34] << 22) | (mask_m[35] << 20)
1966 | (mask_m[36] << 18) | (mask_m[37] << 16)
1967 | (mask_m[48] << 14) | (mask_m[39] << 12)
1968 | (mask_m[40] << 10) | (mask_m[41] << 8)
1969 | (mask_m[42] << 6) | (mask_m[43] << 4)
1970 | (mask_m[44] << 2) | (mask_m[45] << 0);
1971 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1972 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1973
1974 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1975 | (mask_m[18] << 26) | (mask_m[18] << 24)
1976 | (mask_m[20] << 22) | (mask_m[20] << 20)
1977 | (mask_m[22] << 18) | (mask_m[22] << 16)
1978 | (mask_m[24] << 14) | (mask_m[24] << 12)
1979 | (mask_m[25] << 10) | (mask_m[26] << 8)
1980 | (mask_m[27] << 6) | (mask_m[28] << 4)
1981 | (mask_m[29] << 2) | (mask_m[30] << 0);
1982 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1983 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1984
1985 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1986 | (mask_m[2] << 26) | (mask_m[3] << 24)
1987 | (mask_m[4] << 22) | (mask_m[5] << 20)
1988 | (mask_m[6] << 18) | (mask_m[7] << 16)
1989 | (mask_m[8] << 14) | (mask_m[9] << 12)
1990 | (mask_m[10] << 10) | (mask_m[11] << 8)
1991 | (mask_m[12] << 6) | (mask_m[13] << 4)
1992 | (mask_m[14] << 2) | (mask_m[15] << 0);
1993 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1994 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1995
1996 tmp_mask = (mask_p[15] << 28)
1997 | (mask_p[14] << 26) | (mask_p[13] << 24)
1998 | (mask_p[12] << 22) | (mask_p[11] << 20)
1999 | (mask_p[10] << 18) | (mask_p[9] << 16)
2000 | (mask_p[8] << 14) | (mask_p[7] << 12)
2001 | (mask_p[6] << 10) | (mask_p[5] << 8)
2002 | (mask_p[4] << 6) | (mask_p[3] << 4)
2003 | (mask_p[2] << 2) | (mask_p[1] << 0);
2004 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2005 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2006
2007 tmp_mask = (mask_p[30] << 28)
2008 | (mask_p[29] << 26) | (mask_p[28] << 24)
2009 | (mask_p[27] << 22) | (mask_p[26] << 20)
2010 | (mask_p[25] << 18) | (mask_p[24] << 16)
2011 | (mask_p[23] << 14) | (mask_p[22] << 12)
2012 | (mask_p[21] << 10) | (mask_p[20] << 8)
2013 | (mask_p[19] << 6) | (mask_p[18] << 4)
2014 | (mask_p[17] << 2) | (mask_p[16] << 0);
2015 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2016 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2017
2018 tmp_mask = (mask_p[45] << 28)
2019 | (mask_p[44] << 26) | (mask_p[43] << 24)
2020 | (mask_p[42] << 22) | (mask_p[41] << 20)
2021 | (mask_p[40] << 18) | (mask_p[39] << 16)
2022 | (mask_p[38] << 14) | (mask_p[37] << 12)
2023 | (mask_p[36] << 10) | (mask_p[35] << 8)
2024 | (mask_p[34] << 6) | (mask_p[33] << 4)
2025 | (mask_p[32] << 2) | (mask_p[31] << 0);
2026 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2027 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2028
2029 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2030 | (mask_p[59] << 26) | (mask_p[58] << 24)
2031 | (mask_p[57] << 22) | (mask_p[56] << 20)
2032 | (mask_p[55] << 18) | (mask_p[54] << 16)
2033 | (mask_p[53] << 14) | (mask_p[52] << 12)
2034 | (mask_p[51] << 10) | (mask_p[50] << 8)
2035 | (mask_p[49] << 6) | (mask_p[48] << 4)
2036 | (mask_p[47] << 2) | (mask_p[46] << 0);
2037 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2038 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2039}
2040
Sujithcbe61d82009-02-09 13:27:12 +05302041static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002042{
2043 int bb_spur = AR_NO_SPUR;
2044 int bin, cur_bin;
2045 int spur_freq_sd;
2046 int spur_delta_phase;
2047 int denominator;
2048 int upper, lower, cur_vit_mask;
2049 int tmp, new;
2050 int i;
2051 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2052 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2053 };
2054 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2055 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2056 };
2057 int inc[4] = { 0, 100, 0, 0 };
2058
2059 int8_t mask_m[123];
2060 int8_t mask_p[123];
2061 int8_t mask_amt;
2062 int tmp_mask;
2063 int cur_bb_spur;
2064 bool is2GHz = IS_CHAN_2GHZ(chan);
2065
2066 memset(&mask_m, 0, sizeof(int8_t) * 123);
2067 memset(&mask_p, 0, sizeof(int8_t) * 123);
2068
2069 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302070 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002071 if (AR_NO_SPUR == cur_bb_spur)
2072 break;
2073 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2074 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2075 bb_spur = cur_bb_spur;
2076 break;
2077 }
2078 }
2079
2080 if (AR_NO_SPUR == bb_spur)
2081 return;
2082
2083 bin = bb_spur * 32;
2084
2085 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2086 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2087 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2088 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2089 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2090
2091 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2092
2093 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2094 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2095 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2096 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2097 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2098 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2099
2100 spur_delta_phase = ((bb_spur * 524288) / 100) &
2101 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2102
2103 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2104 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2105
2106 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2107 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2108 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2109 REG_WRITE(ah, AR_PHY_TIMING11, new);
2110
2111 cur_bin = -6000;
2112 upper = bin + 100;
2113 lower = bin - 100;
2114
2115 for (i = 0; i < 4; i++) {
2116 int pilot_mask = 0;
2117 int chan_mask = 0;
2118 int bp = 0;
2119 for (bp = 0; bp < 30; bp++) {
2120 if ((cur_bin > lower) && (cur_bin < upper)) {
2121 pilot_mask = pilot_mask | 0x1 << bp;
2122 chan_mask = chan_mask | 0x1 << bp;
2123 }
2124 cur_bin += 100;
2125 }
2126 cur_bin += inc[i];
2127 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2128 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2129 }
2130
2131 cur_vit_mask = 6100;
2132 upper = bin + 120;
2133 lower = bin - 120;
2134
2135 for (i = 0; i < 123; i++) {
2136 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002137
2138 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002139 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002140
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002141 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142 mask_amt = 1;
2143 else
2144 mask_amt = 0;
2145 if (cur_vit_mask < 0)
2146 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2147 else
2148 mask_p[cur_vit_mask / 100] = mask_amt;
2149 }
2150 cur_vit_mask -= 100;
2151 }
2152
2153 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2154 | (mask_m[48] << 26) | (mask_m[49] << 24)
2155 | (mask_m[50] << 22) | (mask_m[51] << 20)
2156 | (mask_m[52] << 18) | (mask_m[53] << 16)
2157 | (mask_m[54] << 14) | (mask_m[55] << 12)
2158 | (mask_m[56] << 10) | (mask_m[57] << 8)
2159 | (mask_m[58] << 6) | (mask_m[59] << 4)
2160 | (mask_m[60] << 2) | (mask_m[61] << 0);
2161 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2162 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2163
2164 tmp_mask = (mask_m[31] << 28)
2165 | (mask_m[32] << 26) | (mask_m[33] << 24)
2166 | (mask_m[34] << 22) | (mask_m[35] << 20)
2167 | (mask_m[36] << 18) | (mask_m[37] << 16)
2168 | (mask_m[48] << 14) | (mask_m[39] << 12)
2169 | (mask_m[40] << 10) | (mask_m[41] << 8)
2170 | (mask_m[42] << 6) | (mask_m[43] << 4)
2171 | (mask_m[44] << 2) | (mask_m[45] << 0);
2172 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2173 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2174
2175 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2176 | (mask_m[18] << 26) | (mask_m[18] << 24)
2177 | (mask_m[20] << 22) | (mask_m[20] << 20)
2178 | (mask_m[22] << 18) | (mask_m[22] << 16)
2179 | (mask_m[24] << 14) | (mask_m[24] << 12)
2180 | (mask_m[25] << 10) | (mask_m[26] << 8)
2181 | (mask_m[27] << 6) | (mask_m[28] << 4)
2182 | (mask_m[29] << 2) | (mask_m[30] << 0);
2183 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2184 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2185
2186 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2187 | (mask_m[2] << 26) | (mask_m[3] << 24)
2188 | (mask_m[4] << 22) | (mask_m[5] << 20)
2189 | (mask_m[6] << 18) | (mask_m[7] << 16)
2190 | (mask_m[8] << 14) | (mask_m[9] << 12)
2191 | (mask_m[10] << 10) | (mask_m[11] << 8)
2192 | (mask_m[12] << 6) | (mask_m[13] << 4)
2193 | (mask_m[14] << 2) | (mask_m[15] << 0);
2194 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2195 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2196
2197 tmp_mask = (mask_p[15] << 28)
2198 | (mask_p[14] << 26) | (mask_p[13] << 24)
2199 | (mask_p[12] << 22) | (mask_p[11] << 20)
2200 | (mask_p[10] << 18) | (mask_p[9] << 16)
2201 | (mask_p[8] << 14) | (mask_p[7] << 12)
2202 | (mask_p[6] << 10) | (mask_p[5] << 8)
2203 | (mask_p[4] << 6) | (mask_p[3] << 4)
2204 | (mask_p[2] << 2) | (mask_p[1] << 0);
2205 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2206 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2207
2208 tmp_mask = (mask_p[30] << 28)
2209 | (mask_p[29] << 26) | (mask_p[28] << 24)
2210 | (mask_p[27] << 22) | (mask_p[26] << 20)
2211 | (mask_p[25] << 18) | (mask_p[24] << 16)
2212 | (mask_p[23] << 14) | (mask_p[22] << 12)
2213 | (mask_p[21] << 10) | (mask_p[20] << 8)
2214 | (mask_p[19] << 6) | (mask_p[18] << 4)
2215 | (mask_p[17] << 2) | (mask_p[16] << 0);
2216 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2217 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2218
2219 tmp_mask = (mask_p[45] << 28)
2220 | (mask_p[44] << 26) | (mask_p[43] << 24)
2221 | (mask_p[42] << 22) | (mask_p[41] << 20)
2222 | (mask_p[40] << 18) | (mask_p[39] << 16)
2223 | (mask_p[38] << 14) | (mask_p[37] << 12)
2224 | (mask_p[36] << 10) | (mask_p[35] << 8)
2225 | (mask_p[34] << 6) | (mask_p[33] << 4)
2226 | (mask_p[32] << 2) | (mask_p[31] << 0);
2227 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2228 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2229
2230 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2231 | (mask_p[59] << 26) | (mask_p[58] << 24)
2232 | (mask_p[57] << 22) | (mask_p[56] << 20)
2233 | (mask_p[55] << 18) | (mask_p[54] << 16)
2234 | (mask_p[53] << 14) | (mask_p[52] << 12)
2235 | (mask_p[51] << 10) | (mask_p[50] << 8)
2236 | (mask_p[49] << 6) | (mask_p[48] << 4)
2237 | (mask_p[47] << 2) | (mask_p[46] << 0);
2238 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2239 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2240}
2241
Johannes Berg3b319aa2009-06-13 14:50:26 +05302242static void ath9k_enable_rfkill(struct ath_hw *ah)
2243{
2244 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2245 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2246
2247 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2248 AR_GPIO_INPUT_MUX2_RFSILENT);
2249
2250 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2251 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2252}
2253
Sujithcbe61d82009-02-09 13:27:12 +05302254int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002255 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002258 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302259 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002260 u32 saveDefAntenna;
2261 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002262 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263
Sujith2660b812009-02-09 13:27:26 +05302264 ah->extprotspacing = sc->ht_extprotspacing;
2265 ah->txchainmask = sc->tx_chainmask;
2266 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002267
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002268 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2269 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002270
2271 if (curchan)
2272 ath9k_hw_getnf(ah, curchan);
2273
2274 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302275 (ah->chip_fullsleep != true) &&
2276 (ah->curchan != NULL) &&
2277 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302279 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302281 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002282
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002283 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302284 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002285 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002286 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287 }
2288 }
2289
2290 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2291 if (saveDefAntenna == 0)
2292 saveDefAntenna = 1;
2293
2294 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2295
2296 saveLedState = REG_READ(ah, AR_CFG_LED) &
2297 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2298 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2299
2300 ath9k_hw_mark_phy_inactive(ah);
2301
2302 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujithd8baa932009-03-30 15:28:25 +05302303 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002304 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002305 }
2306
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302307 if (AR_SREV_9280_10_OR_LATER(ah))
2308 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002309
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302310 if (AR_SREV_9287_10_OR_LATER(ah)) {
2311 /* Enable ASYNC FIFO */
2312 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2313 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2314 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2315 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2316 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2317 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2318 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2319 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002320 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2321 if (r)
2322 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002323
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002324 /* Setup MFP options for CCMP */
2325 if (AR_SREV_9280_20_OR_LATER(ah)) {
2326 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2327 * frames when constructing CCMP AAD. */
2328 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2329 0xc7ff);
2330 ah->sw_mgmt_crypto = false;
2331 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2332 /* Disable hardware crypto for management frames */
2333 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2334 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2335 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2336 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2337 ah->sw_mgmt_crypto = true;
2338 } else
2339 ah->sw_mgmt_crypto = true;
2340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002341 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2342 ath9k_hw_set_delta_slope(ah, chan);
2343
2344 if (AR_SREV_9280_10_OR_LATER(ah))
2345 ath9k_hw_9280_spur_mitigate(ah, chan);
2346 else
2347 ath9k_hw_spur_mitigate(ah, chan);
2348
Sujithd6509152009-03-13 08:56:05 +05302349 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002350
2351 ath9k_hw_decrease_chain_power(ah, chan);
2352
Sujithba52da52009-02-09 13:27:10 +05302353 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2354 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355 | macStaId1
2356 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302357 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302358 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302359 | ah->sta_id1_defaults);
2360 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002361
Sujithba52da52009-02-09 13:27:10 +05302362 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2363 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364
2365 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2366
Sujithba52da52009-02-09 13:27:10 +05302367 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2368 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2369 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002370
2371 REG_WRITE(ah, AR_ISR, ~0);
2372
2373 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2374
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002375 if (AR_SREV_9280_10_OR_LATER(ah))
2376 ath9k_hw_ar9280_set_channel(ah, chan);
2377 else
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002378 if (!(ath9k_hw_set_channel(ah, chan)))
2379 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002380
2381 for (i = 0; i < AR_NUM_DCU; i++)
2382 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2383
Sujith2660b812009-02-09 13:27:26 +05302384 ah->intr_txqs = 0;
2385 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002386 ath9k_hw_resettxqueue(ah, i);
2387
Sujith2660b812009-02-09 13:27:26 +05302388 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 ath9k_hw_init_qos(ah);
2390
Sujith2660b812009-02-09 13:27:26 +05302391 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302392 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302393
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002394 ath9k_hw_init_user_settings(ah);
2395
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302396 if (AR_SREV_9287_10_OR_LATER(ah)) {
2397 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2398 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2399 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2400 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2401 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2402 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2403
2404 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2405 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2406
2407 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2408 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2409 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2410 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2411 }
2412 if (AR_SREV_9287_10_OR_LATER(ah)) {
2413 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2414 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2415 }
2416
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002417 REG_WRITE(ah, AR_STA_ID1,
2418 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2419
2420 ath9k_hw_set_dma(ah);
2421
2422 REG_WRITE(ah, AR_OBS, 8);
2423
Sujith0ef1f162009-03-30 15:28:35 +05302424 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2426 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2427 }
2428
2429 ath9k_hw_init_bb(ah, chan);
2430
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002431 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002432 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433
Sujith2660b812009-02-09 13:27:26 +05302434 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002435 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2436 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2437 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2438 }
2439
2440 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2441
2442 if (AR_SREV_9100(ah)) {
2443 u32 mask;
2444 mask = REG_READ(ah, AR_CFG);
2445 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2446 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302447 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002448 } else {
2449 mask =
2450 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2451 REG_WRITE(ah, AR_CFG, mask);
2452 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302453 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454 }
2455 } else {
2456#ifdef __BIG_ENDIAN
2457 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2458#endif
2459 }
2460
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002461 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002462}
2463
Sujithf1dc5602008-10-29 10:16:30 +05302464/************************/
2465/* Key Cache Management */
2466/************************/
2467
Sujithcbe61d82009-02-09 13:27:12 +05302468bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002469{
Sujithf1dc5602008-10-29 10:16:30 +05302470 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471
Sujith2660b812009-02-09 13:27:26 +05302472 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302473 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2474 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475 return false;
2476 }
2477
Sujithf1dc5602008-10-29 10:16:30 +05302478 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479
Sujithf1dc5602008-10-29 10:16:30 +05302480 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2481 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2482 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2483 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2484 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2485 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2486 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2487 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2488
2489 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2490 u16 micentry = entry + 64;
2491
2492 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2493 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2494 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2495 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2496
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002497 }
2498
Sujith2660b812009-02-09 13:27:26 +05302499 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302500 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002501
2502 return true;
2503}
2504
Sujithcbe61d82009-02-09 13:27:12 +05302505bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002506{
Sujithf1dc5602008-10-29 10:16:30 +05302507 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002508
Sujith2660b812009-02-09 13:27:26 +05302509 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302510 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2511 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002512 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 }
2514
Sujithf1dc5602008-10-29 10:16:30 +05302515 if (mac != NULL) {
2516 macHi = (mac[5] << 8) | mac[4];
2517 macLo = (mac[3] << 24) |
2518 (mac[2] << 16) |
2519 (mac[1] << 8) |
2520 mac[0];
2521 macLo >>= 1;
2522 macLo |= (macHi & 1) << 31;
2523 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002524 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302525 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002526 }
Sujithf1dc5602008-10-29 10:16:30 +05302527 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2528 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002529
2530 return true;
2531}
2532
Sujithcbe61d82009-02-09 13:27:12 +05302533bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302534 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002535 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002536{
Sujith2660b812009-02-09 13:27:26 +05302537 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302538 u32 key0, key1, key2, key3, key4;
2539 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002540
Sujithf1dc5602008-10-29 10:16:30 +05302541 if (entry >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302542 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2543 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302544 return false;
2545 }
2546
2547 switch (k->kv_type) {
2548 case ATH9K_CIPHER_AES_OCB:
2549 keyType = AR_KEYTABLE_TYPE_AES;
2550 break;
2551 case ATH9K_CIPHER_AES_CCM:
2552 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Sujithd8baa932009-03-30 15:28:25 +05302553 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302554 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302555 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002556 return false;
2557 }
Sujithf1dc5602008-10-29 10:16:30 +05302558 keyType = AR_KEYTABLE_TYPE_CCM;
2559 break;
2560 case ATH9K_CIPHER_TKIP:
2561 keyType = AR_KEYTABLE_TYPE_TKIP;
2562 if (ATH9K_IS_MIC_ENABLED(ah)
2563 && entry + 64 >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302564 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302565 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002566 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002567 }
Sujithf1dc5602008-10-29 10:16:30 +05302568 break;
2569 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002570 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Sujithd8baa932009-03-30 15:28:25 +05302571 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302572 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302573 return false;
2574 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002575 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302576 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002577 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302578 keyType = AR_KEYTABLE_TYPE_104;
2579 else
2580 keyType = AR_KEYTABLE_TYPE_128;
2581 break;
2582 case ATH9K_CIPHER_CLR:
2583 keyType = AR_KEYTABLE_TYPE_CLR;
2584 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002585 default:
Sujithd8baa932009-03-30 15:28:25 +05302586 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302587 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002588 return false;
2589 }
Sujithf1dc5602008-10-29 10:16:30 +05302590
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002591 key0 = get_unaligned_le32(k->kv_val + 0);
2592 key1 = get_unaligned_le16(k->kv_val + 4);
2593 key2 = get_unaligned_le32(k->kv_val + 6);
2594 key3 = get_unaligned_le16(k->kv_val + 10);
2595 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002596 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302597 key4 &= 0xff;
2598
Jouni Malinen672903b2009-03-02 15:06:31 +02002599 /*
2600 * Note: Key cache registers access special memory area that requires
2601 * two 32-bit writes to actually update the values in the internal
2602 * memory. Consequently, the exact order and pairs used here must be
2603 * maintained.
2604 */
2605
Sujithf1dc5602008-10-29 10:16:30 +05302606 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2607 u16 micentry = entry + 64;
2608
Jouni Malinen672903b2009-03-02 15:06:31 +02002609 /*
2610 * Write inverted key[47:0] first to avoid Michael MIC errors
2611 * on frames that could be sent or received at the same time.
2612 * The correct key will be written in the end once everything
2613 * else is ready.
2614 */
Sujithf1dc5602008-10-29 10:16:30 +05302615 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2616 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002617
2618 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302619 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2620 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002621
2622 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302623 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2624 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002625
2626 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302627 (void) ath9k_hw_keysetmac(ah, entry, mac);
2628
Sujith2660b812009-02-09 13:27:26 +05302629 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002630 /*
2631 * TKIP uses two key cache entries:
2632 * Michael MIC TX/RX keys in the same key cache entry
2633 * (idx = main index + 64):
2634 * key0 [31:0] = RX key [31:0]
2635 * key1 [15:0] = TX key [31:16]
2636 * key1 [31:16] = reserved
2637 * key2 [31:0] = RX key [63:32]
2638 * key3 [15:0] = TX key [15:0]
2639 * key3 [31:16] = reserved
2640 * key4 [31:0] = TX key [63:32]
2641 */
Sujithf1dc5602008-10-29 10:16:30 +05302642 u32 mic0, mic1, mic2, mic3, mic4;
2643
2644 mic0 = get_unaligned_le32(k->kv_mic + 0);
2645 mic2 = get_unaligned_le32(k->kv_mic + 4);
2646 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2647 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2648 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002649
2650 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302651 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2652 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002653
2654 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302655 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2656 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002657
2658 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302659 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2660 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2661 AR_KEYTABLE_TYPE_CLR);
2662
2663 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002664 /*
2665 * TKIP uses four key cache entries (two for group
2666 * keys):
2667 * Michael MIC TX/RX keys are in different key cache
2668 * entries (idx = main index + 64 for TX and
2669 * main index + 32 + 96 for RX):
2670 * key0 [31:0] = TX/RX MIC key [31:0]
2671 * key1 [31:0] = reserved
2672 * key2 [31:0] = TX/RX MIC key [63:32]
2673 * key3 [31:0] = reserved
2674 * key4 [31:0] = reserved
2675 *
2676 * Upper layer code will call this function separately
2677 * for TX and RX keys when these registers offsets are
2678 * used.
2679 */
Sujithf1dc5602008-10-29 10:16:30 +05302680 u32 mic0, mic2;
2681
2682 mic0 = get_unaligned_le32(k->kv_mic + 0);
2683 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002684
2685 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302686 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2687 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002688
2689 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302690 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2691 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002692
2693 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302694 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2695 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2696 AR_KEYTABLE_TYPE_CLR);
2697 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002698
2699 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302700 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2701 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002702
2703 /*
2704 * Write the correct (un-inverted) key[47:0] last to enable
2705 * TKIP now that all other registers are set with correct
2706 * values.
2707 */
Sujithf1dc5602008-10-29 10:16:30 +05302708 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2709 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2710 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002711 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302712 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2713 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002714
2715 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302716 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2717 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002718
2719 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302720 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2721 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2722
Jouni Malinen672903b2009-03-02 15:06:31 +02002723 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302724 (void) ath9k_hw_keysetmac(ah, entry, mac);
2725 }
2726
Sujithf1dc5602008-10-29 10:16:30 +05302727 return true;
2728}
2729
Sujithcbe61d82009-02-09 13:27:12 +05302730bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302731{
Sujith2660b812009-02-09 13:27:26 +05302732 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302733 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2734 if (val & AR_KEYTABLE_VALID)
2735 return true;
2736 }
2737 return false;
2738}
2739
2740/******************************/
2741/* Power Management (Chipset) */
2742/******************************/
2743
Sujithcbe61d82009-02-09 13:27:12 +05302744static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302745{
2746 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2747 if (setChip) {
2748 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2749 AR_RTC_FORCE_WAKE_EN);
2750 if (!AR_SREV_9100(ah))
2751 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2752
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002753 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302754 AR_RTC_RESET_EN);
2755 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002756}
2757
Sujithcbe61d82009-02-09 13:27:12 +05302758static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002759{
Sujithf1dc5602008-10-29 10:16:30 +05302760 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2761 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302762 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002763
Sujithf1dc5602008-10-29 10:16:30 +05302764 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2765 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2766 AR_RTC_FORCE_WAKE_ON_INT);
2767 } else {
2768 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2769 AR_RTC_FORCE_WAKE_EN);
2770 }
2771 }
2772}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002773
Sujithcbe61d82009-02-09 13:27:12 +05302774static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302775{
2776 u32 val;
2777 int i;
2778
2779 if (setChip) {
2780 if ((REG_READ(ah, AR_RTC_STATUS) &
2781 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2782 if (ath9k_hw_set_reset_reg(ah,
2783 ATH9K_RESET_POWER_ON) != true) {
2784 return false;
2785 }
2786 }
2787 if (AR_SREV_9100(ah))
2788 REG_SET_BIT(ah, AR_RTC_RESET,
2789 AR_RTC_RESET_EN);
2790
2791 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2792 AR_RTC_FORCE_WAKE_EN);
2793 udelay(50);
2794
2795 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2796 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2797 if (val == AR_RTC_STATUS_ON)
2798 break;
2799 udelay(50);
2800 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2801 AR_RTC_FORCE_WAKE_EN);
2802 }
2803 if (i == 0) {
Sujithd8baa932009-03-30 15:28:25 +05302804 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302805 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302806 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002807 }
2808 }
2809
Sujithf1dc5602008-10-29 10:16:30 +05302810 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2811
2812 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813}
2814
Gabor Juhos04717cc2009-07-14 20:17:13 -04002815static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2816 enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302817{
Sujithcbe61d82009-02-09 13:27:12 +05302818 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302819 static const char *modes[] = {
2820 "AWAKE",
2821 "FULL-SLEEP",
2822 "NETWORK SLEEP",
2823 "UNDEFINED"
2824 };
Sujithf1dc5602008-10-29 10:16:30 +05302825
Gabor Juhoscbdec972009-07-24 17:27:22 +02002826 if (ah->power_mode == mode)
2827 return status;
2828
Sujithd8baa932009-03-30 15:28:25 +05302829 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2830 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302831
2832 switch (mode) {
2833 case ATH9K_PM_AWAKE:
2834 status = ath9k_hw_set_power_awake(ah, setChip);
2835 break;
2836 case ATH9K_PM_FULL_SLEEP:
2837 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302838 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302839 break;
2840 case ATH9K_PM_NETWORK_SLEEP:
2841 ath9k_set_power_network_sleep(ah, setChip);
2842 break;
2843 default:
Sujithd8baa932009-03-30 15:28:25 +05302844 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302845 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302846 return false;
2847 }
Sujith2660b812009-02-09 13:27:26 +05302848 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302849
2850 return status;
2851}
2852
Gabor Juhos04717cc2009-07-14 20:17:13 -04002853bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2854{
2855 unsigned long flags;
2856 bool ret;
2857
2858 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2859 ret = ath9k_hw_setpower_nolock(ah, mode);
2860 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2861
2862 return ret;
2863}
2864
Gabor Juhos0bc07982009-07-14 20:17:14 -04002865void ath9k_ps_wakeup(struct ath_softc *sc)
2866{
Gabor Juhos709ade92009-07-14 20:17:15 -04002867 unsigned long flags;
2868
2869 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2870 if (++sc->ps_usecount != 1)
2871 goto unlock;
2872
Gabor Juhoscbdec972009-07-24 17:27:22 +02002873 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
Gabor Juhos709ade92009-07-14 20:17:15 -04002874
2875 unlock:
2876 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002877}
2878
2879void ath9k_ps_restore(struct ath_softc *sc)
2880{
Gabor Juhos709ade92009-07-14 20:17:15 -04002881 unsigned long flags;
2882
2883 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2884 if (--sc->ps_usecount != 0)
2885 goto unlock;
2886
Gabor Juhos96148322009-07-24 17:27:21 +02002887 if (sc->ps_enabled &&
2888 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
2889 SC_OP_WAIT_FOR_CAB |
2890 SC_OP_WAIT_FOR_PSPOLL_DATA |
2891 SC_OP_WAIT_FOR_TX_ACK)))
2892 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
Gabor Juhos709ade92009-07-14 20:17:15 -04002893
2894 unlock:
2895 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002896}
2897
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002898/*
2899 * Helper for ASPM support.
2900 *
2901 * Disable PLL when in L0s as well as receiver clock when in L1.
2902 * This power saving option must be enabled through the SerDes.
2903 *
2904 * Programming the SerDes must go through the same 288 bit serial shift
2905 * register as the other analog registers. Hence the 9 writes.
2906 */
Sujithcbe61d82009-02-09 13:27:12 +05302907void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302908{
Sujithf1dc5602008-10-29 10:16:30 +05302909 u8 i;
2910
Sujith2660b812009-02-09 13:27:26 +05302911 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302912 return;
2913
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002914 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302915 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302916 return;
2917
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002918 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302919 if (restore)
2920 return;
2921
2922 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002923 /*
2924 * AR9280 2.0 or later chips use SerDes values from the
2925 * initvals.h initialized depending on chipset during
2926 * ath9k_hw_do_attach()
2927 */
Sujith2660b812009-02-09 13:27:26 +05302928 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2929 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2930 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302931 }
Sujithf1dc5602008-10-29 10:16:30 +05302932 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302933 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302934 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2935 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2936
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002937 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302938 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2939 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2940 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2941
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002942 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302943 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302944 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2945 else
2946 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2947
2948 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2949 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2950 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2951
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002952 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302953 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2954
Sujithf1dc5602008-10-29 10:16:30 +05302955 } else {
2956 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2957 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002958
2959 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302960 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2961 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2962 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002963
2964 /*
2965 * Ignore ah->ah_config.pcie_clock_req setting for
2966 * pre-AR9280 11n
2967 */
Sujithf1dc5602008-10-29 10:16:30 +05302968 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002969
Sujithf1dc5602008-10-29 10:16:30 +05302970 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2971 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2972 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002973
2974 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302975 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2976 }
2977
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002978 udelay(1000);
2979
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002980 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302981 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2982
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002983 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302984 if (ah->config.pcie_waen) {
2985 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302986 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302987 if (AR_SREV_9285(ah))
2988 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002989 /*
2990 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2991 * otherwise card may disappear.
2992 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302993 else if (AR_SREV_9280(ah))
2994 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302995 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302996 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302997 }
2998}
2999
3000/**********************/
3001/* Interrupt Handling */
3002/**********************/
3003
Sujithcbe61d82009-02-09 13:27:12 +05303004bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003005{
3006 u32 host_isr;
3007
3008 if (AR_SREV_9100(ah))
3009 return true;
3010
3011 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
3012 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
3013 return true;
3014
3015 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
3016 if ((host_isr & AR_INTR_SYNC_DEFAULT)
3017 && (host_isr != AR_INTR_SPURIOUS))
3018 return true;
3019
3020 return false;
3021}
3022
Sujithcbe61d82009-02-09 13:27:12 +05303023bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003024{
3025 u32 isr = 0;
3026 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05303027 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003028 u32 sync_cause = 0;
3029 bool fatal_int = false;
3030
3031 if (!AR_SREV_9100(ah)) {
3032 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3033 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3034 == AR_RTC_STATUS_ON) {
3035 isr = REG_READ(ah, AR_ISR);
3036 }
3037 }
3038
Sujithf1dc5602008-10-29 10:16:30 +05303039 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3040 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003041
3042 *masked = 0;
3043
3044 if (!isr && !sync_cause)
3045 return false;
3046 } else {
3047 *masked = 0;
3048 isr = REG_READ(ah, AR_ISR);
3049 }
3050
3051 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003052 if (isr & AR_ISR_BCNMISC) {
3053 u32 isr2;
3054 isr2 = REG_READ(ah, AR_ISR_S2);
3055 if (isr2 & AR_ISR_S2_TIM)
3056 mask2 |= ATH9K_INT_TIM;
3057 if (isr2 & AR_ISR_S2_DTIM)
3058 mask2 |= ATH9K_INT_DTIM;
3059 if (isr2 & AR_ISR_S2_DTIMSYNC)
3060 mask2 |= ATH9K_INT_DTIMSYNC;
3061 if (isr2 & (AR_ISR_S2_CABEND))
3062 mask2 |= ATH9K_INT_CABEND;
3063 if (isr2 & AR_ISR_S2_GTT)
3064 mask2 |= ATH9K_INT_GTT;
3065 if (isr2 & AR_ISR_S2_CST)
3066 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05303067 if (isr2 & AR_ISR_S2_TSFOOR)
3068 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003069 }
3070
3071 isr = REG_READ(ah, AR_ISR_RAC);
3072 if (isr == 0xffffffff) {
3073 *masked = 0;
3074 return false;
3075 }
3076
3077 *masked = isr & ATH9K_INT_COMMON;
3078
Sujith0ef1f162009-03-30 15:28:35 +05303079 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003080 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3081 *masked |= ATH9K_INT_RX;
3082 }
3083
3084 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3085 *masked |= ATH9K_INT_RX;
3086 if (isr &
3087 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3088 AR_ISR_TXEOL)) {
3089 u32 s0_s, s1_s;
3090
3091 *masked |= ATH9K_INT_TX;
3092
3093 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05303094 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3095 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003096
3097 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05303098 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3099 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003100 }
3101
3102 if (isr & AR_ISR_RXORN) {
3103 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303104 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003105 }
3106
3107 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05303108 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003109 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3110 if (isr5 & AR_ISR_S5_TIM_TIMER)
3111 *masked |= ATH9K_INT_TIM_TIMER;
3112 }
3113 }
3114
3115 *masked |= mask2;
3116 }
Sujithf1dc5602008-10-29 10:16:30 +05303117
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003118 if (AR_SREV_9100(ah))
3119 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303120
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003121 if (sync_cause) {
3122 fatal_int =
3123 (sync_cause &
3124 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3125 ? true : false;
3126
3127 if (fatal_int) {
3128 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
3129 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303130 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003131 }
3132 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
3133 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303134 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003135 }
Steven Luoa89bff92009-04-12 02:57:54 -07003136 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003137 }
3138 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3139 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303140 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003141 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3142 REG_WRITE(ah, AR_RC, 0);
3143 *masked |= ATH9K_INT_FATAL;
3144 }
3145 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3146 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303147 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003148 }
3149
3150 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3151 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3152 }
Sujithf1dc5602008-10-29 10:16:30 +05303153
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003154 return true;
3155}
3156
Sujithcbe61d82009-02-09 13:27:12 +05303157enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003158{
Sujith2660b812009-02-09 13:27:26 +05303159 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003160 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303161 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003162
Sujith04bd4632008-11-28 22:18:05 +05303163 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003164
3165 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303166 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003167 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3168 (void) REG_READ(ah, AR_IER);
3169 if (!AR_SREV_9100(ah)) {
3170 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3171 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3172
3173 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3174 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3175 }
3176 }
3177
3178 mask = ints & ATH9K_INT_COMMON;
3179 mask2 = 0;
3180
3181 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303182 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003183 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303184 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003185 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303186 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003187 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303188 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003189 mask |= AR_IMR_TXEOL;
3190 }
3191 if (ints & ATH9K_INT_RX) {
3192 mask |= AR_IMR_RXERR;
Sujith0ef1f162009-03-30 15:28:35 +05303193 if (ah->config.intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003194 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3195 else
3196 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303197 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003198 mask |= AR_IMR_GENTMR;
3199 }
3200
3201 if (ints & (ATH9K_INT_BMISC)) {
3202 mask |= AR_IMR_BCNMISC;
3203 if (ints & ATH9K_INT_TIM)
3204 mask2 |= AR_IMR_S2_TIM;
3205 if (ints & ATH9K_INT_DTIM)
3206 mask2 |= AR_IMR_S2_DTIM;
3207 if (ints & ATH9K_INT_DTIMSYNC)
3208 mask2 |= AR_IMR_S2_DTIMSYNC;
3209 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303210 mask2 |= AR_IMR_S2_CABEND;
3211 if (ints & ATH9K_INT_TSFOOR)
3212 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003213 }
3214
3215 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3216 mask |= AR_IMR_BCNMISC;
3217 if (ints & ATH9K_INT_GTT)
3218 mask2 |= AR_IMR_S2_GTT;
3219 if (ints & ATH9K_INT_CST)
3220 mask2 |= AR_IMR_S2_CST;
3221 }
3222
Sujith04bd4632008-11-28 22:18:05 +05303223 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003224 REG_WRITE(ah, AR_IMR, mask);
3225 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3226 AR_IMR_S2_DTIM |
3227 AR_IMR_S2_DTIMSYNC |
3228 AR_IMR_S2_CABEND |
3229 AR_IMR_S2_CABTO |
3230 AR_IMR_S2_TSFOOR |
3231 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3232 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303233 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003234
Sujith60b67f52008-08-07 10:52:38 +05303235 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003236 if (ints & ATH9K_INT_TIM_TIMER)
3237 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3238 else
3239 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3240 }
3241
3242 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303243 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003244 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3245 if (!AR_SREV_9100(ah)) {
3246 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3247 AR_INTR_MAC_IRQ);
3248 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3249
3250
3251 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3252 AR_INTR_SYNC_DEFAULT);
3253 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3254 AR_INTR_SYNC_DEFAULT);
3255 }
3256 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3257 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3258 }
3259
3260 return omask;
3261}
3262
Sujithf1dc5602008-10-29 10:16:30 +05303263/*******************/
3264/* Beacon Handling */
3265/*******************/
3266
Sujithcbe61d82009-02-09 13:27:12 +05303267void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003268{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003269 int flags = 0;
3270
Sujith2660b812009-02-09 13:27:26 +05303271 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003272
Sujith2660b812009-02-09 13:27:26 +05303273 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003274 case NL80211_IFTYPE_STATION:
3275 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003276 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3277 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3278 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3279 flags |= AR_TBTT_TIMER_EN;
3280 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003281 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003282 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003283 REG_SET_BIT(ah, AR_TXCFG,
3284 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3285 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3286 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303287 (ah->atim_window ? ah->
3288 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003289 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003290 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003291 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3292 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3293 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303294 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303295 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003296 REG_WRITE(ah, AR_NEXT_SWBA,
3297 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303298 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303299 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003300 flags |=
3301 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3302 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003303 default:
3304 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3305 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303306 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003307 return;
3308 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003309 }
3310
3311 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3312 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3313 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3314 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3315
3316 beacon_period &= ~ATH9K_BEACON_ENA;
3317 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3318 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3319 ath9k_hw_reset_tsf(ah);
3320 }
3321
3322 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3323}
3324
Sujithcbe61d82009-02-09 13:27:12 +05303325void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303326 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003327{
3328 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303329 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003330
3331 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3332
3333 REG_WRITE(ah, AR_BEACON_PERIOD,
3334 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3335 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3336 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3337
3338 REG_RMW_FIELD(ah, AR_RSSI_THR,
3339 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3340
3341 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3342
3343 if (bs->bs_sleepduration > beaconintval)
3344 beaconintval = bs->bs_sleepduration;
3345
3346 dtimperiod = bs->bs_dtimperiod;
3347 if (bs->bs_sleepduration > dtimperiod)
3348 dtimperiod = bs->bs_sleepduration;
3349
3350 if (beaconintval == dtimperiod)
3351 nextTbtt = bs->bs_nextdtim;
3352 else
3353 nextTbtt = bs->bs_nexttbtt;
3354
Sujith04bd4632008-11-28 22:18:05 +05303355 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3356 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3357 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3358 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003359
3360 REG_WRITE(ah, AR_NEXT_DTIM,
3361 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3362 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3363
3364 REG_WRITE(ah, AR_SLEEP1,
3365 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3366 | AR_SLEEP1_ASSUME_DTIM);
3367
Sujith60b67f52008-08-07 10:52:38 +05303368 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003369 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3370 else
3371 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3372
3373 REG_WRITE(ah, AR_SLEEP2,
3374 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3375
3376 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3377 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3378
3379 REG_SET_BIT(ah, AR_TIMER_MODE,
3380 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3381 AR_DTIM_TIMER_EN);
3382
Sujith4af9cf42009-02-12 10:06:47 +05303383 /* TSF Out of Range Threshold */
3384 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003385}
3386
Sujithf1dc5602008-10-29 10:16:30 +05303387/*******************/
3388/* HW Capabilities */
3389/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003390
Sujitheef7a572009-03-30 15:28:28 +05303391void ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003392{
Sujith2660b812009-02-09 13:27:26 +05303393 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303394 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003395
Sujithf74df6f2009-02-09 13:27:24 +05303396 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303397 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303398
Sujithf74df6f2009-02-09 13:27:24 +05303399 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303400 if (AR_SREV_9285_10_OR_LATER(ah))
3401 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303402 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303403
Sujithf74df6f2009-02-09 13:27:24 +05303404 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303405
Sujith2660b812009-02-09 13:27:26 +05303406 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303407 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303408 if (ah->regulatory.current_rd == 0x64 ||
3409 ah->regulatory.current_rd == 0x65)
3410 ah->regulatory.current_rd += 5;
3411 else if (ah->regulatory.current_rd == 0x41)
3412 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303413 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303414 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003415 }
Sujithdc2222a2008-08-14 13:26:55 +05303416
Sujithf74df6f2009-02-09 13:27:24 +05303417 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303418 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003419
Sujithf1dc5602008-10-29 10:16:30 +05303420 if (eeval & AR5416_OPFLAGS_11A) {
3421 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303422 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303423 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3424 set_bit(ATH9K_MODE_11NA_HT20,
3425 pCap->wireless_modes);
3426 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3427 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3428 pCap->wireless_modes);
3429 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3430 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003431 }
3432 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003433 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003434
Sujithf1dc5602008-10-29 10:16:30 +05303435 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303436 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303437 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303438 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3439 set_bit(ATH9K_MODE_11NG_HT20,
3440 pCap->wireless_modes);
3441 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3442 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3443 pCap->wireless_modes);
3444 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3445 pCap->wireless_modes);
3446 }
3447 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003448 }
Sujithf1dc5602008-10-29 10:16:30 +05303449
Sujithf74df6f2009-02-09 13:27:24 +05303450 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303451 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3452 !(eeval & AR5416_OPFLAGS_11A))
3453 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3454 else
3455 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303456
Sujithd535a422009-02-09 13:27:06 +05303457 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303458 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303459
3460 pCap->low_2ghz_chan = 2312;
3461 pCap->high_2ghz_chan = 2732;
3462
3463 pCap->low_5ghz_chan = 4920;
3464 pCap->high_5ghz_chan = 6100;
3465
3466 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3467 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3468 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3469
3470 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3471 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3472 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3473
Sujith2660b812009-02-09 13:27:26 +05303474 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303475 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3476 else
3477 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3478
3479 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3480 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3481 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3482 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3483
3484 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3485 pCap->total_queues =
3486 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3487 else
3488 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3489
3490 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3491 pCap->keycache_size =
3492 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3493 else
3494 pCap->keycache_size = AR_KEYTABLE_SIZE;
3495
3496 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303497 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3498
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303499 if (AR_SREV_9285_10_OR_LATER(ah))
3500 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3501 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303502 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3503 else
3504 pCap->num_gpio_pins = AR_NUM_GPIO;
3505
Sujithf1dc5602008-10-29 10:16:30 +05303506 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3507 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3508 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3509 } else {
3510 pCap->rts_aggr_limit = (8 * 1024);
3511 }
3512
3513 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3514
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303515#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303516 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3517 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3518 ah->rfkill_gpio =
3519 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3520 ah->rfkill_polarity =
3521 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303522
3523 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3524 }
3525#endif
3526
Sujithd535a422009-02-09 13:27:06 +05303527 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3528 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3529 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3530 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
Vivek Natarajan882b7092009-04-14 16:21:01 +05303531 (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
3532 (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
Sujithf1dc5602008-10-29 10:16:30 +05303533 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3534 else
3535 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3536
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303537 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303538 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3539 else
3540 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3541
Sujithd6bad492009-02-09 13:27:08 +05303542 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303543 pCap->reg_cap =
3544 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3545 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3546 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3547 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3548 } else {
3549 pCap->reg_cap =
3550 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3551 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3552 }
3553
3554 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3555
3556 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303557 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303558 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303559 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303560
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303561 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303562 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303563 ah->btactive_gpio = 6;
3564 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303565 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003566}
3567
Sujithcbe61d82009-02-09 13:27:12 +05303568bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303569 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003570{
Sujithf1dc5602008-10-29 10:16:30 +05303571 switch (type) {
3572 case ATH9K_CAP_CIPHER:
3573 switch (capability) {
3574 case ATH9K_CIPHER_AES_CCM:
3575 case ATH9K_CIPHER_AES_OCB:
3576 case ATH9K_CIPHER_TKIP:
3577 case ATH9K_CIPHER_WEP:
3578 case ATH9K_CIPHER_MIC:
3579 case ATH9K_CIPHER_CLR:
3580 return true;
3581 default:
3582 return false;
3583 }
3584 case ATH9K_CAP_TKIP_MIC:
3585 switch (capability) {
3586 case 0:
3587 return true;
3588 case 1:
Sujith2660b812009-02-09 13:27:26 +05303589 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303590 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3591 false;
3592 }
3593 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303594 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303595 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303596 case ATH9K_CAP_DIVERSITY:
3597 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3598 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3599 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303600 case ATH9K_CAP_MCAST_KEYSRCH:
3601 switch (capability) {
3602 case 0:
3603 return true;
3604 case 1:
3605 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3606 return false;
3607 } else {
Sujith2660b812009-02-09 13:27:26 +05303608 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303609 AR_STA_ID1_MCAST_KSRCH) ? true :
3610 false;
3611 }
3612 }
3613 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303614 case ATH9K_CAP_TXPOW:
3615 switch (capability) {
3616 case 0:
3617 return 0;
3618 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303619 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303620 return 0;
3621 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303622 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303623 return 0;
3624 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303625 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303626 return 0;
3627 }
3628 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303629 case ATH9K_CAP_DS:
3630 return (AR_SREV_9280_20_OR_LATER(ah) &&
3631 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3632 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303633 default:
3634 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003635 }
Sujithf1dc5602008-10-29 10:16:30 +05303636}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003637
Sujithcbe61d82009-02-09 13:27:12 +05303638bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303639 u32 capability, u32 setting, int *status)
3640{
Sujithf1dc5602008-10-29 10:16:30 +05303641 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003642
Sujithf1dc5602008-10-29 10:16:30 +05303643 switch (type) {
3644 case ATH9K_CAP_TKIP_MIC:
3645 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303646 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303647 AR_STA_ID1_CRPT_MIC_ENABLE;
3648 else
Sujith2660b812009-02-09 13:27:26 +05303649 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303650 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3651 return true;
3652 case ATH9K_CAP_DIVERSITY:
3653 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3654 if (setting)
3655 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3656 else
3657 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3658 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3659 return true;
3660 case ATH9K_CAP_MCAST_KEYSRCH:
3661 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303662 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303663 else
Sujith2660b812009-02-09 13:27:26 +05303664 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303665 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303666 default:
3667 return false;
3668 }
3669}
3670
3671/****************************/
3672/* GPIO / RFKILL / Antennae */
3673/****************************/
3674
Sujithcbe61d82009-02-09 13:27:12 +05303675static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303676 u32 gpio, u32 type)
3677{
3678 int addr;
3679 u32 gpio_shift, tmp;
3680
3681 if (gpio > 11)
3682 addr = AR_GPIO_OUTPUT_MUX3;
3683 else if (gpio > 5)
3684 addr = AR_GPIO_OUTPUT_MUX2;
3685 else
3686 addr = AR_GPIO_OUTPUT_MUX1;
3687
3688 gpio_shift = (gpio % 6) * 5;
3689
3690 if (AR_SREV_9280_20_OR_LATER(ah)
3691 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3692 REG_RMW(ah, addr, (type << gpio_shift),
3693 (0x1f << gpio_shift));
3694 } else {
3695 tmp = REG_READ(ah, addr);
3696 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3697 tmp &= ~(0x1f << gpio_shift);
3698 tmp |= (type << gpio_shift);
3699 REG_WRITE(ah, addr, tmp);
3700 }
3701}
3702
Sujithcbe61d82009-02-09 13:27:12 +05303703void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303704{
3705 u32 gpio_shift;
3706
Sujith2660b812009-02-09 13:27:26 +05303707 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303708
3709 gpio_shift = gpio << 1;
3710
3711 REG_RMW(ah,
3712 AR_GPIO_OE_OUT,
3713 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3714 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3715}
3716
Sujithcbe61d82009-02-09 13:27:12 +05303717u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303718{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303719#define MS_REG_READ(x, y) \
3720 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3721
Sujith2660b812009-02-09 13:27:26 +05303722 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303723 return 0xffffffff;
3724
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303725 if (AR_SREV_9287_10_OR_LATER(ah))
3726 return MS_REG_READ(AR9287, gpio) != 0;
3727 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303728 return MS_REG_READ(AR9285, gpio) != 0;
3729 else if (AR_SREV_9280_10_OR_LATER(ah))
3730 return MS_REG_READ(AR928X, gpio) != 0;
3731 else
3732 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303733}
3734
Sujithcbe61d82009-02-09 13:27:12 +05303735void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303736 u32 ah_signal_type)
3737{
3738 u32 gpio_shift;
3739
3740 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3741
3742 gpio_shift = 2 * gpio;
3743
3744 REG_RMW(ah,
3745 AR_GPIO_OE_OUT,
3746 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3747 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3748}
3749
Sujithcbe61d82009-02-09 13:27:12 +05303750void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303751{
3752 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3753 AR_GPIO_BIT(gpio));
3754}
3755
Sujithcbe61d82009-02-09 13:27:12 +05303756u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303757{
3758 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3759}
3760
Sujithcbe61d82009-02-09 13:27:12 +05303761void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303762{
3763 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3764}
3765
Sujithcbe61d82009-02-09 13:27:12 +05303766bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303767 enum ath9k_ant_setting settings,
3768 struct ath9k_channel *chan,
3769 u8 *tx_chainmask,
3770 u8 *rx_chainmask,
3771 u8 *antenna_cfgd)
3772{
Sujithf1dc5602008-10-29 10:16:30 +05303773 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3774
3775 if (AR_SREV_9280(ah)) {
3776 if (!tx_chainmask_cfg) {
3777
3778 tx_chainmask_cfg = *tx_chainmask;
3779 rx_chainmask_cfg = *rx_chainmask;
3780 }
3781
3782 switch (settings) {
3783 case ATH9K_ANT_FIXED_A:
3784 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3785 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3786 *antenna_cfgd = true;
3787 break;
3788 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303789 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303790 ATH9K_ANTENNA1_CHAINMASK) {
3791 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3792 }
3793 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3794 *antenna_cfgd = true;
3795 break;
3796 case ATH9K_ANT_VARIABLE:
3797 *tx_chainmask = tx_chainmask_cfg;
3798 *rx_chainmask = rx_chainmask_cfg;
3799 *antenna_cfgd = true;
3800 break;
3801 default:
3802 break;
3803 }
3804 } else {
Sujith2660b812009-02-09 13:27:26 +05303805 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303806 }
3807
3808 return true;
3809}
3810
3811/*********************/
3812/* General Operation */
3813/*********************/
3814
Sujithcbe61d82009-02-09 13:27:12 +05303815u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303816{
3817 u32 bits = REG_READ(ah, AR_RX_FILTER);
3818 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3819
3820 if (phybits & AR_PHY_ERR_RADAR)
3821 bits |= ATH9K_RX_FILTER_PHYRADAR;
3822 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3823 bits |= ATH9K_RX_FILTER_PHYERR;
3824
3825 return bits;
3826}
3827
Sujithcbe61d82009-02-09 13:27:12 +05303828void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303829{
3830 u32 phybits;
3831
3832 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3833 phybits = 0;
3834 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3835 phybits |= AR_PHY_ERR_RADAR;
3836 if (bits & ATH9K_RX_FILTER_PHYERR)
3837 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3838 REG_WRITE(ah, AR_PHY_ERR, phybits);
3839
3840 if (phybits)
3841 REG_WRITE(ah, AR_RXCFG,
3842 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3843 else
3844 REG_WRITE(ah, AR_RXCFG,
3845 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3846}
3847
Sujithcbe61d82009-02-09 13:27:12 +05303848bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303849{
3850 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3851}
3852
Sujithcbe61d82009-02-09 13:27:12 +05303853bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303854{
3855 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3856 return false;
3857
3858 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3859}
3860
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003861void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303862{
Sujith2660b812009-02-09 13:27:26 +05303863 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003864 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303865
Sujithd6bad492009-02-09 13:27:08 +05303866 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303867
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003868 ah->eep_ops->set_txpower(ah, chan,
3869 ath9k_regd_get_ctl(&ah->regulatory, chan),
3870 channel->max_antenna_gain * 2,
3871 channel->max_power * 2,
3872 min((u32) MAX_RATE_POWER,
3873 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303874}
3875
Sujithcbe61d82009-02-09 13:27:12 +05303876void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303877{
Sujithba52da52009-02-09 13:27:10 +05303878 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303879}
3880
Sujithcbe61d82009-02-09 13:27:12 +05303881void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303882{
Sujith2660b812009-02-09 13:27:26 +05303883 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303884}
3885
Sujithcbe61d82009-02-09 13:27:12 +05303886void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303887{
3888 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3889 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3890}
3891
Sujithba52da52009-02-09 13:27:10 +05303892void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303893{
Sujithba52da52009-02-09 13:27:10 +05303894 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3895 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303896}
3897
Sujithba52da52009-02-09 13:27:10 +05303898void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303899{
Sujithba52da52009-02-09 13:27:10 +05303900 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3901 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3902 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303903}
3904
Sujithcbe61d82009-02-09 13:27:12 +05303905u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303906{
3907 u64 tsf;
3908
3909 tsf = REG_READ(ah, AR_TSF_U32);
3910 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3911
3912 return tsf;
3913}
3914
Sujithcbe61d82009-02-09 13:27:12 +05303915void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003916{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003917 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003918 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003919}
3920
Sujithcbe61d82009-02-09 13:27:12 +05303921void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303922{
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003923 ath9k_ps_wakeup(ah->ah_sc);
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003924 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3925 AH_TSF_WRITE_TIMEOUT))
3926 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
3927 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
3928
Sujithf1dc5602008-10-29 10:16:30 +05303929 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003930 ath9k_ps_restore(ah->ah_sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003931}
3932
Sujithcbe61d82009-02-09 13:27:12 +05303933bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003934{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003935 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303936 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003937 else
Sujith2660b812009-02-09 13:27:26 +05303938 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303939
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003940 return true;
3941}
3942
Sujithcbe61d82009-02-09 13:27:12 +05303943bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003944{
Sujithf1dc5602008-10-29 10:16:30 +05303945 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd4632008-11-28 22:18:05 +05303946 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303947 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303948 return false;
3949 } else {
3950 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303951 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303952 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003953 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003954}
3955
Sujithcbe61d82009-02-09 13:27:12 +05303956void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003957{
Sujithf1dc5602008-10-29 10:16:30 +05303958 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003959
Sujithf1dc5602008-10-29 10:16:30 +05303960 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303961 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303962 macmode = AR_2040_JOINED_RX_CLEAR;
3963 else
3964 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003965
Sujithf1dc5602008-10-29 10:16:30 +05303966 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003967}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303968
3969/***************************/
3970/* Bluetooth Coexistence */
3971/***************************/
3972
Sujithcbe61d82009-02-09 13:27:12 +05303973void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303974{
3975 /* connect bt_active to baseband */
3976 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3977 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3978 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3979
3980 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3981 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3982
3983 /* Set input mux for bt_active to gpio pin */
3984 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3985 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303986 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303987
3988 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303989 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303990
3991 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303992 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303993 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3994}