blob: 4f3d5ea3481205b716b7396ea35a7afc4aa6e6ea [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 }
Sujith04bd46382008-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,
Sujith04bd46382008-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,
Sujith04bd46382008-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",
Sujith04bd46382008-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,
Sujith04bd46382008-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",
Sujith04bd46382008-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
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700391static void ath9k_hw_init_config(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;
Sujith1cf68732009-08-13 09:34:32 +0530410 ah->config.diversity_control = ATH9K_ANT_VARIABLE;
Sujith2660b812009-02-09 13:27:26 +0530411 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. Rodriguez50aca252009-08-03 12:24:42 -0700440static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700442 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
443
444 regulatory->country_code = CTRY_DEFAULT;
445 regulatory->power_limit = MAX_RATE_POWER;
446 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
447
Sujithd535a422009-02-09 13:27:06 +0530448 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530449 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450
451 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700452 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530453 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 if (!AR_SREV_9100(ah))
455 ah->ah_flags = AH_USE_EEPROM;
456
Sujith2660b812009-02-09 13:27:26 +0530457 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530458 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
459 ah->beacon_interval = 100;
460 ah->enable_32kHz_clock = DONT_USE_32KHZ;
461 ah->slottime = (u32) -1;
462 ah->acktimeout = (u32) -1;
463 ah->ctstimeout = (u32) -1;
464 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465
Sujith2660b812009-02-09 13:27:26 +0530466 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Gabor Juhoscbdec972009-07-24 17:27:22 +0200468 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469}
470
Sujithcbe61d82009-02-09 13:27:12 +0530471static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472{
473 bool rfStatus = false;
474 int ecode = 0;
475
476 rfStatus = ath9k_hw_init_rf(ah, &ecode);
477 if (!rfStatus) {
Sujithd8baa932009-03-30 15:28:25 +0530478 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
479 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480 return ecode;
481 }
482
483 return 0;
484}
485
Sujithcbe61d82009-02-09 13:27:12 +0530486static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487{
488 u32 val;
489
490 REG_WRITE(ah, AR_PHY(0), 0x00000007);
491
492 val = ath9k_hw_get_radiorev(ah);
493 switch (val & AR_RADIO_SREV_MAJOR) {
494 case 0:
495 val = AR_RAD5133_SREV_MAJOR;
496 break;
497 case AR_RAD5133_SREV_MAJOR:
498 case AR_RAD5122_SREV_MAJOR:
499 case AR_RAD2133_SREV_MAJOR:
500 case AR_RAD2122_SREV_MAJOR:
501 break;
502 default:
Sujithd8baa932009-03-30 15:28:25 +0530503 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
504 "Radio Chip Rev 0x%02X not supported\n",
505 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 return -EOPNOTSUPP;
507 }
508
Sujithd535a422009-02-09 13:27:06 +0530509 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510
511 return 0;
512}
513
Sujithcbe61d82009-02-09 13:27:12 +0530514static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515{
Sujithf1dc5602008-10-29 10:16:30 +0530516 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530518 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519
Sujithf1dc5602008-10-29 10:16:30 +0530520 sum = 0;
521 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530522 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530523 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530524 ah->macaddr[2 * i] = eeval >> 8;
525 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700526 }
Sujithd8baa932009-03-30 15:28:25 +0530527 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530528 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700529
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530 return 0;
531}
532
Sujithcbe61d82009-02-09 13:27:12 +0530533static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530534{
535 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530536
Sujithf74df6f2009-02-09 13:27:24 +0530537 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
538 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530539
540 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530541 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530542 ar9280Modes_backoff_13db_rxgain_9280_2,
543 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
544 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530545 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530546 ar9280Modes_backoff_23db_rxgain_9280_2,
547 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
548 else
Sujith2660b812009-02-09 13:27:26 +0530549 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530550 ar9280Modes_original_rxgain_9280_2,
551 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530552 } else {
Sujith2660b812009-02-09 13:27:26 +0530553 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530554 ar9280Modes_original_rxgain_9280_2,
555 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530556 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530557}
558
Sujithcbe61d82009-02-09 13:27:12 +0530559static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530560{
561 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530562
Sujithf74df6f2009-02-09 13:27:24 +0530563 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
564 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530565
566 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530567 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530568 ar9280Modes_high_power_tx_gain_9280_2,
569 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
570 else
Sujith2660b812009-02-09 13:27:26 +0530571 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530572 ar9280Modes_original_tx_gain_9280_2,
573 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530574 } else {
Sujith2660b812009-02-09 13:27:26 +0530575 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530576 ar9280Modes_original_tx_gain_9280_2,
577 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530578 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530579}
580
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700581static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700582{
583 int ecode;
584
Sujithd8baa932009-03-30 15:28:25 +0530585 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587
588 ecode = ath9k_hw_rf_claim(ah);
589 if (ecode != 0)
590 return ecode;
591
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700592 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 if (ecode != 0)
594 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530595
596 DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
597 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
598
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 ecode = ath9k_hw_rfattach(ah);
600 if (ecode != 0)
601 return ecode;
602
603 if (!AR_SREV_9100(ah)) {
604 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700605 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700606 }
Sujithf1dc5602008-10-29 10:16:30 +0530607
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 return 0;
609}
610
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700611static bool ath9k_hw_devid_supported(u16 devid)
612{
613 switch (devid) {
614 case AR5416_DEVID_PCI:
615 case AR5416_DEVID_PCIE:
616 case AR5416_AR9100_DEVID:
617 case AR9160_DEVID_PCI:
618 case AR9280_DEVID_PCI:
619 case AR9280_DEVID_PCIE:
620 case AR9285_DEVID_PCIE:
621 case AR5416_DEVID_AR9287_PCI:
622 case AR5416_DEVID_AR9287_PCIE:
623 return true;
624 default:
625 break;
626 }
627 return false;
628}
629
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700630static bool ath9k_hw_macversion_supported(u32 macversion)
631{
632 switch (macversion) {
633 case AR_SREV_VERSION_5416_PCI:
634 case AR_SREV_VERSION_5416_PCIE:
635 case AR_SREV_VERSION_9160:
636 case AR_SREV_VERSION_9100:
637 case AR_SREV_VERSION_9280:
638 case AR_SREV_VERSION_9285:
639 case AR_SREV_VERSION_9287:
640 return true;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400641 /* Not yet */
642 case AR_SREV_VERSION_9271:
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700643 default:
644 break;
645 }
646 return false;
647}
648
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700649static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700651 if (AR_SREV_9160_10_OR_LATER(ah)) {
652 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530653 ah->iq_caldata.calData = &iq_cal_single_sample;
654 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530656 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530658 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700659 &adc_init_dc_cal;
660 } else {
Sujith2660b812009-02-09 13:27:26 +0530661 ah->iq_caldata.calData = &iq_cal_multi_sample;
662 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530664 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700665 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530666 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700667 &adc_init_dc_cal;
668 }
Sujith2660b812009-02-09 13:27:26 +0530669 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700671}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700673static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
674{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400675 if (AR_SREV_9271(ah)) {
676 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271_1_0,
677 ARRAY_SIZE(ar9271Modes_9271_1_0), 6);
678 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271_1_0,
679 ARRAY_SIZE(ar9271Common_9271_1_0), 2);
680 return;
681 }
682
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530683 if (AR_SREV_9287_11_OR_LATER(ah)) {
684 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
685 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
686 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
687 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
688 if (ah->config.pcie_clock_req)
689 INIT_INI_ARRAY(&ah->iniPcieSerdes,
690 ar9287PciePhy_clkreq_off_L1_9287_1_1,
691 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
692 else
693 INIT_INI_ARRAY(&ah->iniPcieSerdes,
694 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
695 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
696 2);
697 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
698 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
699 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
700 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
701 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700702
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530703 if (ah->config.pcie_clock_req)
704 INIT_INI_ARRAY(&ah->iniPcieSerdes,
705 ar9287PciePhy_clkreq_off_L1_9287_1_0,
706 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
707 else
708 INIT_INI_ARRAY(&ah->iniPcieSerdes,
709 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
710 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
711 2);
712 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
713
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530714
Sujith2660b812009-02-09 13:27:26 +0530715 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530716 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530717 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530718 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
719
Sujith2660b812009-02-09 13:27:26 +0530720 if (ah->config.pcie_clock_req) {
721 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530722 ar9285PciePhy_clkreq_off_L1_9285_1_2,
723 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
724 } else {
Sujith2660b812009-02-09 13:27:26 +0530725 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530726 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
727 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
728 2);
729 }
730 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530732 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530733 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530734 ARRAY_SIZE(ar9285Common_9285), 2);
735
Sujith2660b812009-02-09 13:27:26 +0530736 if (ah->config.pcie_clock_req) {
737 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530738 ar9285PciePhy_clkreq_off_L1_9285,
739 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
740 } else {
Sujith2660b812009-02-09 13:27:26 +0530741 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530742 ar9285PciePhy_clkreq_always_on_L1_9285,
743 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
744 }
745 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530748 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749 ARRAY_SIZE(ar9280Common_9280_2), 2);
750
Sujith2660b812009-02-09 13:27:26 +0530751 if (ah->config.pcie_clock_req) {
752 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530753 ar9280PciePhy_clkreq_off_L1_9280,
754 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 } else {
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530757 ar9280PciePhy_clkreq_always_on_L1_9280,
758 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 }
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530762 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530764 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar9280Common_9280), 2);
768 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530773 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530777 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530787 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700788 ARRAY_SIZE(ar5416Bank7_9160), 2);
789 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530790 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 ar5416Addac_91601_1,
792 ARRAY_SIZE(ar5416Addac_91601_1), 2);
793 } else {
Sujith2660b812009-02-09 13:27:26 +0530794 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795 ARRAY_SIZE(ar5416Addac_9160), 2);
796 }
797 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530798 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530800 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700801 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530802 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530804 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700805 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530806 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700807 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530808 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530810 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530812 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530814 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700815 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530816 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700817 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530818 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700819 ARRAY_SIZE(ar5416Addac_9100), 2);
820 } else {
Sujith2660b812009-02-09 13:27:26 +0530821 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530823 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530825 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700826 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530827 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530829 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700830 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530831 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700832 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530833 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530835 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530837 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700838 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530839 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530841 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700842 ARRAY_SIZE(ar5416Addac), 2);
843 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700844}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700846static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
847{
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530848 if (AR_SREV_9287_11(ah))
849 INIT_INI_ARRAY(&ah->iniModesRxGain,
850 ar9287Modes_rx_gain_9287_1_1,
851 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
852 else if (AR_SREV_9287_10(ah))
853 INIT_INI_ARRAY(&ah->iniModesRxGain,
854 ar9287Modes_rx_gain_9287_1_0,
855 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
856 else if (AR_SREV_9280_20(ah))
857 ath9k_hw_init_rxgain_ini(ah);
858
859 if (AR_SREV_9287_11(ah)) {
860 INIT_INI_ARRAY(&ah->iniModesTxGain,
861 ar9287Modes_tx_gain_9287_1_1,
862 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
863 } else if (AR_SREV_9287_10(ah)) {
864 INIT_INI_ARRAY(&ah->iniModesTxGain,
865 ar9287Modes_tx_gain_9287_1_0,
866 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
867 } else if (AR_SREV_9280_20(ah)) {
868 ath9k_hw_init_txgain_ini(ah);
869 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530870 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
871
872 /* txgain table */
873 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
874 INIT_INI_ARRAY(&ah->iniModesTxGain,
875 ar9285Modes_high_power_tx_gain_9285_1_2,
876 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
877 } else {
878 INIT_INI_ARRAY(&ah->iniModesTxGain,
879 ar9285Modes_original_tx_gain_9285_1_2,
880 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
881 }
882
883 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700884}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530885
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700886static void ath9k_hw_init_11a_eeprom_fix(struct ath_hw *ah)
887{
888 u32 i, j;
Sujith06d0f062009-02-12 10:06:45 +0530889
890 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
891 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
892
893 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530894 for (i = 0; i < ah->iniModes.ia_rows; i++) {
895 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700896
Sujith2660b812009-02-09 13:27:26 +0530897 for (j = 1; j < ah->iniModes.ia_columns; j++) {
898 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700899
Sujith2660b812009-02-09 13:27:26 +0530900 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530901 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530902 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700903 reg, val);
904 }
905 }
906 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700907}
908
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700909int ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700910{
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700911 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700912
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700913 if (!ath9k_hw_devid_supported(ah->hw_version.devid))
914 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700915
916 ath9k_hw_init_defaults(ah);
917 ath9k_hw_init_config(ah);
918
919 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
920 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700921 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700922 }
923
924 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
925 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700926 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700927 }
928
929 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
930 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
931 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
932 ah->config.serialize_regmode =
933 SER_REG_MODE_ON;
934 } else {
935 ah->config.serialize_regmode =
936 SER_REG_MODE_OFF;
937 }
938 }
939
940 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
941 ah->config.serialize_regmode);
942
943 if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
944 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
945 "Mac Chip Rev 0x%02x.%x is not supported by "
946 "this driver\n", ah->hw_version.macVersion,
947 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700948 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700949 }
950
951 if (AR_SREV_9100(ah)) {
952 ah->iq_caldata.calData = &iq_cal_multi_sample;
953 ah->supp_cals = IQ_MISMATCH_CAL;
954 ah->is_pciexpress = false;
955 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400956
957 if (AR_SREV_9271(ah))
958 ah->is_pciexpress = false;
959
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700960 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
961
962 ath9k_hw_init_cal_settings(ah);
963
964 ah->ani_function = ATH9K_ANI_ALL;
965 if (AR_SREV_9280_10_OR_LATER(ah))
966 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
967
968 ath9k_hw_init_mode_regs(ah);
969
970 if (ah->is_pciexpress)
971 ath9k_hw_configpcipowersave(ah, 0);
972 else
973 ath9k_hw_disablepcie(ah);
974
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700975 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700976 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700977 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700978
979 ath9k_hw_init_mode_gain_regs(ah);
980 ath9k_hw_fill_cap_info(ah);
981 ath9k_hw_init_11a_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530982
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700983 r = ath9k_hw_init_macaddr(ah);
984 if (r) {
Luis R. Rodriguez07c10c62009-08-03 12:24:40 -0700985 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujithd8baa932009-03-30 15:28:25 +0530986 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700987 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700988 }
989
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400990 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530991 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700992 else
Sujith2660b812009-02-09 13:27:26 +0530993 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700994
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700995 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700996
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700997 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700998}
999
Sujithcbe61d82009-02-09 13:27:12 +05301000static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301001 struct ath9k_channel *chan)
1002{
1003 u32 synthDelay;
1004
1005 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301006 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301007 synthDelay = (4 * synthDelay) / 22;
1008 else
1009 synthDelay /= 10;
1010
1011 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1012
1013 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1014}
1015
Sujithcbe61d82009-02-09 13:27:12 +05301016static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301017{
1018 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1019 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1020
1021 REG_WRITE(ah, AR_QOS_NO_ACK,
1022 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1023 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1024 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1025
1026 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1027 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1028 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1029 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1030 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1031}
1032
Sujithcbe61d82009-02-09 13:27:12 +05301033static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301034 struct ath9k_channel *chan)
1035{
1036 u32 pll;
1037
1038 if (AR_SREV_9100(ah)) {
1039 if (chan && IS_CHAN_5GHZ(chan))
1040 pll = 0x1450;
1041 else
1042 pll = 0x1458;
1043 } else {
1044 if (AR_SREV_9280_10_OR_LATER(ah)) {
1045 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1046
1047 if (chan && IS_CHAN_HALF_RATE(chan))
1048 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1049 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1050 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1051
1052 if (chan && IS_CHAN_5GHZ(chan)) {
1053 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1054
1055
1056 if (AR_SREV_9280_20(ah)) {
1057 if (((chan->channel % 20) == 0)
1058 || ((chan->channel % 10) == 0))
1059 pll = 0x2850;
1060 else
1061 pll = 0x142c;
1062 }
1063 } else {
1064 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1065 }
1066
1067 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1068
1069 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1070
1071 if (chan && IS_CHAN_HALF_RATE(chan))
1072 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1073 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1074 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1075
1076 if (chan && IS_CHAN_5GHZ(chan))
1077 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1078 else
1079 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1080 } else {
1081 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1082
1083 if (chan && IS_CHAN_HALF_RATE(chan))
1084 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1085 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1086 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1087
1088 if (chan && IS_CHAN_5GHZ(chan))
1089 pll |= SM(0xa, AR_RTC_PLL_DIV);
1090 else
1091 pll |= SM(0xb, AR_RTC_PLL_DIV);
1092 }
1093 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001094 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301095
1096 udelay(RTC_PLL_SETTLE_DELAY);
1097
1098 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1099}
1100
Sujithcbe61d82009-02-09 13:27:12 +05301101static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301102{
Sujithf1dc5602008-10-29 10:16:30 +05301103 int rx_chainmask, tx_chainmask;
1104
Sujith2660b812009-02-09 13:27:26 +05301105 rx_chainmask = ah->rxchainmask;
1106 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301107
1108 switch (rx_chainmask) {
1109 case 0x5:
1110 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1111 AR_PHY_SWAP_ALT_CHAIN);
1112 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301113 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301114 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1115 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1116 break;
1117 }
1118 case 0x1:
1119 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301120 case 0x7:
1121 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1122 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1123 break;
1124 default:
1125 break;
1126 }
1127
1128 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1129 if (tx_chainmask == 0x5) {
1130 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1131 AR_PHY_SWAP_ALT_CHAIN);
1132 }
1133 if (AR_SREV_9100(ah))
1134 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1135 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1136}
1137
Sujithcbe61d82009-02-09 13:27:12 +05301138static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001139 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301140{
Sujith2660b812009-02-09 13:27:26 +05301141 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301142 AR_IMR_TXURN |
1143 AR_IMR_RXERR |
1144 AR_IMR_RXORN |
1145 AR_IMR_BCNMISC;
1146
Sujith0ef1f162009-03-30 15:28:35 +05301147 if (ah->config.intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301148 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301149 else
Sujith2660b812009-02-09 13:27:26 +05301150 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301151
Sujith2660b812009-02-09 13:27:26 +05301152 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301153
Colin McCabed97809d2008-12-01 13:38:55 -08001154 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301155 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301156
Sujith2660b812009-02-09 13:27:26 +05301157 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301158 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1159
1160 if (!AR_SREV_9100(ah)) {
1161 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1162 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1163 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1164 }
1165}
1166
Sujithcbe61d82009-02-09 13:27:12 +05301167static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301168{
Sujithf1dc5602008-10-29 10:16:30 +05301169 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd46382008-11-28 22:18:05 +05301170 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301171 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301172 return false;
1173 } else {
1174 REG_RMW_FIELD(ah, AR_TIME_OUT,
1175 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301176 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301177 return true;
1178 }
1179}
1180
Sujithcbe61d82009-02-09 13:27:12 +05301181static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301182{
Sujithf1dc5602008-10-29 10:16:30 +05301183 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd46382008-11-28 22:18:05 +05301184 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301185 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301186 return false;
1187 } else {
1188 REG_RMW_FIELD(ah, AR_TIME_OUT,
1189 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301190 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301191 return true;
1192 }
1193}
1194
Sujithcbe61d82009-02-09 13:27:12 +05301195static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301196{
Sujithf1dc5602008-10-29 10:16:30 +05301197 if (tu > 0xFFFF) {
1198 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd46382008-11-28 22:18:05 +05301199 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301200 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301201 return false;
1202 } else {
1203 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301204 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301205 return true;
1206 }
1207}
1208
Sujithcbe61d82009-02-09 13:27:12 +05301209static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301210{
Sujith2660b812009-02-09 13:27:26 +05301211 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1212 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301213
Sujith2660b812009-02-09 13:27:26 +05301214 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301215 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301216 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1217 if (ah->slottime != (u32) -1)
1218 ath9k_hw_setslottime(ah, ah->slottime);
1219 if (ah->acktimeout != (u32) -1)
1220 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1221 if (ah->ctstimeout != (u32) -1)
1222 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1223 if (ah->globaltxtimeout != (u32) -1)
1224 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301225}
1226
1227const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1228{
1229 return vendorid == ATHEROS_VENDOR_ID ?
1230 ath9k_hw_devname(devid) : NULL;
1231}
1232
Sujithcbe61d82009-02-09 13:27:12 +05301233void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001234{
1235 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001236 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001237
Luis R. Rodriguez081b35a2009-08-03 12:24:50 -07001238 ath9k_hw_rf_free(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001239 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1240 kfree(ah);
Luis R. Rodriguez9db6b6a2009-08-03 12:24:52 -07001241 ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001242}
1243
Sujithf1dc5602008-10-29 10:16:30 +05301244/*******/
1245/* INI */
1246/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247
Sujithcbe61d82009-02-09 13:27:12 +05301248static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301249 struct ath9k_channel *chan)
1250{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001251 u32 val;
1252
1253 if (AR_SREV_9271(ah)) {
1254 /*
1255 * Enable spectral scan to solution for issues with stuck
1256 * beacons on AR9271 1.0. The beacon stuck issue is not seeon on
1257 * AR9271 1.1
1258 */
1259 if (AR_SREV_9271_10(ah)) {
1260 val = REG_READ(ah, AR_PHY_SPECTRAL_SCAN) | AR_PHY_SPECTRAL_SCAN_ENABLE;
1261 REG_WRITE(ah, AR_PHY_SPECTRAL_SCAN, val);
1262 }
1263 else if (AR_SREV_9271_11(ah))
1264 /*
1265 * change AR_PHY_RF_CTL3 setting to fix MAC issue
1266 * present on AR9271 1.1
1267 */
1268 REG_WRITE(ah, AR_PHY_RF_CTL3, 0x3a020001);
1269 return;
1270 }
1271
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301272 /*
1273 * Set the RX_ABORT and RX_DIS and clear if off only after
1274 * RXE is set for MAC. This prevents frames with corrupted
1275 * descriptor status.
1276 */
1277 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1278
1279
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001280 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301281 AR_SREV_9280_10_OR_LATER(ah))
1282 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001283 /*
1284 * Disable BB clock gating
1285 * Necessary to avoid issues on AR5416 2.0
1286 */
Sujithf1dc5602008-10-29 10:16:30 +05301287 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1288}
1289
Sujithcbe61d82009-02-09 13:27:12 +05301290static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301291 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301292 u32 reg, u32 value)
1293{
1294 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1295
Sujithd535a422009-02-09 13:27:06 +05301296 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301297 case AR9280_DEVID_PCI:
1298 if (reg == 0x7894) {
Sujithd8baa932009-03-30 15:28:25 +05301299 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301300 "ini VAL: %x EEPROM: %x\n", value,
1301 (pBase->version & 0xff));
1302
1303 if ((pBase->version & 0xff) > 0x0a) {
Sujithd8baa932009-03-30 15:28:25 +05301304 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301305 "PWDCLKIND: %d\n",
1306 pBase->pwdclkind);
1307 value &= ~AR_AN_TOP2_PWDCLKIND;
1308 value |= AR_AN_TOP2_PWDCLKIND &
1309 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1310 } else {
Sujithd8baa932009-03-30 15:28:25 +05301311 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301312 "PWDCLKIND Earlier Rev\n");
1313 }
1314
Sujithd8baa932009-03-30 15:28:25 +05301315 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301316 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317 }
Sujithf1dc5602008-10-29 10:16:30 +05301318 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001319 }
1320
Sujithf1dc5602008-10-29 10:16:30 +05301321 return value;
1322}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001323
Sujithcbe61d82009-02-09 13:27:12 +05301324static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301325 struct ar5416_eeprom_def *pEepData,
1326 u32 reg, u32 value)
1327{
Sujith2660b812009-02-09 13:27:26 +05301328 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301329 return value;
1330 else
1331 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1332}
1333
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301334static void ath9k_olc_init(struct ath_hw *ah)
1335{
1336 u32 i;
1337
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301338 if (OLC_FOR_AR9287_10_LATER) {
1339 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1340 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1341 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1342 AR9287_AN_TXPC0_TXPCMODE,
1343 AR9287_AN_TXPC0_TXPCMODE_S,
1344 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1345 udelay(100);
1346 } else {
1347 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1348 ah->originalGain[i] =
1349 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1350 AR_PHY_TX_GAIN);
1351 ah->PDADCdelta = 0;
1352 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301353}
1354
Bob Copeland3a702e42009-03-30 22:30:29 -04001355static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1356 struct ath9k_channel *chan)
1357{
1358 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1359
1360 if (IS_CHAN_B(chan))
1361 ctl |= CTL_11B;
1362 else if (IS_CHAN_G(chan))
1363 ctl |= CTL_11G;
1364 else
1365 ctl |= CTL_11A;
1366
1367 return ctl;
1368}
1369
Sujithcbe61d82009-02-09 13:27:12 +05301370static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301371 struct ath9k_channel *chan,
1372 enum ath9k_ht_macmode macmode)
1373{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001374 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301375 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001376 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301377 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378
Sujithf1dc5602008-10-29 10:16:30 +05301379 switch (chan->chanmode) {
1380 case CHANNEL_A:
1381 case CHANNEL_A_HT20:
1382 modesIndex = 1;
1383 freqIndex = 1;
1384 break;
1385 case CHANNEL_A_HT40PLUS:
1386 case CHANNEL_A_HT40MINUS:
1387 modesIndex = 2;
1388 freqIndex = 1;
1389 break;
1390 case CHANNEL_G:
1391 case CHANNEL_G_HT20:
1392 case CHANNEL_B:
1393 modesIndex = 4;
1394 freqIndex = 2;
1395 break;
1396 case CHANNEL_G_HT40PLUS:
1397 case CHANNEL_G_HT40MINUS:
1398 modesIndex = 3;
1399 freqIndex = 2;
1400 break;
1401
1402 default:
1403 return -EINVAL;
1404 }
1405
1406 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301407 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301408 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301409
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001410 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301411 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301412 } else {
1413 struct ar5416IniArray temp;
1414 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301415 sizeof(u32) * ah->iniAddac.ia_rows *
1416 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301417
Sujith2660b812009-02-09 13:27:26 +05301418 memcpy(ah->addac5416_21,
1419 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301420
Sujith2660b812009-02-09 13:27:26 +05301421 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301422
Sujith2660b812009-02-09 13:27:26 +05301423 temp.ia_array = ah->addac5416_21;
1424 temp.ia_columns = ah->iniAddac.ia_columns;
1425 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301426 REG_WRITE_ARRAY(&temp, 1, regWrites);
1427 }
1428
1429 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1430
Sujith2660b812009-02-09 13:27:26 +05301431 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1432 u32 reg = INI_RA(&ah->iniModes, i, 0);
1433 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301434
Sujithf1dc5602008-10-29 10:16:30 +05301435 REG_WRITE(ah, reg, val);
1436
1437 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301438 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301439 udelay(100);
1440 }
1441
1442 DO_DELAY(regWrites);
1443 }
1444
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301445 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301446 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301447
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301448 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1449 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301450 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301451
Sujith2660b812009-02-09 13:27:26 +05301452 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1453 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1454 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301455
1456 REG_WRITE(ah, reg, val);
1457
1458 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301459 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301460 udelay(100);
1461 }
1462
1463 DO_DELAY(regWrites);
1464 }
1465
1466 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1467
1468 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301469 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301470 regWrites);
1471 }
1472
1473 ath9k_hw_override_ini(ah, chan);
1474 ath9k_hw_set_regs(ah, chan, macmode);
1475 ath9k_hw_init_chain_masks(ah);
1476
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301477 if (OLC_FOR_AR9280_20_LATER)
1478 ath9k_olc_init(ah);
1479
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001480 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001481 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001482 channel->max_antenna_gain * 2,
1483 channel->max_power * 2,
1484 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001485 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001486
Sujithf1dc5602008-10-29 10:16:30 +05301487 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Sujithd8baa932009-03-30 15:28:25 +05301488 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301489 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 return -EIO;
1491 }
1492
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001493 return 0;
1494}
1495
Sujithf1dc5602008-10-29 10:16:30 +05301496/****************************************/
1497/* Reset and Channel Switching Routines */
1498/****************************************/
1499
Sujithcbe61d82009-02-09 13:27:12 +05301500static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301501{
1502 u32 rfMode = 0;
1503
1504 if (chan == NULL)
1505 return;
1506
1507 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1508 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1509
1510 if (!AR_SREV_9280_10_OR_LATER(ah))
1511 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1512 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1513
1514 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1515 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1516
1517 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1518}
1519
Sujithcbe61d82009-02-09 13:27:12 +05301520static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301521{
1522 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1523}
1524
Sujithcbe61d82009-02-09 13:27:12 +05301525static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301526{
1527 u32 regval;
1528
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001529 /*
1530 * set AHB_MODE not to do cacheline prefetches
1531 */
Sujithf1dc5602008-10-29 10:16:30 +05301532 regval = REG_READ(ah, AR_AHB_MODE);
1533 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1534
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001535 /*
1536 * let mac dma reads be in 128 byte chunks
1537 */
Sujithf1dc5602008-10-29 10:16:30 +05301538 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1539 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1540
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001541 /*
1542 * Restore TX Trigger Level to its pre-reset value.
1543 * The initial value depends on whether aggregation is enabled, and is
1544 * adjusted whenever underruns are detected.
1545 */
Sujith2660b812009-02-09 13:27:26 +05301546 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301547
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001548 /*
1549 * let mac dma writes be in 128 byte chunks
1550 */
Sujithf1dc5602008-10-29 10:16:30 +05301551 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1552 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1553
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001554 /*
1555 * Setup receive FIFO threshold to hold off TX activities
1556 */
Sujithf1dc5602008-10-29 10:16:30 +05301557 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1558
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001559 /*
1560 * reduce the number of usable entries in PCU TXBUF to avoid
1561 * wrap around issues.
1562 */
Sujithf1dc5602008-10-29 10:16:30 +05301563 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001564 /* For AR9285 the number of Fifos are reduced to half.
1565 * So set the usable tx buf size also to half to
1566 * avoid data/delimiter underruns
1567 */
Sujithf1dc5602008-10-29 10:16:30 +05301568 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1569 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001570 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301571 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1572 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1573 }
1574}
1575
Sujithcbe61d82009-02-09 13:27:12 +05301576static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301577{
1578 u32 val;
1579
1580 val = REG_READ(ah, AR_STA_ID1);
1581 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1582 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001583 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301584 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1585 | AR_STA_ID1_KSRCH_MODE);
1586 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1587 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001588 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001589 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301590 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1591 | AR_STA_ID1_KSRCH_MODE);
1592 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1593 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001594 case NL80211_IFTYPE_STATION:
1595 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301596 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1597 break;
1598 }
1599}
1600
Sujithcbe61d82009-02-09 13:27:12 +05301601static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001602 u32 coef_scaled,
1603 u32 *coef_mantissa,
1604 u32 *coef_exponent)
1605{
1606 u32 coef_exp, coef_man;
1607
1608 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1609 if ((coef_scaled >> coef_exp) & 0x1)
1610 break;
1611
1612 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1613
1614 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1615
1616 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1617 *coef_exponent = coef_exp - 16;
1618}
1619
Sujithcbe61d82009-02-09 13:27:12 +05301620static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301621 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001622{
1623 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1624 u32 clockMhzScaled = 0x64000000;
1625 struct chan_centers centers;
1626
1627 if (IS_CHAN_HALF_RATE(chan))
1628 clockMhzScaled = clockMhzScaled >> 1;
1629 else if (IS_CHAN_QUARTER_RATE(chan))
1630 clockMhzScaled = clockMhzScaled >> 2;
1631
1632 ath9k_hw_get_channel_centers(ah, chan, &centers);
1633 coef_scaled = clockMhzScaled / centers.synth_center;
1634
1635 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1636 &ds_coef_exp);
1637
1638 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1639 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1640 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1641 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1642
1643 coef_scaled = (9 * coef_scaled) / 10;
1644
1645 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1646 &ds_coef_exp);
1647
1648 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1649 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1650 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1651 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1652}
1653
Sujithcbe61d82009-02-09 13:27:12 +05301654static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301655{
1656 u32 rst_flags;
1657 u32 tmpReg;
1658
Sujith70768492009-02-16 13:23:12 +05301659 if (AR_SREV_9100(ah)) {
1660 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1661 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1662 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1663 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1664 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1665 }
1666
Sujithf1dc5602008-10-29 10:16:30 +05301667 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1668 AR_RTC_FORCE_WAKE_ON_INT);
1669
1670 if (AR_SREV_9100(ah)) {
1671 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1672 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1673 } else {
1674 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1675 if (tmpReg &
1676 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1677 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1678 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1679 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1680 } else {
1681 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1682 }
1683
1684 rst_flags = AR_RTC_RC_MAC_WARM;
1685 if (type == ATH9K_RESET_COLD)
1686 rst_flags |= AR_RTC_RC_MAC_COLD;
1687 }
1688
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001689 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301690 udelay(50);
1691
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001692 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301693 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301694 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301695 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301696 return false;
1697 }
1698
1699 if (!AR_SREV_9100(ah))
1700 REG_WRITE(ah, AR_RC, 0);
1701
1702 ath9k_hw_init_pll(ah, NULL);
1703
1704 if (AR_SREV_9100(ah))
1705 udelay(50);
1706
1707 return true;
1708}
1709
Sujithcbe61d82009-02-09 13:27:12 +05301710static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301711{
1712 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1713 AR_RTC_FORCE_WAKE_ON_INT);
1714
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001715 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301716 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001717 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301718
1719 if (!ath9k_hw_wait(ah,
1720 AR_RTC_STATUS,
1721 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301722 AR_RTC_STATUS_ON,
1723 AH_WAIT_TIMEOUT)) {
Sujith04bd46382008-11-28 22:18:05 +05301724 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301725 return false;
1726 }
1727
1728 ath9k_hw_read_revisions(ah);
1729
1730 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1731}
1732
Sujithcbe61d82009-02-09 13:27:12 +05301733static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301734{
1735 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1736 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1737
1738 switch (type) {
1739 case ATH9K_RESET_POWER_ON:
1740 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301741 case ATH9K_RESET_WARM:
1742 case ATH9K_RESET_COLD:
1743 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301744 default:
1745 return false;
1746 }
1747}
1748
Sujithcbe61d82009-02-09 13:27:12 +05301749static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301750 enum ath9k_ht_macmode macmode)
1751{
1752 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301753 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301754
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301755 if (AR_SREV_9285_10_OR_LATER(ah))
1756 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1757 AR_PHY_FC_ENABLE_DAC_FIFO);
1758
Sujithf1dc5602008-10-29 10:16:30 +05301759 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301760 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301761
1762 if (IS_CHAN_HT40(chan)) {
1763 phymode |= AR_PHY_FC_DYN2040_EN;
1764
1765 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1766 (chan->chanmode == CHANNEL_G_HT40PLUS))
1767 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1768
Sujith2660b812009-02-09 13:27:26 +05301769 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301770 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1771 }
1772 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1773
1774 ath9k_hw_set11nmac2040(ah, macmode);
1775
1776 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1777 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1778}
1779
Sujithcbe61d82009-02-09 13:27:12 +05301780static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301781 struct ath9k_channel *chan)
1782{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301783 if (OLC_FOR_AR9280_20_LATER) {
1784 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1785 return false;
1786 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301787 return false;
1788
1789 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1790 return false;
1791
Sujith2660b812009-02-09 13:27:26 +05301792 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301793 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301794 ath9k_hw_set_rfmode(ah, chan);
1795
1796 return true;
1797}
1798
Sujithcbe61d82009-02-09 13:27:12 +05301799static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301800 struct ath9k_channel *chan,
1801 enum ath9k_ht_macmode macmode)
1802{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001803 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001804 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301805 u32 synthDelay, qnum;
1806
1807 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1808 if (ath9k_hw_numtxpending(ah, qnum)) {
1809 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd46382008-11-28 22:18:05 +05301810 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301811 return false;
1812 }
1813 }
1814
1815 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1816 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301817 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujithd8baa932009-03-30 15:28:25 +05301818 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301819 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301820 return false;
1821 }
1822
1823 ath9k_hw_set_regs(ah, chan, macmode);
1824
1825 if (AR_SREV_9280_10_OR_LATER(ah)) {
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001826 ath9k_hw_ar9280_set_channel(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301827 } else {
1828 if (!(ath9k_hw_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301829 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1830 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301831 return false;
1832 }
1833 }
1834
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001835 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001836 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301837 channel->max_antenna_gain * 2,
1838 channel->max_power * 2,
1839 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001840 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301841
1842 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301843 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301844 synthDelay = (4 * synthDelay) / 22;
1845 else
1846 synthDelay /= 10;
1847
1848 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1849
1850 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1851
1852 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1853 ath9k_hw_set_delta_slope(ah, chan);
1854
1855 if (AR_SREV_9280_10_OR_LATER(ah))
1856 ath9k_hw_9280_spur_mitigate(ah, chan);
1857 else
1858 ath9k_hw_spur_mitigate(ah, chan);
1859
1860 if (!chan->oneTimeCalsDone)
1861 chan->oneTimeCalsDone = true;
1862
1863 return true;
1864}
1865
Sujithcbe61d82009-02-09 13:27:12 +05301866static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001867{
1868 int bb_spur = AR_NO_SPUR;
1869 int freq;
1870 int bin, cur_bin;
1871 int bb_spur_off, spur_subchannel_sd;
1872 int spur_freq_sd;
1873 int spur_delta_phase;
1874 int denominator;
1875 int upper, lower, cur_vit_mask;
1876 int tmp, newVal;
1877 int i;
1878 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1879 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1880 };
1881 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1882 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1883 };
1884 int inc[4] = { 0, 100, 0, 0 };
1885 struct chan_centers centers;
1886
1887 int8_t mask_m[123];
1888 int8_t mask_p[123];
1889 int8_t mask_amt;
1890 int tmp_mask;
1891 int cur_bb_spur;
1892 bool is2GHz = IS_CHAN_2GHZ(chan);
1893
1894 memset(&mask_m, 0, sizeof(int8_t) * 123);
1895 memset(&mask_p, 0, sizeof(int8_t) * 123);
1896
1897 ath9k_hw_get_channel_centers(ah, chan, &centers);
1898 freq = centers.synth_center;
1899
Sujith2660b812009-02-09 13:27:26 +05301900 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301902 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001903
1904 if (is2GHz)
1905 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1906 else
1907 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1908
1909 if (AR_NO_SPUR == cur_bb_spur)
1910 break;
1911 cur_bb_spur = cur_bb_spur - freq;
1912
1913 if (IS_CHAN_HT40(chan)) {
1914 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1915 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1916 bb_spur = cur_bb_spur;
1917 break;
1918 }
1919 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1920 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1921 bb_spur = cur_bb_spur;
1922 break;
1923 }
1924 }
1925
1926 if (AR_NO_SPUR == bb_spur) {
1927 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1928 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1929 return;
1930 } else {
1931 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1932 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1933 }
1934
1935 bin = bb_spur * 320;
1936
1937 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1938
1939 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1940 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1941 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1942 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1943 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1944
1945 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1946 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1947 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1948 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1949 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1950 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1951
1952 if (IS_CHAN_HT40(chan)) {
1953 if (bb_spur < 0) {
1954 spur_subchannel_sd = 1;
1955 bb_spur_off = bb_spur + 10;
1956 } else {
1957 spur_subchannel_sd = 0;
1958 bb_spur_off = bb_spur - 10;
1959 }
1960 } else {
1961 spur_subchannel_sd = 0;
1962 bb_spur_off = bb_spur;
1963 }
1964
1965 if (IS_CHAN_HT40(chan))
1966 spur_delta_phase =
1967 ((bb_spur * 262144) /
1968 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1969 else
1970 spur_delta_phase =
1971 ((bb_spur * 524288) /
1972 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1973
1974 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1975 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1976
1977 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1978 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1979 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1980 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1981
1982 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1983 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1984
1985 cur_bin = -6000;
1986 upper = bin + 100;
1987 lower = bin - 100;
1988
1989 for (i = 0; i < 4; i++) {
1990 int pilot_mask = 0;
1991 int chan_mask = 0;
1992 int bp = 0;
1993 for (bp = 0; bp < 30; bp++) {
1994 if ((cur_bin > lower) && (cur_bin < upper)) {
1995 pilot_mask = pilot_mask | 0x1 << bp;
1996 chan_mask = chan_mask | 0x1 << bp;
1997 }
1998 cur_bin += 100;
1999 }
2000 cur_bin += inc[i];
2001 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2002 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2003 }
2004
2005 cur_vit_mask = 6100;
2006 upper = bin + 120;
2007 lower = bin - 120;
2008
2009 for (i = 0; i < 123; i++) {
2010 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03002011
2012 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002013 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03002014
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002015 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002016 mask_amt = 1;
2017 else
2018 mask_amt = 0;
2019 if (cur_vit_mask < 0)
2020 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2021 else
2022 mask_p[cur_vit_mask / 100] = mask_amt;
2023 }
2024 cur_vit_mask -= 100;
2025 }
2026
2027 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2028 | (mask_m[48] << 26) | (mask_m[49] << 24)
2029 | (mask_m[50] << 22) | (mask_m[51] << 20)
2030 | (mask_m[52] << 18) | (mask_m[53] << 16)
2031 | (mask_m[54] << 14) | (mask_m[55] << 12)
2032 | (mask_m[56] << 10) | (mask_m[57] << 8)
2033 | (mask_m[58] << 6) | (mask_m[59] << 4)
2034 | (mask_m[60] << 2) | (mask_m[61] << 0);
2035 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2036 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2037
2038 tmp_mask = (mask_m[31] << 28)
2039 | (mask_m[32] << 26) | (mask_m[33] << 24)
2040 | (mask_m[34] << 22) | (mask_m[35] << 20)
2041 | (mask_m[36] << 18) | (mask_m[37] << 16)
2042 | (mask_m[48] << 14) | (mask_m[39] << 12)
2043 | (mask_m[40] << 10) | (mask_m[41] << 8)
2044 | (mask_m[42] << 6) | (mask_m[43] << 4)
2045 | (mask_m[44] << 2) | (mask_m[45] << 0);
2046 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2047 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2048
2049 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2050 | (mask_m[18] << 26) | (mask_m[18] << 24)
2051 | (mask_m[20] << 22) | (mask_m[20] << 20)
2052 | (mask_m[22] << 18) | (mask_m[22] << 16)
2053 | (mask_m[24] << 14) | (mask_m[24] << 12)
2054 | (mask_m[25] << 10) | (mask_m[26] << 8)
2055 | (mask_m[27] << 6) | (mask_m[28] << 4)
2056 | (mask_m[29] << 2) | (mask_m[30] << 0);
2057 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2058 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2059
2060 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2061 | (mask_m[2] << 26) | (mask_m[3] << 24)
2062 | (mask_m[4] << 22) | (mask_m[5] << 20)
2063 | (mask_m[6] << 18) | (mask_m[7] << 16)
2064 | (mask_m[8] << 14) | (mask_m[9] << 12)
2065 | (mask_m[10] << 10) | (mask_m[11] << 8)
2066 | (mask_m[12] << 6) | (mask_m[13] << 4)
2067 | (mask_m[14] << 2) | (mask_m[15] << 0);
2068 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2069 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2070
2071 tmp_mask = (mask_p[15] << 28)
2072 | (mask_p[14] << 26) | (mask_p[13] << 24)
2073 | (mask_p[12] << 22) | (mask_p[11] << 20)
2074 | (mask_p[10] << 18) | (mask_p[9] << 16)
2075 | (mask_p[8] << 14) | (mask_p[7] << 12)
2076 | (mask_p[6] << 10) | (mask_p[5] << 8)
2077 | (mask_p[4] << 6) | (mask_p[3] << 4)
2078 | (mask_p[2] << 2) | (mask_p[1] << 0);
2079 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2080 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2081
2082 tmp_mask = (mask_p[30] << 28)
2083 | (mask_p[29] << 26) | (mask_p[28] << 24)
2084 | (mask_p[27] << 22) | (mask_p[26] << 20)
2085 | (mask_p[25] << 18) | (mask_p[24] << 16)
2086 | (mask_p[23] << 14) | (mask_p[22] << 12)
2087 | (mask_p[21] << 10) | (mask_p[20] << 8)
2088 | (mask_p[19] << 6) | (mask_p[18] << 4)
2089 | (mask_p[17] << 2) | (mask_p[16] << 0);
2090 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2091 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2092
2093 tmp_mask = (mask_p[45] << 28)
2094 | (mask_p[44] << 26) | (mask_p[43] << 24)
2095 | (mask_p[42] << 22) | (mask_p[41] << 20)
2096 | (mask_p[40] << 18) | (mask_p[39] << 16)
2097 | (mask_p[38] << 14) | (mask_p[37] << 12)
2098 | (mask_p[36] << 10) | (mask_p[35] << 8)
2099 | (mask_p[34] << 6) | (mask_p[33] << 4)
2100 | (mask_p[32] << 2) | (mask_p[31] << 0);
2101 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2102 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2103
2104 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2105 | (mask_p[59] << 26) | (mask_p[58] << 24)
2106 | (mask_p[57] << 22) | (mask_p[56] << 20)
2107 | (mask_p[55] << 18) | (mask_p[54] << 16)
2108 | (mask_p[53] << 14) | (mask_p[52] << 12)
2109 | (mask_p[51] << 10) | (mask_p[50] << 8)
2110 | (mask_p[49] << 6) | (mask_p[48] << 4)
2111 | (mask_p[47] << 2) | (mask_p[46] << 0);
2112 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2113 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2114}
2115
Sujithcbe61d82009-02-09 13:27:12 +05302116static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002117{
2118 int bb_spur = AR_NO_SPUR;
2119 int bin, cur_bin;
2120 int spur_freq_sd;
2121 int spur_delta_phase;
2122 int denominator;
2123 int upper, lower, cur_vit_mask;
2124 int tmp, new;
2125 int i;
2126 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2127 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2128 };
2129 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2130 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2131 };
2132 int inc[4] = { 0, 100, 0, 0 };
2133
2134 int8_t mask_m[123];
2135 int8_t mask_p[123];
2136 int8_t mask_amt;
2137 int tmp_mask;
2138 int cur_bb_spur;
2139 bool is2GHz = IS_CHAN_2GHZ(chan);
2140
2141 memset(&mask_m, 0, sizeof(int8_t) * 123);
2142 memset(&mask_p, 0, sizeof(int8_t) * 123);
2143
2144 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302145 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002146 if (AR_NO_SPUR == cur_bb_spur)
2147 break;
2148 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2149 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2150 bb_spur = cur_bb_spur;
2151 break;
2152 }
2153 }
2154
2155 if (AR_NO_SPUR == bb_spur)
2156 return;
2157
2158 bin = bb_spur * 32;
2159
2160 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2161 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2162 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2163 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2164 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2165
2166 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2167
2168 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2169 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2170 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2171 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2172 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2173 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2174
2175 spur_delta_phase = ((bb_spur * 524288) / 100) &
2176 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2177
2178 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2179 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2180
2181 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2182 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2183 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2184 REG_WRITE(ah, AR_PHY_TIMING11, new);
2185
2186 cur_bin = -6000;
2187 upper = bin + 100;
2188 lower = bin - 100;
2189
2190 for (i = 0; i < 4; i++) {
2191 int pilot_mask = 0;
2192 int chan_mask = 0;
2193 int bp = 0;
2194 for (bp = 0; bp < 30; bp++) {
2195 if ((cur_bin > lower) && (cur_bin < upper)) {
2196 pilot_mask = pilot_mask | 0x1 << bp;
2197 chan_mask = chan_mask | 0x1 << bp;
2198 }
2199 cur_bin += 100;
2200 }
2201 cur_bin += inc[i];
2202 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2203 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2204 }
2205
2206 cur_vit_mask = 6100;
2207 upper = bin + 120;
2208 lower = bin - 120;
2209
2210 for (i = 0; i < 123; i++) {
2211 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002212
2213 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002214 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002215
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002216 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217 mask_amt = 1;
2218 else
2219 mask_amt = 0;
2220 if (cur_vit_mask < 0)
2221 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2222 else
2223 mask_p[cur_vit_mask / 100] = mask_amt;
2224 }
2225 cur_vit_mask -= 100;
2226 }
2227
2228 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2229 | (mask_m[48] << 26) | (mask_m[49] << 24)
2230 | (mask_m[50] << 22) | (mask_m[51] << 20)
2231 | (mask_m[52] << 18) | (mask_m[53] << 16)
2232 | (mask_m[54] << 14) | (mask_m[55] << 12)
2233 | (mask_m[56] << 10) | (mask_m[57] << 8)
2234 | (mask_m[58] << 6) | (mask_m[59] << 4)
2235 | (mask_m[60] << 2) | (mask_m[61] << 0);
2236 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2237 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2238
2239 tmp_mask = (mask_m[31] << 28)
2240 | (mask_m[32] << 26) | (mask_m[33] << 24)
2241 | (mask_m[34] << 22) | (mask_m[35] << 20)
2242 | (mask_m[36] << 18) | (mask_m[37] << 16)
2243 | (mask_m[48] << 14) | (mask_m[39] << 12)
2244 | (mask_m[40] << 10) | (mask_m[41] << 8)
2245 | (mask_m[42] << 6) | (mask_m[43] << 4)
2246 | (mask_m[44] << 2) | (mask_m[45] << 0);
2247 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2248 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2249
2250 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2251 | (mask_m[18] << 26) | (mask_m[18] << 24)
2252 | (mask_m[20] << 22) | (mask_m[20] << 20)
2253 | (mask_m[22] << 18) | (mask_m[22] << 16)
2254 | (mask_m[24] << 14) | (mask_m[24] << 12)
2255 | (mask_m[25] << 10) | (mask_m[26] << 8)
2256 | (mask_m[27] << 6) | (mask_m[28] << 4)
2257 | (mask_m[29] << 2) | (mask_m[30] << 0);
2258 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2259 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2260
2261 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2262 | (mask_m[2] << 26) | (mask_m[3] << 24)
2263 | (mask_m[4] << 22) | (mask_m[5] << 20)
2264 | (mask_m[6] << 18) | (mask_m[7] << 16)
2265 | (mask_m[8] << 14) | (mask_m[9] << 12)
2266 | (mask_m[10] << 10) | (mask_m[11] << 8)
2267 | (mask_m[12] << 6) | (mask_m[13] << 4)
2268 | (mask_m[14] << 2) | (mask_m[15] << 0);
2269 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2270 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2271
2272 tmp_mask = (mask_p[15] << 28)
2273 | (mask_p[14] << 26) | (mask_p[13] << 24)
2274 | (mask_p[12] << 22) | (mask_p[11] << 20)
2275 | (mask_p[10] << 18) | (mask_p[9] << 16)
2276 | (mask_p[8] << 14) | (mask_p[7] << 12)
2277 | (mask_p[6] << 10) | (mask_p[5] << 8)
2278 | (mask_p[4] << 6) | (mask_p[3] << 4)
2279 | (mask_p[2] << 2) | (mask_p[1] << 0);
2280 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2281 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2282
2283 tmp_mask = (mask_p[30] << 28)
2284 | (mask_p[29] << 26) | (mask_p[28] << 24)
2285 | (mask_p[27] << 22) | (mask_p[26] << 20)
2286 | (mask_p[25] << 18) | (mask_p[24] << 16)
2287 | (mask_p[23] << 14) | (mask_p[22] << 12)
2288 | (mask_p[21] << 10) | (mask_p[20] << 8)
2289 | (mask_p[19] << 6) | (mask_p[18] << 4)
2290 | (mask_p[17] << 2) | (mask_p[16] << 0);
2291 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2292 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2293
2294 tmp_mask = (mask_p[45] << 28)
2295 | (mask_p[44] << 26) | (mask_p[43] << 24)
2296 | (mask_p[42] << 22) | (mask_p[41] << 20)
2297 | (mask_p[40] << 18) | (mask_p[39] << 16)
2298 | (mask_p[38] << 14) | (mask_p[37] << 12)
2299 | (mask_p[36] << 10) | (mask_p[35] << 8)
2300 | (mask_p[34] << 6) | (mask_p[33] << 4)
2301 | (mask_p[32] << 2) | (mask_p[31] << 0);
2302 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2303 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2304
2305 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2306 | (mask_p[59] << 26) | (mask_p[58] << 24)
2307 | (mask_p[57] << 22) | (mask_p[56] << 20)
2308 | (mask_p[55] << 18) | (mask_p[54] << 16)
2309 | (mask_p[53] << 14) | (mask_p[52] << 12)
2310 | (mask_p[51] << 10) | (mask_p[50] << 8)
2311 | (mask_p[49] << 6) | (mask_p[48] << 4)
2312 | (mask_p[47] << 2) | (mask_p[46] << 0);
2313 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2314 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2315}
2316
Johannes Berg3b319aa2009-06-13 14:50:26 +05302317static void ath9k_enable_rfkill(struct ath_hw *ah)
2318{
2319 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2320 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2321
2322 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2323 AR_GPIO_INPUT_MUX2_RFSILENT);
2324
2325 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2326 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2327}
2328
Sujithcbe61d82009-02-09 13:27:12 +05302329int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002330 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002332 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002333 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302334 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002335 u32 saveDefAntenna;
2336 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002337 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338
Sujith2660b812009-02-09 13:27:26 +05302339 ah->extprotspacing = sc->ht_extprotspacing;
2340 ah->txchainmask = sc->tx_chainmask;
2341 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002343 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2344 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002345
2346 if (curchan)
2347 ath9k_hw_getnf(ah, curchan);
2348
2349 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302350 (ah->chip_fullsleep != true) &&
2351 (ah->curchan != NULL) &&
2352 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302354 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302356 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002357
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002358 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302359 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002361 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 }
2363 }
2364
2365 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2366 if (saveDefAntenna == 0)
2367 saveDefAntenna = 1;
2368
2369 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2370
2371 saveLedState = REG_READ(ah, AR_CFG_LED) &
2372 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2373 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2374
2375 ath9k_hw_mark_phy_inactive(ah);
2376
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002377 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2378 REG_WRITE(ah,
2379 AR9271_RESET_POWER_DOWN_CONTROL,
2380 AR9271_RADIO_RF_RST);
2381 udelay(50);
2382 }
2383
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002384 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujithd8baa932009-03-30 15:28:25 +05302385 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002386 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002387 }
2388
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002389 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2390 ah->htc_reset_init = false;
2391 REG_WRITE(ah,
2392 AR9271_RESET_POWER_DOWN_CONTROL,
2393 AR9271_GATE_MAC_CTL);
2394 udelay(50);
2395 }
2396
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302397 if (AR_SREV_9280_10_OR_LATER(ah))
2398 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002399
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302400 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302401 /* Enable ASYNC FIFO */
2402 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2403 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2404 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2405 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2406 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2407 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2408 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2409 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002410 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2411 if (r)
2412 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002414 /* Setup MFP options for CCMP */
2415 if (AR_SREV_9280_20_OR_LATER(ah)) {
2416 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2417 * frames when constructing CCMP AAD. */
2418 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2419 0xc7ff);
2420 ah->sw_mgmt_crypto = false;
2421 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2422 /* Disable hardware crypto for management frames */
2423 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2424 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2425 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2426 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2427 ah->sw_mgmt_crypto = true;
2428 } else
2429 ah->sw_mgmt_crypto = true;
2430
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002431 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2432 ath9k_hw_set_delta_slope(ah, chan);
2433
2434 if (AR_SREV_9280_10_OR_LATER(ah))
2435 ath9k_hw_9280_spur_mitigate(ah, chan);
2436 else
2437 ath9k_hw_spur_mitigate(ah, chan);
2438
Sujithd6509152009-03-13 08:56:05 +05302439 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002440
2441 ath9k_hw_decrease_chain_power(ah, chan);
2442
Sujithba52da52009-02-09 13:27:10 +05302443 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2444 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445 | macStaId1
2446 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302447 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302448 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302449 | ah->sta_id1_defaults);
2450 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002451
Sujithba52da52009-02-09 13:27:10 +05302452 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2453 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454
2455 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2456
Sujithba52da52009-02-09 13:27:10 +05302457 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2458 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2459 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460
2461 REG_WRITE(ah, AR_ISR, ~0);
2462
2463 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2464
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002465 if (AR_SREV_9280_10_OR_LATER(ah))
2466 ath9k_hw_ar9280_set_channel(ah, chan);
2467 else
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002468 if (!(ath9k_hw_set_channel(ah, chan)))
2469 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470
2471 for (i = 0; i < AR_NUM_DCU; i++)
2472 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2473
Sujith2660b812009-02-09 13:27:26 +05302474 ah->intr_txqs = 0;
2475 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002476 ath9k_hw_resettxqueue(ah, i);
2477
Sujith2660b812009-02-09 13:27:26 +05302478 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479 ath9k_hw_init_qos(ah);
2480
Sujith2660b812009-02-09 13:27:26 +05302481 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302482 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302483
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484 ath9k_hw_init_user_settings(ah);
2485
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302486 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302487 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2488 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2489 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2490 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2491 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2492 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2493
2494 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2495 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2496
2497 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2498 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2499 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2500 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2501 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302502 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302503 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2504 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2505 }
2506
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002507 REG_WRITE(ah, AR_STA_ID1,
2508 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2509
2510 ath9k_hw_set_dma(ah);
2511
2512 REG_WRITE(ah, AR_OBS, 8);
2513
Sujith0ef1f162009-03-30 15:28:35 +05302514 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002515 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2516 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2517 }
2518
2519 ath9k_hw_init_bb(ah, chan);
2520
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002521 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002522 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002523
Sujith2660b812009-02-09 13:27:26 +05302524 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002525 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2526 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2527 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2528 }
2529
2530 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2531
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002532 /*
2533 * For big endian systems turn on swapping for descriptors
2534 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002535 if (AR_SREV_9100(ah)) {
2536 u32 mask;
2537 mask = REG_READ(ah, AR_CFG);
2538 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2539 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302540 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002541 } else {
2542 mask =
2543 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2544 REG_WRITE(ah, AR_CFG, mask);
2545 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302546 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002547 }
2548 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002549 /* Configure AR9271 target WLAN */
2550 if (AR_SREV_9271(ah))
2551 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002552#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002553 else
2554 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002555#endif
2556 }
2557
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002558 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002559}
2560
Sujithf1dc5602008-10-29 10:16:30 +05302561/************************/
2562/* Key Cache Management */
2563/************************/
2564
Sujithcbe61d82009-02-09 13:27:12 +05302565bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002566{
Sujithf1dc5602008-10-29 10:16:30 +05302567 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568
Sujith2660b812009-02-09 13:27:26 +05302569 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302570 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2571 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002572 return false;
2573 }
2574
Sujithf1dc5602008-10-29 10:16:30 +05302575 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002576
Sujithf1dc5602008-10-29 10:16:30 +05302577 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2578 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2579 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2580 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2581 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2582 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2583 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2584 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2585
2586 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2587 u16 micentry = entry + 64;
2588
2589 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2590 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2591 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2592 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2593
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002594 }
2595
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002596 return true;
2597}
2598
Sujithcbe61d82009-02-09 13:27:12 +05302599bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002600{
Sujithf1dc5602008-10-29 10:16:30 +05302601 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002602
Sujith2660b812009-02-09 13:27:26 +05302603 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302604 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2605 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002606 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002607 }
2608
Sujithf1dc5602008-10-29 10:16:30 +05302609 if (mac != NULL) {
2610 macHi = (mac[5] << 8) | mac[4];
2611 macLo = (mac[3] << 24) |
2612 (mac[2] << 16) |
2613 (mac[1] << 8) |
2614 mac[0];
2615 macLo >>= 1;
2616 macLo |= (macHi & 1) << 31;
2617 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002618 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302619 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002620 }
Sujithf1dc5602008-10-29 10:16:30 +05302621 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2622 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002623
2624 return true;
2625}
2626
Sujithcbe61d82009-02-09 13:27:12 +05302627bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302628 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002629 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002630{
Sujith2660b812009-02-09 13:27:26 +05302631 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302632 u32 key0, key1, key2, key3, key4;
2633 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002634
Sujithf1dc5602008-10-29 10:16:30 +05302635 if (entry >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302636 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2637 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302638 return false;
2639 }
2640
2641 switch (k->kv_type) {
2642 case ATH9K_CIPHER_AES_OCB:
2643 keyType = AR_KEYTABLE_TYPE_AES;
2644 break;
2645 case ATH9K_CIPHER_AES_CCM:
2646 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Sujithd8baa932009-03-30 15:28:25 +05302647 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302648 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302649 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002650 return false;
2651 }
Sujithf1dc5602008-10-29 10:16:30 +05302652 keyType = AR_KEYTABLE_TYPE_CCM;
2653 break;
2654 case ATH9K_CIPHER_TKIP:
2655 keyType = AR_KEYTABLE_TYPE_TKIP;
2656 if (ATH9K_IS_MIC_ENABLED(ah)
2657 && entry + 64 >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302658 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302659 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002660 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002661 }
Sujithf1dc5602008-10-29 10:16:30 +05302662 break;
2663 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002664 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Sujithd8baa932009-03-30 15:28:25 +05302665 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302666 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302667 return false;
2668 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002669 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302670 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002671 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302672 keyType = AR_KEYTABLE_TYPE_104;
2673 else
2674 keyType = AR_KEYTABLE_TYPE_128;
2675 break;
2676 case ATH9K_CIPHER_CLR:
2677 keyType = AR_KEYTABLE_TYPE_CLR;
2678 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002679 default:
Sujithd8baa932009-03-30 15:28:25 +05302680 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302681 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002682 return false;
2683 }
Sujithf1dc5602008-10-29 10:16:30 +05302684
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002685 key0 = get_unaligned_le32(k->kv_val + 0);
2686 key1 = get_unaligned_le16(k->kv_val + 4);
2687 key2 = get_unaligned_le32(k->kv_val + 6);
2688 key3 = get_unaligned_le16(k->kv_val + 10);
2689 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002690 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302691 key4 &= 0xff;
2692
Jouni Malinen672903b2009-03-02 15:06:31 +02002693 /*
2694 * Note: Key cache registers access special memory area that requires
2695 * two 32-bit writes to actually update the values in the internal
2696 * memory. Consequently, the exact order and pairs used here must be
2697 * maintained.
2698 */
2699
Sujithf1dc5602008-10-29 10:16:30 +05302700 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2701 u16 micentry = entry + 64;
2702
Jouni Malinen672903b2009-03-02 15:06:31 +02002703 /*
2704 * Write inverted key[47:0] first to avoid Michael MIC errors
2705 * on frames that could be sent or received at the same time.
2706 * The correct key will be written in the end once everything
2707 * else is ready.
2708 */
Sujithf1dc5602008-10-29 10:16:30 +05302709 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2710 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002711
2712 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302713 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2714 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002715
2716 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302717 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2718 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002719
2720 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302721 (void) ath9k_hw_keysetmac(ah, entry, mac);
2722
Sujith2660b812009-02-09 13:27:26 +05302723 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002724 /*
2725 * TKIP uses two key cache entries:
2726 * Michael MIC TX/RX keys in the same key cache entry
2727 * (idx = main index + 64):
2728 * key0 [31:0] = RX key [31:0]
2729 * key1 [15:0] = TX key [31:16]
2730 * key1 [31:16] = reserved
2731 * key2 [31:0] = RX key [63:32]
2732 * key3 [15:0] = TX key [15:0]
2733 * key3 [31:16] = reserved
2734 * key4 [31:0] = TX key [63:32]
2735 */
Sujithf1dc5602008-10-29 10:16:30 +05302736 u32 mic0, mic1, mic2, mic3, mic4;
2737
2738 mic0 = get_unaligned_le32(k->kv_mic + 0);
2739 mic2 = get_unaligned_le32(k->kv_mic + 4);
2740 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2741 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2742 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002743
2744 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302745 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2746 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002747
2748 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302749 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2750 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002751
2752 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302753 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2754 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2755 AR_KEYTABLE_TYPE_CLR);
2756
2757 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002758 /*
2759 * TKIP uses four key cache entries (two for group
2760 * keys):
2761 * Michael MIC TX/RX keys are in different key cache
2762 * entries (idx = main index + 64 for TX and
2763 * main index + 32 + 96 for RX):
2764 * key0 [31:0] = TX/RX MIC key [31:0]
2765 * key1 [31:0] = reserved
2766 * key2 [31:0] = TX/RX MIC key [63:32]
2767 * key3 [31:0] = reserved
2768 * key4 [31:0] = reserved
2769 *
2770 * Upper layer code will call this function separately
2771 * for TX and RX keys when these registers offsets are
2772 * used.
2773 */
Sujithf1dc5602008-10-29 10:16:30 +05302774 u32 mic0, mic2;
2775
2776 mic0 = get_unaligned_le32(k->kv_mic + 0);
2777 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002778
2779 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302780 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2781 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002782
2783 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302784 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2785 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002786
2787 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302788 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2789 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2790 AR_KEYTABLE_TYPE_CLR);
2791 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002792
2793 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302794 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2795 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002796
2797 /*
2798 * Write the correct (un-inverted) key[47:0] last to enable
2799 * TKIP now that all other registers are set with correct
2800 * values.
2801 */
Sujithf1dc5602008-10-29 10:16:30 +05302802 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2803 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2804 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002805 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302806 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2807 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002808
2809 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302810 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2811 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002812
2813 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302814 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2815 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2816
Jouni Malinen672903b2009-03-02 15:06:31 +02002817 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302818 (void) ath9k_hw_keysetmac(ah, entry, mac);
2819 }
2820
Sujithf1dc5602008-10-29 10:16:30 +05302821 return true;
2822}
2823
Sujithcbe61d82009-02-09 13:27:12 +05302824bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302825{
Sujith2660b812009-02-09 13:27:26 +05302826 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302827 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2828 if (val & AR_KEYTABLE_VALID)
2829 return true;
2830 }
2831 return false;
2832}
2833
2834/******************************/
2835/* Power Management (Chipset) */
2836/******************************/
2837
Sujithcbe61d82009-02-09 13:27:12 +05302838static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302839{
2840 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2841 if (setChip) {
2842 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2843 AR_RTC_FORCE_WAKE_EN);
2844 if (!AR_SREV_9100(ah))
2845 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2846
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002847 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302848 AR_RTC_RESET_EN);
2849 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002850}
2851
Sujithcbe61d82009-02-09 13:27:12 +05302852static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002853{
Sujithf1dc5602008-10-29 10:16:30 +05302854 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2855 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302856 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002857
Sujithf1dc5602008-10-29 10:16:30 +05302858 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2859 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2860 AR_RTC_FORCE_WAKE_ON_INT);
2861 } else {
2862 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2863 AR_RTC_FORCE_WAKE_EN);
2864 }
2865 }
2866}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002867
Sujithcbe61d82009-02-09 13:27:12 +05302868static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302869{
2870 u32 val;
2871 int i;
2872
2873 if (setChip) {
2874 if ((REG_READ(ah, AR_RTC_STATUS) &
2875 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2876 if (ath9k_hw_set_reset_reg(ah,
2877 ATH9K_RESET_POWER_ON) != true) {
2878 return false;
2879 }
2880 }
2881 if (AR_SREV_9100(ah))
2882 REG_SET_BIT(ah, AR_RTC_RESET,
2883 AR_RTC_RESET_EN);
2884
2885 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2886 AR_RTC_FORCE_WAKE_EN);
2887 udelay(50);
2888
2889 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2890 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2891 if (val == AR_RTC_STATUS_ON)
2892 break;
2893 udelay(50);
2894 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2895 AR_RTC_FORCE_WAKE_EN);
2896 }
2897 if (i == 0) {
Sujithd8baa932009-03-30 15:28:25 +05302898 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302899 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302900 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002901 }
2902 }
2903
Sujithf1dc5602008-10-29 10:16:30 +05302904 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2905
2906 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002907}
2908
Gabor Juhos04717cc2009-07-14 20:17:13 -04002909static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2910 enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302911{
Sujithcbe61d82009-02-09 13:27:12 +05302912 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302913 static const char *modes[] = {
2914 "AWAKE",
2915 "FULL-SLEEP",
2916 "NETWORK SLEEP",
2917 "UNDEFINED"
2918 };
Sujithf1dc5602008-10-29 10:16:30 +05302919
Gabor Juhoscbdec972009-07-24 17:27:22 +02002920 if (ah->power_mode == mode)
2921 return status;
2922
Sujithd8baa932009-03-30 15:28:25 +05302923 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2924 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302925
2926 switch (mode) {
2927 case ATH9K_PM_AWAKE:
2928 status = ath9k_hw_set_power_awake(ah, setChip);
2929 break;
2930 case ATH9K_PM_FULL_SLEEP:
2931 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302932 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302933 break;
2934 case ATH9K_PM_NETWORK_SLEEP:
2935 ath9k_set_power_network_sleep(ah, setChip);
2936 break;
2937 default:
Sujithd8baa932009-03-30 15:28:25 +05302938 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302939 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302940 return false;
2941 }
Sujith2660b812009-02-09 13:27:26 +05302942 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302943
2944 return status;
2945}
2946
Gabor Juhos04717cc2009-07-14 20:17:13 -04002947bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2948{
2949 unsigned long flags;
2950 bool ret;
2951
2952 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2953 ret = ath9k_hw_setpower_nolock(ah, mode);
2954 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2955
2956 return ret;
2957}
2958
Gabor Juhos0bc07982009-07-14 20:17:14 -04002959void ath9k_ps_wakeup(struct ath_softc *sc)
2960{
Gabor Juhos709ade92009-07-14 20:17:15 -04002961 unsigned long flags;
2962
2963 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2964 if (++sc->ps_usecount != 1)
2965 goto unlock;
2966
Gabor Juhoscbdec972009-07-24 17:27:22 +02002967 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
Gabor Juhos709ade92009-07-14 20:17:15 -04002968
2969 unlock:
2970 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002971}
2972
2973void ath9k_ps_restore(struct ath_softc *sc)
2974{
Gabor Juhos709ade92009-07-14 20:17:15 -04002975 unsigned long flags;
2976
2977 spin_lock_irqsave(&sc->sc_pm_lock, flags);
2978 if (--sc->ps_usecount != 0)
2979 goto unlock;
2980
Gabor Juhos96148322009-07-24 17:27:21 +02002981 if (sc->ps_enabled &&
2982 !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
2983 SC_OP_WAIT_FOR_CAB |
2984 SC_OP_WAIT_FOR_PSPOLL_DATA |
2985 SC_OP_WAIT_FOR_TX_ACK)))
2986 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
Gabor Juhos709ade92009-07-14 20:17:15 -04002987
2988 unlock:
2989 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Gabor Juhos0bc07982009-07-14 20:17:14 -04002990}
2991
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002992/*
2993 * Helper for ASPM support.
2994 *
2995 * Disable PLL when in L0s as well as receiver clock when in L1.
2996 * This power saving option must be enabled through the SerDes.
2997 *
2998 * Programming the SerDes must go through the same 288 bit serial shift
2999 * register as the other analog registers. Hence the 9 writes.
3000 */
Sujithcbe61d82009-02-09 13:27:12 +05303001void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05303002{
Sujithf1dc5602008-10-29 10:16:30 +05303003 u8 i;
3004
Sujith2660b812009-02-09 13:27:26 +05303005 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05303006 return;
3007
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003008 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05303009 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05303010 return;
3011
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003012 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05303013 if (restore)
3014 return;
3015
3016 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003017 /*
3018 * AR9280 2.0 or later chips use SerDes values from the
3019 * initvals.h initialized depending on chipset during
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -07003020 * ath9k_hw_init()
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003021 */
Sujith2660b812009-02-09 13:27:26 +05303022 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
3023 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
3024 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05303025 }
Sujithf1dc5602008-10-29 10:16:30 +05303026 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05303027 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05303028 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
3029 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
3030
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003031 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05303032 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
3033 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
3034 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
3035
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003036 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05303037 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05303038 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
3039 else
3040 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
3041
3042 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3043 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3044 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
3045
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003046 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05303047 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
3048
Sujithf1dc5602008-10-29 10:16:30 +05303049 } else {
3050 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
3051 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003052
3053 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05303054 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
3055 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
3056 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003057
3058 /*
3059 * Ignore ah->ah_config.pcie_clock_req setting for
3060 * pre-AR9280 11n
3061 */
Sujithf1dc5602008-10-29 10:16:30 +05303062 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003063
Sujithf1dc5602008-10-29 10:16:30 +05303064 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3065 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3066 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003067
3068 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05303069 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
3070 }
3071
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08003072 udelay(1000);
3073
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003074 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05303075 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
3076
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003077 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05303078 if (ah->config.pcie_waen) {
3079 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05303080 } else {
Vivek Natarajand340b1f2009-08-14 11:29:27 +05303081 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) || AR_SREV_9287(ah))
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303082 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08003083 /*
3084 * On AR9280 chips bit 22 of 0x4004 needs to be set to
3085 * otherwise card may disappear.
3086 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303087 else if (AR_SREV_9280(ah))
3088 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05303089 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303090 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05303091 }
3092}
3093
3094/**********************/
3095/* Interrupt Handling */
3096/**********************/
3097
Sujithcbe61d82009-02-09 13:27:12 +05303098bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003099{
3100 u32 host_isr;
3101
3102 if (AR_SREV_9100(ah))
3103 return true;
3104
3105 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
3106 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
3107 return true;
3108
3109 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
3110 if ((host_isr & AR_INTR_SYNC_DEFAULT)
3111 && (host_isr != AR_INTR_SPURIOUS))
3112 return true;
3113
3114 return false;
3115}
3116
Sujithcbe61d82009-02-09 13:27:12 +05303117bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003118{
3119 u32 isr = 0;
3120 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05303121 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003122 u32 sync_cause = 0;
3123 bool fatal_int = false;
3124
3125 if (!AR_SREV_9100(ah)) {
3126 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3127 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3128 == AR_RTC_STATUS_ON) {
3129 isr = REG_READ(ah, AR_ISR);
3130 }
3131 }
3132
Sujithf1dc5602008-10-29 10:16:30 +05303133 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3134 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003135
3136 *masked = 0;
3137
3138 if (!isr && !sync_cause)
3139 return false;
3140 } else {
3141 *masked = 0;
3142 isr = REG_READ(ah, AR_ISR);
3143 }
3144
3145 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003146 if (isr & AR_ISR_BCNMISC) {
3147 u32 isr2;
3148 isr2 = REG_READ(ah, AR_ISR_S2);
3149 if (isr2 & AR_ISR_S2_TIM)
3150 mask2 |= ATH9K_INT_TIM;
3151 if (isr2 & AR_ISR_S2_DTIM)
3152 mask2 |= ATH9K_INT_DTIM;
3153 if (isr2 & AR_ISR_S2_DTIMSYNC)
3154 mask2 |= ATH9K_INT_DTIMSYNC;
3155 if (isr2 & (AR_ISR_S2_CABEND))
3156 mask2 |= ATH9K_INT_CABEND;
3157 if (isr2 & AR_ISR_S2_GTT)
3158 mask2 |= ATH9K_INT_GTT;
3159 if (isr2 & AR_ISR_S2_CST)
3160 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05303161 if (isr2 & AR_ISR_S2_TSFOOR)
3162 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003163 }
3164
3165 isr = REG_READ(ah, AR_ISR_RAC);
3166 if (isr == 0xffffffff) {
3167 *masked = 0;
3168 return false;
3169 }
3170
3171 *masked = isr & ATH9K_INT_COMMON;
3172
Sujith0ef1f162009-03-30 15:28:35 +05303173 if (ah->config.intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003174 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3175 *masked |= ATH9K_INT_RX;
3176 }
3177
3178 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3179 *masked |= ATH9K_INT_RX;
3180 if (isr &
3181 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3182 AR_ISR_TXEOL)) {
3183 u32 s0_s, s1_s;
3184
3185 *masked |= ATH9K_INT_TX;
3186
3187 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05303188 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3189 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003190
3191 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05303192 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3193 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003194 }
3195
3196 if (isr & AR_ISR_RXORN) {
3197 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05303198 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003199 }
3200
3201 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05303202 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003203 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3204 if (isr5 & AR_ISR_S5_TIM_TIMER)
3205 *masked |= ATH9K_INT_TIM_TIMER;
3206 }
3207 }
3208
3209 *masked |= mask2;
3210 }
Sujithf1dc5602008-10-29 10:16:30 +05303211
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003212 if (AR_SREV_9100(ah))
3213 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303214
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003215 if (sync_cause) {
3216 fatal_int =
3217 (sync_cause &
3218 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3219 ? true : false;
3220
3221 if (fatal_int) {
3222 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
3223 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05303224 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003225 }
3226 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
3227 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05303228 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003229 }
Steven Luoa89bff92009-04-12 02:57:54 -07003230 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003231 }
3232 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3233 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05303234 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003235 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3236 REG_WRITE(ah, AR_RC, 0);
3237 *masked |= ATH9K_INT_FATAL;
3238 }
3239 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3240 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05303241 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003242 }
3243
3244 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3245 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3246 }
Sujithf1dc5602008-10-29 10:16:30 +05303247
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003248 return true;
3249}
3250
Sujithcbe61d82009-02-09 13:27:12 +05303251enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003252{
Sujith2660b812009-02-09 13:27:26 +05303253 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003254 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303255 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003256
Sujith04bd46382008-11-28 22:18:05 +05303257 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003258
3259 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05303260 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003261 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3262 (void) REG_READ(ah, AR_IER);
3263 if (!AR_SREV_9100(ah)) {
3264 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3265 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3266
3267 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3268 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3269 }
3270 }
3271
3272 mask = ints & ATH9K_INT_COMMON;
3273 mask2 = 0;
3274
3275 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303276 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003277 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303278 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003279 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303280 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003281 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303282 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003283 mask |= AR_IMR_TXEOL;
3284 }
3285 if (ints & ATH9K_INT_RX) {
3286 mask |= AR_IMR_RXERR;
Sujith0ef1f162009-03-30 15:28:35 +05303287 if (ah->config.intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003288 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3289 else
3290 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303291 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003292 mask |= AR_IMR_GENTMR;
3293 }
3294
3295 if (ints & (ATH9K_INT_BMISC)) {
3296 mask |= AR_IMR_BCNMISC;
3297 if (ints & ATH9K_INT_TIM)
3298 mask2 |= AR_IMR_S2_TIM;
3299 if (ints & ATH9K_INT_DTIM)
3300 mask2 |= AR_IMR_S2_DTIM;
3301 if (ints & ATH9K_INT_DTIMSYNC)
3302 mask2 |= AR_IMR_S2_DTIMSYNC;
3303 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303304 mask2 |= AR_IMR_S2_CABEND;
3305 if (ints & ATH9K_INT_TSFOOR)
3306 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003307 }
3308
3309 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3310 mask |= AR_IMR_BCNMISC;
3311 if (ints & ATH9K_INT_GTT)
3312 mask2 |= AR_IMR_S2_GTT;
3313 if (ints & ATH9K_INT_CST)
3314 mask2 |= AR_IMR_S2_CST;
3315 }
3316
Sujith04bd46382008-11-28 22:18:05 +05303317 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003318 REG_WRITE(ah, AR_IMR, mask);
3319 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3320 AR_IMR_S2_DTIM |
3321 AR_IMR_S2_DTIMSYNC |
3322 AR_IMR_S2_CABEND |
3323 AR_IMR_S2_CABTO |
3324 AR_IMR_S2_TSFOOR |
3325 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3326 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303327 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003328
Sujith60b67f52008-08-07 10:52:38 +05303329 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003330 if (ints & ATH9K_INT_TIM_TIMER)
3331 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3332 else
3333 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3334 }
3335
3336 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05303337 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003338 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3339 if (!AR_SREV_9100(ah)) {
3340 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3341 AR_INTR_MAC_IRQ);
3342 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3343
3344
3345 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3346 AR_INTR_SYNC_DEFAULT);
3347 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3348 AR_INTR_SYNC_DEFAULT);
3349 }
3350 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3351 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3352 }
3353
3354 return omask;
3355}
3356
Sujithf1dc5602008-10-29 10:16:30 +05303357/*******************/
3358/* Beacon Handling */
3359/*******************/
3360
Sujithcbe61d82009-02-09 13:27:12 +05303361void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003362{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003363 int flags = 0;
3364
Sujith2660b812009-02-09 13:27:26 +05303365 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003366
Sujith2660b812009-02-09 13:27:26 +05303367 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003368 case NL80211_IFTYPE_STATION:
3369 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003370 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3371 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3372 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3373 flags |= AR_TBTT_TIMER_EN;
3374 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003375 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003376 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003377 REG_SET_BIT(ah, AR_TXCFG,
3378 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3379 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3380 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303381 (ah->atim_window ? ah->
3382 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003383 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003384 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003385 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3386 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3387 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303388 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303389 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003390 REG_WRITE(ah, AR_NEXT_SWBA,
3391 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303392 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303393 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003394 flags |=
3395 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3396 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003397 default:
3398 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3399 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303400 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003401 return;
3402 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003403 }
3404
3405 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3406 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3407 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3408 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3409
3410 beacon_period &= ~ATH9K_BEACON_ENA;
3411 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3412 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3413 ath9k_hw_reset_tsf(ah);
3414 }
3415
3416 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3417}
3418
Sujithcbe61d82009-02-09 13:27:12 +05303419void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303420 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003421{
3422 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303423 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003424
3425 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3426
3427 REG_WRITE(ah, AR_BEACON_PERIOD,
3428 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3429 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3430 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3431
3432 REG_RMW_FIELD(ah, AR_RSSI_THR,
3433 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3434
3435 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3436
3437 if (bs->bs_sleepduration > beaconintval)
3438 beaconintval = bs->bs_sleepduration;
3439
3440 dtimperiod = bs->bs_dtimperiod;
3441 if (bs->bs_sleepduration > dtimperiod)
3442 dtimperiod = bs->bs_sleepduration;
3443
3444 if (beaconintval == dtimperiod)
3445 nextTbtt = bs->bs_nextdtim;
3446 else
3447 nextTbtt = bs->bs_nexttbtt;
3448
Sujith04bd46382008-11-28 22:18:05 +05303449 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3450 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3451 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3452 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003453
3454 REG_WRITE(ah, AR_NEXT_DTIM,
3455 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3456 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3457
3458 REG_WRITE(ah, AR_SLEEP1,
3459 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3460 | AR_SLEEP1_ASSUME_DTIM);
3461
Sujith60b67f52008-08-07 10:52:38 +05303462 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003463 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3464 else
3465 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3466
3467 REG_WRITE(ah, AR_SLEEP2,
3468 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3469
3470 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3471 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3472
3473 REG_SET_BIT(ah, AR_TIMER_MODE,
3474 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3475 AR_DTIM_TIMER_EN);
3476
Sujith4af9cf42009-02-12 10:06:47 +05303477 /* TSF Out of Range Threshold */
3478 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003479}
3480
Sujithf1dc5602008-10-29 10:16:30 +05303481/*******************/
3482/* HW Capabilities */
3483/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003484
Sujitheef7a572009-03-30 15:28:28 +05303485void ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003486{
Sujith2660b812009-02-09 13:27:26 +05303487 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003488 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
3489
Sujithf1dc5602008-10-29 10:16:30 +05303490 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003491
Sujithf74df6f2009-02-09 13:27:24 +05303492 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003493 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303494
Sujithf74df6f2009-02-09 13:27:24 +05303495 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303496 if (AR_SREV_9285_10_OR_LATER(ah))
3497 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003498 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303499
Sujithf74df6f2009-02-09 13:27:24 +05303500 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303501
Sujith2660b812009-02-09 13:27:26 +05303502 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303503 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003504 if (regulatory->current_rd == 0x64 ||
3505 regulatory->current_rd == 0x65)
3506 regulatory->current_rd += 5;
3507 else if (regulatory->current_rd == 0x41)
3508 regulatory->current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303509 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003510 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003511 }
Sujithdc2222a2008-08-14 13:26:55 +05303512
Sujithf74df6f2009-02-09 13:27:24 +05303513 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303514 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003515
Sujithf1dc5602008-10-29 10:16:30 +05303516 if (eeval & AR5416_OPFLAGS_11A) {
3517 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303518 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303519 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3520 set_bit(ATH9K_MODE_11NA_HT20,
3521 pCap->wireless_modes);
3522 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3523 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3524 pCap->wireless_modes);
3525 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3526 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003527 }
3528 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003529 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003530
Sujithf1dc5602008-10-29 10:16:30 +05303531 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303532 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303533 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303534 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3535 set_bit(ATH9K_MODE_11NG_HT20,
3536 pCap->wireless_modes);
3537 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3538 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3539 pCap->wireless_modes);
3540 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3541 pCap->wireless_modes);
3542 }
3543 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003544 }
Sujithf1dc5602008-10-29 10:16:30 +05303545
Sujithf74df6f2009-02-09 13:27:24 +05303546 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003547 /*
3548 * For AR9271 we will temporarilly uses the rx chainmax as read from
3549 * the EEPROM.
3550 */
Sujith8147f5d2009-02-20 15:13:23 +05303551 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003552 !(eeval & AR5416_OPFLAGS_11A) &&
3553 !(AR_SREV_9271(ah)))
3554 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303555 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3556 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003557 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303558 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303559
Sujithd535a422009-02-09 13:27:06 +05303560 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303561 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303562
3563 pCap->low_2ghz_chan = 2312;
3564 pCap->high_2ghz_chan = 2732;
3565
3566 pCap->low_5ghz_chan = 4920;
3567 pCap->high_5ghz_chan = 6100;
3568
3569 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3570 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3571 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3572
3573 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3574 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3575 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3576
Sujith2660b812009-02-09 13:27:26 +05303577 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303578 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3579 else
3580 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3581
3582 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3583 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3584 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3585 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3586
3587 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3588 pCap->total_queues =
3589 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3590 else
3591 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3592
3593 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3594 pCap->keycache_size =
3595 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3596 else
3597 pCap->keycache_size = AR_KEYTABLE_SIZE;
3598
3599 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303600 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3601
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303602 if (AR_SREV_9285_10_OR_LATER(ah))
3603 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3604 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303605 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3606 else
3607 pCap->num_gpio_pins = AR_NUM_GPIO;
3608
Sujithf1dc5602008-10-29 10:16:30 +05303609 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3610 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3611 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3612 } else {
3613 pCap->rts_aggr_limit = (8 * 1024);
3614 }
3615
3616 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3617
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303618#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303619 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3620 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3621 ah->rfkill_gpio =
3622 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3623 ah->rfkill_polarity =
3624 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303625
3626 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3627 }
3628#endif
3629
Sujithd535a422009-02-09 13:27:06 +05303630 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3631 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3632 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3633 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
Vivek Natarajan882b7092009-04-14 16:21:01 +05303634 (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
3635 (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
Sujithf1dc5602008-10-29 10:16:30 +05303636 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3637 else
3638 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3639
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303640 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303641 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3642 else
3643 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3644
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003645 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303646 pCap->reg_cap =
3647 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3648 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3649 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3650 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3651 } else {
3652 pCap->reg_cap =
3653 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3654 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3655 }
3656
3657 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3658
3659 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303660 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303661 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303662 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303663
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303664 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303665 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303666 ah->btactive_gpio = 6;
3667 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303668 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003669}
3670
Sujithcbe61d82009-02-09 13:27:12 +05303671bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303672 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003673{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003674 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303675 switch (type) {
3676 case ATH9K_CAP_CIPHER:
3677 switch (capability) {
3678 case ATH9K_CIPHER_AES_CCM:
3679 case ATH9K_CIPHER_AES_OCB:
3680 case ATH9K_CIPHER_TKIP:
3681 case ATH9K_CIPHER_WEP:
3682 case ATH9K_CIPHER_MIC:
3683 case ATH9K_CIPHER_CLR:
3684 return true;
3685 default:
3686 return false;
3687 }
3688 case ATH9K_CAP_TKIP_MIC:
3689 switch (capability) {
3690 case 0:
3691 return true;
3692 case 1:
Sujith2660b812009-02-09 13:27:26 +05303693 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303694 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3695 false;
3696 }
3697 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303698 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303699 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303700 case ATH9K_CAP_DIVERSITY:
3701 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3702 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3703 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303704 case ATH9K_CAP_MCAST_KEYSRCH:
3705 switch (capability) {
3706 case 0:
3707 return true;
3708 case 1:
3709 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3710 return false;
3711 } else {
Sujith2660b812009-02-09 13:27:26 +05303712 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303713 AR_STA_ID1_MCAST_KSRCH) ? true :
3714 false;
3715 }
3716 }
3717 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303718 case ATH9K_CAP_TXPOW:
3719 switch (capability) {
3720 case 0:
3721 return 0;
3722 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003723 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303724 return 0;
3725 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003726 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303727 return 0;
3728 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003729 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303730 return 0;
3731 }
3732 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303733 case ATH9K_CAP_DS:
3734 return (AR_SREV_9280_20_OR_LATER(ah) &&
3735 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3736 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303737 default:
3738 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003739 }
Sujithf1dc5602008-10-29 10:16:30 +05303740}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003741
Sujithcbe61d82009-02-09 13:27:12 +05303742bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303743 u32 capability, u32 setting, int *status)
3744{
Sujithf1dc5602008-10-29 10:16:30 +05303745 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003746
Sujithf1dc5602008-10-29 10:16:30 +05303747 switch (type) {
3748 case ATH9K_CAP_TKIP_MIC:
3749 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303750 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303751 AR_STA_ID1_CRPT_MIC_ENABLE;
3752 else
Sujith2660b812009-02-09 13:27:26 +05303753 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303754 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3755 return true;
3756 case ATH9K_CAP_DIVERSITY:
3757 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3758 if (setting)
3759 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3760 else
3761 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3762 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3763 return true;
3764 case ATH9K_CAP_MCAST_KEYSRCH:
3765 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303766 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303767 else
Sujith2660b812009-02-09 13:27:26 +05303768 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303769 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303770 default:
3771 return false;
3772 }
3773}
3774
3775/****************************/
3776/* GPIO / RFKILL / Antennae */
3777/****************************/
3778
Sujithcbe61d82009-02-09 13:27:12 +05303779static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303780 u32 gpio, u32 type)
3781{
3782 int addr;
3783 u32 gpio_shift, tmp;
3784
3785 if (gpio > 11)
3786 addr = AR_GPIO_OUTPUT_MUX3;
3787 else if (gpio > 5)
3788 addr = AR_GPIO_OUTPUT_MUX2;
3789 else
3790 addr = AR_GPIO_OUTPUT_MUX1;
3791
3792 gpio_shift = (gpio % 6) * 5;
3793
3794 if (AR_SREV_9280_20_OR_LATER(ah)
3795 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3796 REG_RMW(ah, addr, (type << gpio_shift),
3797 (0x1f << gpio_shift));
3798 } else {
3799 tmp = REG_READ(ah, addr);
3800 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3801 tmp &= ~(0x1f << gpio_shift);
3802 tmp |= (type << gpio_shift);
3803 REG_WRITE(ah, addr, tmp);
3804 }
3805}
3806
Sujithcbe61d82009-02-09 13:27:12 +05303807void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303808{
3809 u32 gpio_shift;
3810
Sujith2660b812009-02-09 13:27:26 +05303811 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303812
3813 gpio_shift = gpio << 1;
3814
3815 REG_RMW(ah,
3816 AR_GPIO_OE_OUT,
3817 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3818 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3819}
3820
Sujithcbe61d82009-02-09 13:27:12 +05303821u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303822{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303823#define MS_REG_READ(x, y) \
3824 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3825
Sujith2660b812009-02-09 13:27:26 +05303826 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303827 return 0xffffffff;
3828
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303829 if (AR_SREV_9287_10_OR_LATER(ah))
3830 return MS_REG_READ(AR9287, gpio) != 0;
3831 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303832 return MS_REG_READ(AR9285, gpio) != 0;
3833 else if (AR_SREV_9280_10_OR_LATER(ah))
3834 return MS_REG_READ(AR928X, gpio) != 0;
3835 else
3836 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303837}
3838
Sujithcbe61d82009-02-09 13:27:12 +05303839void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303840 u32 ah_signal_type)
3841{
3842 u32 gpio_shift;
3843
3844 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3845
3846 gpio_shift = 2 * gpio;
3847
3848 REG_RMW(ah,
3849 AR_GPIO_OE_OUT,
3850 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3851 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3852}
3853
Sujithcbe61d82009-02-09 13:27:12 +05303854void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303855{
3856 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3857 AR_GPIO_BIT(gpio));
3858}
3859
Sujithcbe61d82009-02-09 13:27:12 +05303860u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303861{
3862 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3863}
3864
Sujithcbe61d82009-02-09 13:27:12 +05303865void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303866{
3867 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3868}
3869
Sujithcbe61d82009-02-09 13:27:12 +05303870bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303871 enum ath9k_ant_setting settings,
3872 struct ath9k_channel *chan,
3873 u8 *tx_chainmask,
3874 u8 *rx_chainmask,
3875 u8 *antenna_cfgd)
3876{
Sujithf1dc5602008-10-29 10:16:30 +05303877 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3878
3879 if (AR_SREV_9280(ah)) {
3880 if (!tx_chainmask_cfg) {
3881
3882 tx_chainmask_cfg = *tx_chainmask;
3883 rx_chainmask_cfg = *rx_chainmask;
3884 }
3885
3886 switch (settings) {
3887 case ATH9K_ANT_FIXED_A:
3888 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3889 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3890 *antenna_cfgd = true;
3891 break;
3892 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303893 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303894 ATH9K_ANTENNA1_CHAINMASK) {
3895 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3896 }
3897 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3898 *antenna_cfgd = true;
3899 break;
3900 case ATH9K_ANT_VARIABLE:
3901 *tx_chainmask = tx_chainmask_cfg;
3902 *rx_chainmask = rx_chainmask_cfg;
3903 *antenna_cfgd = true;
3904 break;
3905 default:
3906 break;
3907 }
3908 } else {
Sujith1cf68732009-08-13 09:34:32 +05303909 ah->config.diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303910 }
3911
3912 return true;
3913}
3914
3915/*********************/
3916/* General Operation */
3917/*********************/
3918
Sujithcbe61d82009-02-09 13:27:12 +05303919u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303920{
3921 u32 bits = REG_READ(ah, AR_RX_FILTER);
3922 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3923
3924 if (phybits & AR_PHY_ERR_RADAR)
3925 bits |= ATH9K_RX_FILTER_PHYRADAR;
3926 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3927 bits |= ATH9K_RX_FILTER_PHYERR;
3928
3929 return bits;
3930}
3931
Sujithcbe61d82009-02-09 13:27:12 +05303932void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303933{
3934 u32 phybits;
3935
3936 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3937 phybits = 0;
3938 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3939 phybits |= AR_PHY_ERR_RADAR;
3940 if (bits & ATH9K_RX_FILTER_PHYERR)
3941 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3942 REG_WRITE(ah, AR_PHY_ERR, phybits);
3943
3944 if (phybits)
3945 REG_WRITE(ah, AR_RXCFG,
3946 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3947 else
3948 REG_WRITE(ah, AR_RXCFG,
3949 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3950}
3951
Sujithcbe61d82009-02-09 13:27:12 +05303952bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303953{
3954 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3955}
3956
Sujithcbe61d82009-02-09 13:27:12 +05303957bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303958{
3959 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3960 return false;
3961
3962 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3963}
3964
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003965void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303966{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003967 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303968 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003969 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303970
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003971 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303972
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003973 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003974 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003975 channel->max_antenna_gain * 2,
3976 channel->max_power * 2,
3977 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003978 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303979}
3980
Sujithcbe61d82009-02-09 13:27:12 +05303981void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303982{
Sujithba52da52009-02-09 13:27:10 +05303983 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303984}
3985
Sujithcbe61d82009-02-09 13:27:12 +05303986void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303987{
Sujith2660b812009-02-09 13:27:26 +05303988 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303989}
3990
Sujithcbe61d82009-02-09 13:27:12 +05303991void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303992{
3993 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3994 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3995}
3996
Sujithba52da52009-02-09 13:27:10 +05303997void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303998{
Sujithba52da52009-02-09 13:27:10 +05303999 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
4000 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05304001}
4002
Sujithba52da52009-02-09 13:27:10 +05304003void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05304004{
Sujithba52da52009-02-09 13:27:10 +05304005 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
4006 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
4007 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05304008}
4009
Sujithcbe61d82009-02-09 13:27:12 +05304010u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304011{
4012 u64 tsf;
4013
4014 tsf = REG_READ(ah, AR_TSF_U32);
4015 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
4016
4017 return tsf;
4018}
4019
Sujithcbe61d82009-02-09 13:27:12 +05304020void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004021{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004022 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01004023 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01004024}
4025
Sujithcbe61d82009-02-09 13:27:12 +05304026void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05304027{
Gabor Juhos1b7e5282009-06-21 00:02:14 +02004028 ath9k_ps_wakeup(ah->ah_sc);
Gabor Juhosf9b604f2009-06-21 00:02:15 +02004029 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
4030 AH_TSF_WRITE_TIMEOUT))
4031 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
4032 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
4033
Sujithf1dc5602008-10-29 10:16:30 +05304034 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Gabor Juhos1b7e5282009-06-21 00:02:14 +02004035 ath9k_ps_restore(ah->ah_sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004036}
4037
Sujith54e4cec2009-08-07 09:45:09 +05304038void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004039{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004040 if (setting)
Sujith2660b812009-02-09 13:27:26 +05304041 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004042 else
Sujith2660b812009-02-09 13:27:26 +05304043 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004044}
4045
Sujithcbe61d82009-02-09 13:27:12 +05304046bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004047{
Sujithf1dc5602008-10-29 10:16:30 +05304048 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd46382008-11-28 22:18:05 +05304049 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05304050 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05304051 return false;
4052 } else {
4053 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05304054 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05304055 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004056 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004057}
4058
Sujithcbe61d82009-02-09 13:27:12 +05304059void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004060{
Sujithf1dc5602008-10-29 10:16:30 +05304061 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004062
Sujithf1dc5602008-10-29 10:16:30 +05304063 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05304064 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05304065 macmode = AR_2040_JOINED_RX_CLEAR;
4066 else
4067 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004068
Sujithf1dc5602008-10-29 10:16:30 +05304069 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004070}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05304071
4072/***************************/
4073/* Bluetooth Coexistence */
4074/***************************/
4075
Sujithcbe61d82009-02-09 13:27:12 +05304076void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05304077{
4078 /* connect bt_active to baseband */
4079 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
4080 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
4081 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
4082
4083 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
4084 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
4085
4086 /* Set input mux for bt_active to gpio pin */
4087 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
4088 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05304089 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05304090
4091 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05304092 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05304093
4094 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05304095 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05304096 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
4097}