blob: 169d8efa69dc058d63da3df219f75a1b196c1aea [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
Sujith0caa7b12009-02-16 13:23:20 +053087bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070088{
89 int i;
90
Sujith0caa7b12009-02-16 13:23:20 +053091 BUG_ON(timeout < AH_TIME_QUANTUM);
92
93 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070094 if ((REG_READ(ah, reg) & mask) == val)
95 return true;
96
97 udelay(AH_TIME_QUANTUM);
98 }
Sujith04bd4632008-11-28 22:18:05 +053099
Sujithd8baa932009-03-30 15:28:25 +0530100 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith0caa7b12009-02-16 13:23:20 +0530101 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
102 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530103
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700104 return false;
105}
106
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700107u32 ath9k_hw_reverse_bits(u32 val, u32 n)
108{
109 u32 retval;
110 int i;
111
112 for (i = 0, retval = 0; i < n; i++) {
113 retval = (retval << 1) | (val & 1);
114 val >>= 1;
115 }
116 return retval;
117}
118
Sujithcbe61d82009-02-09 13:27:12 +0530119bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530120 u16 flags, u16 *low,
121 u16 *high)
122{
Sujith2660b812009-02-09 13:27:26 +0530123 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530124
125 if (flags & CHANNEL_5GHZ) {
126 *low = pCap->low_5ghz_chan;
127 *high = pCap->high_5ghz_chan;
128 return true;
129 }
130 if ((flags & CHANNEL_2GHZ)) {
131 *low = pCap->low_2ghz_chan;
132 *high = pCap->high_2ghz_chan;
133 return true;
134 }
135 return false;
136}
137
Sujithcbe61d82009-02-09 13:27:12 +0530138u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Sujithe63835b2008-11-18 09:07:53 +0530139 struct ath_rate_table *rates,
Sujithf1dc5602008-10-29 10:16:30 +0530140 u32 frameLen, u16 rateix,
141 bool shortPreamble)
142{
143 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
144 u32 kbps;
145
Sujithe63835b2008-11-18 09:07:53 +0530146 kbps = rates->info[rateix].ratekbps;
Sujithf1dc5602008-10-29 10:16:30 +0530147
148 if (kbps == 0)
149 return 0;
150
151 switch (rates->info[rateix].phy) {
Sujith46d14a52008-11-18 09:08:13 +0530152 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530153 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Sujithe63835b2008-11-18 09:07:53 +0530154 if (shortPreamble && rates->info[rateix].short_preamble)
Sujithf1dc5602008-10-29 10:16:30 +0530155 phyTime >>= 1;
156 numBits = frameLen << 3;
157 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
158 break;
Sujith46d14a52008-11-18 09:08:13 +0530159 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530160 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530161 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
162 numBits = OFDM_PLCP_BITS + (frameLen << 3);
163 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
164 txTime = OFDM_SIFS_TIME_QUARTER
165 + OFDM_PREAMBLE_TIME_QUARTER
166 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530167 } else if (ah->curchan &&
168 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530169 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
170 numBits = OFDM_PLCP_BITS + (frameLen << 3);
171 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
172 txTime = OFDM_SIFS_TIME_HALF +
173 OFDM_PREAMBLE_TIME_HALF
174 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
175 } else {
176 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
177 numBits = OFDM_PLCP_BITS + (frameLen << 3);
178 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
179 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
180 + (numSymbols * OFDM_SYMBOL_TIME);
181 }
182 break;
183 default:
Sujithd8baa932009-03-30 15:28:25 +0530184 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530185 "Unknown phy %u (rate ix %u)\n",
Sujithf1dc5602008-10-29 10:16:30 +0530186 rates->info[rateix].phy, rateix);
187 txTime = 0;
188 break;
189 }
190
191 return txTime;
192}
193
Sujithcbe61d82009-02-09 13:27:12 +0530194void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530195 struct ath9k_channel *chan,
196 struct chan_centers *centers)
197{
198 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530199
200 if (!IS_CHAN_HT40(chan)) {
201 centers->ctl_center = centers->ext_center =
202 centers->synth_center = chan->channel;
203 return;
204 }
205
206 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
207 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
208 centers->synth_center =
209 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
210 extoff = 1;
211 } else {
212 centers->synth_center =
213 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
214 extoff = -1;
215 }
216
217 centers->ctl_center =
218 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
219 centers->ext_center =
220 centers->synth_center + (extoff *
Sujith2660b812009-02-09 13:27:26 +0530221 ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
Sujithf1dc5602008-10-29 10:16:30 +0530222 HT40_CHANNEL_CENTER_SHIFT : 15));
Sujithf1dc5602008-10-29 10:16:30 +0530223}
224
225/******************/
226/* Chip Revisions */
227/******************/
228
Sujithcbe61d82009-02-09 13:27:12 +0530229static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530230{
231 u32 val;
232
233 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
234
235 if (val == 0xFF) {
236 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530237 ah->hw_version.macVersion =
238 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
239 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530240 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530241 } else {
242 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530243 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530244
Sujithd535a422009-02-09 13:27:06 +0530245 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530246
Sujithd535a422009-02-09 13:27:06 +0530247 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530248 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530249 }
250}
251
Sujithcbe61d82009-02-09 13:27:12 +0530252static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530253{
254 u32 val;
255 int i;
256
257 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
258
259 for (i = 0; i < 8; i++)
260 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
261 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
262 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
263
264 return ath9k_hw_reverse_bits(val, 8);
265}
266
267/************************************/
268/* HW Attach, Detach, Init Routines */
269/************************************/
270
Sujithcbe61d82009-02-09 13:27:12 +0530271static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530272{
Sujithfeed0292009-01-29 11:37:35 +0530273 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530274 return;
275
276 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
277 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
278 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
279 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
280 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
281 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
282 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
283 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
284 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
285
286 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
287}
288
Sujithcbe61d82009-02-09 13:27:12 +0530289static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530290{
291 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
292 u32 regHold[2];
293 u32 patternData[4] = { 0x55555555,
294 0xaaaaaaaa,
295 0x66666666,
296 0x99999999 };
297 int i, j;
298
299 for (i = 0; i < 2; i++) {
300 u32 addr = regAddr[i];
301 u32 wrData, rdData;
302
303 regHold[i] = REG_READ(ah, addr);
304 for (j = 0; j < 0x100; j++) {
305 wrData = (j << 16) | j;
306 REG_WRITE(ah, addr, wrData);
307 rdData = REG_READ(ah, addr);
308 if (rdData != wrData) {
Sujithd8baa932009-03-30 15:28:25 +0530309 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530310 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530311 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530312 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530313 return false;
314 }
315 }
316 for (j = 0; j < 4; j++) {
317 wrData = patternData[j];
318 REG_WRITE(ah, addr, wrData);
319 rdData = REG_READ(ah, addr);
320 if (wrData != rdData) {
Sujithd8baa932009-03-30 15:28:25 +0530321 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530322 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530323 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd4632008-11-28 22:18:05 +0530324 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530325 return false;
326 }
327 }
328 REG_WRITE(ah, regAddr[i], regHold[i]);
329 }
330 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530331
Sujithf1dc5602008-10-29 10:16:30 +0530332 return true;
333}
334
335static const char *ath9k_hw_devname(u16 devid)
336{
337 switch (devid) {
338 case AR5416_DEVID_PCI:
Sujithf1dc5602008-10-29 10:16:30 +0530339 return "Atheros 5416";
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +0100340 case AR5416_DEVID_PCIE:
341 return "Atheros 5418";
Sujithf1dc5602008-10-29 10:16:30 +0530342 case AR9160_DEVID_PCI:
343 return "Atheros 9160";
Gabor Juhos0c1aa492009-01-14 20:17:12 +0100344 case AR5416_AR9100_DEVID:
345 return "Atheros 9100";
Sujithf1dc5602008-10-29 10:16:30 +0530346 case AR9280_DEVID_PCI:
347 case AR9280_DEVID_PCIE:
348 return "Atheros 9280";
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530349 case AR9285_DEVID_PCIE:
350 return "Atheros 9285";
Sujithf1dc5602008-10-29 10:16:30 +0530351 }
352
353 return NULL;
354}
355
Sujithcbe61d82009-02-09 13:27:12 +0530356static void ath9k_hw_set_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357{
358 int i;
359
Sujith2660b812009-02-09 13:27:26 +0530360 ah->config.dma_beacon_response_time = 2;
361 ah->config.sw_beacon_response_time = 10;
362 ah->config.additional_swba_backoff = 0;
363 ah->config.ack_6mb = 0x0;
364 ah->config.cwm_ignore_extcca = 0;
365 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530366 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530367 ah->config.pcie_waen = 0;
368 ah->config.analog_shiftreg = 1;
369 ah->config.ht_enable = 1;
370 ah->config.ofdm_trig_low = 200;
371 ah->config.ofdm_trig_high = 500;
372 ah->config.cck_trig_high = 200;
373 ah->config.cck_trig_low = 100;
374 ah->config.enable_ani = 1;
Sujith2660b812009-02-09 13:27:26 +0530375 ah->config.diversity_control = 0;
376 ah->config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700377
378 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530379 ah->config.spurchans[i][0] = AR_NO_SPUR;
380 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700381 }
382
Sujith2660b812009-02-09 13:27:26 +0530383 ah->config.intr_mitigation = 1;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400384
385 /*
386 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
387 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
388 * This means we use it for all AR5416 devices, and the few
389 * minor PCI AR9280 devices out there.
390 *
391 * Serialization is required because these devices do not handle
392 * well the case of two concurrent reads/writes due to the latency
393 * involved. During one read/write another read/write can be issued
394 * on another CPU while the previous read/write may still be working
395 * on our hardware, if we hit this case the hardware poops in a loop.
396 * We prevent this by serializing reads and writes.
397 *
398 * This issue is not present on PCI-Express devices or pre-AR5416
399 * devices (legacy, 802.11abg).
400 */
401 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700402 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403}
404
Sujithcbe61d82009-02-09 13:27:12 +0530405static struct ath_hw *ath9k_hw_newstate(u16 devid, struct ath_softc *sc,
406 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407{
Sujithcbe61d82009-02-09 13:27:12 +0530408 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409
Sujithcbe61d82009-02-09 13:27:12 +0530410 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
411 if (ah == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700412 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530413 "Cannot allocate memory for state block\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414 *status = -ENOMEM;
415 return NULL;
416 }
417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418 ah->ah_sc = sc;
Sujithd535a422009-02-09 13:27:06 +0530419 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530420 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530421 ah->hw_version.devid = devid;
422 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423
424 ah->ah_flags = 0;
425 if ((devid == AR5416_AR9100_DEVID))
Sujithd535a422009-02-09 13:27:06 +0530426 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700427 if (!AR_SREV_9100(ah))
428 ah->ah_flags = AH_USE_EEPROM;
429
Sujithd6bad492009-02-09 13:27:08 +0530430 ah->regulatory.power_limit = MAX_RATE_POWER;
431 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530432 ah->atim_window = 0;
433 ah->diversity_control = ah->config.diversity_control;
434 ah->antenna_switch_swap =
435 ah->config.antenna_switch_swap;
436 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
437 ah->beacon_interval = 100;
438 ah->enable_32kHz_clock = DONT_USE_32KHZ;
439 ah->slottime = (u32) -1;
440 ah->acktimeout = (u32) -1;
441 ah->ctstimeout = (u32) -1;
442 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443
Sujith2660b812009-02-09 13:27:26 +0530444 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445
Sujithcbe61d82009-02-09 13:27:12 +0530446 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447}
448
Sujithcbe61d82009-02-09 13:27:12 +0530449static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450{
451 bool rfStatus = false;
452 int ecode = 0;
453
454 rfStatus = ath9k_hw_init_rf(ah, &ecode);
455 if (!rfStatus) {
Sujithd8baa932009-03-30 15:28:25 +0530456 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
457 "RF setup failed, status: %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458 return ecode;
459 }
460
461 return 0;
462}
463
Sujithcbe61d82009-02-09 13:27:12 +0530464static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465{
466 u32 val;
467
468 REG_WRITE(ah, AR_PHY(0), 0x00000007);
469
470 val = ath9k_hw_get_radiorev(ah);
471 switch (val & AR_RADIO_SREV_MAJOR) {
472 case 0:
473 val = AR_RAD5133_SREV_MAJOR;
474 break;
475 case AR_RAD5133_SREV_MAJOR:
476 case AR_RAD5122_SREV_MAJOR:
477 case AR_RAD2133_SREV_MAJOR:
478 case AR_RAD2122_SREV_MAJOR:
479 break;
480 default:
Sujithd8baa932009-03-30 15:28:25 +0530481 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
482 "Radio Chip Rev 0x%02X not supported\n",
483 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484 return -EOPNOTSUPP;
485 }
486
Sujithd535a422009-02-09 13:27:06 +0530487 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488
489 return 0;
490}
491
Sujithcbe61d82009-02-09 13:27:12 +0530492static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493{
Sujithf1dc5602008-10-29 10:16:30 +0530494 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530496 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700497
Sujithf1dc5602008-10-29 10:16:30 +0530498 sum = 0;
499 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530500 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530501 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530502 ah->macaddr[2 * i] = eeval >> 8;
503 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504 }
Sujithd8baa932009-03-30 15:28:25 +0530505 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530506 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508 return 0;
509}
510
Sujithcbe61d82009-02-09 13:27:12 +0530511static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530512{
513 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530514
Sujithf74df6f2009-02-09 13:27:24 +0530515 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
516 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530517
518 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530519 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530520 ar9280Modes_backoff_13db_rxgain_9280_2,
521 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
522 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530523 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530524 ar9280Modes_backoff_23db_rxgain_9280_2,
525 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
526 else
Sujith2660b812009-02-09 13:27:26 +0530527 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530528 ar9280Modes_original_rxgain_9280_2,
529 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530530 } else {
Sujith2660b812009-02-09 13:27:26 +0530531 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530532 ar9280Modes_original_rxgain_9280_2,
533 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530534 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530535}
536
Sujithcbe61d82009-02-09 13:27:12 +0530537static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530538{
539 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530540
Sujithf74df6f2009-02-09 13:27:24 +0530541 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
542 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530543
544 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530545 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530546 ar9280Modes_high_power_tx_gain_9280_2,
547 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
548 else
Sujith2660b812009-02-09 13:27:26 +0530549 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530550 ar9280Modes_original_tx_gain_9280_2,
551 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530552 } else {
Sujith2660b812009-02-09 13:27:26 +0530553 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530554 ar9280Modes_original_tx_gain_9280_2,
555 ARRAY_SIZE(ar9280Modes_original_tx_gain_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 int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700560{
561 int ecode;
562
Sujithd8baa932009-03-30 15:28:25 +0530563 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700564 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700565
566 ecode = ath9k_hw_rf_claim(ah);
567 if (ecode != 0)
568 return ecode;
569
570 ecode = ath9k_hw_eeprom_attach(ah);
571 if (ecode != 0)
572 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530573
574 DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
575 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
576
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700577 ecode = ath9k_hw_rfattach(ah);
578 if (ecode != 0)
579 return ecode;
580
581 if (!AR_SREV_9100(ah)) {
582 ath9k_hw_ani_setup(ah);
583 ath9k_hw_ani_attach(ah);
584 }
Sujithf1dc5602008-10-29 10:16:30 +0530585
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 return 0;
587}
588
Sujithcbe61d82009-02-09 13:27:12 +0530589static struct ath_hw *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
590 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591{
Sujithcbe61d82009-02-09 13:27:12 +0530592 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 int ecode;
Sujithf6688cd2008-12-07 21:43:10 +0530594 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595
Sujithcbe61d82009-02-09 13:27:12 +0530596 ah = ath9k_hw_newstate(devid, sc, status);
597 if (ah == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598 return NULL;
599
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600 ath9k_hw_set_defaults(ah);
601
Sujith2660b812009-02-09 13:27:26 +0530602 if (ah->config.intr_mitigation != 0)
603 ah->intr_mitigation = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700604
605 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithd8baa932009-03-30 15:28:25 +0530606 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607 ecode = -EIO;
608 goto bad;
609 }
610
611 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithd8baa932009-03-30 15:28:25 +0530612 DPRINTF(sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613 ecode = -EIO;
614 goto bad;
615 }
616
Sujith2660b812009-02-09 13:27:26 +0530617 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
David S. Miller2d6a5e92009-03-17 15:01:30 -0700618 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
619 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
Sujith2660b812009-02-09 13:27:26 +0530620 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 SER_REG_MODE_ON;
622 } else {
Sujith2660b812009-02-09 13:27:26 +0530623 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700624 SER_REG_MODE_OFF;
625 }
626 }
Sujithf1dc5602008-10-29 10:16:30 +0530627
Sujithcbe61d82009-02-09 13:27:12 +0530628 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530629 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630
Sujithd535a422009-02-09 13:27:06 +0530631 if ((ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCI) &&
632 (ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCIE) &&
633 (ah->hw_version.macVersion != AR_SREV_VERSION_9160) &&
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530634 (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) && (!AR_SREV_9285(ah))) {
Sujithd8baa932009-03-30 15:28:25 +0530635 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530636 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530637 "this driver\n", ah->hw_version.macVersion,
638 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 ecode = -EOPNOTSUPP;
640 goto bad;
641 }
642
643 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530644 ah->iq_caldata.calData = &iq_cal_multi_sample;
645 ah->supp_cals = IQ_MISMATCH_CAL;
646 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647 }
Sujithd535a422009-02-09 13:27:06 +0530648 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649
650 if (AR_SREV_9160_10_OR_LATER(ah)) {
651 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530652 ah->iq_caldata.calData = &iq_cal_single_sample;
653 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530655 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530657 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 &adc_init_dc_cal;
659 } else {
Sujith2660b812009-02-09 13:27:26 +0530660 ah->iq_caldata.calData = &iq_cal_multi_sample;
661 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530663 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700664 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530665 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700666 &adc_init_dc_cal;
667 }
Sujith2660b812009-02-09 13:27:26 +0530668 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700669 }
670
Sujith9c81e8b2009-03-09 09:31:49 +0530671 ah->ani_function = ATH9K_ANI_ALL;
672 if (AR_SREV_9280_10_OR_LATER(ah))
673 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700674
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530675 if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530676
Sujith2660b812009-02-09 13:27:26 +0530677 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530678 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530679 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530680 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
681
Sujith2660b812009-02-09 13:27:26 +0530682 if (ah->config.pcie_clock_req) {
683 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530684 ar9285PciePhy_clkreq_off_L1_9285_1_2,
685 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
686 } else {
Sujith2660b812009-02-09 13:27:26 +0530687 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530688 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
689 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
690 2);
691 }
692 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530694 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530695 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530696 ARRAY_SIZE(ar9285Common_9285), 2);
697
Sujith2660b812009-02-09 13:27:26 +0530698 if (ah->config.pcie_clock_req) {
699 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530700 ar9285PciePhy_clkreq_off_L1_9285,
701 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
702 } else {
Sujith2660b812009-02-09 13:27:26 +0530703 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530704 ar9285PciePhy_clkreq_always_on_L1_9285,
705 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
706 }
707 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530708 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530710 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 ARRAY_SIZE(ar9280Common_9280_2), 2);
712
Sujith2660b812009-02-09 13:27:26 +0530713 if (ah->config.pcie_clock_req) {
714 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530715 ar9280PciePhy_clkreq_off_L1_9280,
716 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717 } else {
Sujith2660b812009-02-09 13:27:26 +0530718 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530719 ar9280PciePhy_clkreq_always_on_L1_9280,
720 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 }
Sujith2660b812009-02-09 13:27:26 +0530722 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530724 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530726 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530728 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 ARRAY_SIZE(ar9280Common_9280), 2);
730 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530733 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700734 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530735 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530737 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700738 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530741 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530749 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750 ARRAY_SIZE(ar5416Bank7_9160), 2);
751 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530752 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753 ar5416Addac_91601_1,
754 ARRAY_SIZE(ar5416Addac_91601_1), 2);
755 } else {
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 ARRAY_SIZE(ar5416Addac_9160), 2);
758 }
759 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530764 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530780 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 ARRAY_SIZE(ar5416Addac_9100), 2);
782 } else {
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530787 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700788 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530789 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530791 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700792 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530793 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530795 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530797 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530799 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530801 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530803 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 ARRAY_SIZE(ar5416Addac), 2);
805 }
806
Sujith2660b812009-02-09 13:27:26 +0530807 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 ath9k_hw_configpcipowersave(ah, 0);
809 else
Sujithf1dc5602008-10-29 10:16:30 +0530810 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700811
812 ecode = ath9k_hw_post_attach(ah);
813 if (ecode != 0)
814 goto bad;
815
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530816 if (AR_SREV_9285_12_OR_LATER(ah)) {
817 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
818
819 /* txgain table */
820 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
821 INIT_INI_ARRAY(&ah->iniModesTxGain,
822 ar9285Modes_high_power_tx_gain_9285_1_2,
823 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
824 } else {
825 INIT_INI_ARRAY(&ah->iniModesTxGain,
826 ar9285Modes_original_tx_gain_9285_1_2,
827 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
828 }
829
830 }
831
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530832 /* rxgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530833 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530834 ath9k_hw_init_rxgain_ini(ah);
835
836 /* txgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530837 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530838 ath9k_hw_init_txgain_ini(ah);
839
Sujith06d0f062009-02-12 10:06:45 +0530840 if (!ath9k_hw_fill_cap_info(ah)) {
841 DPRINTF(sc, ATH_DBG_RESET, "failed ath9k_hw_fill_cap_info\n");
842 ecode = -EINVAL;
843 goto bad;
844 }
845
846 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
847 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
848
849 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530850 for (i = 0; i < ah->iniModes.ia_rows; i++) {
851 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700852
Sujith2660b812009-02-09 13:27:26 +0530853 for (j = 1; j < ah->iniModes.ia_columns; j++) {
854 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700855
Sujith2660b812009-02-09 13:27:26 +0530856 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530857 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530858 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700859 reg, val);
860 }
861 }
862 }
Sujithf6688cd2008-12-07 21:43:10 +0530863
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864 ecode = ath9k_hw_init_macaddr(ah);
865 if (ecode != 0) {
Sujithd8baa932009-03-30 15:28:25 +0530866 DPRINTF(sc, ATH_DBG_FATAL,
867 "Failed to initialize MAC address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700868 goto bad;
869 }
870
871 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530872 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873 else
Sujith2660b812009-02-09 13:27:26 +0530874 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700875
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700877
878 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700879bad:
Sujithcbe61d82009-02-09 13:27:12 +0530880 if (ah)
881 ath9k_hw_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700882 if (status)
883 *status = ecode;
Sujithf1dc5602008-10-29 10:16:30 +0530884
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700885 return NULL;
886}
887
Sujithcbe61d82009-02-09 13:27:12 +0530888static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530889 struct ath9k_channel *chan)
890{
891 u32 synthDelay;
892
893 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530894 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530895 synthDelay = (4 * synthDelay) / 22;
896 else
897 synthDelay /= 10;
898
899 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
900
901 udelay(synthDelay + BASE_ACTIVATE_DELAY);
902}
903
Sujithcbe61d82009-02-09 13:27:12 +0530904static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530905{
906 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
907 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
908
909 REG_WRITE(ah, AR_QOS_NO_ACK,
910 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
911 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
912 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
913
914 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
915 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
916 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
917 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
918 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
919}
920
Sujithcbe61d82009-02-09 13:27:12 +0530921static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530922 struct ath9k_channel *chan)
923{
924 u32 pll;
925
926 if (AR_SREV_9100(ah)) {
927 if (chan && IS_CHAN_5GHZ(chan))
928 pll = 0x1450;
929 else
930 pll = 0x1458;
931 } else {
932 if (AR_SREV_9280_10_OR_LATER(ah)) {
933 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
934
935 if (chan && IS_CHAN_HALF_RATE(chan))
936 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
937 else if (chan && IS_CHAN_QUARTER_RATE(chan))
938 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
939
940 if (chan && IS_CHAN_5GHZ(chan)) {
941 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
942
943
944 if (AR_SREV_9280_20(ah)) {
945 if (((chan->channel % 20) == 0)
946 || ((chan->channel % 10) == 0))
947 pll = 0x2850;
948 else
949 pll = 0x142c;
950 }
951 } else {
952 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
953 }
954
955 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
956
957 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
958
959 if (chan && IS_CHAN_HALF_RATE(chan))
960 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
961 else if (chan && IS_CHAN_QUARTER_RATE(chan))
962 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
963
964 if (chan && IS_CHAN_5GHZ(chan))
965 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
966 else
967 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
968 } else {
969 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
970
971 if (chan && IS_CHAN_HALF_RATE(chan))
972 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
973 else if (chan && IS_CHAN_QUARTER_RATE(chan))
974 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
975
976 if (chan && IS_CHAN_5GHZ(chan))
977 pll |= SM(0xa, AR_RTC_PLL_DIV);
978 else
979 pll |= SM(0xb, AR_RTC_PLL_DIV);
980 }
981 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100982 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530983
984 udelay(RTC_PLL_SETTLE_DELAY);
985
986 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
987}
988
Sujithcbe61d82009-02-09 13:27:12 +0530989static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530990{
Sujithf1dc5602008-10-29 10:16:30 +0530991 int rx_chainmask, tx_chainmask;
992
Sujith2660b812009-02-09 13:27:26 +0530993 rx_chainmask = ah->rxchainmask;
994 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +0530995
996 switch (rx_chainmask) {
997 case 0x5:
998 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
999 AR_PHY_SWAP_ALT_CHAIN);
1000 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301001 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301002 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1003 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1004 break;
1005 }
1006 case 0x1:
1007 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301008 case 0x7:
1009 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1010 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1011 break;
1012 default:
1013 break;
1014 }
1015
1016 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1017 if (tx_chainmask == 0x5) {
1018 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1019 AR_PHY_SWAP_ALT_CHAIN);
1020 }
1021 if (AR_SREV_9100(ah))
1022 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1023 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1024}
1025
Sujithcbe61d82009-02-09 13:27:12 +05301026static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001027 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301028{
Sujith2660b812009-02-09 13:27:26 +05301029 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301030 AR_IMR_TXURN |
1031 AR_IMR_RXERR |
1032 AR_IMR_RXORN |
1033 AR_IMR_BCNMISC;
1034
Sujith2660b812009-02-09 13:27:26 +05301035 if (ah->intr_mitigation)
1036 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301037 else
Sujith2660b812009-02-09 13:27:26 +05301038 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301039
Sujith2660b812009-02-09 13:27:26 +05301040 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301041
Colin McCabed97809d2008-12-01 13:38:55 -08001042 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301043 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301044
Sujith2660b812009-02-09 13:27:26 +05301045 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301046 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1047
1048 if (!AR_SREV_9100(ah)) {
1049 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1050 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1051 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1052 }
1053}
1054
Sujithcbe61d82009-02-09 13:27:12 +05301055static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301056{
Sujithf1dc5602008-10-29 10:16:30 +05301057 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd4632008-11-28 22:18:05 +05301058 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301059 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301060 return false;
1061 } else {
1062 REG_RMW_FIELD(ah, AR_TIME_OUT,
1063 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301064 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301065 return true;
1066 }
1067}
1068
Sujithcbe61d82009-02-09 13:27:12 +05301069static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301070{
Sujithf1dc5602008-10-29 10:16:30 +05301071 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd4632008-11-28 22:18:05 +05301072 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301073 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301074 return false;
1075 } else {
1076 REG_RMW_FIELD(ah, AR_TIME_OUT,
1077 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301078 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301079 return true;
1080 }
1081}
1082
Sujithcbe61d82009-02-09 13:27:12 +05301083static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301084{
Sujithf1dc5602008-10-29 10:16:30 +05301085 if (tu > 0xFFFF) {
1086 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301087 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301088 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301089 return false;
1090 } else {
1091 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301092 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301093 return true;
1094 }
1095}
1096
Sujithcbe61d82009-02-09 13:27:12 +05301097static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301098{
Sujith2660b812009-02-09 13:27:26 +05301099 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1100 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301101
Sujith2660b812009-02-09 13:27:26 +05301102 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301103 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301104 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1105 if (ah->slottime != (u32) -1)
1106 ath9k_hw_setslottime(ah, ah->slottime);
1107 if (ah->acktimeout != (u32) -1)
1108 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1109 if (ah->ctstimeout != (u32) -1)
1110 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1111 if (ah->globaltxtimeout != (u32) -1)
1112 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301113}
1114
1115const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1116{
1117 return vendorid == ATHEROS_VENDOR_ID ?
1118 ath9k_hw_devname(devid) : NULL;
1119}
1120
Sujithcbe61d82009-02-09 13:27:12 +05301121void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001122{
1123 if (!AR_SREV_9100(ah))
1124 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001125
Sujithf1dc5602008-10-29 10:16:30 +05301126 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001127 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1128 kfree(ah);
1129}
1130
Sujithcbe61d82009-02-09 13:27:12 +05301131struct ath_hw *ath9k_hw_attach(u16 devid, struct ath_softc *sc, int *error)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001132{
Sujithcbe61d82009-02-09 13:27:12 +05301133 struct ath_hw *ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001134
Sujithf1dc5602008-10-29 10:16:30 +05301135 switch (devid) {
1136 case AR5416_DEVID_PCI:
1137 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001138 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301139 case AR9160_DEVID_PCI:
1140 case AR9280_DEVID_PCI:
1141 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301142 case AR9285_DEVID_PCIE:
Sujithcbe61d82009-02-09 13:27:12 +05301143 ah = ath9k_hw_do_attach(devid, sc, error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001144 break;
Sujithf1dc5602008-10-29 10:16:30 +05301145 default:
Sujithf1dc5602008-10-29 10:16:30 +05301146 *error = -ENXIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001147 break;
1148 }
1149
Sujithf1dc5602008-10-29 10:16:30 +05301150 return ah;
1151}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001152
Sujithf1dc5602008-10-29 10:16:30 +05301153/*******/
1154/* INI */
1155/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001156
Sujithcbe61d82009-02-09 13:27:12 +05301157static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301158 struct ath9k_channel *chan)
1159{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301160 /*
1161 * Set the RX_ABORT and RX_DIS and clear if off only after
1162 * RXE is set for MAC. This prevents frames with corrupted
1163 * descriptor status.
1164 */
1165 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1166
1167
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001168 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301169 AR_SREV_9280_10_OR_LATER(ah))
1170 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001171
Sujithf1dc5602008-10-29 10:16:30 +05301172 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1173}
1174
Sujithcbe61d82009-02-09 13:27:12 +05301175static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301176 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301177 u32 reg, u32 value)
1178{
1179 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1180
Sujithd535a422009-02-09 13:27:06 +05301181 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301182 case AR9280_DEVID_PCI:
1183 if (reg == 0x7894) {
Sujithd8baa932009-03-30 15:28:25 +05301184 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301185 "ini VAL: %x EEPROM: %x\n", value,
1186 (pBase->version & 0xff));
1187
1188 if ((pBase->version & 0xff) > 0x0a) {
Sujithd8baa932009-03-30 15:28:25 +05301189 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301190 "PWDCLKIND: %d\n",
1191 pBase->pwdclkind);
1192 value &= ~AR_AN_TOP2_PWDCLKIND;
1193 value |= AR_AN_TOP2_PWDCLKIND &
1194 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1195 } else {
Sujithd8baa932009-03-30 15:28:25 +05301196 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301197 "PWDCLKIND Earlier Rev\n");
1198 }
1199
Sujithd8baa932009-03-30 15:28:25 +05301200 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301201 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001202 }
Sujithf1dc5602008-10-29 10:16:30 +05301203 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204 }
1205
Sujithf1dc5602008-10-29 10:16:30 +05301206 return value;
1207}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208
Sujithcbe61d82009-02-09 13:27:12 +05301209static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301210 struct ar5416_eeprom_def *pEepData,
1211 u32 reg, u32 value)
1212{
Sujith2660b812009-02-09 13:27:26 +05301213 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301214 return value;
1215 else
1216 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1217}
1218
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301219static void ath9k_olc_init(struct ath_hw *ah)
1220{
1221 u32 i;
1222
1223 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1224 ah->originalGain[i] =
1225 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1226 AR_PHY_TX_GAIN);
1227 ah->PDADCdelta = 0;
1228}
1229
Sujithcbe61d82009-02-09 13:27:12 +05301230static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301231 struct ath9k_channel *chan,
1232 enum ath9k_ht_macmode macmode)
1233{
1234 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001235 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301236 u32 modesIndex, freqIndex;
1237 int status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001238
Sujithf1dc5602008-10-29 10:16:30 +05301239 switch (chan->chanmode) {
1240 case CHANNEL_A:
1241 case CHANNEL_A_HT20:
1242 modesIndex = 1;
1243 freqIndex = 1;
1244 break;
1245 case CHANNEL_A_HT40PLUS:
1246 case CHANNEL_A_HT40MINUS:
1247 modesIndex = 2;
1248 freqIndex = 1;
1249 break;
1250 case CHANNEL_G:
1251 case CHANNEL_G_HT20:
1252 case CHANNEL_B:
1253 modesIndex = 4;
1254 freqIndex = 2;
1255 break;
1256 case CHANNEL_G_HT40PLUS:
1257 case CHANNEL_G_HT40MINUS:
1258 modesIndex = 3;
1259 freqIndex = 2;
1260 break;
1261
1262 default:
1263 return -EINVAL;
1264 }
1265
1266 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301267 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301268 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301269
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001270 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301271 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301272 } else {
1273 struct ar5416IniArray temp;
1274 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301275 sizeof(u32) * ah->iniAddac.ia_rows *
1276 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301277
Sujith2660b812009-02-09 13:27:26 +05301278 memcpy(ah->addac5416_21,
1279 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301280
Sujith2660b812009-02-09 13:27:26 +05301281 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301282
Sujith2660b812009-02-09 13:27:26 +05301283 temp.ia_array = ah->addac5416_21;
1284 temp.ia_columns = ah->iniAddac.ia_columns;
1285 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301286 REG_WRITE_ARRAY(&temp, 1, regWrites);
1287 }
1288
1289 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1290
Sujith2660b812009-02-09 13:27:26 +05301291 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1292 u32 reg = INI_RA(&ah->iniModes, i, 0);
1293 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301294
Sujithf1dc5602008-10-29 10:16:30 +05301295 REG_WRITE(ah, reg, val);
1296
1297 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301298 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301299 udelay(100);
1300 }
1301
1302 DO_DELAY(regWrites);
1303 }
1304
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301305 if (AR_SREV_9280(ah))
Sujith2660b812009-02-09 13:27:26 +05301306 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301307
Senthil Balasubramanian4e845162009-03-06 11:24:10 +05301308 if (AR_SREV_9280(ah) || (AR_SREV_9285(ah) &&
1309 AR_SREV_9285_12_OR_LATER(ah)))
Sujith2660b812009-02-09 13:27:26 +05301310 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301311
Sujith2660b812009-02-09 13:27:26 +05301312 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1313 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1314 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301315
1316 REG_WRITE(ah, reg, val);
1317
1318 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301319 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301320 udelay(100);
1321 }
1322
1323 DO_DELAY(regWrites);
1324 }
1325
1326 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1327
1328 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301329 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301330 regWrites);
1331 }
1332
1333 ath9k_hw_override_ini(ah, chan);
1334 ath9k_hw_set_regs(ah, chan, macmode);
1335 ath9k_hw_init_chain_masks(ah);
1336
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301337 if (OLC_FOR_AR9280_20_LATER)
1338 ath9k_olc_init(ah);
1339
Sujithf74df6f2009-02-09 13:27:24 +05301340 status = ah->eep_ops->set_txpower(ah, chan,
1341 ath9k_regd_get_ctl(ah, chan),
1342 channel->max_antenna_gain * 2,
1343 channel->max_power * 2,
1344 min((u32) MAX_RATE_POWER,
1345 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301346 if (status != 0) {
Sujithd8baa932009-03-30 15:28:25 +05301347 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1348 "Error initializing transmit power\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001349 return -EIO;
1350 }
1351
Sujithf1dc5602008-10-29 10:16:30 +05301352 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Sujithd8baa932009-03-30 15:28:25 +05301353 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301354 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001355 return -EIO;
1356 }
1357
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001358 return 0;
1359}
1360
Sujithf1dc5602008-10-29 10:16:30 +05301361/****************************************/
1362/* Reset and Channel Switching Routines */
1363/****************************************/
1364
Sujithcbe61d82009-02-09 13:27:12 +05301365static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301366{
1367 u32 rfMode = 0;
1368
1369 if (chan == NULL)
1370 return;
1371
1372 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1373 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1374
1375 if (!AR_SREV_9280_10_OR_LATER(ah))
1376 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1377 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1378
1379 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1380 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1381
1382 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1383}
1384
Sujithcbe61d82009-02-09 13:27:12 +05301385static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301386{
1387 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1388}
1389
Sujithcbe61d82009-02-09 13:27:12 +05301390static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301391{
1392 u32 regval;
1393
1394 regval = REG_READ(ah, AR_AHB_MODE);
1395 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1396
1397 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1398 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1399
Sujith2660b812009-02-09 13:27:26 +05301400 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301401
1402 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1403 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1404
1405 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1406
1407 if (AR_SREV_9285(ah)) {
1408 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1409 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1410 } else {
1411 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1412 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1413 }
1414}
1415
Sujithcbe61d82009-02-09 13:27:12 +05301416static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301417{
1418 u32 val;
1419
1420 val = REG_READ(ah, AR_STA_ID1);
1421 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1422 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001423 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301424 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1425 | AR_STA_ID1_KSRCH_MODE);
1426 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1427 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001428 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001429 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301430 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1431 | AR_STA_ID1_KSRCH_MODE);
1432 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1433 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001434 case NL80211_IFTYPE_STATION:
1435 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301436 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1437 break;
1438 }
1439}
1440
Sujithcbe61d82009-02-09 13:27:12 +05301441static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001442 u32 coef_scaled,
1443 u32 *coef_mantissa,
1444 u32 *coef_exponent)
1445{
1446 u32 coef_exp, coef_man;
1447
1448 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1449 if ((coef_scaled >> coef_exp) & 0x1)
1450 break;
1451
1452 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1453
1454 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1455
1456 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1457 *coef_exponent = coef_exp - 16;
1458}
1459
Sujithcbe61d82009-02-09 13:27:12 +05301460static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301461 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001462{
1463 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1464 u32 clockMhzScaled = 0x64000000;
1465 struct chan_centers centers;
1466
1467 if (IS_CHAN_HALF_RATE(chan))
1468 clockMhzScaled = clockMhzScaled >> 1;
1469 else if (IS_CHAN_QUARTER_RATE(chan))
1470 clockMhzScaled = clockMhzScaled >> 2;
1471
1472 ath9k_hw_get_channel_centers(ah, chan, &centers);
1473 coef_scaled = clockMhzScaled / centers.synth_center;
1474
1475 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1476 &ds_coef_exp);
1477
1478 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1479 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1480 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1481 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1482
1483 coef_scaled = (9 * coef_scaled) / 10;
1484
1485 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1486 &ds_coef_exp);
1487
1488 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1489 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1490 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1491 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1492}
1493
Sujithcbe61d82009-02-09 13:27:12 +05301494static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301495{
1496 u32 rst_flags;
1497 u32 tmpReg;
1498
Sujith70768492009-02-16 13:23:12 +05301499 if (AR_SREV_9100(ah)) {
1500 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1501 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1502 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1503 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1504 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1505 }
1506
Sujithf1dc5602008-10-29 10:16:30 +05301507 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1508 AR_RTC_FORCE_WAKE_ON_INT);
1509
1510 if (AR_SREV_9100(ah)) {
1511 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1512 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1513 } else {
1514 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1515 if (tmpReg &
1516 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1517 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1518 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1519 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1520 } else {
1521 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1522 }
1523
1524 rst_flags = AR_RTC_RC_MAC_WARM;
1525 if (type == ATH9K_RESET_COLD)
1526 rst_flags |= AR_RTC_RC_MAC_COLD;
1527 }
1528
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001529 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301530 udelay(50);
1531
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001532 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301533 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301534 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301535 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301536 return false;
1537 }
1538
1539 if (!AR_SREV_9100(ah))
1540 REG_WRITE(ah, AR_RC, 0);
1541
1542 ath9k_hw_init_pll(ah, NULL);
1543
1544 if (AR_SREV_9100(ah))
1545 udelay(50);
1546
1547 return true;
1548}
1549
Sujithcbe61d82009-02-09 13:27:12 +05301550static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301551{
1552 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1553 AR_RTC_FORCE_WAKE_ON_INT);
1554
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001555 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301556 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001557 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301558
1559 if (!ath9k_hw_wait(ah,
1560 AR_RTC_STATUS,
1561 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301562 AR_RTC_STATUS_ON,
1563 AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301564 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301565 return false;
1566 }
1567
1568 ath9k_hw_read_revisions(ah);
1569
1570 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1571}
1572
Sujithcbe61d82009-02-09 13:27:12 +05301573static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301574{
1575 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1576 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1577
1578 switch (type) {
1579 case ATH9K_RESET_POWER_ON:
1580 return ath9k_hw_set_reset_power_on(ah);
1581 break;
1582 case ATH9K_RESET_WARM:
1583 case ATH9K_RESET_COLD:
1584 return ath9k_hw_set_reset(ah, type);
1585 break;
1586 default:
1587 return false;
1588 }
1589}
1590
Sujithcbe61d82009-02-09 13:27:12 +05301591static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301592 enum ath9k_ht_macmode macmode)
1593{
1594 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301595 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301596
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301597 if (AR_SREV_9285_10_OR_LATER(ah))
1598 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1599 AR_PHY_FC_ENABLE_DAC_FIFO);
1600
Sujithf1dc5602008-10-29 10:16:30 +05301601 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301602 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301603
1604 if (IS_CHAN_HT40(chan)) {
1605 phymode |= AR_PHY_FC_DYN2040_EN;
1606
1607 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1608 (chan->chanmode == CHANNEL_G_HT40PLUS))
1609 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1610
Sujith2660b812009-02-09 13:27:26 +05301611 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301612 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1613 }
1614 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1615
1616 ath9k_hw_set11nmac2040(ah, macmode);
1617
1618 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1619 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1620}
1621
Sujithcbe61d82009-02-09 13:27:12 +05301622static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301623 struct ath9k_channel *chan)
1624{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301625 if (OLC_FOR_AR9280_20_LATER) {
1626 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1627 return false;
1628 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301629 return false;
1630
1631 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1632 return false;
1633
Sujith2660b812009-02-09 13:27:26 +05301634 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301635 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301636 ath9k_hw_set_rfmode(ah, chan);
1637
1638 return true;
1639}
1640
Sujithcbe61d82009-02-09 13:27:12 +05301641static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301642 struct ath9k_channel *chan,
1643 enum ath9k_ht_macmode macmode)
1644{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001645 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301646 u32 synthDelay, qnum;
1647
1648 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1649 if (ath9k_hw_numtxpending(ah, qnum)) {
1650 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301651 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301652 return false;
1653 }
1654 }
1655
1656 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1657 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301658 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujithd8baa932009-03-30 15:28:25 +05301659 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05301660 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301661 return false;
1662 }
1663
1664 ath9k_hw_set_regs(ah, chan, macmode);
1665
1666 if (AR_SREV_9280_10_OR_LATER(ah)) {
1667 if (!(ath9k_hw_ar9280_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301668 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1669 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301670 return false;
1671 }
1672 } else {
1673 if (!(ath9k_hw_set_channel(ah, chan))) {
Sujithd8baa932009-03-30 15:28:25 +05301674 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1675 "Failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301676 return false;
1677 }
1678 }
1679
Sujithf74df6f2009-02-09 13:27:24 +05301680 if (ah->eep_ops->set_txpower(ah, chan,
1681 ath9k_regd_get_ctl(ah, chan),
1682 channel->max_antenna_gain * 2,
1683 channel->max_power * 2,
1684 min((u32) MAX_RATE_POWER,
1685 (u32) ah->regulatory.power_limit)) != 0) {
Sujithf1dc5602008-10-29 10:16:30 +05301686 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujithd8baa932009-03-30 15:28:25 +05301687 "Error initializing transmit power\n");
Sujithf1dc5602008-10-29 10:16:30 +05301688 return false;
1689 }
1690
1691 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301692 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301693 synthDelay = (4 * synthDelay) / 22;
1694 else
1695 synthDelay /= 10;
1696
1697 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1698
1699 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1700
1701 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1702 ath9k_hw_set_delta_slope(ah, chan);
1703
1704 if (AR_SREV_9280_10_OR_LATER(ah))
1705 ath9k_hw_9280_spur_mitigate(ah, chan);
1706 else
1707 ath9k_hw_spur_mitigate(ah, chan);
1708
1709 if (!chan->oneTimeCalsDone)
1710 chan->oneTimeCalsDone = true;
1711
1712 return true;
1713}
1714
Sujithcbe61d82009-02-09 13:27:12 +05301715static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001716{
1717 int bb_spur = AR_NO_SPUR;
1718 int freq;
1719 int bin, cur_bin;
1720 int bb_spur_off, spur_subchannel_sd;
1721 int spur_freq_sd;
1722 int spur_delta_phase;
1723 int denominator;
1724 int upper, lower, cur_vit_mask;
1725 int tmp, newVal;
1726 int i;
1727 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1728 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1729 };
1730 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1731 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1732 };
1733 int inc[4] = { 0, 100, 0, 0 };
1734 struct chan_centers centers;
1735
1736 int8_t mask_m[123];
1737 int8_t mask_p[123];
1738 int8_t mask_amt;
1739 int tmp_mask;
1740 int cur_bb_spur;
1741 bool is2GHz = IS_CHAN_2GHZ(chan);
1742
1743 memset(&mask_m, 0, sizeof(int8_t) * 123);
1744 memset(&mask_p, 0, sizeof(int8_t) * 123);
1745
1746 ath9k_hw_get_channel_centers(ah, chan, &centers);
1747 freq = centers.synth_center;
1748
Sujith2660b812009-02-09 13:27:26 +05301749 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001750 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301751 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001752
1753 if (is2GHz)
1754 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1755 else
1756 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1757
1758 if (AR_NO_SPUR == cur_bb_spur)
1759 break;
1760 cur_bb_spur = cur_bb_spur - freq;
1761
1762 if (IS_CHAN_HT40(chan)) {
1763 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1764 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1765 bb_spur = cur_bb_spur;
1766 break;
1767 }
1768 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1769 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1770 bb_spur = cur_bb_spur;
1771 break;
1772 }
1773 }
1774
1775 if (AR_NO_SPUR == bb_spur) {
1776 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1777 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1778 return;
1779 } else {
1780 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1781 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1782 }
1783
1784 bin = bb_spur * 320;
1785
1786 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1787
1788 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1789 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1790 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1791 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1792 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1793
1794 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1795 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1796 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1797 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1798 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1799 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1800
1801 if (IS_CHAN_HT40(chan)) {
1802 if (bb_spur < 0) {
1803 spur_subchannel_sd = 1;
1804 bb_spur_off = bb_spur + 10;
1805 } else {
1806 spur_subchannel_sd = 0;
1807 bb_spur_off = bb_spur - 10;
1808 }
1809 } else {
1810 spur_subchannel_sd = 0;
1811 bb_spur_off = bb_spur;
1812 }
1813
1814 if (IS_CHAN_HT40(chan))
1815 spur_delta_phase =
1816 ((bb_spur * 262144) /
1817 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1818 else
1819 spur_delta_phase =
1820 ((bb_spur * 524288) /
1821 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1822
1823 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1824 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1825
1826 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1827 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1828 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1829 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1830
1831 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1832 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1833
1834 cur_bin = -6000;
1835 upper = bin + 100;
1836 lower = bin - 100;
1837
1838 for (i = 0; i < 4; i++) {
1839 int pilot_mask = 0;
1840 int chan_mask = 0;
1841 int bp = 0;
1842 for (bp = 0; bp < 30; bp++) {
1843 if ((cur_bin > lower) && (cur_bin < upper)) {
1844 pilot_mask = pilot_mask | 0x1 << bp;
1845 chan_mask = chan_mask | 0x1 << bp;
1846 }
1847 cur_bin += 100;
1848 }
1849 cur_bin += inc[i];
1850 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1851 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1852 }
1853
1854 cur_vit_mask = 6100;
1855 upper = bin + 120;
1856 lower = bin - 120;
1857
1858 for (i = 0; i < 123; i++) {
1859 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001860
1861 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001862 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001863
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001864 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865 mask_amt = 1;
1866 else
1867 mask_amt = 0;
1868 if (cur_vit_mask < 0)
1869 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1870 else
1871 mask_p[cur_vit_mask / 100] = mask_amt;
1872 }
1873 cur_vit_mask -= 100;
1874 }
1875
1876 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1877 | (mask_m[48] << 26) | (mask_m[49] << 24)
1878 | (mask_m[50] << 22) | (mask_m[51] << 20)
1879 | (mask_m[52] << 18) | (mask_m[53] << 16)
1880 | (mask_m[54] << 14) | (mask_m[55] << 12)
1881 | (mask_m[56] << 10) | (mask_m[57] << 8)
1882 | (mask_m[58] << 6) | (mask_m[59] << 4)
1883 | (mask_m[60] << 2) | (mask_m[61] << 0);
1884 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1885 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1886
1887 tmp_mask = (mask_m[31] << 28)
1888 | (mask_m[32] << 26) | (mask_m[33] << 24)
1889 | (mask_m[34] << 22) | (mask_m[35] << 20)
1890 | (mask_m[36] << 18) | (mask_m[37] << 16)
1891 | (mask_m[48] << 14) | (mask_m[39] << 12)
1892 | (mask_m[40] << 10) | (mask_m[41] << 8)
1893 | (mask_m[42] << 6) | (mask_m[43] << 4)
1894 | (mask_m[44] << 2) | (mask_m[45] << 0);
1895 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1896 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1897
1898 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1899 | (mask_m[18] << 26) | (mask_m[18] << 24)
1900 | (mask_m[20] << 22) | (mask_m[20] << 20)
1901 | (mask_m[22] << 18) | (mask_m[22] << 16)
1902 | (mask_m[24] << 14) | (mask_m[24] << 12)
1903 | (mask_m[25] << 10) | (mask_m[26] << 8)
1904 | (mask_m[27] << 6) | (mask_m[28] << 4)
1905 | (mask_m[29] << 2) | (mask_m[30] << 0);
1906 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1907 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1908
1909 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1910 | (mask_m[2] << 26) | (mask_m[3] << 24)
1911 | (mask_m[4] << 22) | (mask_m[5] << 20)
1912 | (mask_m[6] << 18) | (mask_m[7] << 16)
1913 | (mask_m[8] << 14) | (mask_m[9] << 12)
1914 | (mask_m[10] << 10) | (mask_m[11] << 8)
1915 | (mask_m[12] << 6) | (mask_m[13] << 4)
1916 | (mask_m[14] << 2) | (mask_m[15] << 0);
1917 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1918 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1919
1920 tmp_mask = (mask_p[15] << 28)
1921 | (mask_p[14] << 26) | (mask_p[13] << 24)
1922 | (mask_p[12] << 22) | (mask_p[11] << 20)
1923 | (mask_p[10] << 18) | (mask_p[9] << 16)
1924 | (mask_p[8] << 14) | (mask_p[7] << 12)
1925 | (mask_p[6] << 10) | (mask_p[5] << 8)
1926 | (mask_p[4] << 6) | (mask_p[3] << 4)
1927 | (mask_p[2] << 2) | (mask_p[1] << 0);
1928 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1929 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1930
1931 tmp_mask = (mask_p[30] << 28)
1932 | (mask_p[29] << 26) | (mask_p[28] << 24)
1933 | (mask_p[27] << 22) | (mask_p[26] << 20)
1934 | (mask_p[25] << 18) | (mask_p[24] << 16)
1935 | (mask_p[23] << 14) | (mask_p[22] << 12)
1936 | (mask_p[21] << 10) | (mask_p[20] << 8)
1937 | (mask_p[19] << 6) | (mask_p[18] << 4)
1938 | (mask_p[17] << 2) | (mask_p[16] << 0);
1939 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1940 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1941
1942 tmp_mask = (mask_p[45] << 28)
1943 | (mask_p[44] << 26) | (mask_p[43] << 24)
1944 | (mask_p[42] << 22) | (mask_p[41] << 20)
1945 | (mask_p[40] << 18) | (mask_p[39] << 16)
1946 | (mask_p[38] << 14) | (mask_p[37] << 12)
1947 | (mask_p[36] << 10) | (mask_p[35] << 8)
1948 | (mask_p[34] << 6) | (mask_p[33] << 4)
1949 | (mask_p[32] << 2) | (mask_p[31] << 0);
1950 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
1951 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
1952
1953 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
1954 | (mask_p[59] << 26) | (mask_p[58] << 24)
1955 | (mask_p[57] << 22) | (mask_p[56] << 20)
1956 | (mask_p[55] << 18) | (mask_p[54] << 16)
1957 | (mask_p[53] << 14) | (mask_p[52] << 12)
1958 | (mask_p[51] << 10) | (mask_p[50] << 8)
1959 | (mask_p[49] << 6) | (mask_p[48] << 4)
1960 | (mask_p[47] << 2) | (mask_p[46] << 0);
1961 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
1962 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
1963}
1964
Sujithcbe61d82009-02-09 13:27:12 +05301965static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001966{
1967 int bb_spur = AR_NO_SPUR;
1968 int bin, cur_bin;
1969 int spur_freq_sd;
1970 int spur_delta_phase;
1971 int denominator;
1972 int upper, lower, cur_vit_mask;
1973 int tmp, new;
1974 int i;
1975 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1976 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1977 };
1978 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1979 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1980 };
1981 int inc[4] = { 0, 100, 0, 0 };
1982
1983 int8_t mask_m[123];
1984 int8_t mask_p[123];
1985 int8_t mask_amt;
1986 int tmp_mask;
1987 int cur_bb_spur;
1988 bool is2GHz = IS_CHAN_2GHZ(chan);
1989
1990 memset(&mask_m, 0, sizeof(int8_t) * 123);
1991 memset(&mask_p, 0, sizeof(int8_t) * 123);
1992
1993 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301994 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995 if (AR_NO_SPUR == cur_bb_spur)
1996 break;
1997 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
1998 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
1999 bb_spur = cur_bb_spur;
2000 break;
2001 }
2002 }
2003
2004 if (AR_NO_SPUR == bb_spur)
2005 return;
2006
2007 bin = bb_spur * 32;
2008
2009 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2010 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2011 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2012 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2013 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2014
2015 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2016
2017 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2018 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2019 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2020 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2021 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2022 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2023
2024 spur_delta_phase = ((bb_spur * 524288) / 100) &
2025 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2026
2027 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2028 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2029
2030 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2031 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2032 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2033 REG_WRITE(ah, AR_PHY_TIMING11, new);
2034
2035 cur_bin = -6000;
2036 upper = bin + 100;
2037 lower = bin - 100;
2038
2039 for (i = 0; i < 4; i++) {
2040 int pilot_mask = 0;
2041 int chan_mask = 0;
2042 int bp = 0;
2043 for (bp = 0; bp < 30; bp++) {
2044 if ((cur_bin > lower) && (cur_bin < upper)) {
2045 pilot_mask = pilot_mask | 0x1 << bp;
2046 chan_mask = chan_mask | 0x1 << bp;
2047 }
2048 cur_bin += 100;
2049 }
2050 cur_bin += inc[i];
2051 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2052 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2053 }
2054
2055 cur_vit_mask = 6100;
2056 upper = bin + 120;
2057 lower = bin - 120;
2058
2059 for (i = 0; i < 123; i++) {
2060 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002061
2062 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002063 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002064
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002065 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002066 mask_amt = 1;
2067 else
2068 mask_amt = 0;
2069 if (cur_vit_mask < 0)
2070 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2071 else
2072 mask_p[cur_vit_mask / 100] = mask_amt;
2073 }
2074 cur_vit_mask -= 100;
2075 }
2076
2077 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2078 | (mask_m[48] << 26) | (mask_m[49] << 24)
2079 | (mask_m[50] << 22) | (mask_m[51] << 20)
2080 | (mask_m[52] << 18) | (mask_m[53] << 16)
2081 | (mask_m[54] << 14) | (mask_m[55] << 12)
2082 | (mask_m[56] << 10) | (mask_m[57] << 8)
2083 | (mask_m[58] << 6) | (mask_m[59] << 4)
2084 | (mask_m[60] << 2) | (mask_m[61] << 0);
2085 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2086 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2087
2088 tmp_mask = (mask_m[31] << 28)
2089 | (mask_m[32] << 26) | (mask_m[33] << 24)
2090 | (mask_m[34] << 22) | (mask_m[35] << 20)
2091 | (mask_m[36] << 18) | (mask_m[37] << 16)
2092 | (mask_m[48] << 14) | (mask_m[39] << 12)
2093 | (mask_m[40] << 10) | (mask_m[41] << 8)
2094 | (mask_m[42] << 6) | (mask_m[43] << 4)
2095 | (mask_m[44] << 2) | (mask_m[45] << 0);
2096 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2097 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2098
2099 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2100 | (mask_m[18] << 26) | (mask_m[18] << 24)
2101 | (mask_m[20] << 22) | (mask_m[20] << 20)
2102 | (mask_m[22] << 18) | (mask_m[22] << 16)
2103 | (mask_m[24] << 14) | (mask_m[24] << 12)
2104 | (mask_m[25] << 10) | (mask_m[26] << 8)
2105 | (mask_m[27] << 6) | (mask_m[28] << 4)
2106 | (mask_m[29] << 2) | (mask_m[30] << 0);
2107 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2108 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2109
2110 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2111 | (mask_m[2] << 26) | (mask_m[3] << 24)
2112 | (mask_m[4] << 22) | (mask_m[5] << 20)
2113 | (mask_m[6] << 18) | (mask_m[7] << 16)
2114 | (mask_m[8] << 14) | (mask_m[9] << 12)
2115 | (mask_m[10] << 10) | (mask_m[11] << 8)
2116 | (mask_m[12] << 6) | (mask_m[13] << 4)
2117 | (mask_m[14] << 2) | (mask_m[15] << 0);
2118 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2119 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2120
2121 tmp_mask = (mask_p[15] << 28)
2122 | (mask_p[14] << 26) | (mask_p[13] << 24)
2123 | (mask_p[12] << 22) | (mask_p[11] << 20)
2124 | (mask_p[10] << 18) | (mask_p[9] << 16)
2125 | (mask_p[8] << 14) | (mask_p[7] << 12)
2126 | (mask_p[6] << 10) | (mask_p[5] << 8)
2127 | (mask_p[4] << 6) | (mask_p[3] << 4)
2128 | (mask_p[2] << 2) | (mask_p[1] << 0);
2129 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2130 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2131
2132 tmp_mask = (mask_p[30] << 28)
2133 | (mask_p[29] << 26) | (mask_p[28] << 24)
2134 | (mask_p[27] << 22) | (mask_p[26] << 20)
2135 | (mask_p[25] << 18) | (mask_p[24] << 16)
2136 | (mask_p[23] << 14) | (mask_p[22] << 12)
2137 | (mask_p[21] << 10) | (mask_p[20] << 8)
2138 | (mask_p[19] << 6) | (mask_p[18] << 4)
2139 | (mask_p[17] << 2) | (mask_p[16] << 0);
2140 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2141 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2142
2143 tmp_mask = (mask_p[45] << 28)
2144 | (mask_p[44] << 26) | (mask_p[43] << 24)
2145 | (mask_p[42] << 22) | (mask_p[41] << 20)
2146 | (mask_p[40] << 18) | (mask_p[39] << 16)
2147 | (mask_p[38] << 14) | (mask_p[37] << 12)
2148 | (mask_p[36] << 10) | (mask_p[35] << 8)
2149 | (mask_p[34] << 6) | (mask_p[33] << 4)
2150 | (mask_p[32] << 2) | (mask_p[31] << 0);
2151 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2152 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2153
2154 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2155 | (mask_p[59] << 26) | (mask_p[58] << 24)
2156 | (mask_p[57] << 22) | (mask_p[56] << 20)
2157 | (mask_p[55] << 18) | (mask_p[54] << 16)
2158 | (mask_p[53] << 14) | (mask_p[52] << 12)
2159 | (mask_p[51] << 10) | (mask_p[50] << 8)
2160 | (mask_p[49] << 6) | (mask_p[48] << 4)
2161 | (mask_p[47] << 2) | (mask_p[46] << 0);
2162 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2163 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2164}
2165
Sujithcbe61d82009-02-09 13:27:12 +05302166int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002167 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002168{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002170 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302171 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002172 u32 saveDefAntenna;
2173 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002174 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002175
Sujith2660b812009-02-09 13:27:26 +05302176 ah->extprotspacing = sc->ht_extprotspacing;
2177 ah->txchainmask = sc->tx_chainmask;
2178 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002179
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002180 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2181 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002182
2183 if (curchan)
2184 ath9k_hw_getnf(ah, curchan);
2185
2186 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302187 (ah->chip_fullsleep != true) &&
2188 (ah->curchan != NULL) &&
2189 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002190 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302191 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302193 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002194
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002195 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302196 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002198 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002199 }
2200 }
2201
2202 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2203 if (saveDefAntenna == 0)
2204 saveDefAntenna = 1;
2205
2206 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2207
2208 saveLedState = REG_READ(ah, AR_CFG_LED) &
2209 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2210 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2211
2212 ath9k_hw_mark_phy_inactive(ah);
2213
2214 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujithd8baa932009-03-30 15:28:25 +05302215 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002216 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217 }
2218
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302219 if (AR_SREV_9280_10_OR_LATER(ah))
2220 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002221
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002222 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2223 if (r)
2224 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002225
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002226 /* Setup MFP options for CCMP */
2227 if (AR_SREV_9280_20_OR_LATER(ah)) {
2228 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2229 * frames when constructing CCMP AAD. */
2230 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2231 0xc7ff);
2232 ah->sw_mgmt_crypto = false;
2233 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2234 /* Disable hardware crypto for management frames */
2235 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2236 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2237 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2238 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2239 ah->sw_mgmt_crypto = true;
2240 } else
2241 ah->sw_mgmt_crypto = true;
2242
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002243 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2244 ath9k_hw_set_delta_slope(ah, chan);
2245
2246 if (AR_SREV_9280_10_OR_LATER(ah))
2247 ath9k_hw_9280_spur_mitigate(ah, chan);
2248 else
2249 ath9k_hw_spur_mitigate(ah, chan);
2250
Sujithd6509152009-03-13 08:56:05 +05302251 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002252
2253 ath9k_hw_decrease_chain_power(ah, chan);
2254
Sujithba52da52009-02-09 13:27:10 +05302255 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2256 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257 | macStaId1
2258 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302259 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302260 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302261 | ah->sta_id1_defaults);
2262 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263
Sujithba52da52009-02-09 13:27:10 +05302264 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2265 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002266
2267 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2268
Sujithba52da52009-02-09 13:27:10 +05302269 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2270 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2271 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002272
2273 REG_WRITE(ah, AR_ISR, ~0);
2274
2275 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2276
2277 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002278 if (!(ath9k_hw_ar9280_set_channel(ah, chan)))
2279 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 } else {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002281 if (!(ath9k_hw_set_channel(ah, chan)))
2282 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283 }
2284
2285 for (i = 0; i < AR_NUM_DCU; i++)
2286 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2287
Sujith2660b812009-02-09 13:27:26 +05302288 ah->intr_txqs = 0;
2289 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002290 ath9k_hw_resettxqueue(ah, i);
2291
Sujith2660b812009-02-09 13:27:26 +05302292 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002293 ath9k_hw_init_qos(ah);
2294
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302295#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302296 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302297 ath9k_enable_rfkill(ah);
2298#endif
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002299 ath9k_hw_init_user_settings(ah);
2300
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301 REG_WRITE(ah, AR_STA_ID1,
2302 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2303
2304 ath9k_hw_set_dma(ah);
2305
2306 REG_WRITE(ah, AR_OBS, 8);
2307
Sujith2660b812009-02-09 13:27:26 +05302308 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002309
2310 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2311 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2312 }
2313
2314 ath9k_hw_init_bb(ah, chan);
2315
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002316 if (!ath9k_hw_init_cal(ah, chan))
2317 return -EIO;;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318
Sujith2660b812009-02-09 13:27:26 +05302319 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002320 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2321 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2322 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2323 }
2324
2325 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2326
2327 if (AR_SREV_9100(ah)) {
2328 u32 mask;
2329 mask = REG_READ(ah, AR_CFG);
2330 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2331 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302332 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002333 } else {
2334 mask =
2335 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2336 REG_WRITE(ah, AR_CFG, mask);
2337 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302338 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339 }
2340 } else {
2341#ifdef __BIG_ENDIAN
2342 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2343#endif
2344 }
2345
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002346 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002347}
2348
Sujithf1dc5602008-10-29 10:16:30 +05302349/************************/
2350/* Key Cache Management */
2351/************************/
2352
Sujithcbe61d82009-02-09 13:27:12 +05302353bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002354{
Sujithf1dc5602008-10-29 10:16:30 +05302355 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356
Sujith2660b812009-02-09 13:27:26 +05302357 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302358 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2359 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360 return false;
2361 }
2362
Sujithf1dc5602008-10-29 10:16:30 +05302363 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364
Sujithf1dc5602008-10-29 10:16:30 +05302365 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2366 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2367 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2368 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2369 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2370 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2371 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2372 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2373
2374 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2375 u16 micentry = entry + 64;
2376
2377 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2378 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2379 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2380 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2381
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002382 }
2383
Sujith2660b812009-02-09 13:27:26 +05302384 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302385 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002386
2387 return true;
2388}
2389
Sujithcbe61d82009-02-09 13:27:12 +05302390bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391{
Sujithf1dc5602008-10-29 10:16:30 +05302392 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393
Sujith2660b812009-02-09 13:27:26 +05302394 if (entry >= ah->caps.keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302395 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2396 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002397 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002398 }
2399
Sujithf1dc5602008-10-29 10:16:30 +05302400 if (mac != NULL) {
2401 macHi = (mac[5] << 8) | mac[4];
2402 macLo = (mac[3] << 24) |
2403 (mac[2] << 16) |
2404 (mac[1] << 8) |
2405 mac[0];
2406 macLo >>= 1;
2407 macLo |= (macHi & 1) << 31;
2408 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302410 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 }
Sujithf1dc5602008-10-29 10:16:30 +05302412 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2413 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414
2415 return true;
2416}
2417
Sujithcbe61d82009-02-09 13:27:12 +05302418bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302419 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002420 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421{
Sujith2660b812009-02-09 13:27:26 +05302422 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302423 u32 key0, key1, key2, key3, key4;
2424 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425
Sujithf1dc5602008-10-29 10:16:30 +05302426 if (entry >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302427 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2428 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302429 return false;
2430 }
2431
2432 switch (k->kv_type) {
2433 case ATH9K_CIPHER_AES_OCB:
2434 keyType = AR_KEYTABLE_TYPE_AES;
2435 break;
2436 case ATH9K_CIPHER_AES_CCM:
2437 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Sujithd8baa932009-03-30 15:28:25 +05302438 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302439 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302440 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002441 return false;
2442 }
Sujithf1dc5602008-10-29 10:16:30 +05302443 keyType = AR_KEYTABLE_TYPE_CCM;
2444 break;
2445 case ATH9K_CIPHER_TKIP:
2446 keyType = AR_KEYTABLE_TYPE_TKIP;
2447 if (ATH9K_IS_MIC_ENABLED(ah)
2448 && entry + 64 >= pCap->keycache_size) {
Sujithd8baa932009-03-30 15:28:25 +05302449 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302450 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002451 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002452 }
Sujithf1dc5602008-10-29 10:16:30 +05302453 break;
2454 case ATH9K_CIPHER_WEP:
2455 if (k->kv_len < LEN_WEP40) {
Sujithd8baa932009-03-30 15:28:25 +05302456 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302457 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302458 return false;
2459 }
2460 if (k->kv_len <= LEN_WEP40)
2461 keyType = AR_KEYTABLE_TYPE_40;
2462 else if (k->kv_len <= LEN_WEP104)
2463 keyType = AR_KEYTABLE_TYPE_104;
2464 else
2465 keyType = AR_KEYTABLE_TYPE_128;
2466 break;
2467 case ATH9K_CIPHER_CLR:
2468 keyType = AR_KEYTABLE_TYPE_CLR;
2469 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470 default:
Sujithd8baa932009-03-30 15:28:25 +05302471 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302472 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002473 return false;
2474 }
Sujithf1dc5602008-10-29 10:16:30 +05302475
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002476 key0 = get_unaligned_le32(k->kv_val + 0);
2477 key1 = get_unaligned_le16(k->kv_val + 4);
2478 key2 = get_unaligned_le32(k->kv_val + 6);
2479 key3 = get_unaligned_le16(k->kv_val + 10);
2480 key4 = get_unaligned_le32(k->kv_val + 12);
Sujithf1dc5602008-10-29 10:16:30 +05302481 if (k->kv_len <= LEN_WEP104)
2482 key4 &= 0xff;
2483
Jouni Malinen672903b2009-03-02 15:06:31 +02002484 /*
2485 * Note: Key cache registers access special memory area that requires
2486 * two 32-bit writes to actually update the values in the internal
2487 * memory. Consequently, the exact order and pairs used here must be
2488 * maintained.
2489 */
2490
Sujithf1dc5602008-10-29 10:16:30 +05302491 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2492 u16 micentry = entry + 64;
2493
Jouni Malinen672903b2009-03-02 15:06:31 +02002494 /*
2495 * Write inverted key[47:0] first to avoid Michael MIC errors
2496 * on frames that could be sent or received at the same time.
2497 * The correct key will be written in the end once everything
2498 * else is ready.
2499 */
Sujithf1dc5602008-10-29 10:16:30 +05302500 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2501 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002502
2503 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302504 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2505 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002506
2507 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302508 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2509 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002510
2511 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302512 (void) ath9k_hw_keysetmac(ah, entry, mac);
2513
Sujith2660b812009-02-09 13:27:26 +05302514 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002515 /*
2516 * TKIP uses two key cache entries:
2517 * Michael MIC TX/RX keys in the same key cache entry
2518 * (idx = main index + 64):
2519 * key0 [31:0] = RX key [31:0]
2520 * key1 [15:0] = TX key [31:16]
2521 * key1 [31:16] = reserved
2522 * key2 [31:0] = RX key [63:32]
2523 * key3 [15:0] = TX key [15:0]
2524 * key3 [31:16] = reserved
2525 * key4 [31:0] = TX key [63:32]
2526 */
Sujithf1dc5602008-10-29 10:16:30 +05302527 u32 mic0, mic1, mic2, mic3, mic4;
2528
2529 mic0 = get_unaligned_le32(k->kv_mic + 0);
2530 mic2 = get_unaligned_le32(k->kv_mic + 4);
2531 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2532 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2533 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002534
2535 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302536 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2537 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002538
2539 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302540 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2541 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002542
2543 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302544 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2545 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2546 AR_KEYTABLE_TYPE_CLR);
2547
2548 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002549 /*
2550 * TKIP uses four key cache entries (two for group
2551 * keys):
2552 * Michael MIC TX/RX keys are in different key cache
2553 * entries (idx = main index + 64 for TX and
2554 * main index + 32 + 96 for RX):
2555 * key0 [31:0] = TX/RX MIC key [31:0]
2556 * key1 [31:0] = reserved
2557 * key2 [31:0] = TX/RX MIC key [63:32]
2558 * key3 [31:0] = reserved
2559 * key4 [31:0] = reserved
2560 *
2561 * Upper layer code will call this function separately
2562 * for TX and RX keys when these registers offsets are
2563 * used.
2564 */
Sujithf1dc5602008-10-29 10:16:30 +05302565 u32 mic0, mic2;
2566
2567 mic0 = get_unaligned_le32(k->kv_mic + 0);
2568 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002569
2570 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302571 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2572 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002573
2574 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302575 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2576 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002577
2578 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302579 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2580 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2581 AR_KEYTABLE_TYPE_CLR);
2582 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002583
2584 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302585 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2586 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002587
2588 /*
2589 * Write the correct (un-inverted) key[47:0] last to enable
2590 * TKIP now that all other registers are set with correct
2591 * values.
2592 */
Sujithf1dc5602008-10-29 10:16:30 +05302593 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2594 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2595 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002596 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302597 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2598 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002599
2600 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302601 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2602 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002603
2604 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302605 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2606 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2607
Jouni Malinen672903b2009-03-02 15:06:31 +02002608 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302609 (void) ath9k_hw_keysetmac(ah, entry, mac);
2610 }
2611
Sujithf1dc5602008-10-29 10:16:30 +05302612 return true;
2613}
2614
Sujithcbe61d82009-02-09 13:27:12 +05302615bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302616{
Sujith2660b812009-02-09 13:27:26 +05302617 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302618 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2619 if (val & AR_KEYTABLE_VALID)
2620 return true;
2621 }
2622 return false;
2623}
2624
2625/******************************/
2626/* Power Management (Chipset) */
2627/******************************/
2628
Sujithcbe61d82009-02-09 13:27:12 +05302629static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302630{
2631 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2632 if (setChip) {
2633 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2634 AR_RTC_FORCE_WAKE_EN);
2635 if (!AR_SREV_9100(ah))
2636 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2637
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002638 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302639 AR_RTC_RESET_EN);
2640 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002641}
2642
Sujithcbe61d82009-02-09 13:27:12 +05302643static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002644{
Sujithf1dc5602008-10-29 10:16:30 +05302645 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2646 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302647 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002648
Sujithf1dc5602008-10-29 10:16:30 +05302649 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2650 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2651 AR_RTC_FORCE_WAKE_ON_INT);
2652 } else {
2653 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2654 AR_RTC_FORCE_WAKE_EN);
2655 }
2656 }
2657}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002658
Sujithcbe61d82009-02-09 13:27:12 +05302659static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302660{
2661 u32 val;
2662 int i;
2663
2664 if (setChip) {
2665 if ((REG_READ(ah, AR_RTC_STATUS) &
2666 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2667 if (ath9k_hw_set_reset_reg(ah,
2668 ATH9K_RESET_POWER_ON) != true) {
2669 return false;
2670 }
2671 }
2672 if (AR_SREV_9100(ah))
2673 REG_SET_BIT(ah, AR_RTC_RESET,
2674 AR_RTC_RESET_EN);
2675
2676 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2677 AR_RTC_FORCE_WAKE_EN);
2678 udelay(50);
2679
2680 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2681 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2682 if (val == AR_RTC_STATUS_ON)
2683 break;
2684 udelay(50);
2685 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2686 AR_RTC_FORCE_WAKE_EN);
2687 }
2688 if (i == 0) {
Sujithd8baa932009-03-30 15:28:25 +05302689 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302690 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302691 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002692 }
2693 }
2694
Sujithf1dc5602008-10-29 10:16:30 +05302695 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2696
2697 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002698}
2699
Sujithcbe61d82009-02-09 13:27:12 +05302700bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302701{
Sujithcbe61d82009-02-09 13:27:12 +05302702 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302703 static const char *modes[] = {
2704 "AWAKE",
2705 "FULL-SLEEP",
2706 "NETWORK SLEEP",
2707 "UNDEFINED"
2708 };
Sujithf1dc5602008-10-29 10:16:30 +05302709
Sujithd8baa932009-03-30 15:28:25 +05302710 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2711 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302712
2713 switch (mode) {
2714 case ATH9K_PM_AWAKE:
2715 status = ath9k_hw_set_power_awake(ah, setChip);
2716 break;
2717 case ATH9K_PM_FULL_SLEEP:
2718 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302719 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302720 break;
2721 case ATH9K_PM_NETWORK_SLEEP:
2722 ath9k_set_power_network_sleep(ah, setChip);
2723 break;
2724 default:
Sujithd8baa932009-03-30 15:28:25 +05302725 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +05302726 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302727 return false;
2728 }
Sujith2660b812009-02-09 13:27:26 +05302729 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302730
2731 return status;
2732}
2733
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002734/*
2735 * Helper for ASPM support.
2736 *
2737 * Disable PLL when in L0s as well as receiver clock when in L1.
2738 * This power saving option must be enabled through the SerDes.
2739 *
2740 * Programming the SerDes must go through the same 288 bit serial shift
2741 * register as the other analog registers. Hence the 9 writes.
2742 */
Sujithcbe61d82009-02-09 13:27:12 +05302743void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302744{
Sujithf1dc5602008-10-29 10:16:30 +05302745 u8 i;
2746
Sujith2660b812009-02-09 13:27:26 +05302747 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302748 return;
2749
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002750 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302751 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302752 return;
2753
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002754 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302755 if (restore)
2756 return;
2757
2758 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002759 /*
2760 * AR9280 2.0 or later chips use SerDes values from the
2761 * initvals.h initialized depending on chipset during
2762 * ath9k_hw_do_attach()
2763 */
Sujith2660b812009-02-09 13:27:26 +05302764 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2765 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2766 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302767 }
Sujithf1dc5602008-10-29 10:16:30 +05302768 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302769 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302770 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2771 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2772
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002773 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302774 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2775 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2776 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2777
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002778 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302779 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302780 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2781 else
2782 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2783
2784 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2785 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2786 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2787
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002788 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302789 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2790
Sujithf1dc5602008-10-29 10:16:30 +05302791 } else {
2792 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2793 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002794
2795 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302796 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2797 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2798 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002799
2800 /*
2801 * Ignore ah->ah_config.pcie_clock_req setting for
2802 * pre-AR9280 11n
2803 */
Sujithf1dc5602008-10-29 10:16:30 +05302804 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002805
Sujithf1dc5602008-10-29 10:16:30 +05302806 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2807 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2808 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002809
2810 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302811 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2812 }
2813
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002814 udelay(1000);
2815
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002816 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302817 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2818
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002819 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302820 if (ah->config.pcie_waen) {
2821 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302822 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302823 if (AR_SREV_9285(ah))
2824 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002825 /*
2826 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2827 * otherwise card may disappear.
2828 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302829 else if (AR_SREV_9280(ah))
2830 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302831 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302832 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302833 }
2834}
2835
2836/**********************/
2837/* Interrupt Handling */
2838/**********************/
2839
Sujithcbe61d82009-02-09 13:27:12 +05302840bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002841{
2842 u32 host_isr;
2843
2844 if (AR_SREV_9100(ah))
2845 return true;
2846
2847 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2848 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2849 return true;
2850
2851 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2852 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2853 && (host_isr != AR_INTR_SPURIOUS))
2854 return true;
2855
2856 return false;
2857}
2858
Sujithcbe61d82009-02-09 13:27:12 +05302859bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002860{
2861 u32 isr = 0;
2862 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302863 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002864 u32 sync_cause = 0;
2865 bool fatal_int = false;
2866
2867 if (!AR_SREV_9100(ah)) {
2868 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2869 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2870 == AR_RTC_STATUS_ON) {
2871 isr = REG_READ(ah, AR_ISR);
2872 }
2873 }
2874
Sujithf1dc5602008-10-29 10:16:30 +05302875 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2876 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002877
2878 *masked = 0;
2879
2880 if (!isr && !sync_cause)
2881 return false;
2882 } else {
2883 *masked = 0;
2884 isr = REG_READ(ah, AR_ISR);
2885 }
2886
2887 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002888 if (isr & AR_ISR_BCNMISC) {
2889 u32 isr2;
2890 isr2 = REG_READ(ah, AR_ISR_S2);
2891 if (isr2 & AR_ISR_S2_TIM)
2892 mask2 |= ATH9K_INT_TIM;
2893 if (isr2 & AR_ISR_S2_DTIM)
2894 mask2 |= ATH9K_INT_DTIM;
2895 if (isr2 & AR_ISR_S2_DTIMSYNC)
2896 mask2 |= ATH9K_INT_DTIMSYNC;
2897 if (isr2 & (AR_ISR_S2_CABEND))
2898 mask2 |= ATH9K_INT_CABEND;
2899 if (isr2 & AR_ISR_S2_GTT)
2900 mask2 |= ATH9K_INT_GTT;
2901 if (isr2 & AR_ISR_S2_CST)
2902 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302903 if (isr2 & AR_ISR_S2_TSFOOR)
2904 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002905 }
2906
2907 isr = REG_READ(ah, AR_ISR_RAC);
2908 if (isr == 0xffffffff) {
2909 *masked = 0;
2910 return false;
2911 }
2912
2913 *masked = isr & ATH9K_INT_COMMON;
2914
Sujith2660b812009-02-09 13:27:26 +05302915 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002916 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2917 *masked |= ATH9K_INT_RX;
2918 }
2919
2920 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2921 *masked |= ATH9K_INT_RX;
2922 if (isr &
2923 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2924 AR_ISR_TXEOL)) {
2925 u32 s0_s, s1_s;
2926
2927 *masked |= ATH9K_INT_TX;
2928
2929 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302930 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2931 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002932
2933 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302934 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2935 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002936 }
2937
2938 if (isr & AR_ISR_RXORN) {
2939 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302940 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002941 }
2942
2943 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302944 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002945 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2946 if (isr5 & AR_ISR_S5_TIM_TIMER)
2947 *masked |= ATH9K_INT_TIM_TIMER;
2948 }
2949 }
2950
2951 *masked |= mask2;
2952 }
Sujithf1dc5602008-10-29 10:16:30 +05302953
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002954 if (AR_SREV_9100(ah))
2955 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302956
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002957 if (sync_cause) {
2958 fatal_int =
2959 (sync_cause &
2960 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2961 ? true : false;
2962
2963 if (fatal_int) {
2964 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
2965 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302966 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002967 }
2968 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
2969 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302970 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002971 }
2972 }
2973 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
2974 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302975 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002976 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2977 REG_WRITE(ah, AR_RC, 0);
2978 *masked |= ATH9K_INT_FATAL;
2979 }
2980 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
2981 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302982 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002983 }
2984
2985 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2986 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2987 }
Sujithf1dc5602008-10-29 10:16:30 +05302988
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002989 return true;
2990}
2991
Sujithcbe61d82009-02-09 13:27:12 +05302992enum ath9k_int ath9k_hw_intrget(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002993{
Sujith2660b812009-02-09 13:27:26 +05302994 return ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002995}
2996
Sujithcbe61d82009-02-09 13:27:12 +05302997enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002998{
Sujith2660b812009-02-09 13:27:26 +05302999 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003000 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303001 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003002
Sujith04bd4632008-11-28 22:18:05 +05303003 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003004
3005 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303006 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003007 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3008 (void) REG_READ(ah, AR_IER);
3009 if (!AR_SREV_9100(ah)) {
3010 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3011 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3012
3013 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3014 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3015 }
3016 }
3017
3018 mask = ints & ATH9K_INT_COMMON;
3019 mask2 = 0;
3020
3021 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303022 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003023 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303024 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003025 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303026 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003027 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303028 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003029 mask |= AR_IMR_TXEOL;
3030 }
3031 if (ints & ATH9K_INT_RX) {
3032 mask |= AR_IMR_RXERR;
Sujith2660b812009-02-09 13:27:26 +05303033 if (ah->intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003034 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3035 else
3036 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303037 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003038 mask |= AR_IMR_GENTMR;
3039 }
3040
3041 if (ints & (ATH9K_INT_BMISC)) {
3042 mask |= AR_IMR_BCNMISC;
3043 if (ints & ATH9K_INT_TIM)
3044 mask2 |= AR_IMR_S2_TIM;
3045 if (ints & ATH9K_INT_DTIM)
3046 mask2 |= AR_IMR_S2_DTIM;
3047 if (ints & ATH9K_INT_DTIMSYNC)
3048 mask2 |= AR_IMR_S2_DTIMSYNC;
3049 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303050 mask2 |= AR_IMR_S2_CABEND;
3051 if (ints & ATH9K_INT_TSFOOR)
3052 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003053 }
3054
3055 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3056 mask |= AR_IMR_BCNMISC;
3057 if (ints & ATH9K_INT_GTT)
3058 mask2 |= AR_IMR_S2_GTT;
3059 if (ints & ATH9K_INT_CST)
3060 mask2 |= AR_IMR_S2_CST;
3061 }
3062
Sujith04bd4632008-11-28 22:18:05 +05303063 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003064 REG_WRITE(ah, AR_IMR, mask);
3065 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3066 AR_IMR_S2_DTIM |
3067 AR_IMR_S2_DTIMSYNC |
3068 AR_IMR_S2_CABEND |
3069 AR_IMR_S2_CABTO |
3070 AR_IMR_S2_TSFOOR |
3071 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3072 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303073 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003074
Sujith60b67f52008-08-07 10:52:38 +05303075 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003076 if (ints & ATH9K_INT_TIM_TIMER)
3077 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3078 else
3079 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3080 }
3081
3082 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303083 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003084 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3085 if (!AR_SREV_9100(ah)) {
3086 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3087 AR_INTR_MAC_IRQ);
3088 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3089
3090
3091 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3092 AR_INTR_SYNC_DEFAULT);
3093 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3094 AR_INTR_SYNC_DEFAULT);
3095 }
3096 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3097 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3098 }
3099
3100 return omask;
3101}
3102
Sujithf1dc5602008-10-29 10:16:30 +05303103/*******************/
3104/* Beacon Handling */
3105/*******************/
3106
Sujithcbe61d82009-02-09 13:27:12 +05303107void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003108{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003109 int flags = 0;
3110
Sujith2660b812009-02-09 13:27:26 +05303111 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003112
Sujith2660b812009-02-09 13:27:26 +05303113 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003114 case NL80211_IFTYPE_STATION:
3115 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003116 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3117 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3118 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3119 flags |= AR_TBTT_TIMER_EN;
3120 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003121 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04003122 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003123 REG_SET_BIT(ah, AR_TXCFG,
3124 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3125 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3126 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303127 (ah->atim_window ? ah->
3128 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003129 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003130 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003131 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3132 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3133 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303134 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303135 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003136 REG_WRITE(ah, AR_NEXT_SWBA,
3137 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303138 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303139 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140 flags |=
3141 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3142 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003143 default:
3144 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3145 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303146 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003147 return;
3148 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003149 }
3150
3151 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3152 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3153 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3154 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3155
3156 beacon_period &= ~ATH9K_BEACON_ENA;
3157 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3158 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3159 ath9k_hw_reset_tsf(ah);
3160 }
3161
3162 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3163}
3164
Sujithcbe61d82009-02-09 13:27:12 +05303165void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303166 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003167{
3168 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303169 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003170
3171 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3172
3173 REG_WRITE(ah, AR_BEACON_PERIOD,
3174 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3175 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3176 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3177
3178 REG_RMW_FIELD(ah, AR_RSSI_THR,
3179 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3180
3181 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3182
3183 if (bs->bs_sleepduration > beaconintval)
3184 beaconintval = bs->bs_sleepduration;
3185
3186 dtimperiod = bs->bs_dtimperiod;
3187 if (bs->bs_sleepduration > dtimperiod)
3188 dtimperiod = bs->bs_sleepduration;
3189
3190 if (beaconintval == dtimperiod)
3191 nextTbtt = bs->bs_nextdtim;
3192 else
3193 nextTbtt = bs->bs_nexttbtt;
3194
Sujith04bd4632008-11-28 22:18:05 +05303195 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3196 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3197 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3198 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003199
3200 REG_WRITE(ah, AR_NEXT_DTIM,
3201 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3202 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3203
3204 REG_WRITE(ah, AR_SLEEP1,
3205 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3206 | AR_SLEEP1_ASSUME_DTIM);
3207
Sujith60b67f52008-08-07 10:52:38 +05303208 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003209 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3210 else
3211 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3212
3213 REG_WRITE(ah, AR_SLEEP2,
3214 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3215
3216 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3217 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3218
3219 REG_SET_BIT(ah, AR_TIMER_MODE,
3220 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3221 AR_DTIM_TIMER_EN);
3222
Sujith4af9cf42009-02-12 10:06:47 +05303223 /* TSF Out of Range Threshold */
3224 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003225}
3226
Sujithf1dc5602008-10-29 10:16:30 +05303227/*******************/
3228/* HW Capabilities */
3229/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003230
Sujithcbe61d82009-02-09 13:27:12 +05303231bool ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003232{
Sujith2660b812009-02-09 13:27:26 +05303233 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303234 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003235
Sujithf74df6f2009-02-09 13:27:24 +05303236 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303237 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303238
Sujithf74df6f2009-02-09 13:27:24 +05303239 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303240 if (AR_SREV_9285_10_OR_LATER(ah))
3241 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303242 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303243
Sujithf74df6f2009-02-09 13:27:24 +05303244 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303245
Sujith2660b812009-02-09 13:27:26 +05303246 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303247 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303248 if (ah->regulatory.current_rd == 0x64 ||
3249 ah->regulatory.current_rd == 0x65)
3250 ah->regulatory.current_rd += 5;
3251 else if (ah->regulatory.current_rd == 0x41)
3252 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303253 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303254 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003255 }
Sujithdc2222a2008-08-14 13:26:55 +05303256
Sujithf74df6f2009-02-09 13:27:24 +05303257 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303258 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003259
Sujithf1dc5602008-10-29 10:16:30 +05303260 if (eeval & AR5416_OPFLAGS_11A) {
3261 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303262 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303263 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3264 set_bit(ATH9K_MODE_11NA_HT20,
3265 pCap->wireless_modes);
3266 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3267 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3268 pCap->wireless_modes);
3269 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3270 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003271 }
3272 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003273 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003274
Sujithf1dc5602008-10-29 10:16:30 +05303275 if (eeval & AR5416_OPFLAGS_11G) {
3276 set_bit(ATH9K_MODE_11B, pCap->wireless_modes);
3277 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303278 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303279 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3280 set_bit(ATH9K_MODE_11NG_HT20,
3281 pCap->wireless_modes);
3282 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3283 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3284 pCap->wireless_modes);
3285 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3286 pCap->wireless_modes);
3287 }
3288 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003289 }
Sujithf1dc5602008-10-29 10:16:30 +05303290
Sujithf74df6f2009-02-09 13:27:24 +05303291 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303292 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3293 !(eeval & AR5416_OPFLAGS_11A))
3294 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3295 else
3296 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303297
Sujithd535a422009-02-09 13:27:06 +05303298 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303299 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303300
3301 pCap->low_2ghz_chan = 2312;
3302 pCap->high_2ghz_chan = 2732;
3303
3304 pCap->low_5ghz_chan = 4920;
3305 pCap->high_5ghz_chan = 6100;
3306
3307 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3308 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3309 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3310
3311 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3312 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3313 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3314
Sujith2660b812009-02-09 13:27:26 +05303315 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303316 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3317 else
3318 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3319
3320 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3321 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3322 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3323 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3324
3325 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3326 pCap->total_queues =
3327 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3328 else
3329 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3330
3331 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3332 pCap->keycache_size =
3333 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3334 else
3335 pCap->keycache_size = AR_KEYTABLE_SIZE;
3336
3337 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Sujithf1dc5602008-10-29 10:16:30 +05303338 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3339
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303340 if (AR_SREV_9285_10_OR_LATER(ah))
3341 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3342 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303343 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3344 else
3345 pCap->num_gpio_pins = AR_NUM_GPIO;
3346
Sujithf1dc5602008-10-29 10:16:30 +05303347 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3348 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3349 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3350 } else {
3351 pCap->rts_aggr_limit = (8 * 1024);
3352 }
3353
3354 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3355
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303356#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303357 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3358 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3359 ah->rfkill_gpio =
3360 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3361 ah->rfkill_polarity =
3362 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303363
3364 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3365 }
3366#endif
3367
Sujithd535a422009-02-09 13:27:06 +05303368 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3369 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3370 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3371 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
3372 (ah->hw_version.macVersion == AR_SREV_VERSION_9280))
Sujithf1dc5602008-10-29 10:16:30 +05303373 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3374 else
3375 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3376
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303377 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303378 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3379 else
3380 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3381
Sujithd6bad492009-02-09 13:27:08 +05303382 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303383 pCap->reg_cap =
3384 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3385 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3386 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3387 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3388 } else {
3389 pCap->reg_cap =
3390 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3391 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3392 }
3393
3394 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3395
3396 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303397 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303398 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303399 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303400
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303401 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303402 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303403 ah->btactive_gpio = 6;
3404 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303405 }
3406
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003407 return true;
3408}
3409
Sujithcbe61d82009-02-09 13:27:12 +05303410bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303411 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003412{
Sujithf1dc5602008-10-29 10:16:30 +05303413 switch (type) {
3414 case ATH9K_CAP_CIPHER:
3415 switch (capability) {
3416 case ATH9K_CIPHER_AES_CCM:
3417 case ATH9K_CIPHER_AES_OCB:
3418 case ATH9K_CIPHER_TKIP:
3419 case ATH9K_CIPHER_WEP:
3420 case ATH9K_CIPHER_MIC:
3421 case ATH9K_CIPHER_CLR:
3422 return true;
3423 default:
3424 return false;
3425 }
3426 case ATH9K_CAP_TKIP_MIC:
3427 switch (capability) {
3428 case 0:
3429 return true;
3430 case 1:
Sujith2660b812009-02-09 13:27:26 +05303431 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303432 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3433 false;
3434 }
3435 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303436 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303437 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303438 case ATH9K_CAP_DIVERSITY:
3439 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3440 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3441 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303442 case ATH9K_CAP_MCAST_KEYSRCH:
3443 switch (capability) {
3444 case 0:
3445 return true;
3446 case 1:
3447 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3448 return false;
3449 } else {
Sujith2660b812009-02-09 13:27:26 +05303450 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303451 AR_STA_ID1_MCAST_KSRCH) ? true :
3452 false;
3453 }
3454 }
3455 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303456 case ATH9K_CAP_TXPOW:
3457 switch (capability) {
3458 case 0:
3459 return 0;
3460 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303461 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303462 return 0;
3463 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303464 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303465 return 0;
3466 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303467 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303468 return 0;
3469 }
3470 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303471 case ATH9K_CAP_DS:
3472 return (AR_SREV_9280_20_OR_LATER(ah) &&
3473 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3474 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303475 default:
3476 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003477 }
Sujithf1dc5602008-10-29 10:16:30 +05303478}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003479
Sujithcbe61d82009-02-09 13:27:12 +05303480bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303481 u32 capability, u32 setting, int *status)
3482{
Sujithf1dc5602008-10-29 10:16:30 +05303483 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003484
Sujithf1dc5602008-10-29 10:16:30 +05303485 switch (type) {
3486 case ATH9K_CAP_TKIP_MIC:
3487 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303488 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303489 AR_STA_ID1_CRPT_MIC_ENABLE;
3490 else
Sujith2660b812009-02-09 13:27:26 +05303491 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303492 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3493 return true;
3494 case ATH9K_CAP_DIVERSITY:
3495 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3496 if (setting)
3497 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3498 else
3499 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3500 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3501 return true;
3502 case ATH9K_CAP_MCAST_KEYSRCH:
3503 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303504 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303505 else
Sujith2660b812009-02-09 13:27:26 +05303506 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303507 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303508 default:
3509 return false;
3510 }
3511}
3512
3513/****************************/
3514/* GPIO / RFKILL / Antennae */
3515/****************************/
3516
Sujithcbe61d82009-02-09 13:27:12 +05303517static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303518 u32 gpio, u32 type)
3519{
3520 int addr;
3521 u32 gpio_shift, tmp;
3522
3523 if (gpio > 11)
3524 addr = AR_GPIO_OUTPUT_MUX3;
3525 else if (gpio > 5)
3526 addr = AR_GPIO_OUTPUT_MUX2;
3527 else
3528 addr = AR_GPIO_OUTPUT_MUX1;
3529
3530 gpio_shift = (gpio % 6) * 5;
3531
3532 if (AR_SREV_9280_20_OR_LATER(ah)
3533 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3534 REG_RMW(ah, addr, (type << gpio_shift),
3535 (0x1f << gpio_shift));
3536 } else {
3537 tmp = REG_READ(ah, addr);
3538 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3539 tmp &= ~(0x1f << gpio_shift);
3540 tmp |= (type << gpio_shift);
3541 REG_WRITE(ah, addr, tmp);
3542 }
3543}
3544
Sujithcbe61d82009-02-09 13:27:12 +05303545void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303546{
3547 u32 gpio_shift;
3548
Sujith2660b812009-02-09 13:27:26 +05303549 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303550
3551 gpio_shift = gpio << 1;
3552
3553 REG_RMW(ah,
3554 AR_GPIO_OE_OUT,
3555 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3556 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3557}
3558
Sujithcbe61d82009-02-09 13:27:12 +05303559u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303560{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303561#define MS_REG_READ(x, y) \
3562 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3563
Sujith2660b812009-02-09 13:27:26 +05303564 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303565 return 0xffffffff;
3566
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303567 if (AR_SREV_9285_10_OR_LATER(ah))
3568 return MS_REG_READ(AR9285, gpio) != 0;
3569 else if (AR_SREV_9280_10_OR_LATER(ah))
3570 return MS_REG_READ(AR928X, gpio) != 0;
3571 else
3572 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303573}
3574
Sujithcbe61d82009-02-09 13:27:12 +05303575void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303576 u32 ah_signal_type)
3577{
3578 u32 gpio_shift;
3579
3580 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3581
3582 gpio_shift = 2 * gpio;
3583
3584 REG_RMW(ah,
3585 AR_GPIO_OE_OUT,
3586 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3587 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3588}
3589
Sujithcbe61d82009-02-09 13:27:12 +05303590void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303591{
3592 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3593 AR_GPIO_BIT(gpio));
3594}
3595
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303596#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujithcbe61d82009-02-09 13:27:12 +05303597void ath9k_enable_rfkill(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303598{
3599 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3600 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
3601
3602 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
3603 AR_GPIO_INPUT_MUX2_RFSILENT);
3604
Sujith2660b812009-02-09 13:27:26 +05303605 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303606 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
3607}
3608#endif
3609
Sujithcbe61d82009-02-09 13:27:12 +05303610u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303611{
3612 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3613}
3614
Sujithcbe61d82009-02-09 13:27:12 +05303615void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303616{
3617 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3618}
3619
Sujithcbe61d82009-02-09 13:27:12 +05303620bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303621 enum ath9k_ant_setting settings,
3622 struct ath9k_channel *chan,
3623 u8 *tx_chainmask,
3624 u8 *rx_chainmask,
3625 u8 *antenna_cfgd)
3626{
Sujithf1dc5602008-10-29 10:16:30 +05303627 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3628
3629 if (AR_SREV_9280(ah)) {
3630 if (!tx_chainmask_cfg) {
3631
3632 tx_chainmask_cfg = *tx_chainmask;
3633 rx_chainmask_cfg = *rx_chainmask;
3634 }
3635
3636 switch (settings) {
3637 case ATH9K_ANT_FIXED_A:
3638 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3639 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3640 *antenna_cfgd = true;
3641 break;
3642 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303643 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303644 ATH9K_ANTENNA1_CHAINMASK) {
3645 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3646 }
3647 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3648 *antenna_cfgd = true;
3649 break;
3650 case ATH9K_ANT_VARIABLE:
3651 *tx_chainmask = tx_chainmask_cfg;
3652 *rx_chainmask = rx_chainmask_cfg;
3653 *antenna_cfgd = true;
3654 break;
3655 default:
3656 break;
3657 }
3658 } else {
Sujith2660b812009-02-09 13:27:26 +05303659 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303660 }
3661
3662 return true;
3663}
3664
3665/*********************/
3666/* General Operation */
3667/*********************/
3668
Sujithcbe61d82009-02-09 13:27:12 +05303669u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303670{
3671 u32 bits = REG_READ(ah, AR_RX_FILTER);
3672 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3673
3674 if (phybits & AR_PHY_ERR_RADAR)
3675 bits |= ATH9K_RX_FILTER_PHYRADAR;
3676 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3677 bits |= ATH9K_RX_FILTER_PHYERR;
3678
3679 return bits;
3680}
3681
Sujithcbe61d82009-02-09 13:27:12 +05303682void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303683{
3684 u32 phybits;
3685
3686 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3687 phybits = 0;
3688 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3689 phybits |= AR_PHY_ERR_RADAR;
3690 if (bits & ATH9K_RX_FILTER_PHYERR)
3691 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3692 REG_WRITE(ah, AR_PHY_ERR, phybits);
3693
3694 if (phybits)
3695 REG_WRITE(ah, AR_RXCFG,
3696 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3697 else
3698 REG_WRITE(ah, AR_RXCFG,
3699 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3700}
3701
Sujithcbe61d82009-02-09 13:27:12 +05303702bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303703{
3704 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3705}
3706
Sujithcbe61d82009-02-09 13:27:12 +05303707bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303708{
3709 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3710 return false;
3711
3712 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3713}
3714
Sujithcbe61d82009-02-09 13:27:12 +05303715bool ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303716{
Sujith2660b812009-02-09 13:27:26 +05303717 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003718 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303719
Sujithd6bad492009-02-09 13:27:08 +05303720 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303721
Sujithf74df6f2009-02-09 13:27:24 +05303722 if (ah->eep_ops->set_txpower(ah, chan,
3723 ath9k_regd_get_ctl(ah, chan),
3724 channel->max_antenna_gain * 2,
3725 channel->max_power * 2,
3726 min((u32) MAX_RATE_POWER,
3727 (u32) ah->regulatory.power_limit)) != 0)
Sujithf1dc5602008-10-29 10:16:30 +05303728 return false;
3729
3730 return true;
3731}
3732
Sujithcbe61d82009-02-09 13:27:12 +05303733void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303734{
Sujithba52da52009-02-09 13:27:10 +05303735 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303736}
3737
Sujithcbe61d82009-02-09 13:27:12 +05303738void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303739{
Sujith2660b812009-02-09 13:27:26 +05303740 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303741}
3742
Sujithcbe61d82009-02-09 13:27:12 +05303743void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303744{
3745 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3746 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3747}
3748
Sujithba52da52009-02-09 13:27:10 +05303749void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303750{
Sujithba52da52009-02-09 13:27:10 +05303751 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3752 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303753}
3754
Sujithba52da52009-02-09 13:27:10 +05303755void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303756{
Sujithba52da52009-02-09 13:27:10 +05303757 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3758 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3759 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303760}
3761
Sujithcbe61d82009-02-09 13:27:12 +05303762u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303763{
3764 u64 tsf;
3765
3766 tsf = REG_READ(ah, AR_TSF_U32);
3767 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3768
3769 return tsf;
3770}
3771
Sujithcbe61d82009-02-09 13:27:12 +05303772void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003773{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003774 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003775 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003776}
3777
Sujithcbe61d82009-02-09 13:27:12 +05303778void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303779{
3780 int count;
3781
3782 count = 0;
3783 while (REG_READ(ah, AR_SLP32_MODE) & AR_SLP32_TSF_WRITE_STATUS) {
3784 count++;
3785 if (count > 10) {
3786 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05303787 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Sujithf1dc5602008-10-29 10:16:30 +05303788 break;
3789 }
3790 udelay(10);
3791 }
3792 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003793}
3794
Sujithcbe61d82009-02-09 13:27:12 +05303795bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003796{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003797 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303798 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003799 else
Sujith2660b812009-02-09 13:27:26 +05303800 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303801
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003802 return true;
3803}
3804
Sujithcbe61d82009-02-09 13:27:12 +05303805bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003806{
Sujithf1dc5602008-10-29 10:16:30 +05303807 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd4632008-11-28 22:18:05 +05303808 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303809 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303810 return false;
3811 } else {
3812 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303813 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303814 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003815 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003816}
3817
Sujithcbe61d82009-02-09 13:27:12 +05303818void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003819{
Sujithf1dc5602008-10-29 10:16:30 +05303820 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003821
Sujithf1dc5602008-10-29 10:16:30 +05303822 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303823 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303824 macmode = AR_2040_JOINED_RX_CLEAR;
3825 else
3826 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003827
Sujithf1dc5602008-10-29 10:16:30 +05303828 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003829}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303830
3831/***************************/
3832/* Bluetooth Coexistence */
3833/***************************/
3834
Sujithcbe61d82009-02-09 13:27:12 +05303835void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303836{
3837 /* connect bt_active to baseband */
3838 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3839 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3840 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3841
3842 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3843 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3844
3845 /* Set input mux for bt_active to gpio pin */
3846 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3847 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303848 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303849
3850 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303851 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303852
3853 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303854 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303855 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3856}