blob: fcefea8461f6024ada446bcb79a8ad0f87e7f782 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
18#include <asm/unaligned.h>
19
Sujith394cf0a2009-02-09 13:26:54 +053020#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021#include "initvals.h"
22
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +053023static int btcoex_enable;
24module_param(btcoex_enable, bool, 0);
25MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
26
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080027#define ATH9K_CLOCK_RATE_CCK 22
28#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
29#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030
Sujithcbe61d82009-02-09 13:27:12 +053031static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
32static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +053033 enum ath9k_ht_macmode macmode);
Sujithcbe61d82009-02-09 13:27:12 +053034static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053035 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +053036 u32 reg, u32 value);
Sujithcbe61d82009-02-09 13:27:12 +053037static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
38static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070039
Sujithf1dc5602008-10-29 10:16:30 +053040/********************/
41/* Helper Functions */
42/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070043
Sujithcbe61d82009-02-09 13:27:12 +053044static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053045{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080046 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053047
Sujith2660b812009-02-09 13:27:26 +053048 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080049 return clks / ATH9K_CLOCK_RATE_CCK;
50 if (conf->channel->band == IEEE80211_BAND_2GHZ)
51 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
Sujithcbe61d82009-02-09 13:27:12 +053052
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080053 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053054}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070055
Sujithcbe61d82009-02-09 13:27:12 +053056static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
Sujithf1dc5602008-10-29 10:16:30 +053057{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080058 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053059
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080060 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053061 return ath9k_hw_mac_usec(ah, clks) / 2;
62 else
63 return ath9k_hw_mac_usec(ah, clks);
64}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065
Sujithcbe61d82009-02-09 13:27:12 +053066static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053067{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080068 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053069
Sujith2660b812009-02-09 13:27:26 +053070 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080071 return usecs *ATH9K_CLOCK_RATE_CCK;
72 if (conf->channel->band == IEEE80211_BAND_2GHZ)
73 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
74 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053075}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076
Sujithcbe61d82009-02-09 13:27:12 +053077static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053078{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080079 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053080
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080081 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053082 return ath9k_hw_mac_clks(ah, usecs) * 2;
83 else
84 return ath9k_hw_mac_clks(ah, usecs);
85}
86
Gabor Juhosfb4a3d32009-04-29 13:01:58 +020087/*
88 * Read and write, they both share the same lock. We do this to serialize
89 * reads and writes on Atheros 802.11n PCI devices only. This is required
90 * as the FIFO on these devices can only accept sanely 2 requests. After
91 * that the device goes bananas. Serializing the reads/writes prevents this
92 * from happening.
93 */
94
95void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
96{
97 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
98 unsigned long flags;
99 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
100 iowrite32(val, ah->ah_sc->mem + reg_offset);
101 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
102 } else
103 iowrite32(val, ah->ah_sc->mem + reg_offset);
104}
105
106unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
107{
108 u32 val;
109 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
110 unsigned long flags;
111 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
112 val = ioread32(ah->ah_sc->mem + reg_offset);
113 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
114 } else
115 val = ioread32(ah->ah_sc->mem + reg_offset);
116 return val;
117}
118
Sujith0caa7b12009-02-16 13:23:20 +0530119bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120{
121 int i;
122
Sujith0caa7b12009-02-16 13:23:20 +0530123 BUG_ON(timeout < AH_TIME_QUANTUM);
124
125 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126 if ((REG_READ(ah, reg) & mask) == val)
127 return true;
128
129 udelay(AH_TIME_QUANTUM);
130 }
Sujith04bd4632008-11-28 22:18:05 +0530131
Sujithd8baa932009-03-30 15:28:25 +0530132 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith0caa7b12009-02-16 13:23:20 +0530133 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
134 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136 return false;
137}
138
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139u32 ath9k_hw_reverse_bits(u32 val, u32 n)
140{
141 u32 retval;
142 int i;
143
144 for (i = 0, retval = 0; i < n; i++) {
145 retval = (retval << 1) | (val & 1);
146 val >>= 1;
147 }
148 return retval;
149}
150
Sujithcbe61d82009-02-09 13:27:12 +0530151bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530152 u16 flags, u16 *low,
153 u16 *high)
154{
Sujith2660b812009-02-09 13:27:26 +0530155 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530156
157 if (flags & CHANNEL_5GHZ) {
158 *low = pCap->low_5ghz_chan;
159 *high = pCap->high_5ghz_chan;
160 return true;
161 }
162 if ((flags & CHANNEL_2GHZ)) {
163 *low = pCap->low_2ghz_chan;
164 *high = pCap->high_2ghz_chan;
165 return true;
166 }
167 return false;
168}
169
Sujithcbe61d82009-02-09 13:27:12 +0530170u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400171 const struct ath_rate_table *rates,
Sujithf1dc5602008-10-29 10:16:30 +0530172 u32 frameLen, u16 rateix,
173 bool shortPreamble)
174{
175 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
176 u32 kbps;
177
Sujithe63835b2008-11-18 09:07:53 +0530178 kbps = rates->info[rateix].ratekbps;
Sujithf1dc5602008-10-29 10:16:30 +0530179
180 if (kbps == 0)
181 return 0;
182
183 switch (rates->info[rateix].phy) {
Sujith46d14a52008-11-18 09:08:13 +0530184 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530185 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Sujithe63835b2008-11-18 09:07:53 +0530186 if (shortPreamble && rates->info[rateix].short_preamble)
Sujithf1dc5602008-10-29 10:16:30 +0530187 phyTime >>= 1;
188 numBits = frameLen << 3;
189 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
190 break;
Sujith46d14a52008-11-18 09:08:13 +0530191 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530192 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530193 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
194 numBits = OFDM_PLCP_BITS + (frameLen << 3);
195 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
196 txTime = OFDM_SIFS_TIME_QUARTER
197 + OFDM_PREAMBLE_TIME_QUARTER
198 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530199 } else if (ah->curchan &&
200 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530201 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
202 numBits = OFDM_PLCP_BITS + (frameLen << 3);
203 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
204 txTime = OFDM_SIFS_TIME_HALF +
205 OFDM_PREAMBLE_TIME_HALF
206 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
207 } else {
208 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
209 numBits = OFDM_PLCP_BITS + (frameLen << 3);
210 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
211 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
212 + (numSymbols * OFDM_SYMBOL_TIME);
213 }
214 break;
215 default:
Sujithd8baa932009-03-30 15:28:25 +0530216 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530217 "Unknown phy %u (rate ix %u)\n",
Sujithf1dc5602008-10-29 10:16:30 +0530218 rates->info[rateix].phy, rateix);
219 txTime = 0;
220 break;
221 }
222
223 return txTime;
224}
225
Sujithcbe61d82009-02-09 13:27:12 +0530226void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530227 struct ath9k_channel *chan,
228 struct chan_centers *centers)
229{
230 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530231
232 if (!IS_CHAN_HT40(chan)) {
233 centers->ctl_center = centers->ext_center =
234 centers->synth_center = chan->channel;
235 return;
236 }
237
238 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
239 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
240 centers->synth_center =
241 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
242 extoff = 1;
243 } else {
244 centers->synth_center =
245 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
246 extoff = -1;
247 }
248
249 centers->ctl_center =
250 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
251 centers->ext_center =
252 centers->synth_center + (extoff *
Sujith2660b812009-02-09 13:27:26 +0530253 ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
Sujithf1dc5602008-10-29 10:16:30 +0530254 HT40_CHANNEL_CENTER_SHIFT : 15));
Sujithf1dc5602008-10-29 10:16:30 +0530255}
256
257/******************/
258/* Chip Revisions */
259/******************/
260
Sujithcbe61d82009-02-09 13:27:12 +0530261static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530262{
263 u32 val;
264
265 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
266
267 if (val == 0xFF) {
268 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530269 ah->hw_version.macVersion =
270 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
271 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530272 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530273 } else {
274 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530275 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530276
Sujithd535a422009-02-09 13:27:06 +0530277 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530278
Sujithd535a422009-02-09 13:27:06 +0530279 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530280 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530281 }
282}
283
Sujithcbe61d82009-02-09 13:27:12 +0530284static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530285{
286 u32 val;
287 int i;
288
289 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
290
291 for (i = 0; i < 8; i++)
292 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
293 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
294 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
295
296 return ath9k_hw_reverse_bits(val, 8);
297}
298
299/************************************/
300/* HW Attach, Detach, Init Routines */
301/************************************/
302
Sujithcbe61d82009-02-09 13:27:12 +0530303static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530304{
Sujithfeed0292009-01-29 11:37:35 +0530305 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530306 return;
307
308 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
309 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
310 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
311 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
312 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
313 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
315 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
317
318 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
319}
320
Sujithcbe61d82009-02-09 13:27:12 +0530321static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530322{
323 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
324 u32 regHold[2];
325 u32 patternData[4] = { 0x55555555,
326 0xaaaaaaaa,
327 0x66666666,
328 0x99999999 };
329 int i, j;
330
331 for (i = 0; i < 2; i++) {
332 u32 addr = regAddr[i];
333 u32 wrData, rdData;
334
335 regHold[i] = REG_READ(ah, addr);
336 for (j = 0; j < 0x100; j++) {
337 wrData = (j << 16) | j;
338 REG_WRITE(ah, addr, wrData);
339 rdData = REG_READ(ah, addr);
340 if (rdData != wrData) {
Sujithd8baa932009-03-30 15:28:25 +0530341 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530342 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530343 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530344 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530345 return false;
346 }
347 }
348 for (j = 0; j < 4; j++) {
349 wrData = patternData[j];
350 REG_WRITE(ah, addr, wrData);
351 rdData = REG_READ(ah, addr);
352 if (wrData != rdData) {
Sujithd8baa932009-03-30 15:28:25 +0530353 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530354 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530355 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530356 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530357 return false;
358 }
359 }
360 REG_WRITE(ah, regAddr[i], regHold[i]);
361 }
362 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530363
Sujithf1dc5602008-10-29 10:16:30 +0530364 return true;
365}
366
367static const char *ath9k_hw_devname(u16 devid)
368{
369 switch (devid) {
370 case AR5416_DEVID_PCI:
Sujithf1dc5602008-10-29 10:16:30 +0530371 return "Atheros 5416";
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +0100372 case AR5416_DEVID_PCIE:
373 return "Atheros 5418";
Sujithf1dc5602008-10-29 10:16:30 +0530374 case AR9160_DEVID_PCI:
375 return "Atheros 9160";
Gabor Juhos0c1aa492009-01-14 20:17:12 +0100376 case AR5416_AR9100_DEVID:
377 return "Atheros 9100";
Sujithf1dc5602008-10-29 10:16:30 +0530378 case AR9280_DEVID_PCI:
379 case AR9280_DEVID_PCIE:
380 return "Atheros 9280";
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530381 case AR9285_DEVID_PCIE:
382 return "Atheros 9285";
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530383 case AR5416_DEVID_AR9287_PCI:
384 case AR5416_DEVID_AR9287_PCIE:
385 return "Atheros 9287";
Sujithf1dc5602008-10-29 10:16:30 +0530386 }
387
388 return NULL;
389}
390
Sujithcbe61d82009-02-09 13:27:12 +0530391static void ath9k_hw_set_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392{
393 int i;
394
Sujith2660b812009-02-09 13:27:26 +0530395 ah->config.dma_beacon_response_time = 2;
396 ah->config.sw_beacon_response_time = 10;
397 ah->config.additional_swba_backoff = 0;
398 ah->config.ack_6mb = 0x0;
399 ah->config.cwm_ignore_extcca = 0;
400 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530401 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530402 ah->config.pcie_waen = 0;
403 ah->config.analog_shiftreg = 1;
404 ah->config.ht_enable = 1;
405 ah->config.ofdm_trig_low = 200;
406 ah->config.ofdm_trig_high = 500;
407 ah->config.cck_trig_high = 200;
408 ah->config.cck_trig_low = 100;
409 ah->config.enable_ani = 1;
Sujith2660b812009-02-09 13:27:26 +0530410 ah->config.diversity_control = 0;
411 ah->config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412
413 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530414 ah->config.spurchans[i][0] = AR_NO_SPUR;
415 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416 }
417
Sujith0ef1f162009-03-30 15:28:35 +0530418 ah->config.intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400419
420 /*
421 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
422 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
423 * This means we use it for all AR5416 devices, and the few
424 * minor PCI AR9280 devices out there.
425 *
426 * Serialization is required because these devices do not handle
427 * well the case of two concurrent reads/writes due to the latency
428 * involved. During one read/write another read/write can be issued
429 * on another CPU while the previous read/write may still be working
430 * on our hardware, if we hit this case the hardware poops in a loop.
431 * We prevent this by serializing reads and writes.
432 *
433 * This issue is not present on PCI-Express devices or pre-AR5416
434 * devices (legacy, 802.11abg).
435 */
436 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700437 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438}
439
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700440static void ath9k_hw_newstate(u16 devid,
441 struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442{
Sujithd535a422009-02-09 13:27:06 +0530443 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530444 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530445 ah->hw_version.devid = devid;
446 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447
448 ah->ah_flags = 0;
449 if ((devid == AR5416_AR9100_DEVID))
Sujithd535a422009-02-09 13:27:06 +0530450 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700451 if (!AR_SREV_9100(ah))
452 ah->ah_flags = AH_USE_EEPROM;
453
Sujithd6bad492009-02-09 13:27:08 +0530454 ah->regulatory.power_limit = MAX_RATE_POWER;
455 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530456 ah->atim_window = 0;
457 ah->diversity_control = ah->config.diversity_control;
458 ah->antenna_switch_swap =
459 ah->config.antenna_switch_swap;
460 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
461 ah->beacon_interval = 100;
462 ah->enable_32kHz_clock = DONT_USE_32KHZ;
463 ah->slottime = (u32) -1;
464 ah->acktimeout = (u32) -1;
465 ah->ctstimeout = (u32) -1;
466 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Sujith2660b812009-02-09 13:27:26 +0530468 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469
Gabor Juhoscbdec972009-07-24 17:27:22 +0200470 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471}
472
Sujithcbe61d82009-02-09 13:27:12 +0530473static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474{
475 bool rfStatus = false;
476 int ecode = 0;
477
478 rfStatus = ath9k_hw_init_rf(ah, &ecode);
479 if (!rfStatus) {
Sujithd8baa932009-03-30 15:28:25 +0530480 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
481 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482 return ecode;
483 }
484
485 return 0;
486}
487
Sujithcbe61d82009-02-09 13:27:12 +0530488static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700489{
490 u32 val;
491
492 REG_WRITE(ah, AR_PHY(0), 0x00000007);
493
494 val = ath9k_hw_get_radiorev(ah);
495 switch (val & AR_RADIO_SREV_MAJOR) {
496 case 0:
497 val = AR_RAD5133_SREV_MAJOR;
498 break;
499 case AR_RAD5133_SREV_MAJOR:
500 case AR_RAD5122_SREV_MAJOR:
501 case AR_RAD2133_SREV_MAJOR:
502 case AR_RAD2122_SREV_MAJOR:
503 break;
504 default:
Sujithd8baa932009-03-30 15:28:25 +0530505 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
506 "Radio Chip Rev 0x%02X not supported\n",
507 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508 return -EOPNOTSUPP;
509 }
510
Sujithd535a422009-02-09 13:27:06 +0530511 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512
513 return 0;
514}
515
Sujithcbe61d82009-02-09 13:27:12 +0530516static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517{
Sujithf1dc5602008-10-29 10:16:30 +0530518 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530520 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700521
Sujithf1dc5602008-10-29 10:16:30 +0530522 sum = 0;
523 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530524 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530525 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530526 ah->macaddr[2 * i] = eeval >> 8;
527 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700528 }
Sujithd8baa932009-03-30 15:28:25 +0530529 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530530 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700531
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700532 return 0;
533}
534
Sujithcbe61d82009-02-09 13:27:12 +0530535static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530536{
537 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530538
Sujithf74df6f2009-02-09 13:27:24 +0530539 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
540 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530541
542 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530543 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530544 ar9280Modes_backoff_13db_rxgain_9280_2,
545 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
546 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530547 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530548 ar9280Modes_backoff_23db_rxgain_9280_2,
549 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
550 else
Sujith2660b812009-02-09 13:27:26 +0530551 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530552 ar9280Modes_original_rxgain_9280_2,
553 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530554 } else {
Sujith2660b812009-02-09 13:27:26 +0530555 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530556 ar9280Modes_original_rxgain_9280_2,
557 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530558 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530559}
560
Sujithcbe61d82009-02-09 13:27:12 +0530561static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530562{
563 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530564
Sujithf74df6f2009-02-09 13:27:24 +0530565 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
566 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530567
568 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530569 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530570 ar9280Modes_high_power_tx_gain_9280_2,
571 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
572 else
Sujith2660b812009-02-09 13:27:26 +0530573 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530574 ar9280Modes_original_tx_gain_9280_2,
575 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530576 } else {
Sujith2660b812009-02-09 13:27:26 +0530577 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530578 ar9280Modes_original_tx_gain_9280_2,
579 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530580 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530581}
582
Sujithcbe61d82009-02-09 13:27:12 +0530583static int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700584{
585 int ecode;
586
Sujithd8baa932009-03-30 15:28:25 +0530587 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700588 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700589
590 ecode = ath9k_hw_rf_claim(ah);
591 if (ecode != 0)
592 return ecode;
593
594 ecode = ath9k_hw_eeprom_attach(ah);
595 if (ecode != 0)
596 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530597
598 DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
599 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
600
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 ecode = ath9k_hw_rfattach(ah);
602 if (ecode != 0)
603 return ecode;
604
605 if (!AR_SREV_9100(ah)) {
606 ath9k_hw_ani_setup(ah);
607 ath9k_hw_ani_attach(ah);
608 }
Sujithf1dc5602008-10-29 10:16:30 +0530609
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610 return 0;
611}
612
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700613static int ath9k_hw_do_attach(struct ath_hw *ah,
614 u16 devid,
615 struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616{
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700617 int r;
Sujithf6688cd2008-12-07 21:43:10 +0530618 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700619
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700620 ath9k_hw_newstate(devid, ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 ath9k_hw_set_defaults(ah);
622
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithd8baa932009-03-30 15:28:25 +0530624 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700625 r = -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700626 goto bad;
627 }
628
629 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithd8baa932009-03-30 15:28:25 +0530630 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700631 r = -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700632 goto bad;
633 }
634
Sujith2660b812009-02-09 13:27:26 +0530635 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
David S. Miller2d6a5e92009-03-17 15:01:30 -0700636 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
637 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
Sujith2660b812009-02-09 13:27:26 +0530638 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 SER_REG_MODE_ON;
640 } else {
Sujith2660b812009-02-09 13:27:26 +0530641 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 SER_REG_MODE_OFF;
643 }
644 }
Sujithf1dc5602008-10-29 10:16:30 +0530645
Sujithcbe61d82009-02-09 13:27:12 +0530646 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530647 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648
Luis R. Rodriguezfbf54662009-08-03 12:24:34 -0700649 switch (ah->hw_version.macVersion) {
650 case AR_SREV_VERSION_5416_PCI:
651 case AR_SREV_VERSION_5416_PCIE:
652 case AR_SREV_VERSION_9160:
653 case AR_SREV_VERSION_9100:
654 case AR_SREV_VERSION_9280:
655 case AR_SREV_VERSION_9285:
656 case AR_SREV_VERSION_9287:
657 break;
658 default:
Sujithd8baa932009-03-30 15:28:25 +0530659 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530660 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530661 "this driver\n", ah->hw_version.macVersion,
662 ah->hw_version.macRev);
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700663 r = -EOPNOTSUPP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664 goto bad;
665 }
666
667 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530668 ah->iq_caldata.calData = &iq_cal_multi_sample;
669 ah->supp_cals = IQ_MISMATCH_CAL;
670 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700671 }
Sujithd535a422009-02-09 13:27:06 +0530672 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700673
674 if (AR_SREV_9160_10_OR_LATER(ah)) {
675 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530676 ah->iq_caldata.calData = &iq_cal_single_sample;
677 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530679 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700680 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530681 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700682 &adc_init_dc_cal;
683 } else {
Sujith2660b812009-02-09 13:27:26 +0530684 ah->iq_caldata.calData = &iq_cal_multi_sample;
685 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700686 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530687 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700688 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530689 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700690 &adc_init_dc_cal;
691 }
Sujith2660b812009-02-09 13:27:26 +0530692 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700693 }
694
Sujith9c81e8b2009-03-09 09:31:49 +0530695 ah->ani_function = ATH9K_ANI_ALL;
696 if (AR_SREV_9280_10_OR_LATER(ah))
697 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530698 if (AR_SREV_9287_11_OR_LATER(ah)) {
699 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
700 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
701 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
702 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
703 if (ah->config.pcie_clock_req)
704 INIT_INI_ARRAY(&ah->iniPcieSerdes,
705 ar9287PciePhy_clkreq_off_L1_9287_1_1,
706 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
707 else
708 INIT_INI_ARRAY(&ah->iniPcieSerdes,
709 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
710 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
711 2);
712 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
713 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
714 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
715 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
716 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530718 if (ah->config.pcie_clock_req)
719 INIT_INI_ARRAY(&ah->iniPcieSerdes,
720 ar9287PciePhy_clkreq_off_L1_9287_1_0,
721 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
722 else
723 INIT_INI_ARRAY(&ah->iniPcieSerdes,
724 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
725 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
726 2);
727 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
728
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530729
Sujith2660b812009-02-09 13:27:26 +0530730 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530731 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530733 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
734
Sujith2660b812009-02-09 13:27:26 +0530735 if (ah->config.pcie_clock_req) {
736 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530737 ar9285PciePhy_clkreq_off_L1_9285_1_2,
738 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
739 } else {
Sujith2660b812009-02-09 13:27:26 +0530740 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530741 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
742 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
743 2);
744 }
745 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530747 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530748 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530749 ARRAY_SIZE(ar9285Common_9285), 2);
750
Sujith2660b812009-02-09 13:27:26 +0530751 if (ah->config.pcie_clock_req) {
752 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530753 ar9285PciePhy_clkreq_off_L1_9285,
754 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
755 } else {
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530757 ar9285PciePhy_clkreq_always_on_L1_9285,
758 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
759 }
760 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar9280Common_9280_2), 2);
765
Sujith2660b812009-02-09 13:27:26 +0530766 if (ah->config.pcie_clock_req) {
767 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530768 ar9280PciePhy_clkreq_off_L1_9280,
769 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 } else {
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530772 ar9280PciePhy_clkreq_always_on_L1_9280,
773 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 }
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530777 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar9280Common_9280), 2);
783 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530788 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530790 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530792 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530794 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530796 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530798 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530800 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700801 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530802 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 ARRAY_SIZE(ar5416Bank7_9160), 2);
804 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530805 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ar5416Addac_91601_1,
807 ARRAY_SIZE(ar5416Addac_91601_1), 2);
808 } else {
Sujith2660b812009-02-09 13:27:26 +0530809 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810 ARRAY_SIZE(ar5416Addac_9160), 2);
811 }
812 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530813 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700814 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530815 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530817 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700818 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530819 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700820 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530821 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530823 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530825 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700826 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530827 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530829 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700830 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530831 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530833 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834 ARRAY_SIZE(ar5416Addac_9100), 2);
835 } else {
Sujith2660b812009-02-09 13:27:26 +0530836 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700837 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530838 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700839 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530840 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700841 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530842 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700843 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530844 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530846 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700847 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530848 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700849 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530850 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700851 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530852 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700853 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530854 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700855 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530856 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700857 ARRAY_SIZE(ar5416Addac), 2);
858 }
859
Sujith2660b812009-02-09 13:27:26 +0530860 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700861 ath9k_hw_configpcipowersave(ah, 0);
862 else
Sujithf1dc5602008-10-29 10:16:30 +0530863 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700865 r = ath9k_hw_post_attach(ah);
866 if (r)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700867 goto bad;
868
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530869 if (AR_SREV_9287_11(ah))
870 INIT_INI_ARRAY(&ah->iniModesRxGain,
871 ar9287Modes_rx_gain_9287_1_1,
872 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
873 else if (AR_SREV_9287_10(ah))
874 INIT_INI_ARRAY(&ah->iniModesRxGain,
875 ar9287Modes_rx_gain_9287_1_0,
876 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
877 else if (AR_SREV_9280_20(ah))
878 ath9k_hw_init_rxgain_ini(ah);
879
880 if (AR_SREV_9287_11(ah)) {
881 INIT_INI_ARRAY(&ah->iniModesTxGain,
882 ar9287Modes_tx_gain_9287_1_1,
883 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
884 } else if (AR_SREV_9287_10(ah)) {
885 INIT_INI_ARRAY(&ah->iniModesTxGain,
886 ar9287Modes_tx_gain_9287_1_0,
887 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
888 } else if (AR_SREV_9280_20(ah)) {
889 ath9k_hw_init_txgain_ini(ah);
890 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530891 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
892
893 /* txgain table */
894 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
895 INIT_INI_ARRAY(&ah->iniModesTxGain,
896 ar9285Modes_high_power_tx_gain_9285_1_2,
897 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
898 } else {
899 INIT_INI_ARRAY(&ah->iniModesTxGain,
900 ar9285Modes_original_tx_gain_9285_1_2,
901 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
902 }
903
904 }
905
Sujitheef7a572009-03-30 15:28:28 +0530906 ath9k_hw_fill_cap_info(ah);
Sujith06d0f062009-02-12 10:06:45 +0530907
908 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
909 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
910
911 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530912 for (i = 0; i < ah->iniModes.ia_rows; i++) {
913 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700914
Sujith2660b812009-02-09 13:27:26 +0530915 for (j = 1; j < ah->iniModes.ia_columns; j++) {
916 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700917
Sujith2660b812009-02-09 13:27:26 +0530918 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530919 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530920 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700921 reg, val);
922 }
923 }
924 }
Sujithf6688cd2008-12-07 21:43:10 +0530925
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700926 r = ath9k_hw_init_macaddr(ah);
927 if (r) {
Sujithd8baa932009-03-30 15:28:25 +0530928 DPRINTF(sc, ATH_DBG_FATAL,
929 "Failed to initialize MAC address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700930 goto bad;
931 }
932
933 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530934 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700935 else
Sujith2660b812009-02-09 13:27:26 +0530936 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700937
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700938 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700939
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700940 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700941bad:
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700942 ath9k_hw_detach(ah);
943 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700944}
945
Sujithcbe61d82009-02-09 13:27:12 +0530946static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530947 struct ath9k_channel *chan)
948{
949 u32 synthDelay;
950
951 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530952 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530953 synthDelay = (4 * synthDelay) / 22;
954 else
955 synthDelay /= 10;
956
957 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
958
959 udelay(synthDelay + BASE_ACTIVATE_DELAY);
960}
961
Sujithcbe61d82009-02-09 13:27:12 +0530962static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530963{
964 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
965 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
966
967 REG_WRITE(ah, AR_QOS_NO_ACK,
968 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
969 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
970 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
971
972 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
973 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
974 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
975 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
976 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
977}
978
Sujithcbe61d82009-02-09 13:27:12 +0530979static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530980 struct ath9k_channel *chan)
981{
982 u32 pll;
983
984 if (AR_SREV_9100(ah)) {
985 if (chan && IS_CHAN_5GHZ(chan))
986 pll = 0x1450;
987 else
988 pll = 0x1458;
989 } else {
990 if (AR_SREV_9280_10_OR_LATER(ah)) {
991 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
992
993 if (chan && IS_CHAN_HALF_RATE(chan))
994 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
995 else if (chan && IS_CHAN_QUARTER_RATE(chan))
996 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
997
998 if (chan && IS_CHAN_5GHZ(chan)) {
999 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1000
1001
1002 if (AR_SREV_9280_20(ah)) {
1003 if (((chan->channel % 20) == 0)
1004 || ((chan->channel % 10) == 0))
1005 pll = 0x2850;
1006 else
1007 pll = 0x142c;
1008 }
1009 } else {
1010 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1011 }
1012
1013 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1014
1015 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1016
1017 if (chan && IS_CHAN_HALF_RATE(chan))
1018 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1019 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1020 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1021
1022 if (chan && IS_CHAN_5GHZ(chan))
1023 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1024 else
1025 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1026 } else {
1027 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1028
1029 if (chan && IS_CHAN_HALF_RATE(chan))
1030 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1031 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1032 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1033
1034 if (chan && IS_CHAN_5GHZ(chan))
1035 pll |= SM(0xa, AR_RTC_PLL_DIV);
1036 else
1037 pll |= SM(0xb, AR_RTC_PLL_DIV);
1038 }
1039 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001040 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301041
1042 udelay(RTC_PLL_SETTLE_DELAY);
1043
1044 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1045}
1046
Sujithcbe61d82009-02-09 13:27:12 +05301047static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301048{
Sujithf1dc5602008-10-29 10:16:30 +05301049 int rx_chainmask, tx_chainmask;
1050
Sujith2660b812009-02-09 13:27:26 +05301051 rx_chainmask = ah->rxchainmask;
1052 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301053
1054 switch (rx_chainmask) {
1055 case 0x5:
1056 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1057 AR_PHY_SWAP_ALT_CHAIN);
1058 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301059 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301060 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1061 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1062 break;
1063 }
1064 case 0x1:
1065 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301066 case 0x7:
1067 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1068 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1069 break;
1070 default:
1071 break;
1072 }
1073
1074 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1075 if (tx_chainmask == 0x5) {
1076 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1077 AR_PHY_SWAP_ALT_CHAIN);
1078 }
1079 if (AR_SREV_9100(ah))
1080 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1081 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1082}
1083
Sujithcbe61d82009-02-09 13:27:12 +05301084static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001085 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301086{
Sujith2660b812009-02-09 13:27:26 +05301087 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301088 AR_IMR_TXURN |
1089 AR_IMR_RXERR |
1090 AR_IMR_RXORN |
1091 AR_IMR_BCNMISC;
1092
Sujith0ef1f162009-03-30 15:28:35 +05301093 if (ah->config.intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301094 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301095 else
Sujith2660b812009-02-09 13:27:26 +05301096 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301097
Sujith2660b812009-02-09 13:27:26 +05301098 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301099
Colin McCabed97809d2008-12-01 13:38:55 -08001100 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301101 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301102
Sujith2660b812009-02-09 13:27:26 +05301103 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301104 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1105
1106 if (!AR_SREV_9100(ah)) {
1107 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1108 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1109 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1110 }
1111}
1112
Sujithcbe61d82009-02-09 13:27:12 +05301113static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301114{
Sujithf1dc5602008-10-29 10:16:30 +05301115 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd4632008-11-28 22:18:05 +05301116 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301117 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301118 return false;
1119 } else {
1120 REG_RMW_FIELD(ah, AR_TIME_OUT,
1121 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301122 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301123 return true;
1124 }
1125}
1126
Sujithcbe61d82009-02-09 13:27:12 +05301127static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301128{
Sujithf1dc5602008-10-29 10:16:30 +05301129 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd4632008-11-28 22:18:05 +05301130 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301131 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301132 return false;
1133 } else {
1134 REG_RMW_FIELD(ah, AR_TIME_OUT,
1135 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301136 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301137 return true;
1138 }
1139}
1140
Sujithcbe61d82009-02-09 13:27:12 +05301141static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301142{
Sujithf1dc5602008-10-29 10:16:30 +05301143 if (tu > 0xFFFF) {
1144 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301145 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301146 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301147 return false;
1148 } else {
1149 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301150 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301151 return true;
1152 }
1153}
1154
Sujithcbe61d82009-02-09 13:27:12 +05301155static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301156{
Sujith2660b812009-02-09 13:27:26 +05301157 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1158 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301159
Sujith2660b812009-02-09 13:27:26 +05301160 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301161 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301162 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1163 if (ah->slottime != (u32) -1)
1164 ath9k_hw_setslottime(ah, ah->slottime);
1165 if (ah->acktimeout != (u32) -1)
1166 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1167 if (ah->ctstimeout != (u32) -1)
1168 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1169 if (ah->globaltxtimeout != (u32) -1)
1170 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301171}
1172
1173const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1174{
1175 return vendorid == ATHEROS_VENDOR_ID ?
1176 ath9k_hw_devname(devid) : NULL;
1177}
1178
Sujithcbe61d82009-02-09 13:27:12 +05301179void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001180{
1181 if (!AR_SREV_9100(ah))
1182 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001183
Sujithf1dc5602008-10-29 10:16:30 +05301184 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001185 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1186 kfree(ah);
1187}
1188
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001189int ath9k_hw_attach(struct ath_hw *ah, u16 devid, struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001190{
Sujithf1dc5602008-10-29 10:16:30 +05301191 switch (devid) {
1192 case AR5416_DEVID_PCI:
1193 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001194 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301195 case AR9160_DEVID_PCI:
1196 case AR9280_DEVID_PCI:
1197 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301198 case AR9285_DEVID_PCIE:
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301199 case AR5416_DEVID_AR9287_PCI:
1200 case AR5416_DEVID_AR9287_PCIE:
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001201 return ath9k_hw_do_attach(ah, devid, sc);
Sujithf1dc5602008-10-29 10:16:30 +05301202 default:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203 break;
1204 }
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001205 return -EOPNOTSUPP;
Sujithf1dc5602008-10-29 10:16:30 +05301206}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001207
Sujithf1dc5602008-10-29 10:16:30 +05301208/*******/
1209/* INI */
1210/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001211
Sujithcbe61d82009-02-09 13:27:12 +05301212static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301213 struct ath9k_channel *chan)
1214{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301215 /*
1216 * Set the RX_ABORT and RX_DIS and clear if off only after
1217 * RXE is set for MAC. This prevents frames with corrupted
1218 * descriptor status.
1219 */
1220 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1221
1222
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001223 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301224 AR_SREV_9280_10_OR_LATER(ah))
1225 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001226
Sujithf1dc5602008-10-29 10:16:30 +05301227 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1228}
1229
Sujithcbe61d82009-02-09 13:27:12 +05301230static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301231 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301232 u32 reg, u32 value)
1233{
1234 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1235
Sujithd535a422009-02-09 13:27:06 +05301236 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301237 case AR9280_DEVID_PCI:
1238 if (reg == 0x7894) {
Sujithd8baa932009-03-30 15:28:25 +05301239 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301240 "ini VAL: %x EEPROM: %x\n", value,
1241 (pBase->version & 0xff));
1242
1243 if ((pBase->version & 0xff) > 0x0a) {
Sujithd8baa932009-03-30 15:28:25 +05301244 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301245 "PWDCLKIND: %d\n",
1246 pBase->pwdclkind);
1247 value &= ~AR_AN_TOP2_PWDCLKIND;
1248 value |= AR_AN_TOP2_PWDCLKIND &
1249 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1250 } else {
Sujithd8baa932009-03-30 15:28:25 +05301251 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301252 "PWDCLKIND Earlier Rev\n");
1253 }
1254
Sujithd8baa932009-03-30 15:28:25 +05301255 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301256 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257 }
Sujithf1dc5602008-10-29 10:16:30 +05301258 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259 }
1260
Sujithf1dc5602008-10-29 10:16:30 +05301261 return value;
1262}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001263
Sujithcbe61d82009-02-09 13:27:12 +05301264static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301265 struct ar5416_eeprom_def *pEepData,
1266 u32 reg, u32 value)
1267{
Sujith2660b812009-02-09 13:27:26 +05301268 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301269 return value;
1270 else
1271 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1272}
1273
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301274static void ath9k_olc_init(struct ath_hw *ah)
1275{
1276 u32 i;
1277
1278 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1279 ah->originalGain[i] =
1280 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1281 AR_PHY_TX_GAIN);
1282 ah->PDADCdelta = 0;
1283}
1284
Bob Copeland3a702e42009-03-30 22:30:29 -04001285static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1286 struct ath9k_channel *chan)
1287{
1288 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1289
1290 if (IS_CHAN_B(chan))
1291 ctl |= CTL_11B;
1292 else if (IS_CHAN_G(chan))
1293 ctl |= CTL_11G;
1294 else
1295 ctl |= CTL_11A;
1296
1297 return ctl;
1298}
1299
Sujithcbe61d82009-02-09 13:27:12 +05301300static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301301 struct ath9k_channel *chan,
1302 enum ath9k_ht_macmode macmode)
1303{
1304 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001305 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301306 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001307
Sujithf1dc5602008-10-29 10:16:30 +05301308 switch (chan->chanmode) {
1309 case CHANNEL_A:
1310 case CHANNEL_A_HT20:
1311 modesIndex = 1;
1312 freqIndex = 1;
1313 break;
1314 case CHANNEL_A_HT40PLUS:
1315 case CHANNEL_A_HT40MINUS:
1316 modesIndex = 2;
1317 freqIndex = 1;
1318 break;
1319 case CHANNEL_G:
1320 case CHANNEL_G_HT20:
1321 case CHANNEL_B:
1322 modesIndex = 4;
1323 freqIndex = 2;
1324 break;
1325 case CHANNEL_G_HT40PLUS:
1326 case CHANNEL_G_HT40MINUS:
1327 modesIndex = 3;
1328 freqIndex = 2;
1329 break;
1330
1331 default:
1332 return -EINVAL;
1333 }
1334
1335 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301336 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301337 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301338
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001339 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301340 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301341 } else {
1342 struct ar5416IniArray temp;
1343 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301344 sizeof(u32) * ah->iniAddac.ia_rows *
1345 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301346
Sujith2660b812009-02-09 13:27:26 +05301347 memcpy(ah->addac5416_21,
1348 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301349
Sujith2660b812009-02-09 13:27:26 +05301350 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301351
Sujith2660b812009-02-09 13:27:26 +05301352 temp.ia_array = ah->addac5416_21;
1353 temp.ia_columns = ah->iniAddac.ia_columns;
1354 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301355 REG_WRITE_ARRAY(&temp, 1, regWrites);
1356 }
1357
1358 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1359
Sujith2660b812009-02-09 13:27:26 +05301360 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1361 u32 reg = INI_RA(&ah->iniModes, i, 0);
1362 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301363
Sujithf1dc5602008-10-29 10:16:30 +05301364 REG_WRITE(ah, reg, val);
1365
1366 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301367 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301368 udelay(100);
1369 }
1370
1371 DO_DELAY(regWrites);
1372 }
1373
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301374 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301375 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301376
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301377 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1378 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301379 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301380
Sujith2660b812009-02-09 13:27:26 +05301381 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1382 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1383 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301384
1385 REG_WRITE(ah, reg, val);
1386
1387 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301388 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301389 udelay(100);
1390 }
1391
1392 DO_DELAY(regWrites);
1393 }
1394
1395 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1396
1397 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301398 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301399 regWrites);
1400 }
1401
1402 ath9k_hw_override_ini(ah, chan);
1403 ath9k_hw_set_regs(ah, chan, macmode);
1404 ath9k_hw_init_chain_masks(ah);
1405
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301406 if (OLC_FOR_AR9280_20_LATER)
1407 ath9k_olc_init(ah);
1408
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001409 ah->eep_ops->set_txpower(ah, chan,
1410 ath9k_regd_get_ctl(&ah->regulatory, chan),
1411 channel->max_antenna_gain * 2,
1412 channel->max_power * 2,
1413 min((u32) MAX_RATE_POWER,
1414 (u32) ah->regulatory.power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001415
Sujithf1dc5602008-10-29 10:16:30 +05301416 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Sujithd8baa932009-03-30 15:28:25 +05301417 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301418 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419 return -EIO;
1420 }
1421
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 return 0;
1423}
1424
Sujithf1dc5602008-10-29 10:16:30 +05301425/****************************************/
1426/* Reset and Channel Switching Routines */
1427/****************************************/
1428
Sujithcbe61d82009-02-09 13:27:12 +05301429static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301430{
1431 u32 rfMode = 0;
1432
1433 if (chan == NULL)
1434 return;
1435
1436 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1437 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1438
1439 if (!AR_SREV_9280_10_OR_LATER(ah))
1440 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1441 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1442
1443 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1444 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1445
1446 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1447}
1448
Sujithcbe61d82009-02-09 13:27:12 +05301449static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301450{
1451 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1452}
1453
Sujithcbe61d82009-02-09 13:27:12 +05301454static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301455{
1456 u32 regval;
1457
1458 regval = REG_READ(ah, AR_AHB_MODE);
1459 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1460
1461 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1462 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1463
Sujith2660b812009-02-09 13:27:26 +05301464 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301465
1466 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1467 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1468
1469 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1470
1471 if (AR_SREV_9285(ah)) {
1472 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1473 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1474 } else {
1475 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1476 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1477 }
1478}
1479
Sujithcbe61d82009-02-09 13:27:12 +05301480static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301481{
1482 u32 val;
1483
1484 val = REG_READ(ah, AR_STA_ID1);
1485 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1486 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001487 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301488 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1489 | AR_STA_ID1_KSRCH_MODE);
1490 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1491 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001492 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001493 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301494 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1495 | AR_STA_ID1_KSRCH_MODE);
1496 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1497 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001498 case NL80211_IFTYPE_STATION:
1499 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301500 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1501 break;
1502 }
1503}
1504
Sujithcbe61d82009-02-09 13:27:12 +05301505static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001506 u32 coef_scaled,
1507 u32 *coef_mantissa,
1508 u32 *coef_exponent)
1509{
1510 u32 coef_exp, coef_man;
1511
1512 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1513 if ((coef_scaled >> coef_exp) & 0x1)
1514 break;
1515
1516 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1517
1518 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1519
1520 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1521 *coef_exponent = coef_exp - 16;
1522}
1523
Sujithcbe61d82009-02-09 13:27:12 +05301524static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301525 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001526{
1527 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1528 u32 clockMhzScaled = 0x64000000;
1529 struct chan_centers centers;
1530
1531 if (IS_CHAN_HALF_RATE(chan))
1532 clockMhzScaled = clockMhzScaled >> 1;
1533 else if (IS_CHAN_QUARTER_RATE(chan))
1534 clockMhzScaled = clockMhzScaled >> 2;
1535
1536 ath9k_hw_get_channel_centers(ah, chan, &centers);
1537 coef_scaled = clockMhzScaled / centers.synth_center;
1538
1539 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1540 &ds_coef_exp);
1541
1542 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1543 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1544 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1545 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1546
1547 coef_scaled = (9 * coef_scaled) / 10;
1548
1549 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1550 &ds_coef_exp);
1551
1552 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1553 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1554 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1555 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1556}
1557
Sujithcbe61d82009-02-09 13:27:12 +05301558static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301559{
1560 u32 rst_flags;
1561 u32 tmpReg;
1562
Sujith70768492009-02-16 13:23:12 +05301563 if (AR_SREV_9100(ah)) {
1564 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1565 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1566 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1567 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1568 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1569 }
1570
Sujithf1dc5602008-10-29 10:16:30 +05301571 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1572 AR_RTC_FORCE_WAKE_ON_INT);
1573
1574 if (AR_SREV_9100(ah)) {
1575 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1576 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1577 } else {
1578 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1579 if (tmpReg &
1580 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1581 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1582 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1583 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1584 } else {
1585 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1586 }
1587
1588 rst_flags = AR_RTC_RC_MAC_WARM;
1589 if (type == ATH9K_RESET_COLD)
1590 rst_flags |= AR_RTC_RC_MAC_COLD;
1591 }
1592
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001593 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301594 udelay(50);
1595
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001596 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301597 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301598 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301599 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301600 return false;
1601 }
1602
1603 if (!AR_SREV_9100(ah))
1604 REG_WRITE(ah, AR_RC, 0);
1605
1606 ath9k_hw_init_pll(ah, NULL);
1607
1608 if (AR_SREV_9100(ah))
1609 udelay(50);
1610
1611 return true;
1612}
1613
Sujithcbe61d82009-02-09 13:27:12 +05301614static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301615{
1616 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1617 AR_RTC_FORCE_WAKE_ON_INT);
1618
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001619 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301620 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001621 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301622
1623 if (!ath9k_hw_wait(ah,
1624 AR_RTC_STATUS,
1625 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301626 AR_RTC_STATUS_ON,
1627 AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301628 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301629 return false;
1630 }
1631
1632 ath9k_hw_read_revisions(ah);
1633
1634 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1635}
1636
Sujithcbe61d82009-02-09 13:27:12 +05301637static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301638{
1639 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1640 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1641
1642 switch (type) {
1643 case ATH9K_RESET_POWER_ON:
1644 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301645 case ATH9K_RESET_WARM:
1646 case ATH9K_RESET_COLD:
1647 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301648 default:
1649 return false;
1650 }
1651}
1652
Sujithcbe61d82009-02-09 13:27:12 +05301653static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301654 enum ath9k_ht_macmode macmode)
1655{
1656 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301657 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301658
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301659 if (AR_SREV_9285_10_OR_LATER(ah))
1660 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1661 AR_PHY_FC_ENABLE_DAC_FIFO);
1662
Sujithf1dc5602008-10-29 10:16:30 +05301663 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301664 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301665
1666 if (IS_CHAN_HT40(chan)) {
1667 phymode |= AR_PHY_FC_DYN2040_EN;
1668
1669 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1670 (chan->chanmode == CHANNEL_G_HT40PLUS))
1671 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1672
Sujith2660b812009-02-09 13:27:26 +05301673 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301674 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1675 }
1676 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1677
1678 ath9k_hw_set11nmac2040(ah, macmode);
1679
1680 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1681 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1682}
1683
Sujithcbe61d82009-02-09 13:27:12 +05301684static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301685 struct ath9k_channel *chan)
1686{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301687 if (OLC_FOR_AR9280_20_LATER) {
1688 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1689 return false;
1690 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301691 return false;
1692
1693 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1694 return false;
1695
Sujith2660b812009-02-09 13:27:26 +05301696 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301697 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301698 ath9k_hw_set_rfmode(ah, chan);
1699
1700 return true;
1701}
1702
Sujithcbe61d82009-02-09 13:27:12 +05301703static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301704 struct ath9k_channel *chan,
1705 enum ath9k_ht_macmode macmode)
1706{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001707 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301708 u32 synthDelay, qnum;
1709
1710 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1711 if (ath9k_hw_numtxpending(ah, qnum)) {
1712 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301713 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301714 return false;
1715 }
1716 }
1717
1718 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1719 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301720 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujithd8baa932009-03-30 15:28:25 +05301721 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301722 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301723 return false;
1724 }
1725
1726 ath9k_hw_set_regs(ah, chan, macmode);
1727
1728 if (AR_SREV_9280_10_OR_LATER(ah)) {
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001729 ath9k_hw_ar9280_set_channel(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301730 } else {
1731 if (!(ath9k_hw_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301732 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1733 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301734 return false;
1735 }
1736 }
1737
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001738 ah->eep_ops->set_txpower(ah, chan,
Bob Copelandc02cf372009-03-30 22:30:28 -04001739 ath9k_regd_get_ctl(&ah->regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301740 channel->max_antenna_gain * 2,
1741 channel->max_power * 2,
1742 min((u32) MAX_RATE_POWER,
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001743 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301744
1745 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301746 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301747 synthDelay = (4 * synthDelay) / 22;
1748 else
1749 synthDelay /= 10;
1750
1751 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1752
1753 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1754
1755 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1756 ath9k_hw_set_delta_slope(ah, chan);
1757
1758 if (AR_SREV_9280_10_OR_LATER(ah))
1759 ath9k_hw_9280_spur_mitigate(ah, chan);
1760 else
1761 ath9k_hw_spur_mitigate(ah, chan);
1762
1763 if (!chan->oneTimeCalsDone)
1764 chan->oneTimeCalsDone = true;
1765
1766 return true;
1767}
1768
Sujithcbe61d82009-02-09 13:27:12 +05301769static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001770{
1771 int bb_spur = AR_NO_SPUR;
1772 int freq;
1773 int bin, cur_bin;
1774 int bb_spur_off, spur_subchannel_sd;
1775 int spur_freq_sd;
1776 int spur_delta_phase;
1777 int denominator;
1778 int upper, lower, cur_vit_mask;
1779 int tmp, newVal;
1780 int i;
1781 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1782 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1783 };
1784 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1785 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1786 };
1787 int inc[4] = { 0, 100, 0, 0 };
1788 struct chan_centers centers;
1789
1790 int8_t mask_m[123];
1791 int8_t mask_p[123];
1792 int8_t mask_amt;
1793 int tmp_mask;
1794 int cur_bb_spur;
1795 bool is2GHz = IS_CHAN_2GHZ(chan);
1796
1797 memset(&mask_m, 0, sizeof(int8_t) * 123);
1798 memset(&mask_p, 0, sizeof(int8_t) * 123);
1799
1800 ath9k_hw_get_channel_centers(ah, chan, &centers);
1801 freq = centers.synth_center;
1802
Sujith2660b812009-02-09 13:27:26 +05301803 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001804 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301805 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806
1807 if (is2GHz)
1808 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1809 else
1810 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1811
1812 if (AR_NO_SPUR == cur_bb_spur)
1813 break;
1814 cur_bb_spur = cur_bb_spur - freq;
1815
1816 if (IS_CHAN_HT40(chan)) {
1817 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1818 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1819 bb_spur = cur_bb_spur;
1820 break;
1821 }
1822 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1823 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1824 bb_spur = cur_bb_spur;
1825 break;
1826 }
1827 }
1828
1829 if (AR_NO_SPUR == bb_spur) {
1830 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1831 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1832 return;
1833 } else {
1834 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1835 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1836 }
1837
1838 bin = bb_spur * 320;
1839
1840 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1841
1842 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1843 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1844 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1845 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1846 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1847
1848 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1849 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1850 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1851 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1852 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1853 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1854
1855 if (IS_CHAN_HT40(chan)) {
1856 if (bb_spur < 0) {
1857 spur_subchannel_sd = 1;
1858 bb_spur_off = bb_spur + 10;
1859 } else {
1860 spur_subchannel_sd = 0;
1861 bb_spur_off = bb_spur - 10;
1862 }
1863 } else {
1864 spur_subchannel_sd = 0;
1865 bb_spur_off = bb_spur;
1866 }
1867
1868 if (IS_CHAN_HT40(chan))
1869 spur_delta_phase =
1870 ((bb_spur * 262144) /
1871 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1872 else
1873 spur_delta_phase =
1874 ((bb_spur * 524288) /
1875 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1876
1877 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1878 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1879
1880 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1881 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1882 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1883 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1884
1885 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1886 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1887
1888 cur_bin = -6000;
1889 upper = bin + 100;
1890 lower = bin - 100;
1891
1892 for (i = 0; i < 4; i++) {
1893 int pilot_mask = 0;
1894 int chan_mask = 0;
1895 int bp = 0;
1896 for (bp = 0; bp < 30; bp++) {
1897 if ((cur_bin > lower) && (cur_bin < upper)) {
1898 pilot_mask = pilot_mask | 0x1 << bp;
1899 chan_mask = chan_mask | 0x1 << bp;
1900 }
1901 cur_bin += 100;
1902 }
1903 cur_bin += inc[i];
1904 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1905 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1906 }
1907
1908 cur_vit_mask = 6100;
1909 upper = bin + 120;
1910 lower = bin - 120;
1911
1912 for (i = 0; i < 123; i++) {
1913 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001914
1915 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001916 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001917
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001918 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919 mask_amt = 1;
1920 else
1921 mask_amt = 0;
1922 if (cur_vit_mask < 0)
1923 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1924 else
1925 mask_p[cur_vit_mask / 100] = mask_amt;
1926 }
1927 cur_vit_mask -= 100;
1928 }
1929
1930 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1931 | (mask_m[48] << 26) | (mask_m[49] << 24)
1932 | (mask_m[50] << 22) | (mask_m[51] << 20)
1933 | (mask_m[52] << 18) | (mask_m[53] << 16)
1934 | (mask_m[54] << 14) | (mask_m[55] << 12)
1935 | (mask_m[56] << 10) | (mask_m[57] << 8)
1936 | (mask_m[58] << 6) | (mask_m[59] << 4)
1937 | (mask_m[60] << 2) | (mask_m[61] << 0);
1938 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1939 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1940
1941 tmp_mask = (mask_m[31] << 28)
1942 | (mask_m[32] << 26) | (mask_m[33] << 24)
1943 | (mask_m[34] << 22) | (mask_m[35] << 20)
1944 | (mask_m[36] << 18) | (mask_m[37] << 16)
1945 | (mask_m[48] << 14) | (mask_m[39] << 12)
1946 | (mask_m[40] << 10) | (mask_m[41] << 8)
1947 | (mask_m[42] << 6) | (mask_m[43] << 4)
1948 | (mask_m[44] << 2) | (mask_m[45] << 0);
1949 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1950 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1951
1952 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1953 | (mask_m[18] << 26) | (mask_m[18] << 24)
1954 | (mask_m[20] << 22) | (mask_m[20] << 20)
1955 | (mask_m[22] << 18) | (mask_m[22] << 16)
1956 | (mask_m[24] << 14) | (mask_m[24] << 12)
1957 | (mask_m[25] << 10) | (mask_m[26] << 8)
1958 | (mask_m[27] << 6) | (mask_m[28] << 4)
1959 | (mask_m[29] << 2) | (mask_m[30] << 0);
1960 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1961 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1962
1963 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1964 | (mask_m[2] << 26) | (mask_m[3] << 24)
1965 | (mask_m[4] << 22) | (mask_m[5] << 20)
1966 | (mask_m[6] << 18) | (mask_m[7] << 16)
1967 | (mask_m[8] << 14) | (mask_m[9] << 12)
1968 | (mask_m[10] << 10) | (mask_m[11] << 8)
1969 | (mask_m[12] << 6) | (mask_m[13] << 4)
1970 | (mask_m[14] << 2) | (mask_m[15] << 0);
1971 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1972 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1973
1974 tmp_mask = (mask_p[15] << 28)
1975 | (mask_p[14] << 26) | (mask_p[13] << 24)
1976 | (mask_p[12] << 22) | (mask_p[11] << 20)
1977 | (mask_p[10] << 18) | (mask_p[9] << 16)
1978 | (mask_p[8] << 14) | (mask_p[7] << 12)
1979 | (mask_p[6] << 10) | (mask_p[5] << 8)
1980 | (mask_p[4] << 6) | (mask_p[3] << 4)
1981 | (mask_p[2] << 2) | (mask_p[1] << 0);
1982 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1983 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1984
1985 tmp_mask = (mask_p[30] << 28)
1986 | (mask_p[29] << 26) | (mask_p[28] << 24)
1987 | (mask_p[27] << 22) | (mask_p[26] << 20)
1988 | (mask_p[25] << 18) | (mask_p[24] << 16)
1989 | (mask_p[23] << 14) | (mask_p[22] << 12)
1990 | (mask_p[21] << 10) | (mask_p[20] << 8)
1991 | (mask_p[19] << 6) | (mask_p[18] << 4)
1992 | (mask_p[17] << 2) | (mask_p[16] << 0);
1993 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1994 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1995
1996 tmp_mask = (mask_p[45] << 28)
1997 | (mask_p[44] << 26) | (mask_p[43] << 24)
1998 | (mask_p[42] << 22) | (mask_p[41] << 20)
1999 | (mask_p[40] << 18) | (mask_p[39] << 16)
2000 | (mask_p[38] << 14) | (mask_p[37] << 12)
2001 | (mask_p[36] << 10) | (mask_p[35] << 8)
2002 | (mask_p[34] << 6) | (mask_p[33] << 4)
2003 | (mask_p[32] << 2) | (mask_p[31] << 0);
2004 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2005 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2006
2007 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2008 | (mask_p[59] << 26) | (mask_p[58] << 24)
2009 | (mask_p[57] << 22) | (mask_p[56] << 20)
2010 | (mask_p[55] << 18) | (mask_p[54] << 16)
2011 | (mask_p[53] << 14) | (mask_p[52] << 12)
2012 | (mask_p[51] << 10) | (mask_p[50] << 8)
2013 | (mask_p[49] << 6) | (mask_p[48] << 4)
2014 | (mask_p[47] << 2) | (mask_p[46] << 0);
2015 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2016 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2017}
2018
Sujithcbe61d82009-02-09 13:27:12 +05302019static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020{
2021 int bb_spur = AR_NO_SPUR;
2022 int bin, cur_bin;
2023 int spur_freq_sd;
2024 int spur_delta_phase;
2025 int denominator;
2026 int upper, lower, cur_vit_mask;
2027 int tmp, new;
2028 int i;
2029 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2030 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2031 };
2032 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2033 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2034 };
2035 int inc[4] = { 0, 100, 0, 0 };
2036
2037 int8_t mask_m[123];
2038 int8_t mask_p[123];
2039 int8_t mask_amt;
2040 int tmp_mask;
2041 int cur_bb_spur;
2042 bool is2GHz = IS_CHAN_2GHZ(chan);
2043
2044 memset(&mask_m, 0, sizeof(int8_t) * 123);
2045 memset(&mask_p, 0, sizeof(int8_t) * 123);
2046
2047 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302048 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049 if (AR_NO_SPUR == cur_bb_spur)
2050 break;
2051 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2052 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2053 bb_spur = cur_bb_spur;
2054 break;
2055 }
2056 }
2057
2058 if (AR_NO_SPUR == bb_spur)
2059 return;
2060
2061 bin = bb_spur * 32;
2062
2063 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2064 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2065 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2066 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2067 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2068
2069 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2070
2071 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2072 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2073 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2074 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2075 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2076 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2077
2078 spur_delta_phase = ((bb_spur * 524288) / 100) &
2079 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2080
2081 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2082 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2083
2084 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2085 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2086 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2087 REG_WRITE(ah, AR_PHY_TIMING11, new);
2088
2089 cur_bin = -6000;
2090 upper = bin + 100;
2091 lower = bin - 100;
2092
2093 for (i = 0; i < 4; i++) {
2094 int pilot_mask = 0;
2095 int chan_mask = 0;
2096 int bp = 0;
2097 for (bp = 0; bp < 30; bp++) {
2098 if ((cur_bin > lower) && (cur_bin < upper)) {
2099 pilot_mask = pilot_mask | 0x1 << bp;
2100 chan_mask = chan_mask | 0x1 << bp;
2101 }
2102 cur_bin += 100;
2103 }
2104 cur_bin += inc[i];
2105 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2106 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2107 }
2108
2109 cur_vit_mask = 6100;
2110 upper = bin + 120;
2111 lower = bin - 120;
2112
2113 for (i = 0; i < 123; i++) {
2114 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002115
2116 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002117 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002118
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002119 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002120 mask_amt = 1;
2121 else
2122 mask_amt = 0;
2123 if (cur_vit_mask < 0)
2124 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2125 else
2126 mask_p[cur_vit_mask / 100] = mask_amt;
2127 }
2128 cur_vit_mask -= 100;
2129 }
2130
2131 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2132 | (mask_m[48] << 26) | (mask_m[49] << 24)
2133 | (mask_m[50] << 22) | (mask_m[51] << 20)
2134 | (mask_m[52] << 18) | (mask_m[53] << 16)
2135 | (mask_m[54] << 14) | (mask_m[55] << 12)
2136 | (mask_m[56] << 10) | (mask_m[57] << 8)
2137 | (mask_m[58] << 6) | (mask_m[59] << 4)
2138 | (mask_m[60] << 2) | (mask_m[61] << 0);
2139 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2140 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2141
2142 tmp_mask = (mask_m[31] << 28)
2143 | (mask_m[32] << 26) | (mask_m[33] << 24)
2144 | (mask_m[34] << 22) | (mask_m[35] << 20)
2145 | (mask_m[36] << 18) | (mask_m[37] << 16)
2146 | (mask_m[48] << 14) | (mask_m[39] << 12)
2147 | (mask_m[40] << 10) | (mask_m[41] << 8)
2148 | (mask_m[42] << 6) | (mask_m[43] << 4)
2149 | (mask_m[44] << 2) | (mask_m[45] << 0);
2150 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2151 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2152
2153 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2154 | (mask_m[18] << 26) | (mask_m[18] << 24)
2155 | (mask_m[20] << 22) | (mask_m[20] << 20)
2156 | (mask_m[22] << 18) | (mask_m[22] << 16)
2157 | (mask_m[24] << 14) | (mask_m[24] << 12)
2158 | (mask_m[25] << 10) | (mask_m[26] << 8)
2159 | (mask_m[27] << 6) | (mask_m[28] << 4)
2160 | (mask_m[29] << 2) | (mask_m[30] << 0);
2161 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2162 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2163
2164 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2165 | (mask_m[2] << 26) | (mask_m[3] << 24)
2166 | (mask_m[4] << 22) | (mask_m[5] << 20)
2167 | (mask_m[6] << 18) | (mask_m[7] << 16)
2168 | (mask_m[8] << 14) | (mask_m[9] << 12)
2169 | (mask_m[10] << 10) | (mask_m[11] << 8)
2170 | (mask_m[12] << 6) | (mask_m[13] << 4)
2171 | (mask_m[14] << 2) | (mask_m[15] << 0);
2172 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2173 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2174
2175 tmp_mask = (mask_p[15] << 28)
2176 | (mask_p[14] << 26) | (mask_p[13] << 24)
2177 | (mask_p[12] << 22) | (mask_p[11] << 20)
2178 | (mask_p[10] << 18) | (mask_p[9] << 16)
2179 | (mask_p[8] << 14) | (mask_p[7] << 12)
2180 | (mask_p[6] << 10) | (mask_p[5] << 8)
2181 | (mask_p[4] << 6) | (mask_p[3] << 4)
2182 | (mask_p[2] << 2) | (mask_p[1] << 0);
2183 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2184 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2185
2186 tmp_mask = (mask_p[30] << 28)
2187 | (mask_p[29] << 26) | (mask_p[28] << 24)
2188 | (mask_p[27] << 22) | (mask_p[26] << 20)
2189 | (mask_p[25] << 18) | (mask_p[24] << 16)
2190 | (mask_p[23] << 14) | (mask_p[22] << 12)
2191 | (mask_p[21] << 10) | (mask_p[20] << 8)
2192 | (mask_p[19] << 6) | (mask_p[18] << 4)
2193 | (mask_p[17] << 2) | (mask_p[16] << 0);
2194 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2195 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2196
2197 tmp_mask = (mask_p[45] << 28)
2198 | (mask_p[44] << 26) | (mask_p[43] << 24)
2199 | (mask_p[42] << 22) | (mask_p[41] << 20)
2200 | (mask_p[40] << 18) | (mask_p[39] << 16)
2201 | (mask_p[38] << 14) | (mask_p[37] << 12)
2202 | (mask_p[36] << 10) | (mask_p[35] << 8)
2203 | (mask_p[34] << 6) | (mask_p[33] << 4)
2204 | (mask_p[32] << 2) | (mask_p[31] << 0);
2205 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2206 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2207
2208 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2209 | (mask_p[59] << 26) | (mask_p[58] << 24)
2210 | (mask_p[57] << 22) | (mask_p[56] << 20)
2211 | (mask_p[55] << 18) | (mask_p[54] << 16)
2212 | (mask_p[53] << 14) | (mask_p[52] << 12)
2213 | (mask_p[51] << 10) | (mask_p[50] << 8)
2214 | (mask_p[49] << 6) | (mask_p[48] << 4)
2215 | (mask_p[47] << 2) | (mask_p[46] << 0);
2216 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2217 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2218}
2219
Johannes Berg3b319aa2009-06-13 14:50:26 +05302220static void ath9k_enable_rfkill(struct ath_hw *ah)
2221{
2222 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2223 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2224
2225 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2226 AR_GPIO_INPUT_MUX2_RFSILENT);
2227
2228 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2229 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2230}
2231
Sujithcbe61d82009-02-09 13:27:12 +05302232int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002233 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002234{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002235 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002236 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302237 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238 u32 saveDefAntenna;
2239 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002240 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002241
Sujith2660b812009-02-09 13:27:26 +05302242 ah->extprotspacing = sc->ht_extprotspacing;
2243 ah->txchainmask = sc->tx_chainmask;
2244 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002245
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002246 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2247 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002248
2249 if (curchan)
2250 ath9k_hw_getnf(ah, curchan);
2251
2252 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302253 (ah->chip_fullsleep != true) &&
2254 (ah->curchan != NULL) &&
2255 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302257 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002258 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302259 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002260
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002261 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302262 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002264 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002265 }
2266 }
2267
2268 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2269 if (saveDefAntenna == 0)
2270 saveDefAntenna = 1;
2271
2272 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2273
2274 saveLedState = REG_READ(ah, AR_CFG_LED) &
2275 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2276 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2277
2278 ath9k_hw_mark_phy_inactive(ah);
2279
2280 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujithd8baa932009-03-30 15:28:25 +05302281 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002282 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283 }
2284
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302285 if (AR_SREV_9280_10_OR_LATER(ah))
2286 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302288 if (AR_SREV_9287_10_OR_LATER(ah)) {
2289 /* Enable ASYNC FIFO */
2290 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2291 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2292 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2293 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2294 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2295 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2296 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2297 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002298 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2299 if (r)
2300 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002302 /* Setup MFP options for CCMP */
2303 if (AR_SREV_9280_20_OR_LATER(ah)) {
2304 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2305 * frames when constructing CCMP AAD. */
2306 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2307 0xc7ff);
2308 ah->sw_mgmt_crypto = false;
2309 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2310 /* Disable hardware crypto for management frames */
2311 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2312 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2313 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2314 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2315 ah->sw_mgmt_crypto = true;
2316 } else
2317 ah->sw_mgmt_crypto = true;
2318
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002319 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2320 ath9k_hw_set_delta_slope(ah, chan);
2321
2322 if (AR_SREV_9280_10_OR_LATER(ah))
2323 ath9k_hw_9280_spur_mitigate(ah, chan);
2324 else
2325 ath9k_hw_spur_mitigate(ah, chan);
2326
Sujithd6509152009-03-13 08:56:05 +05302327 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002328
2329 ath9k_hw_decrease_chain_power(ah, chan);
2330
Sujithba52da52009-02-09 13:27:10 +05302331 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2332 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002333 | macStaId1
2334 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302335 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302336 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302337 | ah->sta_id1_defaults);
2338 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339
Sujithba52da52009-02-09 13:27:10 +05302340 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2341 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342
2343 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2344
Sujithba52da52009-02-09 13:27:10 +05302345 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2346 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2347 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002348
2349 REG_WRITE(ah, AR_ISR, ~0);
2350
2351 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2352
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002353 if (AR_SREV_9280_10_OR_LATER(ah))
2354 ath9k_hw_ar9280_set_channel(ah, chan);
2355 else
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002356 if (!(ath9k_hw_set_channel(ah, chan)))
2357 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002358
2359 for (i = 0; i < AR_NUM_DCU; i++)
2360 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2361
Sujith2660b812009-02-09 13:27:26 +05302362 ah->intr_txqs = 0;
2363 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364 ath9k_hw_resettxqueue(ah, i);
2365
Sujith2660b812009-02-09 13:27:26 +05302366 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002367 ath9k_hw_init_qos(ah);
2368
Sujith2660b812009-02-09 13:27:26 +05302369 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302370 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302371
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002372 ath9k_hw_init_user_settings(ah);
2373
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302374 if (AR_SREV_9287_10_OR_LATER(ah)) {
2375 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2376 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2377 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2378 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2379 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2380 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2381
2382 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2383 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2384
2385 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2386 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2387 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2388 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2389 }
2390 if (AR_SREV_9287_10_OR_LATER(ah)) {
2391 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2392 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2393 }
2394
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002395 REG_WRITE(ah, AR_STA_ID1,
2396 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2397
2398 ath9k_hw_set_dma(ah);
2399
2400 REG_WRITE(ah, AR_OBS, 8);
2401
Sujith0ef1f162009-03-30 15:28:35 +05302402 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2404 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2405 }
2406
2407 ath9k_hw_init_bb(ah, chan);
2408
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002409 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002410 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411
Sujith2660b812009-02-09 13:27:26 +05302412 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2414 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2415 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2416 }
2417
2418 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2419
2420 if (AR_SREV_9100(ah)) {
2421 u32 mask;
2422 mask = REG_READ(ah, AR_CFG);
2423 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2424 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302425 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002426 } else {
2427 mask =
2428 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2429 REG_WRITE(ah, AR_CFG, mask);
2430 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302431 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002432 }
2433 } else {
2434#ifdef __BIG_ENDIAN
2435 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2436#endif
2437 }
2438
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002439 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002440}
2441
Sujithf1dc5602008-10-29 10:16:30 +05302442/************************/
2443/* Key Cache Management */
2444/************************/
2445
Sujithcbe61d82009-02-09 13:27:12 +05302446bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447{
Sujithf1dc5602008-10-29 10:16:30 +05302448 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002449
Sujith2660b812009-02-09 13:27:26 +05302450 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302451 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2452 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453 return false;
2454 }
2455
Sujithf1dc5602008-10-29 10:16:30 +05302456 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002457
Sujithf1dc5602008-10-29 10:16:30 +05302458 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2459 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2460 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2461 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2462 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2463 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2464 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2465 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2466
2467 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2468 u16 micentry = entry + 64;
2469
2470 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2471 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2472 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2473 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2474
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475 }
2476
Sujith2660b812009-02-09 13:27:26 +05302477 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302478 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479
2480 return true;
2481}
2482
Sujithcbe61d82009-02-09 13:27:12 +05302483bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484{
Sujithf1dc5602008-10-29 10:16:30 +05302485 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002486
Sujith2660b812009-02-09 13:27:26 +05302487 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302488 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2489 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002490 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002491 }
2492
Sujithf1dc5602008-10-29 10:16:30 +05302493 if (mac != NULL) {
2494 macHi = (mac[5] << 8) | mac[4];
2495 macLo = (mac[3] << 24) |
2496 (mac[2] << 16) |
2497 (mac[1] << 8) |
2498 mac[0];
2499 macLo >>= 1;
2500 macLo |= (macHi & 1) << 31;
2501 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002502 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302503 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504 }
Sujithf1dc5602008-10-29 10:16:30 +05302505 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2506 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002507
2508 return true;
2509}
2510
Sujithcbe61d82009-02-09 13:27:12 +05302511bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302512 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002513 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002514{
Sujith2660b812009-02-09 13:27:26 +05302515 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302516 u32 key0, key1, key2, key3, key4;
2517 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002518
Sujithf1dc5602008-10-29 10:16:30 +05302519 if (entry >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302520 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2521 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302522 return false;
2523 }
2524
2525 switch (k->kv_type) {
2526 case ATH9K_CIPHER_AES_OCB:
2527 keyType = AR_KEYTABLE_TYPE_AES;
2528 break;
2529 case ATH9K_CIPHER_AES_CCM:
2530 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Sujithd8baa932009-03-30 15:28:25 +05302531 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302532 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302533 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002534 return false;
2535 }
Sujithf1dc5602008-10-29 10:16:30 +05302536 keyType = AR_KEYTABLE_TYPE_CCM;
2537 break;
2538 case ATH9K_CIPHER_TKIP:
2539 keyType = AR_KEYTABLE_TYPE_TKIP;
2540 if (ATH9K_IS_MIC_ENABLED(ah)
2541 && entry + 64 >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302542 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302543 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002544 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002545 }
Sujithf1dc5602008-10-29 10:16:30 +05302546 break;
2547 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002548 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Sujithd8baa932009-03-30 15:28:25 +05302549 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302550 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302551 return false;
2552 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002553 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302554 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002555 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302556 keyType = AR_KEYTABLE_TYPE_104;
2557 else
2558 keyType = AR_KEYTABLE_TYPE_128;
2559 break;
2560 case ATH9K_CIPHER_CLR:
2561 keyType = AR_KEYTABLE_TYPE_CLR;
2562 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 default:
Sujithd8baa932009-03-30 15:28:25 +05302564 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302565 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002566 return false;
2567 }
Sujithf1dc5602008-10-29 10:16:30 +05302568
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002569 key0 = get_unaligned_le32(k->kv_val + 0);
2570 key1 = get_unaligned_le16(k->kv_val + 4);
2571 key2 = get_unaligned_le32(k->kv_val + 6);
2572 key3 = get_unaligned_le16(k->kv_val + 10);
2573 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002574 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302575 key4 &= 0xff;
2576
Jouni Malinen672903b2009-03-02 15:06:31 +02002577 /*
2578 * Note: Key cache registers access special memory area that requires
2579 * two 32-bit writes to actually update the values in the internal
2580 * memory. Consequently, the exact order and pairs used here must be
2581 * maintained.
2582 */
2583
Sujithf1dc5602008-10-29 10:16:30 +05302584 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2585 u16 micentry = entry + 64;
2586
Jouni Malinen672903b2009-03-02 15:06:31 +02002587 /*
2588 * Write inverted key[47:0] first to avoid Michael MIC errors
2589 * on frames that could be sent or received at the same time.
2590 * The correct key will be written in the end once everything
2591 * else is ready.
2592 */
Sujithf1dc5602008-10-29 10:16:30 +05302593 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2594 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002595
2596 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302597 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2598 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002599
2600 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302601 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2602 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002603
2604 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302605 (void) ath9k_hw_keysetmac(ah, entry, mac);
2606
Sujith2660b812009-02-09 13:27:26 +05302607 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002608 /*
2609 * TKIP uses two key cache entries:
2610 * Michael MIC TX/RX keys in the same key cache entry
2611 * (idx = main index + 64):
2612 * key0 [31:0] = RX key [31:0]
2613 * key1 [15:0] = TX key [31:16]
2614 * key1 [31:16] = reserved
2615 * key2 [31:0] = RX key [63:32]
2616 * key3 [15:0] = TX key [15:0]
2617 * key3 [31:16] = reserved
2618 * key4 [31:0] = TX key [63:32]
2619 */
Sujithf1dc5602008-10-29 10:16:30 +05302620 u32 mic0, mic1, mic2, mic3, mic4;
2621
2622 mic0 = get_unaligned_le32(k->kv_mic + 0);
2623 mic2 = get_unaligned_le32(k->kv_mic + 4);
2624 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2625 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2626 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002627
2628 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302629 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2630 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002631
2632 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302633 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2634 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002635
2636 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302637 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2638 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2639 AR_KEYTABLE_TYPE_CLR);
2640
2641 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002642 /*
2643 * TKIP uses four key cache entries (two for group
2644 * keys):
2645 * Michael MIC TX/RX keys are in different key cache
2646 * entries (idx = main index + 64 for TX and
2647 * main index + 32 + 96 for RX):
2648 * key0 [31:0] = TX/RX MIC key [31:0]
2649 * key1 [31:0] = reserved
2650 * key2 [31:0] = TX/RX MIC key [63:32]
2651 * key3 [31:0] = reserved
2652 * key4 [31:0] = reserved
2653 *
2654 * Upper layer code will call this function separately
2655 * for TX and RX keys when these registers offsets are
2656 * used.
2657 */
Sujithf1dc5602008-10-29 10:16:30 +05302658 u32 mic0, mic2;
2659
2660 mic0 = get_unaligned_le32(k->kv_mic + 0);
2661 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002662
2663 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302664 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2665 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002666
2667 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302668 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2669 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002670
2671 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302672 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2673 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2674 AR_KEYTABLE_TYPE_CLR);
2675 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002676
2677 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302678 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2679 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002680
2681 /*
2682 * Write the correct (un-inverted) key[47:0] last to enable
2683 * TKIP now that all other registers are set with correct
2684 * values.
2685 */
Sujithf1dc5602008-10-29 10:16:30 +05302686 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2687 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2688 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002689 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302690 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2691 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002692
2693 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302694 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2695 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002696
2697 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302698 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2699 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2700
Jouni Malinen672903b2009-03-02 15:06:31 +02002701 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302702 (void) ath9k_hw_keysetmac(ah, entry, mac);
2703 }
2704
Sujithf1dc5602008-10-29 10:16:30 +05302705 return true;
2706}
2707
Sujithcbe61d82009-02-09 13:27:12 +05302708bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302709{
Sujith2660b812009-02-09 13:27:26 +05302710 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302711 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2712 if (val & AR_KEYTABLE_VALID)
2713 return true;
2714 }
2715 return false;
2716}
2717
2718/******************************/
2719/* Power Management (Chipset) */
2720/******************************/
2721
Sujithcbe61d82009-02-09 13:27:12 +05302722static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302723{
2724 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2725 if (setChip) {
2726 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2727 AR_RTC_FORCE_WAKE_EN);
2728 if (!AR_SREV_9100(ah))
2729 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2730
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002731 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302732 AR_RTC_RESET_EN);
2733 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734}
2735
Sujithcbe61d82009-02-09 13:27:12 +05302736static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002737{
Sujithf1dc5602008-10-29 10:16:30 +05302738 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2739 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302740 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002741
Sujithf1dc5602008-10-29 10:16:30 +05302742 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2743 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2744 AR_RTC_FORCE_WAKE_ON_INT);
2745 } else {
2746 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2747 AR_RTC_FORCE_WAKE_EN);
2748 }
2749 }
2750}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002751
Sujithcbe61d82009-02-09 13:27:12 +05302752static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302753{
2754 u32 val;
2755 int i;
2756
2757 if (setChip) {
2758 if ((REG_READ(ah, AR_RTC_STATUS) &
2759 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2760 if (ath9k_hw_set_reset_reg(ah,
2761 ATH9K_RESET_POWER_ON) != true) {
2762 return false;
2763 }
2764 }
2765 if (AR_SREV_9100(ah))
2766 REG_SET_BIT(ah, AR_RTC_RESET,
2767 AR_RTC_RESET_EN);
2768
2769 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2770 AR_RTC_FORCE_WAKE_EN);
2771 udelay(50);
2772
2773 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2774 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2775 if (val == AR_RTC_STATUS_ON)
2776 break;
2777 udelay(50);
2778 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2779 AR_RTC_FORCE_WAKE_EN);
2780 }
2781 if (i == 0) {
Sujithd8baa932009-03-30 15:28:25 +05302782 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302783 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302784 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002785 }
2786 }
2787
Sujithf1dc5602008-10-29 10:16:30 +05302788 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2789
2790 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002791}
2792
Gabor Juhos04717cc2009-07-14 20:17:13 -04002793static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2794 enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302795{
Sujithcbe61d82009-02-09 13:27:12 +05302796 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302797 static const char *modes[] = {
2798 "AWAKE",
2799 "FULL-SLEEP",
2800 "NETWORK SLEEP",
2801 "UNDEFINED"
2802 };
Sujithf1dc5602008-10-29 10:16:30 +05302803
Gabor Juhoscbdec972009-07-24 17:27:22 +02002804 if (ah->power_mode == mode)
2805 return status;
2806
Sujithd8baa932009-03-30 15:28:25 +05302807 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2808 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302809
2810 switch (mode) {
2811 case ATH9K_PM_AWAKE:
2812 status = ath9k_hw_set_power_awake(ah, setChip);
2813 break;
2814 case ATH9K_PM_FULL_SLEEP:
2815 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302816 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302817 break;
2818 case ATH9K_PM_NETWORK_SLEEP:
2819 ath9k_set_power_network_sleep(ah, setChip);
2820 break;
2821 default:
Sujithd8baa932009-03-30 15:28:25 +05302822 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302823 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302824 return false;
2825 }
Sujith2660b812009-02-09 13:27:26 +05302826 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302827
2828 return status;
2829}
2830
Gabor Juhos04717cc2009-07-14 20:17:13 -04002831bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2832{
2833 unsigned long flags;
2834 bool ret;
2835
2836 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2837 ret = ath9k_hw_setpower_nolock(ah, mode);
2838 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2839
2840 return ret;
2841}
2842
Gabor Juhos0bc07982009-07-14 20:17:14 -04002843void ath9k_ps_wakeup(struct ath_softc *sc)
2844{
Gabor Juhos709ade92009-07-14 20:17:15 -04002845 unsigned long flags;
2846
2847 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2848 if (++sc->ps_usecount != 1)
2849 goto unlock;
2850
Gabor Juhoscbdec972009-07-24 17:27:22 +02002851 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
Gabor Juhos709ade92009-07-14 20:17:15 -04002852
2853 unlock:
2854 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002855}
2856
2857void ath9k_ps_restore(struct ath_softc *sc)
2858{
Gabor Juhos709ade92009-07-14 20:17:15 -04002859 unsigned long flags;
2860
2861 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2862 if (--sc->ps_usecount != 0)
2863 goto unlock;
2864
Gabor Juhos96148322009-07-24 17:27:21 +02002865 if (sc->ps_enabled &&
2866 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
2867 SC_OP_WAIT_FOR_CAB |
2868 SC_OP_WAIT_FOR_PSPOLL_DATA |
2869 SC_OP_WAIT_FOR_TX_ACK)))
2870 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
Gabor Juhos709ade92009-07-14 20:17:15 -04002871
2872 unlock:
2873 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002874}
2875
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002876/*
2877 * Helper for ASPM support.
2878 *
2879 * Disable PLL when in L0s as well as receiver clock when in L1.
2880 * This power saving option must be enabled through the SerDes.
2881 *
2882 * Programming the SerDes must go through the same 288 bit serial shift
2883 * register as the other analog registers. Hence the 9 writes.
2884 */
Sujithcbe61d82009-02-09 13:27:12 +05302885void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302886{
Sujithf1dc5602008-10-29 10:16:30 +05302887 u8 i;
2888
Sujith2660b812009-02-09 13:27:26 +05302889 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302890 return;
2891
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002892 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302893 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302894 return;
2895
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002896 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302897 if (restore)
2898 return;
2899
2900 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002901 /*
2902 * AR9280 2.0 or later chips use SerDes values from the
2903 * initvals.h initialized depending on chipset during
2904 * ath9k_hw_do_attach()
2905 */
Sujith2660b812009-02-09 13:27:26 +05302906 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2907 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2908 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302909 }
Sujithf1dc5602008-10-29 10:16:30 +05302910 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302911 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302912 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2913 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2914
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002915 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302916 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2917 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2918 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2919
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002920 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302921 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302922 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2923 else
2924 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2925
2926 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2927 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2928 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2929
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002930 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302931 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2932
Sujithf1dc5602008-10-29 10:16:30 +05302933 } else {
2934 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2935 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002936
2937 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302938 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2939 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2940 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002941
2942 /*
2943 * Ignore ah->ah_config.pcie_clock_req setting for
2944 * pre-AR9280 11n
2945 */
Sujithf1dc5602008-10-29 10:16:30 +05302946 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002947
Sujithf1dc5602008-10-29 10:16:30 +05302948 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2949 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2950 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002951
2952 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302953 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2954 }
2955
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002956 udelay(1000);
2957
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002958 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302959 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2960
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002961 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302962 if (ah->config.pcie_waen) {
2963 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302964 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302965 if (AR_SREV_9285(ah))
2966 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002967 /*
2968 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2969 * otherwise card may disappear.
2970 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302971 else if (AR_SREV_9280(ah))
2972 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302973 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302974 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302975 }
2976}
2977
2978/**********************/
2979/* Interrupt Handling */
2980/**********************/
2981
Sujithcbe61d82009-02-09 13:27:12 +05302982bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002983{
2984 u32 host_isr;
2985
2986 if (AR_SREV_9100(ah))
2987 return true;
2988
2989 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2990 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2991 return true;
2992
2993 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2994 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2995 && (host_isr != AR_INTR_SPURIOUS))
2996 return true;
2997
2998 return false;
2999}
3000
Sujithcbe61d82009-02-09 13:27:12 +05303001bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003002{
3003 u32 isr = 0;
3004 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05303005 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003006 u32 sync_cause = 0;
3007 bool fatal_int = false;
3008
3009 if (!AR_SREV_9100(ah)) {
3010 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3011 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3012 == AR_RTC_STATUS_ON) {
3013 isr = REG_READ(ah, AR_ISR);
3014 }
3015 }
3016
Sujithf1dc5602008-10-29 10:16:30 +05303017 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3018 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003019
3020 *masked = 0;
3021
3022 if (!isr && !sync_cause)
3023 return false;
3024 } else {
3025 *masked = 0;
3026 isr = REG_READ(ah, AR_ISR);
3027 }
3028
3029 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003030 if (isr & AR_ISR_BCNMISC) {
3031 u32 isr2;
3032 isr2 = REG_READ(ah, AR_ISR_S2);
3033 if (isr2 & AR_ISR_S2_TIM)
3034 mask2 |= ATH9K_INT_TIM;
3035 if (isr2 & AR_ISR_S2_DTIM)
3036 mask2 |= ATH9K_INT_DTIM;
3037 if (isr2 & AR_ISR_S2_DTIMSYNC)
3038 mask2 |= ATH9K_INT_DTIMSYNC;
3039 if (isr2 & (AR_ISR_S2_CABEND))
3040 mask2 |= ATH9K_INT_CABEND;
3041 if (isr2 & AR_ISR_S2_GTT)
3042 mask2 |= ATH9K_INT_GTT;
3043 if (isr2 & AR_ISR_S2_CST)
3044 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05303045 if (isr2 & AR_ISR_S2_TSFOOR)
3046 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003047 }
3048
3049 isr = REG_READ(ah, AR_ISR_RAC);
3050 if (isr == 0xffffffff) {
3051 *masked = 0;
3052 return false;
3053 }
3054
3055 *masked = isr & ATH9K_INT_COMMON;
3056
Sujith0ef1f162009-03-30 15:28:35 +05303057 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003058 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3059 *masked |= ATH9K_INT_RX;
3060 }
3061
3062 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3063 *masked |= ATH9K_INT_RX;
3064 if (isr &
3065 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3066 AR_ISR_TXEOL)) {
3067 u32 s0_s, s1_s;
3068
3069 *masked |= ATH9K_INT_TX;
3070
3071 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05303072 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3073 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003074
3075 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05303076 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3077 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003078 }
3079
3080 if (isr & AR_ISR_RXORN) {
3081 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303082 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003083 }
3084
3085 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05303086 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003087 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3088 if (isr5 & AR_ISR_S5_TIM_TIMER)
3089 *masked |= ATH9K_INT_TIM_TIMER;
3090 }
3091 }
3092
3093 *masked |= mask2;
3094 }
Sujithf1dc5602008-10-29 10:16:30 +05303095
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003096 if (AR_SREV_9100(ah))
3097 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303098
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003099 if (sync_cause) {
3100 fatal_int =
3101 (sync_cause &
3102 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3103 ? true : false;
3104
3105 if (fatal_int) {
3106 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
3107 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303108 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003109 }
3110 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
3111 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05303112 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003113 }
Steven Luoa89bff92009-04-12 02:57:54 -07003114 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003115 }
3116 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3117 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303118 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003119 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3120 REG_WRITE(ah, AR_RC, 0);
3121 *masked |= ATH9K_INT_FATAL;
3122 }
3123 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3124 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05303125 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003126 }
3127
3128 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3129 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3130 }
Sujithf1dc5602008-10-29 10:16:30 +05303131
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003132 return true;
3133}
3134
Sujithcbe61d82009-02-09 13:27:12 +05303135enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003136{
Sujith2660b812009-02-09 13:27:26 +05303137 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003138 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303139 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140
Sujith04bd4632008-11-28 22:18:05 +05303141 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003142
3143 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303144 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003145 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3146 (void) REG_READ(ah, AR_IER);
3147 if (!AR_SREV_9100(ah)) {
3148 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3149 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3150
3151 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3152 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3153 }
3154 }
3155
3156 mask = ints & ATH9K_INT_COMMON;
3157 mask2 = 0;
3158
3159 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303160 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003161 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303162 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003163 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303164 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003165 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303166 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003167 mask |= AR_IMR_TXEOL;
3168 }
3169 if (ints & ATH9K_INT_RX) {
3170 mask |= AR_IMR_RXERR;
Sujith0ef1f162009-03-30 15:28:35 +05303171 if (ah->config.intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003172 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3173 else
3174 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303175 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003176 mask |= AR_IMR_GENTMR;
3177 }
3178
3179 if (ints & (ATH9K_INT_BMISC)) {
3180 mask |= AR_IMR_BCNMISC;
3181 if (ints & ATH9K_INT_TIM)
3182 mask2 |= AR_IMR_S2_TIM;
3183 if (ints & ATH9K_INT_DTIM)
3184 mask2 |= AR_IMR_S2_DTIM;
3185 if (ints & ATH9K_INT_DTIMSYNC)
3186 mask2 |= AR_IMR_S2_DTIMSYNC;
3187 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303188 mask2 |= AR_IMR_S2_CABEND;
3189 if (ints & ATH9K_INT_TSFOOR)
3190 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003191 }
3192
3193 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3194 mask |= AR_IMR_BCNMISC;
3195 if (ints & ATH9K_INT_GTT)
3196 mask2 |= AR_IMR_S2_GTT;
3197 if (ints & ATH9K_INT_CST)
3198 mask2 |= AR_IMR_S2_CST;
3199 }
3200
Sujith04bd4632008-11-28 22:18:05 +05303201 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003202 REG_WRITE(ah, AR_IMR, mask);
3203 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3204 AR_IMR_S2_DTIM |
3205 AR_IMR_S2_DTIMSYNC |
3206 AR_IMR_S2_CABEND |
3207 AR_IMR_S2_CABTO |
3208 AR_IMR_S2_TSFOOR |
3209 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3210 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303211 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003212
Sujith60b67f52008-08-07 10:52:38 +05303213 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003214 if (ints & ATH9K_INT_TIM_TIMER)
3215 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3216 else
3217 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3218 }
3219
3220 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303221 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003222 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3223 if (!AR_SREV_9100(ah)) {
3224 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3225 AR_INTR_MAC_IRQ);
3226 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3227
3228
3229 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3230 AR_INTR_SYNC_DEFAULT);
3231 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3232 AR_INTR_SYNC_DEFAULT);
3233 }
3234 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3235 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3236 }
3237
3238 return omask;
3239}
3240
Sujithf1dc5602008-10-29 10:16:30 +05303241/*******************/
3242/* Beacon Handling */
3243/*******************/
3244
Sujithcbe61d82009-02-09 13:27:12 +05303245void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003246{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003247 int flags = 0;
3248
Sujith2660b812009-02-09 13:27:26 +05303249 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003250
Sujith2660b812009-02-09 13:27:26 +05303251 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003252 case NL80211_IFTYPE_STATION:
3253 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003254 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3255 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3256 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3257 flags |= AR_TBTT_TIMER_EN;
3258 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003259 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003260 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003261 REG_SET_BIT(ah, AR_TXCFG,
3262 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3263 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3264 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303265 (ah->atim_window ? ah->
3266 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003267 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003268 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003269 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3270 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3271 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303272 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303273 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003274 REG_WRITE(ah, AR_NEXT_SWBA,
3275 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303276 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303277 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003278 flags |=
3279 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3280 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003281 default:
3282 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3283 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303284 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003285 return;
3286 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003287 }
3288
3289 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3290 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3291 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3292 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3293
3294 beacon_period &= ~ATH9K_BEACON_ENA;
3295 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3296 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3297 ath9k_hw_reset_tsf(ah);
3298 }
3299
3300 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3301}
3302
Sujithcbe61d82009-02-09 13:27:12 +05303303void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303304 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003305{
3306 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303307 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003308
3309 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3310
3311 REG_WRITE(ah, AR_BEACON_PERIOD,
3312 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3313 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3314 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3315
3316 REG_RMW_FIELD(ah, AR_RSSI_THR,
3317 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3318
3319 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3320
3321 if (bs->bs_sleepduration > beaconintval)
3322 beaconintval = bs->bs_sleepduration;
3323
3324 dtimperiod = bs->bs_dtimperiod;
3325 if (bs->bs_sleepduration > dtimperiod)
3326 dtimperiod = bs->bs_sleepduration;
3327
3328 if (beaconintval == dtimperiod)
3329 nextTbtt = bs->bs_nextdtim;
3330 else
3331 nextTbtt = bs->bs_nexttbtt;
3332
Sujith04bd4632008-11-28 22:18:05 +05303333 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3334 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3335 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3336 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003337
3338 REG_WRITE(ah, AR_NEXT_DTIM,
3339 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3340 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3341
3342 REG_WRITE(ah, AR_SLEEP1,
3343 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3344 | AR_SLEEP1_ASSUME_DTIM);
3345
Sujith60b67f52008-08-07 10:52:38 +05303346 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003347 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3348 else
3349 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3350
3351 REG_WRITE(ah, AR_SLEEP2,
3352 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3353
3354 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3355 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3356
3357 REG_SET_BIT(ah, AR_TIMER_MODE,
3358 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3359 AR_DTIM_TIMER_EN);
3360
Sujith4af9cf42009-02-12 10:06:47 +05303361 /* TSF Out of Range Threshold */
3362 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003363}
3364
Sujithf1dc5602008-10-29 10:16:30 +05303365/*******************/
3366/* HW Capabilities */
3367/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003368
Sujitheef7a572009-03-30 15:28:28 +05303369void ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003370{
Sujith2660b812009-02-09 13:27:26 +05303371 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303372 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003373
Sujithf74df6f2009-02-09 13:27:24 +05303374 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303375 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303376
Sujithf74df6f2009-02-09 13:27:24 +05303377 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303378 if (AR_SREV_9285_10_OR_LATER(ah))
3379 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303380 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303381
Sujithf74df6f2009-02-09 13:27:24 +05303382 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303383
Sujith2660b812009-02-09 13:27:26 +05303384 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303385 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303386 if (ah->regulatory.current_rd == 0x64 ||
3387 ah->regulatory.current_rd == 0x65)
3388 ah->regulatory.current_rd += 5;
3389 else if (ah->regulatory.current_rd == 0x41)
3390 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303391 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303392 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003393 }
Sujithdc2222a2008-08-14 13:26:55 +05303394
Sujithf74df6f2009-02-09 13:27:24 +05303395 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303396 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003397
Sujithf1dc5602008-10-29 10:16:30 +05303398 if (eeval & AR5416_OPFLAGS_11A) {
3399 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303400 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303401 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3402 set_bit(ATH9K_MODE_11NA_HT20,
3403 pCap->wireless_modes);
3404 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3405 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3406 pCap->wireless_modes);
3407 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3408 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003409 }
3410 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003411 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003412
Sujithf1dc5602008-10-29 10:16:30 +05303413 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303414 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303415 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303416 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3417 set_bit(ATH9K_MODE_11NG_HT20,
3418 pCap->wireless_modes);
3419 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3420 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3421 pCap->wireless_modes);
3422 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3423 pCap->wireless_modes);
3424 }
3425 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003426 }
Sujithf1dc5602008-10-29 10:16:30 +05303427
Sujithf74df6f2009-02-09 13:27:24 +05303428 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303429 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3430 !(eeval & AR5416_OPFLAGS_11A))
3431 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3432 else
3433 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303434
Sujithd535a422009-02-09 13:27:06 +05303435 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303436 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303437
3438 pCap->low_2ghz_chan = 2312;
3439 pCap->high_2ghz_chan = 2732;
3440
3441 pCap->low_5ghz_chan = 4920;
3442 pCap->high_5ghz_chan = 6100;
3443
3444 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3445 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3446 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3447
3448 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3449 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3450 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3451
Sujith2660b812009-02-09 13:27:26 +05303452 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303453 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3454 else
3455 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3456
3457 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3458 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3459 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3460 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3461
3462 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3463 pCap->total_queues =
3464 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3465 else
3466 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3467
3468 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3469 pCap->keycache_size =
3470 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3471 else
3472 pCap->keycache_size = AR_KEYTABLE_SIZE;
3473
3474 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303475 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3476
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303477 if (AR_SREV_9285_10_OR_LATER(ah))
3478 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3479 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303480 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3481 else
3482 pCap->num_gpio_pins = AR_NUM_GPIO;
3483
Sujithf1dc5602008-10-29 10:16:30 +05303484 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3485 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3486 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3487 } else {
3488 pCap->rts_aggr_limit = (8 * 1024);
3489 }
3490
3491 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3492
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303493#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303494 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3495 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3496 ah->rfkill_gpio =
3497 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3498 ah->rfkill_polarity =
3499 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303500
3501 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3502 }
3503#endif
3504
Sujithd535a422009-02-09 13:27:06 +05303505 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3506 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3507 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3508 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
Vivek Natarajan882b7092009-04-14 16:21:01 +05303509 (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
3510 (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
Sujithf1dc5602008-10-29 10:16:30 +05303511 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3512 else
3513 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3514
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303515 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303516 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3517 else
3518 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3519
Sujithd6bad492009-02-09 13:27:08 +05303520 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303521 pCap->reg_cap =
3522 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3523 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3524 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3525 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3526 } else {
3527 pCap->reg_cap =
3528 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3529 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3530 }
3531
3532 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3533
3534 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303535 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303536 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303537 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303538
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303539 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303540 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303541 ah->btactive_gpio = 6;
3542 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303543 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003544}
3545
Sujithcbe61d82009-02-09 13:27:12 +05303546bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303547 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003548{
Sujithf1dc5602008-10-29 10:16:30 +05303549 switch (type) {
3550 case ATH9K_CAP_CIPHER:
3551 switch (capability) {
3552 case ATH9K_CIPHER_AES_CCM:
3553 case ATH9K_CIPHER_AES_OCB:
3554 case ATH9K_CIPHER_TKIP:
3555 case ATH9K_CIPHER_WEP:
3556 case ATH9K_CIPHER_MIC:
3557 case ATH9K_CIPHER_CLR:
3558 return true;
3559 default:
3560 return false;
3561 }
3562 case ATH9K_CAP_TKIP_MIC:
3563 switch (capability) {
3564 case 0:
3565 return true;
3566 case 1:
Sujith2660b812009-02-09 13:27:26 +05303567 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303568 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3569 false;
3570 }
3571 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303572 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303573 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303574 case ATH9K_CAP_DIVERSITY:
3575 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3576 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3577 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303578 case ATH9K_CAP_MCAST_KEYSRCH:
3579 switch (capability) {
3580 case 0:
3581 return true;
3582 case 1:
3583 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3584 return false;
3585 } else {
Sujith2660b812009-02-09 13:27:26 +05303586 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303587 AR_STA_ID1_MCAST_KSRCH) ? true :
3588 false;
3589 }
3590 }
3591 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303592 case ATH9K_CAP_TXPOW:
3593 switch (capability) {
3594 case 0:
3595 return 0;
3596 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303597 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303598 return 0;
3599 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303600 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303601 return 0;
3602 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303603 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303604 return 0;
3605 }
3606 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303607 case ATH9K_CAP_DS:
3608 return (AR_SREV_9280_20_OR_LATER(ah) &&
3609 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3610 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303611 default:
3612 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003613 }
Sujithf1dc5602008-10-29 10:16:30 +05303614}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003615
Sujithcbe61d82009-02-09 13:27:12 +05303616bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303617 u32 capability, u32 setting, int *status)
3618{
Sujithf1dc5602008-10-29 10:16:30 +05303619 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003620
Sujithf1dc5602008-10-29 10:16:30 +05303621 switch (type) {
3622 case ATH9K_CAP_TKIP_MIC:
3623 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303624 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303625 AR_STA_ID1_CRPT_MIC_ENABLE;
3626 else
Sujith2660b812009-02-09 13:27:26 +05303627 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303628 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3629 return true;
3630 case ATH9K_CAP_DIVERSITY:
3631 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3632 if (setting)
3633 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3634 else
3635 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3636 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3637 return true;
3638 case ATH9K_CAP_MCAST_KEYSRCH:
3639 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303640 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303641 else
Sujith2660b812009-02-09 13:27:26 +05303642 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303643 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303644 default:
3645 return false;
3646 }
3647}
3648
3649/****************************/
3650/* GPIO / RFKILL / Antennae */
3651/****************************/
3652
Sujithcbe61d82009-02-09 13:27:12 +05303653static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303654 u32 gpio, u32 type)
3655{
3656 int addr;
3657 u32 gpio_shift, tmp;
3658
3659 if (gpio > 11)
3660 addr = AR_GPIO_OUTPUT_MUX3;
3661 else if (gpio > 5)
3662 addr = AR_GPIO_OUTPUT_MUX2;
3663 else
3664 addr = AR_GPIO_OUTPUT_MUX1;
3665
3666 gpio_shift = (gpio % 6) * 5;
3667
3668 if (AR_SREV_9280_20_OR_LATER(ah)
3669 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3670 REG_RMW(ah, addr, (type << gpio_shift),
3671 (0x1f << gpio_shift));
3672 } else {
3673 tmp = REG_READ(ah, addr);
3674 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3675 tmp &= ~(0x1f << gpio_shift);
3676 tmp |= (type << gpio_shift);
3677 REG_WRITE(ah, addr, tmp);
3678 }
3679}
3680
Sujithcbe61d82009-02-09 13:27:12 +05303681void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303682{
3683 u32 gpio_shift;
3684
Sujith2660b812009-02-09 13:27:26 +05303685 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303686
3687 gpio_shift = gpio << 1;
3688
3689 REG_RMW(ah,
3690 AR_GPIO_OE_OUT,
3691 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3692 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3693}
3694
Sujithcbe61d82009-02-09 13:27:12 +05303695u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303696{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303697#define MS_REG_READ(x, y) \
3698 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3699
Sujith2660b812009-02-09 13:27:26 +05303700 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303701 return 0xffffffff;
3702
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303703 if (AR_SREV_9287_10_OR_LATER(ah))
3704 return MS_REG_READ(AR9287, gpio) != 0;
3705 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303706 return MS_REG_READ(AR9285, gpio) != 0;
3707 else if (AR_SREV_9280_10_OR_LATER(ah))
3708 return MS_REG_READ(AR928X, gpio) != 0;
3709 else
3710 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303711}
3712
Sujithcbe61d82009-02-09 13:27:12 +05303713void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303714 u32 ah_signal_type)
3715{
3716 u32 gpio_shift;
3717
3718 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3719
3720 gpio_shift = 2 * gpio;
3721
3722 REG_RMW(ah,
3723 AR_GPIO_OE_OUT,
3724 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3725 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3726}
3727
Sujithcbe61d82009-02-09 13:27:12 +05303728void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303729{
3730 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3731 AR_GPIO_BIT(gpio));
3732}
3733
Sujithcbe61d82009-02-09 13:27:12 +05303734u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303735{
3736 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3737}
3738
Sujithcbe61d82009-02-09 13:27:12 +05303739void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303740{
3741 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3742}
3743
Sujithcbe61d82009-02-09 13:27:12 +05303744bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303745 enum ath9k_ant_setting settings,
3746 struct ath9k_channel *chan,
3747 u8 *tx_chainmask,
3748 u8 *rx_chainmask,
3749 u8 *antenna_cfgd)
3750{
Sujithf1dc5602008-10-29 10:16:30 +05303751 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3752
3753 if (AR_SREV_9280(ah)) {
3754 if (!tx_chainmask_cfg) {
3755
3756 tx_chainmask_cfg = *tx_chainmask;
3757 rx_chainmask_cfg = *rx_chainmask;
3758 }
3759
3760 switch (settings) {
3761 case ATH9K_ANT_FIXED_A:
3762 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3763 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3764 *antenna_cfgd = true;
3765 break;
3766 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303767 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303768 ATH9K_ANTENNA1_CHAINMASK) {
3769 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3770 }
3771 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3772 *antenna_cfgd = true;
3773 break;
3774 case ATH9K_ANT_VARIABLE:
3775 *tx_chainmask = tx_chainmask_cfg;
3776 *rx_chainmask = rx_chainmask_cfg;
3777 *antenna_cfgd = true;
3778 break;
3779 default:
3780 break;
3781 }
3782 } else {
Sujith2660b812009-02-09 13:27:26 +05303783 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303784 }
3785
3786 return true;
3787}
3788
3789/*********************/
3790/* General Operation */
3791/*********************/
3792
Sujithcbe61d82009-02-09 13:27:12 +05303793u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303794{
3795 u32 bits = REG_READ(ah, AR_RX_FILTER);
3796 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3797
3798 if (phybits & AR_PHY_ERR_RADAR)
3799 bits |= ATH9K_RX_FILTER_PHYRADAR;
3800 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3801 bits |= ATH9K_RX_FILTER_PHYERR;
3802
3803 return bits;
3804}
3805
Sujithcbe61d82009-02-09 13:27:12 +05303806void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303807{
3808 u32 phybits;
3809
3810 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3811 phybits = 0;
3812 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3813 phybits |= AR_PHY_ERR_RADAR;
3814 if (bits & ATH9K_RX_FILTER_PHYERR)
3815 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3816 REG_WRITE(ah, AR_PHY_ERR, phybits);
3817
3818 if (phybits)
3819 REG_WRITE(ah, AR_RXCFG,
3820 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3821 else
3822 REG_WRITE(ah, AR_RXCFG,
3823 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3824}
3825
Sujithcbe61d82009-02-09 13:27:12 +05303826bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303827{
3828 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3829}
3830
Sujithcbe61d82009-02-09 13:27:12 +05303831bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303832{
3833 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3834 return false;
3835
3836 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3837}
3838
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003839void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303840{
Sujith2660b812009-02-09 13:27:26 +05303841 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003842 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303843
Sujithd6bad492009-02-09 13:27:08 +05303844 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303845
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003846 ah->eep_ops->set_txpower(ah, chan,
3847 ath9k_regd_get_ctl(&ah->regulatory, chan),
3848 channel->max_antenna_gain * 2,
3849 channel->max_power * 2,
3850 min((u32) MAX_RATE_POWER,
3851 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303852}
3853
Sujithcbe61d82009-02-09 13:27:12 +05303854void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303855{
Sujithba52da52009-02-09 13:27:10 +05303856 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303857}
3858
Sujithcbe61d82009-02-09 13:27:12 +05303859void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303860{
Sujith2660b812009-02-09 13:27:26 +05303861 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303862}
3863
Sujithcbe61d82009-02-09 13:27:12 +05303864void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303865{
3866 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3867 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3868}
3869
Sujithba52da52009-02-09 13:27:10 +05303870void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303871{
Sujithba52da52009-02-09 13:27:10 +05303872 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3873 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303874}
3875
Sujithba52da52009-02-09 13:27:10 +05303876void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303877{
Sujithba52da52009-02-09 13:27:10 +05303878 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3879 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3880 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303881}
3882
Sujithcbe61d82009-02-09 13:27:12 +05303883u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303884{
3885 u64 tsf;
3886
3887 tsf = REG_READ(ah, AR_TSF_U32);
3888 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3889
3890 return tsf;
3891}
3892
Sujithcbe61d82009-02-09 13:27:12 +05303893void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003894{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003895 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003896 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003897}
3898
Sujithcbe61d82009-02-09 13:27:12 +05303899void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303900{
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003901 ath9k_ps_wakeup(ah->ah_sc);
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003902 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3903 AH_TSF_WRITE_TIMEOUT))
3904 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
3905 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
3906
Sujithf1dc5602008-10-29 10:16:30 +05303907 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Gabor Juhos1b7e5282009-06-21 00:02:14 +02003908 ath9k_ps_restore(ah->ah_sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003909}
3910
Sujithcbe61d82009-02-09 13:27:12 +05303911bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003912{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003913 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303914 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003915 else
Sujith2660b812009-02-09 13:27:26 +05303916 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303917
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003918 return true;
3919}
3920
Sujithcbe61d82009-02-09 13:27:12 +05303921bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003922{
Sujithf1dc5602008-10-29 10:16:30 +05303923 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd4632008-11-28 22:18:05 +05303924 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303925 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303926 return false;
3927 } else {
3928 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303929 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303930 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003931 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003932}
3933
Sujithcbe61d82009-02-09 13:27:12 +05303934void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003935{
Sujithf1dc5602008-10-29 10:16:30 +05303936 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003937
Sujithf1dc5602008-10-29 10:16:30 +05303938 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303939 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303940 macmode = AR_2040_JOINED_RX_CLEAR;
3941 else
3942 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003943
Sujithf1dc5602008-10-29 10:16:30 +05303944 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003945}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303946
3947/***************************/
3948/* Bluetooth Coexistence */
3949/***************************/
3950
Sujithcbe61d82009-02-09 13:27:12 +05303951void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303952{
3953 /* connect bt_active to baseband */
3954 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3955 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3956 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3957
3958 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3959 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3960
3961 /* Set input mux for bt_active to gpio pin */
3962 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3963 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303964 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303965
3966 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303967 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303968
3969 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303970 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303971 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3972}