blob: ea550cc643561228f70367f3bad34eaba02366a7 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
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
100 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
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:
Sujith04bd4632008-11-28 22:18:05 +0530184 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
185 "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) {
309 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
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) {
321 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
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;
366 ah->config.pcie_l1skp_enable = 0;
367 ah->config.pcie_clock_req = 0;
368 ah->config.pcie_power_reset = 0x100;
369 ah->config.pcie_restore = 0;
370 ah->config.pcie_waen = 0;
371 ah->config.analog_shiftreg = 1;
372 ah->config.ht_enable = 1;
373 ah->config.ofdm_trig_low = 200;
374 ah->config.ofdm_trig_high = 500;
375 ah->config.cck_trig_high = 200;
376 ah->config.cck_trig_low = 100;
377 ah->config.enable_ani = 1;
378 ah->config.noise_immunity_level = 4;
379 ah->config.ofdm_weaksignal_det = 1;
380 ah->config.cck_weaksignal_thr = 0;
381 ah->config.spur_immunity_level = 2;
382 ah->config.firstep_level = 0;
383 ah->config.rssi_thr_high = 40;
384 ah->config.rssi_thr_low = 7;
385 ah->config.diversity_control = 0;
386 ah->config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700387
388 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530389 ah->config.spurchans[i][0] = AR_NO_SPUR;
390 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700391 }
392
Sujith2660b812009-02-09 13:27:26 +0530393 ah->config.intr_mitigation = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700394}
395
Sujithcbe61d82009-02-09 13:27:12 +0530396static struct ath_hw *ath9k_hw_newstate(u16 devid, struct ath_softc *sc,
397 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700398{
Sujithcbe61d82009-02-09 13:27:12 +0530399 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400
Sujithcbe61d82009-02-09 13:27:12 +0530401 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
402 if (ah == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd4632008-11-28 22:18:05 +0530404 "Cannot allocate memory for state block\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700405 *status = -ENOMEM;
406 return NULL;
407 }
408
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409 ah->ah_sc = sc;
Sujithd535a422009-02-09 13:27:06 +0530410 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530411 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530412 ah->hw_version.devid = devid;
413 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414
415 ah->ah_flags = 0;
416 if ((devid == AR5416_AR9100_DEVID))
Sujithd535a422009-02-09 13:27:06 +0530417 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418 if (!AR_SREV_9100(ah))
419 ah->ah_flags = AH_USE_EEPROM;
420
Sujithd6bad492009-02-09 13:27:08 +0530421 ah->regulatory.power_limit = MAX_RATE_POWER;
422 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530423 ah->atim_window = 0;
424 ah->diversity_control = ah->config.diversity_control;
425 ah->antenna_switch_swap =
426 ah->config.antenna_switch_swap;
427 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
428 ah->beacon_interval = 100;
429 ah->enable_32kHz_clock = DONT_USE_32KHZ;
430 ah->slottime = (u32) -1;
431 ah->acktimeout = (u32) -1;
432 ah->ctstimeout = (u32) -1;
433 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434
Sujith2660b812009-02-09 13:27:26 +0530435 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436
Sujithcbe61d82009-02-09 13:27:12 +0530437 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438}
439
Sujithcbe61d82009-02-09 13:27:12 +0530440static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441{
442 bool rfStatus = false;
443 int ecode = 0;
444
445 rfStatus = ath9k_hw_init_rf(ah, &ecode);
446 if (!rfStatus) {
447 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +0530448 "RF setup failed, status %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449 return ecode;
450 }
451
452 return 0;
453}
454
Sujithcbe61d82009-02-09 13:27:12 +0530455static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456{
457 u32 val;
458
459 REG_WRITE(ah, AR_PHY(0), 0x00000007);
460
461 val = ath9k_hw_get_radiorev(ah);
462 switch (val & AR_RADIO_SREV_MAJOR) {
463 case 0:
464 val = AR_RAD5133_SREV_MAJOR;
465 break;
466 case AR_RAD5133_SREV_MAJOR:
467 case AR_RAD5122_SREV_MAJOR:
468 case AR_RAD2133_SREV_MAJOR:
469 case AR_RAD2122_SREV_MAJOR:
470 break;
471 default:
472 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd4632008-11-28 22:18:05 +0530473 "5G Radio Chip Rev 0x%02X is not "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474 "supported by this driver\n",
Sujithd535a422009-02-09 13:27:06 +0530475 ah->hw_version.analog5GhzRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 return -EOPNOTSUPP;
477 }
478
Sujithd535a422009-02-09 13:27:06 +0530479 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480
481 return 0;
482}
483
Sujithcbe61d82009-02-09 13:27:12 +0530484static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700485{
Sujithf1dc5602008-10-29 10:16:30 +0530486 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530488 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700489
Sujithf1dc5602008-10-29 10:16:30 +0530490 sum = 0;
491 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530492 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530493 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530494 ah->macaddr[2 * i] = eeval >> 8;
495 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700496 }
Sujithf1dc5602008-10-29 10:16:30 +0530497 if (sum == 0 || sum == 0xffff * 3) {
498 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd4632008-11-28 22:18:05 +0530499 "mac address read failed: %pM\n",
Sujithba52da52009-02-09 13:27:10 +0530500 ah->macaddr);
Sujithf1dc5602008-10-29 10:16:30 +0530501 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502 }
503
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504 return 0;
505}
506
Sujithcbe61d82009-02-09 13:27:12 +0530507static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530508{
509 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530510
Sujithf74df6f2009-02-09 13:27:24 +0530511 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
512 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530513
514 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530515 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530516 ar9280Modes_backoff_13db_rxgain_9280_2,
517 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
518 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530519 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530520 ar9280Modes_backoff_23db_rxgain_9280_2,
521 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
522 else
Sujith2660b812009-02-09 13:27:26 +0530523 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530524 ar9280Modes_original_rxgain_9280_2,
525 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530526 } 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 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530531}
532
Sujithcbe61d82009-02-09 13:27:12 +0530533static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530534{
535 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530536
Sujithf74df6f2009-02-09 13:27:24 +0530537 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
538 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530539
540 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530541 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530542 ar9280Modes_high_power_tx_gain_9280_2,
543 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
544 else
Sujith2660b812009-02-09 13:27:26 +0530545 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530546 ar9280Modes_original_tx_gain_9280_2,
547 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530548 } 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 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530553}
554
Sujithcbe61d82009-02-09 13:27:12 +0530555static int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700556{
557 int ecode;
558
559 if (!ath9k_hw_chip_test(ah)) {
560 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd4632008-11-28 22:18:05 +0530561 "hardware self-test failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700562 return -ENODEV;
563 }
564
565 ecode = ath9k_hw_rf_claim(ah);
566 if (ecode != 0)
567 return ecode;
568
569 ecode = ath9k_hw_eeprom_attach(ah);
570 if (ecode != 0)
571 return ecode;
572 ecode = ath9k_hw_rfattach(ah);
573 if (ecode != 0)
574 return ecode;
575
576 if (!AR_SREV_9100(ah)) {
577 ath9k_hw_ani_setup(ah);
578 ath9k_hw_ani_attach(ah);
579 }
Sujithf1dc5602008-10-29 10:16:30 +0530580
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700581 return 0;
582}
583
Sujithcbe61d82009-02-09 13:27:12 +0530584static struct ath_hw *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
585 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586{
Sujithcbe61d82009-02-09 13:27:12 +0530587 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700588 int ecode;
Sujithf6688cd2008-12-07 21:43:10 +0530589 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700590
Sujithcbe61d82009-02-09 13:27:12 +0530591 ah = ath9k_hw_newstate(devid, sc, status);
592 if (ah == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 return NULL;
594
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595 ath9k_hw_set_defaults(ah);
596
Sujith2660b812009-02-09 13:27:26 +0530597 if (ah->config.intr_mitigation != 0)
598 ah->intr_mitigation = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599
600 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithcbe61d82009-02-09 13:27:12 +0530601 DPRINTF(sc, ATH_DBG_RESET, "Couldn't reset chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602 ecode = -EIO;
603 goto bad;
604 }
605
606 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithcbe61d82009-02-09 13:27:12 +0530607 DPRINTF(sc, ATH_DBG_RESET, "Couldn't wakeup chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 ecode = -EIO;
609 goto bad;
610 }
611
Sujith2660b812009-02-09 13:27:26 +0530612 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
Sujithd535a422009-02-09 13:27:06 +0530613 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) {
Sujith2660b812009-02-09 13:27:26 +0530614 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 SER_REG_MODE_ON;
616 } else {
Sujith2660b812009-02-09 13:27:26 +0530617 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618 SER_REG_MODE_OFF;
619 }
620 }
Sujithf1dc5602008-10-29 10:16:30 +0530621
Sujithcbe61d82009-02-09 13:27:12 +0530622 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530623 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700624
Sujithd535a422009-02-09 13:27:06 +0530625 if ((ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCI) &&
626 (ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCIE) &&
627 (ah->hw_version.macVersion != AR_SREV_VERSION_9160) &&
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530628 (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) && (!AR_SREV_9285(ah))) {
Sujithcbe61d82009-02-09 13:27:12 +0530629 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +0530630 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530631 "this driver\n", ah->hw_version.macVersion,
632 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700633 ecode = -EOPNOTSUPP;
634 goto bad;
635 }
636
637 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530638 ah->iq_caldata.calData = &iq_cal_multi_sample;
639 ah->supp_cals = IQ_MISMATCH_CAL;
640 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 }
Sujithd535a422009-02-09 13:27:06 +0530642 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643
644 if (AR_SREV_9160_10_OR_LATER(ah)) {
645 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530646 ah->iq_caldata.calData = &iq_cal_single_sample;
647 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530649 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530651 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652 &adc_init_dc_cal;
653 } else {
Sujith2660b812009-02-09 13:27:26 +0530654 ah->iq_caldata.calData = &iq_cal_multi_sample;
655 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530657 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700658 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530659 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700660 &adc_init_dc_cal;
661 }
Sujith2660b812009-02-09 13:27:26 +0530662 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663 }
664
Sujith9c81e8b2009-03-09 09:31:49 +0530665 ah->ani_function = ATH9K_ANI_ALL;
666 if (AR_SREV_9280_10_OR_LATER(ah))
667 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668
Sujithcbe61d82009-02-09 13:27:12 +0530669 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +0530670 "This Mac Chip Rev 0x%02x.%x is \n",
Sujithd535a422009-02-09 13:27:06 +0530671 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530673 if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530674
Sujith2660b812009-02-09 13:27:26 +0530675 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530676 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530677 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530678 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
679
Sujith2660b812009-02-09 13:27:26 +0530680 if (ah->config.pcie_clock_req) {
681 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530682 ar9285PciePhy_clkreq_off_L1_9285_1_2,
683 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
684 } else {
Sujith2660b812009-02-09 13:27:26 +0530685 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530686 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
687 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
688 2);
689 }
690 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530691 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530692 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530694 ARRAY_SIZE(ar9285Common_9285), 2);
695
Sujith2660b812009-02-09 13:27:26 +0530696 if (ah->config.pcie_clock_req) {
697 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530698 ar9285PciePhy_clkreq_off_L1_9285,
699 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
700 } else {
Sujith2660b812009-02-09 13:27:26 +0530701 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530702 ar9285PciePhy_clkreq_always_on_L1_9285,
703 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
704 }
705 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530706 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530708 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 ARRAY_SIZE(ar9280Common_9280_2), 2);
710
Sujith2660b812009-02-09 13:27:26 +0530711 if (ah->config.pcie_clock_req) {
712 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530713 ar9280PciePhy_clkreq_off_L1_9280,
714 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 } else {
Sujith2660b812009-02-09 13:27:26 +0530716 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530717 ar9280PciePhy_clkreq_always_on_L1_9280,
718 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 }
Sujith2660b812009-02-09 13:27:26 +0530720 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530722 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530724 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530726 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 ARRAY_SIZE(ar9280Common_9280), 2);
728 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700730 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530733 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700734 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530735 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530737 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700738 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530741 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Bank7_9160), 2);
749 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530750 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751 ar5416Addac_91601_1,
752 ARRAY_SIZE(ar5416Addac_91601_1), 2);
753 } else {
Sujith2660b812009-02-09 13:27:26 +0530754 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 ARRAY_SIZE(ar5416Addac_9160), 2);
756 }
757 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530764 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Addac_9100), 2);
780 } else {
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530787 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700788 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530789 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530791 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700792 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530793 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530795 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530797 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530799 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530801 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ARRAY_SIZE(ar5416Addac), 2);
803 }
804
Sujith2660b812009-02-09 13:27:26 +0530805 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ath9k_hw_configpcipowersave(ah, 0);
807 else
Sujithf1dc5602008-10-29 10:16:30 +0530808 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700809
810 ecode = ath9k_hw_post_attach(ah);
811 if (ecode != 0)
812 goto bad;
813
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530814 if (AR_SREV_9285_12_OR_LATER(ah)) {
815 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
816
817 /* txgain table */
818 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
819 INIT_INI_ARRAY(&ah->iniModesTxGain,
820 ar9285Modes_high_power_tx_gain_9285_1_2,
821 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
822 } else {
823 INIT_INI_ARRAY(&ah->iniModesTxGain,
824 ar9285Modes_original_tx_gain_9285_1_2,
825 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
826 }
827
828 }
829
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530830 /* rxgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530831 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530832 ath9k_hw_init_rxgain_ini(ah);
833
834 /* txgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530835 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530836 ath9k_hw_init_txgain_ini(ah);
837
Sujith06d0f062009-02-12 10:06:45 +0530838 if (!ath9k_hw_fill_cap_info(ah)) {
839 DPRINTF(sc, ATH_DBG_RESET, "failed ath9k_hw_fill_cap_info\n");
840 ecode = -EINVAL;
841 goto bad;
842 }
843
844 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
845 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
846
847 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530848 for (i = 0; i < ah->iniModes.ia_rows; i++) {
849 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700850
Sujith2660b812009-02-09 13:27:26 +0530851 for (j = 1; j < ah->iniModes.ia_columns; j++) {
852 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700853
Sujith2660b812009-02-09 13:27:26 +0530854 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530855 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530856 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700857 reg, val);
858 }
859 }
860 }
Sujithf6688cd2008-12-07 21:43:10 +0530861
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862 ecode = ath9k_hw_init_macaddr(ah);
863 if (ecode != 0) {
Sujithcbe61d82009-02-09 13:27:12 +0530864 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +0530865 "failed initializing mac address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700866 goto bad;
867 }
868
869 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530870 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700871 else
Sujith2660b812009-02-09 13:27:26 +0530872 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700874 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700875
876 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700877bad:
Sujithcbe61d82009-02-09 13:27:12 +0530878 if (ah)
879 ath9k_hw_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700880 if (status)
881 *status = ecode;
Sujithf1dc5602008-10-29 10:16:30 +0530882
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700883 return NULL;
884}
885
Sujithcbe61d82009-02-09 13:27:12 +0530886static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530887 struct ath9k_channel *chan)
888{
889 u32 synthDelay;
890
891 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530892 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530893 synthDelay = (4 * synthDelay) / 22;
894 else
895 synthDelay /= 10;
896
897 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
898
899 udelay(synthDelay + BASE_ACTIVATE_DELAY);
900}
901
Sujithcbe61d82009-02-09 13:27:12 +0530902static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530903{
904 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
905 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
906
907 REG_WRITE(ah, AR_QOS_NO_ACK,
908 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
909 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
910 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
911
912 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
913 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
914 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
915 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
916 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
917}
918
Sujithcbe61d82009-02-09 13:27:12 +0530919static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530920 struct ath9k_channel *chan)
921{
922 u32 pll;
923
924 if (AR_SREV_9100(ah)) {
925 if (chan && IS_CHAN_5GHZ(chan))
926 pll = 0x1450;
927 else
928 pll = 0x1458;
929 } else {
930 if (AR_SREV_9280_10_OR_LATER(ah)) {
931 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
932
933 if (chan && IS_CHAN_HALF_RATE(chan))
934 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
935 else if (chan && IS_CHAN_QUARTER_RATE(chan))
936 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
937
938 if (chan && IS_CHAN_5GHZ(chan)) {
939 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
940
941
942 if (AR_SREV_9280_20(ah)) {
943 if (((chan->channel % 20) == 0)
944 || ((chan->channel % 10) == 0))
945 pll = 0x2850;
946 else
947 pll = 0x142c;
948 }
949 } else {
950 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
951 }
952
953 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
954
955 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
956
957 if (chan && IS_CHAN_HALF_RATE(chan))
958 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
959 else if (chan && IS_CHAN_QUARTER_RATE(chan))
960 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
961
962 if (chan && IS_CHAN_5GHZ(chan))
963 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
964 else
965 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
966 } else {
967 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
968
969 if (chan && IS_CHAN_HALF_RATE(chan))
970 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
971 else if (chan && IS_CHAN_QUARTER_RATE(chan))
972 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
973
974 if (chan && IS_CHAN_5GHZ(chan))
975 pll |= SM(0xa, AR_RTC_PLL_DIV);
976 else
977 pll |= SM(0xb, AR_RTC_PLL_DIV);
978 }
979 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100980 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530981
982 udelay(RTC_PLL_SETTLE_DELAY);
983
984 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
985}
986
Sujithcbe61d82009-02-09 13:27:12 +0530987static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530988{
Sujithf1dc5602008-10-29 10:16:30 +0530989 int rx_chainmask, tx_chainmask;
990
Sujith2660b812009-02-09 13:27:26 +0530991 rx_chainmask = ah->rxchainmask;
992 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +0530993
994 switch (rx_chainmask) {
995 case 0x5:
996 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
997 AR_PHY_SWAP_ALT_CHAIN);
998 case 0x3:
Sujithd535a422009-02-09 13:27:06 +0530999 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301000 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1001 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1002 break;
1003 }
1004 case 0x1:
1005 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301006 case 0x7:
1007 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1008 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1009 break;
1010 default:
1011 break;
1012 }
1013
1014 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1015 if (tx_chainmask == 0x5) {
1016 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1017 AR_PHY_SWAP_ALT_CHAIN);
1018 }
1019 if (AR_SREV_9100(ah))
1020 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1021 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1022}
1023
Sujithcbe61d82009-02-09 13:27:12 +05301024static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001025 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301026{
Sujith2660b812009-02-09 13:27:26 +05301027 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301028 AR_IMR_TXURN |
1029 AR_IMR_RXERR |
1030 AR_IMR_RXORN |
1031 AR_IMR_BCNMISC;
1032
Sujith2660b812009-02-09 13:27:26 +05301033 if (ah->intr_mitigation)
1034 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301035 else
Sujith2660b812009-02-09 13:27:26 +05301036 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301037
Sujith2660b812009-02-09 13:27:26 +05301038 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301039
Colin McCabed97809d2008-12-01 13:38:55 -08001040 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301041 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301042
Sujith2660b812009-02-09 13:27:26 +05301043 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301044 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1045
1046 if (!AR_SREV_9100(ah)) {
1047 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1048 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1049 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1050 }
1051}
1052
Sujithcbe61d82009-02-09 13:27:12 +05301053static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301054{
Sujithf1dc5602008-10-29 10:16:30 +05301055 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd4632008-11-28 22:18:05 +05301056 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301057 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301058 return false;
1059 } else {
1060 REG_RMW_FIELD(ah, AR_TIME_OUT,
1061 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301062 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301063 return true;
1064 }
1065}
1066
Sujithcbe61d82009-02-09 13:27:12 +05301067static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301068{
Sujithf1dc5602008-10-29 10:16:30 +05301069 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd4632008-11-28 22:18:05 +05301070 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301071 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301072 return false;
1073 } else {
1074 REG_RMW_FIELD(ah, AR_TIME_OUT,
1075 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301076 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301077 return true;
1078 }
1079}
1080
Sujithcbe61d82009-02-09 13:27:12 +05301081static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301082{
Sujithf1dc5602008-10-29 10:16:30 +05301083 if (tu > 0xFFFF) {
1084 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd4632008-11-28 22:18:05 +05301085 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301086 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301087 return false;
1088 } else {
1089 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301090 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301091 return true;
1092 }
1093}
1094
Sujithcbe61d82009-02-09 13:27:12 +05301095static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301096{
Sujith2660b812009-02-09 13:27:26 +05301097 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1098 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301099
Sujith2660b812009-02-09 13:27:26 +05301100 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301101 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301102 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1103 if (ah->slottime != (u32) -1)
1104 ath9k_hw_setslottime(ah, ah->slottime);
1105 if (ah->acktimeout != (u32) -1)
1106 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1107 if (ah->ctstimeout != (u32) -1)
1108 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1109 if (ah->globaltxtimeout != (u32) -1)
1110 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301111}
1112
1113const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1114{
1115 return vendorid == ATHEROS_VENDOR_ID ?
1116 ath9k_hw_devname(devid) : NULL;
1117}
1118
Sujithcbe61d82009-02-09 13:27:12 +05301119void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001120{
1121 if (!AR_SREV_9100(ah))
1122 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001123
Sujithf1dc5602008-10-29 10:16:30 +05301124 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001125 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1126 kfree(ah);
1127}
1128
Sujithcbe61d82009-02-09 13:27:12 +05301129struct ath_hw *ath9k_hw_attach(u16 devid, struct ath_softc *sc, int *error)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001130{
Sujithcbe61d82009-02-09 13:27:12 +05301131 struct ath_hw *ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001132
Sujithf1dc5602008-10-29 10:16:30 +05301133 switch (devid) {
1134 case AR5416_DEVID_PCI:
1135 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001136 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301137 case AR9160_DEVID_PCI:
1138 case AR9280_DEVID_PCI:
1139 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301140 case AR9285_DEVID_PCIE:
Sujithcbe61d82009-02-09 13:27:12 +05301141 ah = ath9k_hw_do_attach(devid, sc, error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001142 break;
Sujithf1dc5602008-10-29 10:16:30 +05301143 default:
Sujithf1dc5602008-10-29 10:16:30 +05301144 *error = -ENXIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001145 break;
1146 }
1147
Sujithf1dc5602008-10-29 10:16:30 +05301148 return ah;
1149}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001150
Sujithf1dc5602008-10-29 10:16:30 +05301151/*******/
1152/* INI */
1153/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001154
Sujithcbe61d82009-02-09 13:27:12 +05301155static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301156 struct ath9k_channel *chan)
1157{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301158 /*
1159 * Set the RX_ABORT and RX_DIS and clear if off only after
1160 * RXE is set for MAC. This prevents frames with corrupted
1161 * descriptor status.
1162 */
1163 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1164
1165
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001166 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301167 AR_SREV_9280_10_OR_LATER(ah))
1168 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001169
Sujithf1dc5602008-10-29 10:16:30 +05301170 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1171}
1172
Sujithcbe61d82009-02-09 13:27:12 +05301173static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301174 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301175 u32 reg, u32 value)
1176{
1177 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1178
Sujithd535a422009-02-09 13:27:06 +05301179 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301180 case AR9280_DEVID_PCI:
1181 if (reg == 0x7894) {
1182 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1183 "ini VAL: %x EEPROM: %x\n", value,
1184 (pBase->version & 0xff));
1185
1186 if ((pBase->version & 0xff) > 0x0a) {
1187 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1188 "PWDCLKIND: %d\n",
1189 pBase->pwdclkind);
1190 value &= ~AR_AN_TOP2_PWDCLKIND;
1191 value |= AR_AN_TOP2_PWDCLKIND &
1192 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1193 } else {
1194 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1195 "PWDCLKIND Earlier Rev\n");
1196 }
1197
1198 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1199 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200 }
Sujithf1dc5602008-10-29 10:16:30 +05301201 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001202 }
1203
Sujithf1dc5602008-10-29 10:16:30 +05301204 return value;
1205}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001206
Sujithcbe61d82009-02-09 13:27:12 +05301207static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301208 struct ar5416_eeprom_def *pEepData,
1209 u32 reg, u32 value)
1210{
Sujith2660b812009-02-09 13:27:26 +05301211 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301212 return value;
1213 else
1214 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1215}
1216
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301217static void ath9k_olc_init(struct ath_hw *ah)
1218{
1219 u32 i;
1220
1221 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1222 ah->originalGain[i] =
1223 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1224 AR_PHY_TX_GAIN);
1225 ah->PDADCdelta = 0;
1226}
1227
Sujithcbe61d82009-02-09 13:27:12 +05301228static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301229 struct ath9k_channel *chan,
1230 enum ath9k_ht_macmode macmode)
1231{
1232 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001233 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301234 u32 modesIndex, freqIndex;
1235 int status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001236
Sujithf1dc5602008-10-29 10:16:30 +05301237 switch (chan->chanmode) {
1238 case CHANNEL_A:
1239 case CHANNEL_A_HT20:
1240 modesIndex = 1;
1241 freqIndex = 1;
1242 break;
1243 case CHANNEL_A_HT40PLUS:
1244 case CHANNEL_A_HT40MINUS:
1245 modesIndex = 2;
1246 freqIndex = 1;
1247 break;
1248 case CHANNEL_G:
1249 case CHANNEL_G_HT20:
1250 case CHANNEL_B:
1251 modesIndex = 4;
1252 freqIndex = 2;
1253 break;
1254 case CHANNEL_G_HT40PLUS:
1255 case CHANNEL_G_HT40MINUS:
1256 modesIndex = 3;
1257 freqIndex = 2;
1258 break;
1259
1260 default:
1261 return -EINVAL;
1262 }
1263
1264 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301265 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301266 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301267
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001268 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301269 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301270 } else {
1271 struct ar5416IniArray temp;
1272 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301273 sizeof(u32) * ah->iniAddac.ia_rows *
1274 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301275
Sujith2660b812009-02-09 13:27:26 +05301276 memcpy(ah->addac5416_21,
1277 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301278
Sujith2660b812009-02-09 13:27:26 +05301279 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301280
Sujith2660b812009-02-09 13:27:26 +05301281 temp.ia_array = ah->addac5416_21;
1282 temp.ia_columns = ah->iniAddac.ia_columns;
1283 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301284 REG_WRITE_ARRAY(&temp, 1, regWrites);
1285 }
1286
1287 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1288
Sujith2660b812009-02-09 13:27:26 +05301289 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1290 u32 reg = INI_RA(&ah->iniModes, i, 0);
1291 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301292
Sujithf1dc5602008-10-29 10:16:30 +05301293 REG_WRITE(ah, reg, val);
1294
1295 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301296 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301297 udelay(100);
1298 }
1299
1300 DO_DELAY(regWrites);
1301 }
1302
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301303 if (AR_SREV_9280(ah))
Sujith2660b812009-02-09 13:27:26 +05301304 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301305
Senthil Balasubramanian4e845162009-03-06 11:24:10 +05301306 if (AR_SREV_9280(ah) || (AR_SREV_9285(ah) &&
1307 AR_SREV_9285_12_OR_LATER(ah)))
Sujith2660b812009-02-09 13:27:26 +05301308 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301309
Sujith2660b812009-02-09 13:27:26 +05301310 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1311 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1312 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301313
1314 REG_WRITE(ah, reg, val);
1315
1316 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301317 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301318 udelay(100);
1319 }
1320
1321 DO_DELAY(regWrites);
1322 }
1323
1324 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1325
1326 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301327 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301328 regWrites);
1329 }
1330
1331 ath9k_hw_override_ini(ah, chan);
1332 ath9k_hw_set_regs(ah, chan, macmode);
1333 ath9k_hw_init_chain_masks(ah);
1334
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301335 if (OLC_FOR_AR9280_20_LATER)
1336 ath9k_olc_init(ah);
1337
Sujithf74df6f2009-02-09 13:27:24 +05301338 status = ah->eep_ops->set_txpower(ah, chan,
1339 ath9k_regd_get_ctl(ah, chan),
1340 channel->max_antenna_gain * 2,
1341 channel->max_power * 2,
1342 min((u32) MAX_RATE_POWER,
1343 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301344 if (status != 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd4632008-11-28 22:18:05 +05301346 "error init'ing transmit power\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001347 return -EIO;
1348 }
1349
Sujithf1dc5602008-10-29 10:16:30 +05301350 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1351 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd4632008-11-28 22:18:05 +05301352 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353 return -EIO;
1354 }
1355
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356 return 0;
1357}
1358
Sujithf1dc5602008-10-29 10:16:30 +05301359/****************************************/
1360/* Reset and Channel Switching Routines */
1361/****************************************/
1362
Sujithcbe61d82009-02-09 13:27:12 +05301363static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301364{
1365 u32 rfMode = 0;
1366
1367 if (chan == NULL)
1368 return;
1369
1370 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1371 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1372
1373 if (!AR_SREV_9280_10_OR_LATER(ah))
1374 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1375 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1376
1377 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1378 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1379
1380 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1381}
1382
Sujithcbe61d82009-02-09 13:27:12 +05301383static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301384{
1385 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1386}
1387
Sujithcbe61d82009-02-09 13:27:12 +05301388static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301389{
1390 u32 regval;
1391
1392 regval = REG_READ(ah, AR_AHB_MODE);
1393 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1394
1395 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1396 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1397
Sujith2660b812009-02-09 13:27:26 +05301398 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301399
1400 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1401 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1402
1403 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1404
1405 if (AR_SREV_9285(ah)) {
1406 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1407 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1408 } else {
1409 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1410 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1411 }
1412}
1413
Sujithcbe61d82009-02-09 13:27:12 +05301414static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301415{
1416 u32 val;
1417
1418 val = REG_READ(ah, AR_STA_ID1);
1419 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1420 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001421 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301422 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1423 | AR_STA_ID1_KSRCH_MODE);
1424 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1425 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001426 case NL80211_IFTYPE_ADHOC:
Sujithf1dc5602008-10-29 10:16:30 +05301427 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1428 | AR_STA_ID1_KSRCH_MODE);
1429 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1430 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001431 case NL80211_IFTYPE_STATION:
1432 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301433 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1434 break;
1435 }
1436}
1437
Sujithcbe61d82009-02-09 13:27:12 +05301438static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001439 u32 coef_scaled,
1440 u32 *coef_mantissa,
1441 u32 *coef_exponent)
1442{
1443 u32 coef_exp, coef_man;
1444
1445 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1446 if ((coef_scaled >> coef_exp) & 0x1)
1447 break;
1448
1449 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1450
1451 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1452
1453 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1454 *coef_exponent = coef_exp - 16;
1455}
1456
Sujithcbe61d82009-02-09 13:27:12 +05301457static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301458 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459{
1460 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1461 u32 clockMhzScaled = 0x64000000;
1462 struct chan_centers centers;
1463
1464 if (IS_CHAN_HALF_RATE(chan))
1465 clockMhzScaled = clockMhzScaled >> 1;
1466 else if (IS_CHAN_QUARTER_RATE(chan))
1467 clockMhzScaled = clockMhzScaled >> 2;
1468
1469 ath9k_hw_get_channel_centers(ah, chan, &centers);
1470 coef_scaled = clockMhzScaled / centers.synth_center;
1471
1472 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1473 &ds_coef_exp);
1474
1475 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1476 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1477 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1478 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1479
1480 coef_scaled = (9 * coef_scaled) / 10;
1481
1482 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1483 &ds_coef_exp);
1484
1485 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1486 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1487 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1488 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1489}
1490
Sujithcbe61d82009-02-09 13:27:12 +05301491static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301492{
1493 u32 rst_flags;
1494 u32 tmpReg;
1495
Sujith70768492009-02-16 13:23:12 +05301496 if (AR_SREV_9100(ah)) {
1497 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1498 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1499 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1500 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1501 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1502 }
1503
Sujithf1dc5602008-10-29 10:16:30 +05301504 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1505 AR_RTC_FORCE_WAKE_ON_INT);
1506
1507 if (AR_SREV_9100(ah)) {
1508 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1509 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1510 } else {
1511 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1512 if (tmpReg &
1513 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1514 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1515 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1516 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1517 } else {
1518 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1519 }
1520
1521 rst_flags = AR_RTC_RC_MAC_WARM;
1522 if (type == ATH9K_RESET_COLD)
1523 rst_flags |= AR_RTC_RC_MAC_COLD;
1524 }
1525
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001526 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301527 udelay(50);
1528
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001529 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301530 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301531 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301532 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301533 return false;
1534 }
1535
1536 if (!AR_SREV_9100(ah))
1537 REG_WRITE(ah, AR_RC, 0);
1538
1539 ath9k_hw_init_pll(ah, NULL);
1540
1541 if (AR_SREV_9100(ah))
1542 udelay(50);
1543
1544 return true;
1545}
1546
Sujithcbe61d82009-02-09 13:27:12 +05301547static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301548{
1549 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1550 AR_RTC_FORCE_WAKE_ON_INT);
1551
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001552 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301553 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001554 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301555
1556 if (!ath9k_hw_wait(ah,
1557 AR_RTC_STATUS,
1558 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301559 AR_RTC_STATUS_ON,
1560 AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301561 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301562 return false;
1563 }
1564
1565 ath9k_hw_read_revisions(ah);
1566
1567 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1568}
1569
Sujithcbe61d82009-02-09 13:27:12 +05301570static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301571{
1572 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1573 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1574
1575 switch (type) {
1576 case ATH9K_RESET_POWER_ON:
1577 return ath9k_hw_set_reset_power_on(ah);
1578 break;
1579 case ATH9K_RESET_WARM:
1580 case ATH9K_RESET_COLD:
1581 return ath9k_hw_set_reset(ah, type);
1582 break;
1583 default:
1584 return false;
1585 }
1586}
1587
Sujithcbe61d82009-02-09 13:27:12 +05301588static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301589 enum ath9k_ht_macmode macmode)
1590{
1591 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301592 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301593
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301594 if (AR_SREV_9285_10_OR_LATER(ah))
1595 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1596 AR_PHY_FC_ENABLE_DAC_FIFO);
1597
Sujithf1dc5602008-10-29 10:16:30 +05301598 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301599 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301600
1601 if (IS_CHAN_HT40(chan)) {
1602 phymode |= AR_PHY_FC_DYN2040_EN;
1603
1604 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1605 (chan->chanmode == CHANNEL_G_HT40PLUS))
1606 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1607
Sujith2660b812009-02-09 13:27:26 +05301608 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301609 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1610 }
1611 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1612
1613 ath9k_hw_set11nmac2040(ah, macmode);
1614
1615 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1616 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1617}
1618
Sujithcbe61d82009-02-09 13:27:12 +05301619static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301620 struct ath9k_channel *chan)
1621{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301622 if (OLC_FOR_AR9280_20_LATER) {
1623 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1624 return false;
1625 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301626 return false;
1627
1628 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1629 return false;
1630
Sujith2660b812009-02-09 13:27:26 +05301631 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301632 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301633 ath9k_hw_set_rfmode(ah, chan);
1634
1635 return true;
1636}
1637
Sujithcbe61d82009-02-09 13:27:12 +05301638static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301639 struct ath9k_channel *chan,
1640 enum ath9k_ht_macmode macmode)
1641{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001642 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301643 u32 synthDelay, qnum;
1644
1645 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1646 if (ath9k_hw_numtxpending(ah, qnum)) {
1647 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd4632008-11-28 22:18:05 +05301648 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301649 return false;
1650 }
1651 }
1652
1653 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1654 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301655 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujith04bd4632008-11-28 22:18:05 +05301656 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
1657 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301658 return false;
1659 }
1660
1661 ath9k_hw_set_regs(ah, chan, macmode);
1662
1663 if (AR_SREV_9280_10_OR_LATER(ah)) {
1664 if (!(ath9k_hw_ar9280_set_channel(ah, chan))) {
1665 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd4632008-11-28 22:18:05 +05301666 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301667 return false;
1668 }
1669 } else {
1670 if (!(ath9k_hw_set_channel(ah, chan))) {
1671 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd4632008-11-28 22:18:05 +05301672 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301673 return false;
1674 }
1675 }
1676
Sujithf74df6f2009-02-09 13:27:24 +05301677 if (ah->eep_ops->set_txpower(ah, chan,
1678 ath9k_regd_get_ctl(ah, chan),
1679 channel->max_antenna_gain * 2,
1680 channel->max_power * 2,
1681 min((u32) MAX_RATE_POWER,
1682 (u32) ah->regulatory.power_limit)) != 0) {
Sujithf1dc5602008-10-29 10:16:30 +05301683 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd4632008-11-28 22:18:05 +05301684 "error init'ing transmit power\n");
Sujithf1dc5602008-10-29 10:16:30 +05301685 return false;
1686 }
1687
1688 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301689 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301690 synthDelay = (4 * synthDelay) / 22;
1691 else
1692 synthDelay /= 10;
1693
1694 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1695
1696 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1697
1698 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1699 ath9k_hw_set_delta_slope(ah, chan);
1700
1701 if (AR_SREV_9280_10_OR_LATER(ah))
1702 ath9k_hw_9280_spur_mitigate(ah, chan);
1703 else
1704 ath9k_hw_spur_mitigate(ah, chan);
1705
1706 if (!chan->oneTimeCalsDone)
1707 chan->oneTimeCalsDone = true;
1708
1709 return true;
1710}
1711
Sujithcbe61d82009-02-09 13:27:12 +05301712static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001713{
1714 int bb_spur = AR_NO_SPUR;
1715 int freq;
1716 int bin, cur_bin;
1717 int bb_spur_off, spur_subchannel_sd;
1718 int spur_freq_sd;
1719 int spur_delta_phase;
1720 int denominator;
1721 int upper, lower, cur_vit_mask;
1722 int tmp, newVal;
1723 int i;
1724 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1725 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1726 };
1727 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1728 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1729 };
1730 int inc[4] = { 0, 100, 0, 0 };
1731 struct chan_centers centers;
1732
1733 int8_t mask_m[123];
1734 int8_t mask_p[123];
1735 int8_t mask_amt;
1736 int tmp_mask;
1737 int cur_bb_spur;
1738 bool is2GHz = IS_CHAN_2GHZ(chan);
1739
1740 memset(&mask_m, 0, sizeof(int8_t) * 123);
1741 memset(&mask_p, 0, sizeof(int8_t) * 123);
1742
1743 ath9k_hw_get_channel_centers(ah, chan, &centers);
1744 freq = centers.synth_center;
1745
Sujith2660b812009-02-09 13:27:26 +05301746 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301748 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001749
1750 if (is2GHz)
1751 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1752 else
1753 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1754
1755 if (AR_NO_SPUR == cur_bb_spur)
1756 break;
1757 cur_bb_spur = cur_bb_spur - freq;
1758
1759 if (IS_CHAN_HT40(chan)) {
1760 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1761 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1762 bb_spur = cur_bb_spur;
1763 break;
1764 }
1765 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1766 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1767 bb_spur = cur_bb_spur;
1768 break;
1769 }
1770 }
1771
1772 if (AR_NO_SPUR == bb_spur) {
1773 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1774 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1775 return;
1776 } else {
1777 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1778 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1779 }
1780
1781 bin = bb_spur * 320;
1782
1783 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1784
1785 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1786 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1787 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1788 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1789 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1790
1791 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1792 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1793 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1794 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1795 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1796 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1797
1798 if (IS_CHAN_HT40(chan)) {
1799 if (bb_spur < 0) {
1800 spur_subchannel_sd = 1;
1801 bb_spur_off = bb_spur + 10;
1802 } else {
1803 spur_subchannel_sd = 0;
1804 bb_spur_off = bb_spur - 10;
1805 }
1806 } else {
1807 spur_subchannel_sd = 0;
1808 bb_spur_off = bb_spur;
1809 }
1810
1811 if (IS_CHAN_HT40(chan))
1812 spur_delta_phase =
1813 ((bb_spur * 262144) /
1814 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1815 else
1816 spur_delta_phase =
1817 ((bb_spur * 524288) /
1818 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1819
1820 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1821 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1822
1823 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1824 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1825 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1826 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1827
1828 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1829 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1830
1831 cur_bin = -6000;
1832 upper = bin + 100;
1833 lower = bin - 100;
1834
1835 for (i = 0; i < 4; i++) {
1836 int pilot_mask = 0;
1837 int chan_mask = 0;
1838 int bp = 0;
1839 for (bp = 0; bp < 30; bp++) {
1840 if ((cur_bin > lower) && (cur_bin < upper)) {
1841 pilot_mask = pilot_mask | 0x1 << bp;
1842 chan_mask = chan_mask | 0x1 << bp;
1843 }
1844 cur_bin += 100;
1845 }
1846 cur_bin += inc[i];
1847 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1848 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1849 }
1850
1851 cur_vit_mask = 6100;
1852 upper = bin + 120;
1853 lower = bin - 120;
1854
1855 for (i = 0; i < 123; i++) {
1856 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001857
1858 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001859 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001860
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001861 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001862 mask_amt = 1;
1863 else
1864 mask_amt = 0;
1865 if (cur_vit_mask < 0)
1866 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1867 else
1868 mask_p[cur_vit_mask / 100] = mask_amt;
1869 }
1870 cur_vit_mask -= 100;
1871 }
1872
1873 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1874 | (mask_m[48] << 26) | (mask_m[49] << 24)
1875 | (mask_m[50] << 22) | (mask_m[51] << 20)
1876 | (mask_m[52] << 18) | (mask_m[53] << 16)
1877 | (mask_m[54] << 14) | (mask_m[55] << 12)
1878 | (mask_m[56] << 10) | (mask_m[57] << 8)
1879 | (mask_m[58] << 6) | (mask_m[59] << 4)
1880 | (mask_m[60] << 2) | (mask_m[61] << 0);
1881 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1882 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1883
1884 tmp_mask = (mask_m[31] << 28)
1885 | (mask_m[32] << 26) | (mask_m[33] << 24)
1886 | (mask_m[34] << 22) | (mask_m[35] << 20)
1887 | (mask_m[36] << 18) | (mask_m[37] << 16)
1888 | (mask_m[48] << 14) | (mask_m[39] << 12)
1889 | (mask_m[40] << 10) | (mask_m[41] << 8)
1890 | (mask_m[42] << 6) | (mask_m[43] << 4)
1891 | (mask_m[44] << 2) | (mask_m[45] << 0);
1892 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1893 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1894
1895 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1896 | (mask_m[18] << 26) | (mask_m[18] << 24)
1897 | (mask_m[20] << 22) | (mask_m[20] << 20)
1898 | (mask_m[22] << 18) | (mask_m[22] << 16)
1899 | (mask_m[24] << 14) | (mask_m[24] << 12)
1900 | (mask_m[25] << 10) | (mask_m[26] << 8)
1901 | (mask_m[27] << 6) | (mask_m[28] << 4)
1902 | (mask_m[29] << 2) | (mask_m[30] << 0);
1903 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1904 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1905
1906 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1907 | (mask_m[2] << 26) | (mask_m[3] << 24)
1908 | (mask_m[4] << 22) | (mask_m[5] << 20)
1909 | (mask_m[6] << 18) | (mask_m[7] << 16)
1910 | (mask_m[8] << 14) | (mask_m[9] << 12)
1911 | (mask_m[10] << 10) | (mask_m[11] << 8)
1912 | (mask_m[12] << 6) | (mask_m[13] << 4)
1913 | (mask_m[14] << 2) | (mask_m[15] << 0);
1914 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1915 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1916
1917 tmp_mask = (mask_p[15] << 28)
1918 | (mask_p[14] << 26) | (mask_p[13] << 24)
1919 | (mask_p[12] << 22) | (mask_p[11] << 20)
1920 | (mask_p[10] << 18) | (mask_p[9] << 16)
1921 | (mask_p[8] << 14) | (mask_p[7] << 12)
1922 | (mask_p[6] << 10) | (mask_p[5] << 8)
1923 | (mask_p[4] << 6) | (mask_p[3] << 4)
1924 | (mask_p[2] << 2) | (mask_p[1] << 0);
1925 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1926 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1927
1928 tmp_mask = (mask_p[30] << 28)
1929 | (mask_p[29] << 26) | (mask_p[28] << 24)
1930 | (mask_p[27] << 22) | (mask_p[26] << 20)
1931 | (mask_p[25] << 18) | (mask_p[24] << 16)
1932 | (mask_p[23] << 14) | (mask_p[22] << 12)
1933 | (mask_p[21] << 10) | (mask_p[20] << 8)
1934 | (mask_p[19] << 6) | (mask_p[18] << 4)
1935 | (mask_p[17] << 2) | (mask_p[16] << 0);
1936 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1937 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1938
1939 tmp_mask = (mask_p[45] << 28)
1940 | (mask_p[44] << 26) | (mask_p[43] << 24)
1941 | (mask_p[42] << 22) | (mask_p[41] << 20)
1942 | (mask_p[40] << 18) | (mask_p[39] << 16)
1943 | (mask_p[38] << 14) | (mask_p[37] << 12)
1944 | (mask_p[36] << 10) | (mask_p[35] << 8)
1945 | (mask_p[34] << 6) | (mask_p[33] << 4)
1946 | (mask_p[32] << 2) | (mask_p[31] << 0);
1947 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
1948 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
1949
1950 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
1951 | (mask_p[59] << 26) | (mask_p[58] << 24)
1952 | (mask_p[57] << 22) | (mask_p[56] << 20)
1953 | (mask_p[55] << 18) | (mask_p[54] << 16)
1954 | (mask_p[53] << 14) | (mask_p[52] << 12)
1955 | (mask_p[51] << 10) | (mask_p[50] << 8)
1956 | (mask_p[49] << 6) | (mask_p[48] << 4)
1957 | (mask_p[47] << 2) | (mask_p[46] << 0);
1958 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
1959 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
1960}
1961
Sujithcbe61d82009-02-09 13:27:12 +05301962static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963{
1964 int bb_spur = AR_NO_SPUR;
1965 int bin, cur_bin;
1966 int spur_freq_sd;
1967 int spur_delta_phase;
1968 int denominator;
1969 int upper, lower, cur_vit_mask;
1970 int tmp, new;
1971 int i;
1972 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1973 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1974 };
1975 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1976 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1977 };
1978 int inc[4] = { 0, 100, 0, 0 };
1979
1980 int8_t mask_m[123];
1981 int8_t mask_p[123];
1982 int8_t mask_amt;
1983 int tmp_mask;
1984 int cur_bb_spur;
1985 bool is2GHz = IS_CHAN_2GHZ(chan);
1986
1987 memset(&mask_m, 0, sizeof(int8_t) * 123);
1988 memset(&mask_p, 0, sizeof(int8_t) * 123);
1989
1990 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301991 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001992 if (AR_NO_SPUR == cur_bb_spur)
1993 break;
1994 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
1995 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
1996 bb_spur = cur_bb_spur;
1997 break;
1998 }
1999 }
2000
2001 if (AR_NO_SPUR == bb_spur)
2002 return;
2003
2004 bin = bb_spur * 32;
2005
2006 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2007 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2008 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2009 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2010 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2011
2012 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2013
2014 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2015 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2016 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2017 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2018 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2019 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2020
2021 spur_delta_phase = ((bb_spur * 524288) / 100) &
2022 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2023
2024 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2025 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2026
2027 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2028 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2029 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2030 REG_WRITE(ah, AR_PHY_TIMING11, new);
2031
2032 cur_bin = -6000;
2033 upper = bin + 100;
2034 lower = bin - 100;
2035
2036 for (i = 0; i < 4; i++) {
2037 int pilot_mask = 0;
2038 int chan_mask = 0;
2039 int bp = 0;
2040 for (bp = 0; bp < 30; bp++) {
2041 if ((cur_bin > lower) && (cur_bin < upper)) {
2042 pilot_mask = pilot_mask | 0x1 << bp;
2043 chan_mask = chan_mask | 0x1 << bp;
2044 }
2045 cur_bin += 100;
2046 }
2047 cur_bin += inc[i];
2048 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2049 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2050 }
2051
2052 cur_vit_mask = 6100;
2053 upper = bin + 120;
2054 lower = bin - 120;
2055
2056 for (i = 0; i < 123; i++) {
2057 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002058
2059 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002060 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002061
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002062 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002063 mask_amt = 1;
2064 else
2065 mask_amt = 0;
2066 if (cur_vit_mask < 0)
2067 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2068 else
2069 mask_p[cur_vit_mask / 100] = mask_amt;
2070 }
2071 cur_vit_mask -= 100;
2072 }
2073
2074 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2075 | (mask_m[48] << 26) | (mask_m[49] << 24)
2076 | (mask_m[50] << 22) | (mask_m[51] << 20)
2077 | (mask_m[52] << 18) | (mask_m[53] << 16)
2078 | (mask_m[54] << 14) | (mask_m[55] << 12)
2079 | (mask_m[56] << 10) | (mask_m[57] << 8)
2080 | (mask_m[58] << 6) | (mask_m[59] << 4)
2081 | (mask_m[60] << 2) | (mask_m[61] << 0);
2082 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2083 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2084
2085 tmp_mask = (mask_m[31] << 28)
2086 | (mask_m[32] << 26) | (mask_m[33] << 24)
2087 | (mask_m[34] << 22) | (mask_m[35] << 20)
2088 | (mask_m[36] << 18) | (mask_m[37] << 16)
2089 | (mask_m[48] << 14) | (mask_m[39] << 12)
2090 | (mask_m[40] << 10) | (mask_m[41] << 8)
2091 | (mask_m[42] << 6) | (mask_m[43] << 4)
2092 | (mask_m[44] << 2) | (mask_m[45] << 0);
2093 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2094 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2095
2096 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2097 | (mask_m[18] << 26) | (mask_m[18] << 24)
2098 | (mask_m[20] << 22) | (mask_m[20] << 20)
2099 | (mask_m[22] << 18) | (mask_m[22] << 16)
2100 | (mask_m[24] << 14) | (mask_m[24] << 12)
2101 | (mask_m[25] << 10) | (mask_m[26] << 8)
2102 | (mask_m[27] << 6) | (mask_m[28] << 4)
2103 | (mask_m[29] << 2) | (mask_m[30] << 0);
2104 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2105 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2106
2107 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2108 | (mask_m[2] << 26) | (mask_m[3] << 24)
2109 | (mask_m[4] << 22) | (mask_m[5] << 20)
2110 | (mask_m[6] << 18) | (mask_m[7] << 16)
2111 | (mask_m[8] << 14) | (mask_m[9] << 12)
2112 | (mask_m[10] << 10) | (mask_m[11] << 8)
2113 | (mask_m[12] << 6) | (mask_m[13] << 4)
2114 | (mask_m[14] << 2) | (mask_m[15] << 0);
2115 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2116 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2117
2118 tmp_mask = (mask_p[15] << 28)
2119 | (mask_p[14] << 26) | (mask_p[13] << 24)
2120 | (mask_p[12] << 22) | (mask_p[11] << 20)
2121 | (mask_p[10] << 18) | (mask_p[9] << 16)
2122 | (mask_p[8] << 14) | (mask_p[7] << 12)
2123 | (mask_p[6] << 10) | (mask_p[5] << 8)
2124 | (mask_p[4] << 6) | (mask_p[3] << 4)
2125 | (mask_p[2] << 2) | (mask_p[1] << 0);
2126 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2127 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2128
2129 tmp_mask = (mask_p[30] << 28)
2130 | (mask_p[29] << 26) | (mask_p[28] << 24)
2131 | (mask_p[27] << 22) | (mask_p[26] << 20)
2132 | (mask_p[25] << 18) | (mask_p[24] << 16)
2133 | (mask_p[23] << 14) | (mask_p[22] << 12)
2134 | (mask_p[21] << 10) | (mask_p[20] << 8)
2135 | (mask_p[19] << 6) | (mask_p[18] << 4)
2136 | (mask_p[17] << 2) | (mask_p[16] << 0);
2137 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2138 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2139
2140 tmp_mask = (mask_p[45] << 28)
2141 | (mask_p[44] << 26) | (mask_p[43] << 24)
2142 | (mask_p[42] << 22) | (mask_p[41] << 20)
2143 | (mask_p[40] << 18) | (mask_p[39] << 16)
2144 | (mask_p[38] << 14) | (mask_p[37] << 12)
2145 | (mask_p[36] << 10) | (mask_p[35] << 8)
2146 | (mask_p[34] << 6) | (mask_p[33] << 4)
2147 | (mask_p[32] << 2) | (mask_p[31] << 0);
2148 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2149 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2150
2151 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2152 | (mask_p[59] << 26) | (mask_p[58] << 24)
2153 | (mask_p[57] << 22) | (mask_p[56] << 20)
2154 | (mask_p[55] << 18) | (mask_p[54] << 16)
2155 | (mask_p[53] << 14) | (mask_p[52] << 12)
2156 | (mask_p[51] << 10) | (mask_p[50] << 8)
2157 | (mask_p[49] << 6) | (mask_p[48] << 4)
2158 | (mask_p[47] << 2) | (mask_p[46] << 0);
2159 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2160 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2161}
2162
Sujithcbe61d82009-02-09 13:27:12 +05302163int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002164 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002165{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002166 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002167 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302168 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169 u32 saveDefAntenna;
2170 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002171 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002172
Sujith2660b812009-02-09 13:27:26 +05302173 ah->extprotspacing = sc->ht_extprotspacing;
2174 ah->txchainmask = sc->tx_chainmask;
2175 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002176
Senthil Balasubramanian793c5922009-01-26 20:28:14 +05302177 if (AR_SREV_9285(ah)) {
Sujith2660b812009-02-09 13:27:26 +05302178 ah->txchainmask &= 0x1;
2179 ah->rxchainmask &= 0x1;
Senthil Balasubramanian793c5922009-01-26 20:28:14 +05302180 } else if (AR_SREV_9280(ah)) {
Sujith2660b812009-02-09 13:27:26 +05302181 ah->txchainmask &= 0x3;
2182 ah->rxchainmask &= 0x3;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183 }
2184
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002185 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2186 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002187
2188 if (curchan)
2189 ath9k_hw_getnf(ah, curchan);
2190
2191 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302192 (ah->chip_fullsleep != true) &&
2193 (ah->curchan != NULL) &&
2194 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302196 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302198 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002199
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002200 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302201 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002202 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002203 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002204 }
2205 }
2206
2207 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2208 if (saveDefAntenna == 0)
2209 saveDefAntenna = 1;
2210
2211 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2212
2213 saveLedState = REG_READ(ah, AR_CFG_LED) &
2214 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2215 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2216
2217 ath9k_hw_mark_phy_inactive(ah);
2218
2219 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujith04bd4632008-11-28 22:18:05 +05302220 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002221 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222 }
2223
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302224 if (AR_SREV_9280_10_OR_LATER(ah))
2225 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002227 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2228 if (r)
2229 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002231 /* Setup MFP options for CCMP */
2232 if (AR_SREV_9280_20_OR_LATER(ah)) {
2233 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2234 * frames when constructing CCMP AAD. */
2235 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2236 0xc7ff);
2237 ah->sw_mgmt_crypto = false;
2238 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2239 /* Disable hardware crypto for management frames */
2240 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2241 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2242 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2243 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2244 ah->sw_mgmt_crypto = true;
2245 } else
2246 ah->sw_mgmt_crypto = true;
2247
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002248 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2249 ath9k_hw_set_delta_slope(ah, chan);
2250
2251 if (AR_SREV_9280_10_OR_LATER(ah))
2252 ath9k_hw_9280_spur_mitigate(ah, chan);
2253 else
2254 ath9k_hw_spur_mitigate(ah, chan);
2255
Sujithf74df6f2009-02-09 13:27:24 +05302256 if (!ah->eep_ops->set_board_values(ah, chan)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd4632008-11-28 22:18:05 +05302258 "error setting board options\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002259 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002260 }
2261
2262 ath9k_hw_decrease_chain_power(ah, chan);
2263
Sujithba52da52009-02-09 13:27:10 +05302264 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2265 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002266 | macStaId1
2267 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302268 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302269 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302270 | ah->sta_id1_defaults);
2271 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002272
Sujithba52da52009-02-09 13:27:10 +05302273 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2274 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275
2276 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2277
Sujithba52da52009-02-09 13:27:10 +05302278 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2279 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2280 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002281
2282 REG_WRITE(ah, AR_ISR, ~0);
2283
2284 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2285
2286 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002287 if (!(ath9k_hw_ar9280_set_channel(ah, chan)))
2288 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002289 } else {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002290 if (!(ath9k_hw_set_channel(ah, chan)))
2291 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292 }
2293
2294 for (i = 0; i < AR_NUM_DCU; i++)
2295 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2296
Sujith2660b812009-02-09 13:27:26 +05302297 ah->intr_txqs = 0;
2298 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002299 ath9k_hw_resettxqueue(ah, i);
2300
Sujith2660b812009-02-09 13:27:26 +05302301 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002302 ath9k_hw_init_qos(ah);
2303
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302304#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302305 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302306 ath9k_enable_rfkill(ah);
2307#endif
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308 ath9k_hw_init_user_settings(ah);
2309
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002310 REG_WRITE(ah, AR_STA_ID1,
2311 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2312
2313 ath9k_hw_set_dma(ah);
2314
2315 REG_WRITE(ah, AR_OBS, 8);
2316
Sujith2660b812009-02-09 13:27:26 +05302317 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318
2319 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2320 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2321 }
2322
2323 ath9k_hw_init_bb(ah, chan);
2324
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002325 if (!ath9k_hw_init_cal(ah, chan))
2326 return -EIO;;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002327
Sujith2660b812009-02-09 13:27:26 +05302328 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2330 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2331 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2332 }
2333
2334 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2335
2336 if (AR_SREV_9100(ah)) {
2337 u32 mask;
2338 mask = REG_READ(ah, AR_CFG);
2339 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2340 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302341 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342 } else {
2343 mask =
2344 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2345 REG_WRITE(ah, AR_CFG, mask);
2346 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05302347 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002348 }
2349 } else {
2350#ifdef __BIG_ENDIAN
2351 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2352#endif
2353 }
2354
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002355 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356}
2357
Sujithf1dc5602008-10-29 10:16:30 +05302358/************************/
2359/* Key Cache Management */
2360/************************/
2361
Sujithcbe61d82009-02-09 13:27:12 +05302362bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002363{
Sujithf1dc5602008-10-29 10:16:30 +05302364 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002365
Sujith2660b812009-02-09 13:27:26 +05302366 if (entry >= ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302367 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302368 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002369 return false;
2370 }
2371
Sujithf1dc5602008-10-29 10:16:30 +05302372 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002373
Sujithf1dc5602008-10-29 10:16:30 +05302374 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2375 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2376 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2377 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2378 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2379 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2380 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2381 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2382
2383 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2384 u16 micentry = entry + 64;
2385
2386 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2387 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2388 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2389 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2390
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391 }
2392
Sujith2660b812009-02-09 13:27:26 +05302393 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302394 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002395
2396 return true;
2397}
2398
Sujithcbe61d82009-02-09 13:27:12 +05302399bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002400{
Sujithf1dc5602008-10-29 10:16:30 +05302401 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002402
Sujith2660b812009-02-09 13:27:26 +05302403 if (entry >= ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302404 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302405 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002407 }
2408
Sujithf1dc5602008-10-29 10:16:30 +05302409 if (mac != NULL) {
2410 macHi = (mac[5] << 8) | mac[4];
2411 macLo = (mac[3] << 24) |
2412 (mac[2] << 16) |
2413 (mac[1] << 8) |
2414 mac[0];
2415 macLo >>= 1;
2416 macLo |= (macHi & 1) << 31;
2417 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002418 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302419 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420 }
Sujithf1dc5602008-10-29 10:16:30 +05302421 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2422 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423
2424 return true;
2425}
2426
Sujithcbe61d82009-02-09 13:27:12 +05302427bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302428 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002429 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002430{
Sujith2660b812009-02-09 13:27:26 +05302431 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302432 u32 key0, key1, key2, key3, key4;
2433 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002434
Sujithf1dc5602008-10-29 10:16:30 +05302435 if (entry >= pCap->keycache_size) {
2436 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302437 "entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302438 return false;
2439 }
2440
2441 switch (k->kv_type) {
2442 case ATH9K_CIPHER_AES_OCB:
2443 keyType = AR_KEYTABLE_TYPE_AES;
2444 break;
2445 case ATH9K_CIPHER_AES_CCM:
2446 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2447 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302448 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302449 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002450 return false;
2451 }
Sujithf1dc5602008-10-29 10:16:30 +05302452 keyType = AR_KEYTABLE_TYPE_CCM;
2453 break;
2454 case ATH9K_CIPHER_TKIP:
2455 keyType = AR_KEYTABLE_TYPE_TKIP;
2456 if (ATH9K_IS_MIC_ENABLED(ah)
2457 && entry + 64 >= pCap->keycache_size) {
2458 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302459 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002460 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002461 }
Sujithf1dc5602008-10-29 10:16:30 +05302462 break;
2463 case ATH9K_CIPHER_WEP:
2464 if (k->kv_len < LEN_WEP40) {
2465 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302466 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302467 return false;
2468 }
2469 if (k->kv_len <= LEN_WEP40)
2470 keyType = AR_KEYTABLE_TYPE_40;
2471 else if (k->kv_len <= LEN_WEP104)
2472 keyType = AR_KEYTABLE_TYPE_104;
2473 else
2474 keyType = AR_KEYTABLE_TYPE_128;
2475 break;
2476 case ATH9K_CIPHER_CLR:
2477 keyType = AR_KEYTABLE_TYPE_CLR;
2478 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479 default:
Sujithf1dc5602008-10-29 10:16:30 +05302480 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd4632008-11-28 22:18:05 +05302481 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482 return false;
2483 }
Sujithf1dc5602008-10-29 10:16:30 +05302484
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002485 key0 = get_unaligned_le32(k->kv_val + 0);
2486 key1 = get_unaligned_le16(k->kv_val + 4);
2487 key2 = get_unaligned_le32(k->kv_val + 6);
2488 key3 = get_unaligned_le16(k->kv_val + 10);
2489 key4 = get_unaligned_le32(k->kv_val + 12);
Sujithf1dc5602008-10-29 10:16:30 +05302490 if (k->kv_len <= LEN_WEP104)
2491 key4 &= 0xff;
2492
Jouni Malinen672903b2009-03-02 15:06:31 +02002493 /*
2494 * Note: Key cache registers access special memory area that requires
2495 * two 32-bit writes to actually update the values in the internal
2496 * memory. Consequently, the exact order and pairs used here must be
2497 * maintained.
2498 */
2499
Sujithf1dc5602008-10-29 10:16:30 +05302500 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2501 u16 micentry = entry + 64;
2502
Jouni Malinen672903b2009-03-02 15:06:31 +02002503 /*
2504 * Write inverted key[47:0] first to avoid Michael MIC errors
2505 * on frames that could be sent or received at the same time.
2506 * The correct key will be written in the end once everything
2507 * else is ready.
2508 */
Sujithf1dc5602008-10-29 10:16:30 +05302509 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2510 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002511
2512 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302513 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2514 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002515
2516 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302517 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2518 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002519
2520 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302521 (void) ath9k_hw_keysetmac(ah, entry, mac);
2522
Sujith2660b812009-02-09 13:27:26 +05302523 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002524 /*
2525 * TKIP uses two key cache entries:
2526 * Michael MIC TX/RX keys in the same key cache entry
2527 * (idx = main index + 64):
2528 * key0 [31:0] = RX key [31:0]
2529 * key1 [15:0] = TX key [31:16]
2530 * key1 [31:16] = reserved
2531 * key2 [31:0] = RX key [63:32]
2532 * key3 [15:0] = TX key [15:0]
2533 * key3 [31:16] = reserved
2534 * key4 [31:0] = TX key [63:32]
2535 */
Sujithf1dc5602008-10-29 10:16:30 +05302536 u32 mic0, mic1, mic2, mic3, mic4;
2537
2538 mic0 = get_unaligned_le32(k->kv_mic + 0);
2539 mic2 = get_unaligned_le32(k->kv_mic + 4);
2540 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2541 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2542 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002543
2544 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302545 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2546 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002547
2548 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302549 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2550 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002551
2552 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302553 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2554 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2555 AR_KEYTABLE_TYPE_CLR);
2556
2557 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002558 /*
2559 * TKIP uses four key cache entries (two for group
2560 * keys):
2561 * Michael MIC TX/RX keys are in different key cache
2562 * entries (idx = main index + 64 for TX and
2563 * main index + 32 + 96 for RX):
2564 * key0 [31:0] = TX/RX MIC key [31:0]
2565 * key1 [31:0] = reserved
2566 * key2 [31:0] = TX/RX MIC key [63:32]
2567 * key3 [31:0] = reserved
2568 * key4 [31:0] = reserved
2569 *
2570 * Upper layer code will call this function separately
2571 * for TX and RX keys when these registers offsets are
2572 * used.
2573 */
Sujithf1dc5602008-10-29 10:16:30 +05302574 u32 mic0, mic2;
2575
2576 mic0 = get_unaligned_le32(k->kv_mic + 0);
2577 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002578
2579 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302580 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2581 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002582
2583 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302584 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2585 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002586
2587 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302588 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2589 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2590 AR_KEYTABLE_TYPE_CLR);
2591 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002592
2593 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302594 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2595 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002596
2597 /*
2598 * Write the correct (un-inverted) key[47:0] last to enable
2599 * TKIP now that all other registers are set with correct
2600 * values.
2601 */
Sujithf1dc5602008-10-29 10:16:30 +05302602 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2603 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2604 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002605 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302606 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2607 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002608
2609 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302610 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2611 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002612
2613 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302614 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2615 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2616
Jouni Malinen672903b2009-03-02 15:06:31 +02002617 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302618 (void) ath9k_hw_keysetmac(ah, entry, mac);
2619 }
2620
Sujithf1dc5602008-10-29 10:16:30 +05302621 return true;
2622}
2623
Sujithcbe61d82009-02-09 13:27:12 +05302624bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302625{
Sujith2660b812009-02-09 13:27:26 +05302626 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302627 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2628 if (val & AR_KEYTABLE_VALID)
2629 return true;
2630 }
2631 return false;
2632}
2633
2634/******************************/
2635/* Power Management (Chipset) */
2636/******************************/
2637
Sujithcbe61d82009-02-09 13:27:12 +05302638static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302639{
2640 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2641 if (setChip) {
2642 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2643 AR_RTC_FORCE_WAKE_EN);
2644 if (!AR_SREV_9100(ah))
2645 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2646
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002647 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302648 AR_RTC_RESET_EN);
2649 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002650}
2651
Sujithcbe61d82009-02-09 13:27:12 +05302652static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002653{
Sujithf1dc5602008-10-29 10:16:30 +05302654 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2655 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302656 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002657
Sujithf1dc5602008-10-29 10:16:30 +05302658 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2659 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2660 AR_RTC_FORCE_WAKE_ON_INT);
2661 } else {
2662 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2663 AR_RTC_FORCE_WAKE_EN);
2664 }
2665 }
2666}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002667
Sujithcbe61d82009-02-09 13:27:12 +05302668static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302669{
2670 u32 val;
2671 int i;
2672
2673 if (setChip) {
2674 if ((REG_READ(ah, AR_RTC_STATUS) &
2675 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2676 if (ath9k_hw_set_reset_reg(ah,
2677 ATH9K_RESET_POWER_ON) != true) {
2678 return false;
2679 }
2680 }
2681 if (AR_SREV_9100(ah))
2682 REG_SET_BIT(ah, AR_RTC_RESET,
2683 AR_RTC_RESET_EN);
2684
2685 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2686 AR_RTC_FORCE_WAKE_EN);
2687 udelay(50);
2688
2689 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2690 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2691 if (val == AR_RTC_STATUS_ON)
2692 break;
2693 udelay(50);
2694 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2695 AR_RTC_FORCE_WAKE_EN);
2696 }
2697 if (i == 0) {
2698 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd4632008-11-28 22:18:05 +05302699 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302700 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002701 }
2702 }
2703
Sujithf1dc5602008-10-29 10:16:30 +05302704 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2705
2706 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002707}
2708
Sujithcbe61d82009-02-09 13:27:12 +05302709bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302710{
Sujithcbe61d82009-02-09 13:27:12 +05302711 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302712 static const char *modes[] = {
2713 "AWAKE",
2714 "FULL-SLEEP",
2715 "NETWORK SLEEP",
2716 "UNDEFINED"
2717 };
Sujithf1dc5602008-10-29 10:16:30 +05302718
Sujith04bd4632008-11-28 22:18:05 +05302719 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT, "%s -> %s (%s)\n",
Sujith2660b812009-02-09 13:27:26 +05302720 modes[ah->power_mode], modes[mode],
Sujithf1dc5602008-10-29 10:16:30 +05302721 setChip ? "set chip " : "");
2722
2723 switch (mode) {
2724 case ATH9K_PM_AWAKE:
2725 status = ath9k_hw_set_power_awake(ah, setChip);
2726 break;
2727 case ATH9K_PM_FULL_SLEEP:
2728 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302729 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302730 break;
2731 case ATH9K_PM_NETWORK_SLEEP:
2732 ath9k_set_power_network_sleep(ah, setChip);
2733 break;
2734 default:
2735 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd4632008-11-28 22:18:05 +05302736 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302737 return false;
2738 }
Sujith2660b812009-02-09 13:27:26 +05302739 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302740
2741 return status;
2742}
2743
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002744/*
2745 * Helper for ASPM support.
2746 *
2747 * Disable PLL when in L0s as well as receiver clock when in L1.
2748 * This power saving option must be enabled through the SerDes.
2749 *
2750 * Programming the SerDes must go through the same 288 bit serial shift
2751 * register as the other analog registers. Hence the 9 writes.
2752 */
Sujithcbe61d82009-02-09 13:27:12 +05302753void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302754{
Sujithf1dc5602008-10-29 10:16:30 +05302755 u8 i;
2756
Sujith2660b812009-02-09 13:27:26 +05302757 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302758 return;
2759
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002760 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302761 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302762 return;
2763
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002764 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302765 if (restore)
2766 return;
2767
2768 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002769 /*
2770 * AR9280 2.0 or later chips use SerDes values from the
2771 * initvals.h initialized depending on chipset during
2772 * ath9k_hw_do_attach()
2773 */
Sujith2660b812009-02-09 13:27:26 +05302774 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2775 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2776 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302777 }
Sujithf1dc5602008-10-29 10:16:30 +05302778 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302779 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302780 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2781 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2782
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002783 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302784 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2785 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2786 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2787
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002788 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302789 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302790 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2791 else
2792 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2793
2794 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2795 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2796 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2797
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002798 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302799 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2800
Sujithf1dc5602008-10-29 10:16:30 +05302801 } else {
2802 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2803 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002804
2805 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302806 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2807 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2808 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002809
2810 /*
2811 * Ignore ah->ah_config.pcie_clock_req setting for
2812 * pre-AR9280 11n
2813 */
Sujithf1dc5602008-10-29 10:16:30 +05302814 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002815
Sujithf1dc5602008-10-29 10:16:30 +05302816 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2817 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2818 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002819
2820 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302821 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2822 }
2823
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002824 udelay(1000);
2825
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002826 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302827 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2828
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002829 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302830 if (ah->config.pcie_waen) {
2831 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302832 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302833 if (AR_SREV_9285(ah))
2834 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002835 /*
2836 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2837 * otherwise card may disappear.
2838 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302839 else if (AR_SREV_9280(ah))
2840 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302841 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302842 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302843 }
2844}
2845
2846/**********************/
2847/* Interrupt Handling */
2848/**********************/
2849
Sujithcbe61d82009-02-09 13:27:12 +05302850bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002851{
2852 u32 host_isr;
2853
2854 if (AR_SREV_9100(ah))
2855 return true;
2856
2857 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2858 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2859 return true;
2860
2861 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2862 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2863 && (host_isr != AR_INTR_SPURIOUS))
2864 return true;
2865
2866 return false;
2867}
2868
Sujithcbe61d82009-02-09 13:27:12 +05302869bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002870{
2871 u32 isr = 0;
2872 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302873 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002874 u32 sync_cause = 0;
2875 bool fatal_int = false;
2876
2877 if (!AR_SREV_9100(ah)) {
2878 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2879 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2880 == AR_RTC_STATUS_ON) {
2881 isr = REG_READ(ah, AR_ISR);
2882 }
2883 }
2884
Sujithf1dc5602008-10-29 10:16:30 +05302885 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2886 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002887
2888 *masked = 0;
2889
2890 if (!isr && !sync_cause)
2891 return false;
2892 } else {
2893 *masked = 0;
2894 isr = REG_READ(ah, AR_ISR);
2895 }
2896
2897 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002898 if (isr & AR_ISR_BCNMISC) {
2899 u32 isr2;
2900 isr2 = REG_READ(ah, AR_ISR_S2);
2901 if (isr2 & AR_ISR_S2_TIM)
2902 mask2 |= ATH9K_INT_TIM;
2903 if (isr2 & AR_ISR_S2_DTIM)
2904 mask2 |= ATH9K_INT_DTIM;
2905 if (isr2 & AR_ISR_S2_DTIMSYNC)
2906 mask2 |= ATH9K_INT_DTIMSYNC;
2907 if (isr2 & (AR_ISR_S2_CABEND))
2908 mask2 |= ATH9K_INT_CABEND;
2909 if (isr2 & AR_ISR_S2_GTT)
2910 mask2 |= ATH9K_INT_GTT;
2911 if (isr2 & AR_ISR_S2_CST)
2912 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302913 if (isr2 & AR_ISR_S2_TSFOOR)
2914 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002915 }
2916
2917 isr = REG_READ(ah, AR_ISR_RAC);
2918 if (isr == 0xffffffff) {
2919 *masked = 0;
2920 return false;
2921 }
2922
2923 *masked = isr & ATH9K_INT_COMMON;
2924
Sujith2660b812009-02-09 13:27:26 +05302925 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002926 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2927 *masked |= ATH9K_INT_RX;
2928 }
2929
2930 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2931 *masked |= ATH9K_INT_RX;
2932 if (isr &
2933 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2934 AR_ISR_TXEOL)) {
2935 u32 s0_s, s1_s;
2936
2937 *masked |= ATH9K_INT_TX;
2938
2939 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302940 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2941 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002942
2943 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302944 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2945 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002946 }
2947
2948 if (isr & AR_ISR_RXORN) {
2949 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302950 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002951 }
2952
2953 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302954 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002955 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2956 if (isr5 & AR_ISR_S5_TIM_TIMER)
2957 *masked |= ATH9K_INT_TIM_TIMER;
2958 }
2959 }
2960
2961 *masked |= mask2;
2962 }
Sujithf1dc5602008-10-29 10:16:30 +05302963
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002964 if (AR_SREV_9100(ah))
2965 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302966
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002967 if (sync_cause) {
2968 fatal_int =
2969 (sync_cause &
2970 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2971 ? true : false;
2972
2973 if (fatal_int) {
2974 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
2975 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302976 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002977 }
2978 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
2979 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd4632008-11-28 22:18:05 +05302980 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002981 }
2982 }
2983 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
2984 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302985 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002986 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2987 REG_WRITE(ah, AR_RC, 0);
2988 *masked |= ATH9K_INT_FATAL;
2989 }
2990 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
2991 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd4632008-11-28 22:18:05 +05302992 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002993 }
2994
2995 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2996 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2997 }
Sujithf1dc5602008-10-29 10:16:30 +05302998
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002999 return true;
3000}
3001
Sujithcbe61d82009-02-09 13:27:12 +05303002enum ath9k_int ath9k_hw_intrget(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003003{
Sujith2660b812009-02-09 13:27:26 +05303004 return ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003005}
3006
Sujithcbe61d82009-02-09 13:27:12 +05303007enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003008{
Sujith2660b812009-02-09 13:27:26 +05303009 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003010 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303011 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003012
Sujith04bd4632008-11-28 22:18:05 +05303013 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003014
3015 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303016 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003017 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3018 (void) REG_READ(ah, AR_IER);
3019 if (!AR_SREV_9100(ah)) {
3020 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3021 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3022
3023 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3024 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3025 }
3026 }
3027
3028 mask = ints & ATH9K_INT_COMMON;
3029 mask2 = 0;
3030
3031 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303032 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003033 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303034 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003035 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303036 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003037 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303038 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003039 mask |= AR_IMR_TXEOL;
3040 }
3041 if (ints & ATH9K_INT_RX) {
3042 mask |= AR_IMR_RXERR;
Sujith2660b812009-02-09 13:27:26 +05303043 if (ah->intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003044 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3045 else
3046 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303047 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003048 mask |= AR_IMR_GENTMR;
3049 }
3050
3051 if (ints & (ATH9K_INT_BMISC)) {
3052 mask |= AR_IMR_BCNMISC;
3053 if (ints & ATH9K_INT_TIM)
3054 mask2 |= AR_IMR_S2_TIM;
3055 if (ints & ATH9K_INT_DTIM)
3056 mask2 |= AR_IMR_S2_DTIM;
3057 if (ints & ATH9K_INT_DTIMSYNC)
3058 mask2 |= AR_IMR_S2_DTIMSYNC;
3059 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303060 mask2 |= AR_IMR_S2_CABEND;
3061 if (ints & ATH9K_INT_TSFOOR)
3062 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003063 }
3064
3065 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3066 mask |= AR_IMR_BCNMISC;
3067 if (ints & ATH9K_INT_GTT)
3068 mask2 |= AR_IMR_S2_GTT;
3069 if (ints & ATH9K_INT_CST)
3070 mask2 |= AR_IMR_S2_CST;
3071 }
3072
Sujith04bd4632008-11-28 22:18:05 +05303073 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003074 REG_WRITE(ah, AR_IMR, mask);
3075 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3076 AR_IMR_S2_DTIM |
3077 AR_IMR_S2_DTIMSYNC |
3078 AR_IMR_S2_CABEND |
3079 AR_IMR_S2_CABTO |
3080 AR_IMR_S2_TSFOOR |
3081 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3082 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303083 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003084
Sujith60b67f52008-08-07 10:52:38 +05303085 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003086 if (ints & ATH9K_INT_TIM_TIMER)
3087 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3088 else
3089 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3090 }
3091
3092 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd4632008-11-28 22:18:05 +05303093 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003094 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3095 if (!AR_SREV_9100(ah)) {
3096 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3097 AR_INTR_MAC_IRQ);
3098 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3099
3100
3101 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3102 AR_INTR_SYNC_DEFAULT);
3103 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3104 AR_INTR_SYNC_DEFAULT);
3105 }
3106 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3107 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3108 }
3109
3110 return omask;
3111}
3112
Sujithf1dc5602008-10-29 10:16:30 +05303113/*******************/
3114/* Beacon Handling */
3115/*******************/
3116
Sujithcbe61d82009-02-09 13:27:12 +05303117void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003118{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003119 int flags = 0;
3120
Sujith2660b812009-02-09 13:27:26 +05303121 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003122
Sujith2660b812009-02-09 13:27:26 +05303123 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003124 case NL80211_IFTYPE_STATION:
3125 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003126 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3127 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3128 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3129 flags |= AR_TBTT_TIMER_EN;
3130 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003131 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003132 REG_SET_BIT(ah, AR_TXCFG,
3133 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3134 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3135 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303136 (ah->atim_window ? ah->
3137 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003138 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003139 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3141 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3142 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303143 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303144 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003145 REG_WRITE(ah, AR_NEXT_SWBA,
3146 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303147 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303148 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003149 flags |=
3150 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3151 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003152 default:
3153 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3154 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303155 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003156 return;
3157 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003158 }
3159
3160 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3161 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3162 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3163 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3164
3165 beacon_period &= ~ATH9K_BEACON_ENA;
3166 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3167 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3168 ath9k_hw_reset_tsf(ah);
3169 }
3170
3171 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3172}
3173
Sujithcbe61d82009-02-09 13:27:12 +05303174void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303175 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003176{
3177 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303178 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003179
3180 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3181
3182 REG_WRITE(ah, AR_BEACON_PERIOD,
3183 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3184 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3185 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3186
3187 REG_RMW_FIELD(ah, AR_RSSI_THR,
3188 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3189
3190 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3191
3192 if (bs->bs_sleepduration > beaconintval)
3193 beaconintval = bs->bs_sleepduration;
3194
3195 dtimperiod = bs->bs_dtimperiod;
3196 if (bs->bs_sleepduration > dtimperiod)
3197 dtimperiod = bs->bs_sleepduration;
3198
3199 if (beaconintval == dtimperiod)
3200 nextTbtt = bs->bs_nextdtim;
3201 else
3202 nextTbtt = bs->bs_nexttbtt;
3203
Sujith04bd4632008-11-28 22:18:05 +05303204 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3205 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3206 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3207 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003208
3209 REG_WRITE(ah, AR_NEXT_DTIM,
3210 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3211 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3212
3213 REG_WRITE(ah, AR_SLEEP1,
3214 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3215 | AR_SLEEP1_ASSUME_DTIM);
3216
Sujith60b67f52008-08-07 10:52:38 +05303217 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003218 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3219 else
3220 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3221
3222 REG_WRITE(ah, AR_SLEEP2,
3223 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3224
3225 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3226 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3227
3228 REG_SET_BIT(ah, AR_TIMER_MODE,
3229 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3230 AR_DTIM_TIMER_EN);
3231
Sujith4af9cf42009-02-12 10:06:47 +05303232 /* TSF Out of Range Threshold */
3233 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003234}
3235
Sujithf1dc5602008-10-29 10:16:30 +05303236/*******************/
3237/* HW Capabilities */
3238/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003239
Sujithcbe61d82009-02-09 13:27:12 +05303240bool ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003241{
Sujith2660b812009-02-09 13:27:26 +05303242 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303243 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003244
Sujithf74df6f2009-02-09 13:27:24 +05303245 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303246 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303247
Sujithf74df6f2009-02-09 13:27:24 +05303248 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303249 if (AR_SREV_9285_10_OR_LATER(ah))
3250 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303251 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303252
Sujithf74df6f2009-02-09 13:27:24 +05303253 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303254
Sujith2660b812009-02-09 13:27:26 +05303255 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303256 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303257 if (ah->regulatory.current_rd == 0x64 ||
3258 ah->regulatory.current_rd == 0x65)
3259 ah->regulatory.current_rd += 5;
3260 else if (ah->regulatory.current_rd == 0x41)
3261 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303262 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303263 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003264 }
Sujithdc2222a2008-08-14 13:26:55 +05303265
Sujithf74df6f2009-02-09 13:27:24 +05303266 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303267 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003268
Sujithf1dc5602008-10-29 10:16:30 +05303269 if (eeval & AR5416_OPFLAGS_11A) {
3270 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303271 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303272 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3273 set_bit(ATH9K_MODE_11NA_HT20,
3274 pCap->wireless_modes);
3275 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3276 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3277 pCap->wireless_modes);
3278 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3279 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003280 }
3281 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003282 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003283
Sujithf1dc5602008-10-29 10:16:30 +05303284 if (eeval & AR5416_OPFLAGS_11G) {
3285 set_bit(ATH9K_MODE_11B, pCap->wireless_modes);
3286 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303287 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303288 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3289 set_bit(ATH9K_MODE_11NG_HT20,
3290 pCap->wireless_modes);
3291 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3292 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3293 pCap->wireless_modes);
3294 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3295 pCap->wireless_modes);
3296 }
3297 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003298 }
Sujithf1dc5602008-10-29 10:16:30 +05303299
Sujithf74df6f2009-02-09 13:27:24 +05303300 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303301 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3302 !(eeval & AR5416_OPFLAGS_11A))
3303 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3304 else
3305 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303306
Sujithd535a422009-02-09 13:27:06 +05303307 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303308 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303309
3310 pCap->low_2ghz_chan = 2312;
3311 pCap->high_2ghz_chan = 2732;
3312
3313 pCap->low_5ghz_chan = 4920;
3314 pCap->high_5ghz_chan = 6100;
3315
3316 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3317 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3318 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3319
3320 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3321 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3322 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3323
3324 pCap->hw_caps |= ATH9K_HW_CAP_CHAN_SPREAD;
3325
Sujith2660b812009-02-09 13:27:26 +05303326 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303327 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3328 else
3329 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3330
3331 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3332 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3333 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3334 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3335
3336 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3337 pCap->total_queues =
3338 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3339 else
3340 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3341
3342 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3343 pCap->keycache_size =
3344 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3345 else
3346 pCap->keycache_size = AR_KEYTABLE_SIZE;
3347
3348 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
3349 pCap->num_mr_retries = 4;
3350 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3351
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303352 if (AR_SREV_9285_10_OR_LATER(ah))
3353 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3354 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303355 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3356 else
3357 pCap->num_gpio_pins = AR_NUM_GPIO;
3358
3359 if (AR_SREV_9280_10_OR_LATER(ah)) {
3360 pCap->hw_caps |= ATH9K_HW_CAP_WOW;
3361 pCap->hw_caps |= ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3362 } else {
3363 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW;
3364 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3365 }
3366
3367 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3368 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3369 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3370 } else {
3371 pCap->rts_aggr_limit = (8 * 1024);
3372 }
3373
3374 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3375
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303376#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303377 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3378 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3379 ah->rfkill_gpio =
3380 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3381 ah->rfkill_polarity =
3382 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303383
3384 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3385 }
3386#endif
3387
Sujithd535a422009-02-09 13:27:06 +05303388 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3389 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3390 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3391 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
3392 (ah->hw_version.macVersion == AR_SREV_VERSION_9280))
Sujithf1dc5602008-10-29 10:16:30 +05303393 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3394 else
3395 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3396
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303397 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303398 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3399 else
3400 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3401
Sujithd6bad492009-02-09 13:27:08 +05303402 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303403 pCap->reg_cap =
3404 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3405 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3406 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3407 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3408 } else {
3409 pCap->reg_cap =
3410 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3411 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3412 }
3413
3414 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3415
3416 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303417 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303418 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303419 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303420
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303421 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303422 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303423 ah->btactive_gpio = 6;
3424 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303425 }
3426
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003427 return true;
3428}
3429
Sujithcbe61d82009-02-09 13:27:12 +05303430bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303431 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003432{
Sujithf1dc5602008-10-29 10:16:30 +05303433 switch (type) {
3434 case ATH9K_CAP_CIPHER:
3435 switch (capability) {
3436 case ATH9K_CIPHER_AES_CCM:
3437 case ATH9K_CIPHER_AES_OCB:
3438 case ATH9K_CIPHER_TKIP:
3439 case ATH9K_CIPHER_WEP:
3440 case ATH9K_CIPHER_MIC:
3441 case ATH9K_CIPHER_CLR:
3442 return true;
3443 default:
3444 return false;
3445 }
3446 case ATH9K_CAP_TKIP_MIC:
3447 switch (capability) {
3448 case 0:
3449 return true;
3450 case 1:
Sujith2660b812009-02-09 13:27:26 +05303451 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303452 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3453 false;
3454 }
3455 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303456 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303457 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303458 case ATH9K_CAP_DIVERSITY:
3459 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3460 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3461 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303462 case ATH9K_CAP_MCAST_KEYSRCH:
3463 switch (capability) {
3464 case 0:
3465 return true;
3466 case 1:
3467 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3468 return false;
3469 } else {
Sujith2660b812009-02-09 13:27:26 +05303470 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303471 AR_STA_ID1_MCAST_KSRCH) ? true :
3472 false;
3473 }
3474 }
3475 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303476 case ATH9K_CAP_TXPOW:
3477 switch (capability) {
3478 case 0:
3479 return 0;
3480 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303481 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303482 return 0;
3483 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303484 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303485 return 0;
3486 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303487 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303488 return 0;
3489 }
3490 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303491 case ATH9K_CAP_DS:
3492 return (AR_SREV_9280_20_OR_LATER(ah) &&
3493 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3494 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303495 default:
3496 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003497 }
Sujithf1dc5602008-10-29 10:16:30 +05303498}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003499
Sujithcbe61d82009-02-09 13:27:12 +05303500bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303501 u32 capability, u32 setting, int *status)
3502{
Sujithf1dc5602008-10-29 10:16:30 +05303503 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003504
Sujithf1dc5602008-10-29 10:16:30 +05303505 switch (type) {
3506 case ATH9K_CAP_TKIP_MIC:
3507 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303508 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303509 AR_STA_ID1_CRPT_MIC_ENABLE;
3510 else
Sujith2660b812009-02-09 13:27:26 +05303511 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303512 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3513 return true;
3514 case ATH9K_CAP_DIVERSITY:
3515 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3516 if (setting)
3517 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3518 else
3519 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3520 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3521 return true;
3522 case ATH9K_CAP_MCAST_KEYSRCH:
3523 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303524 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303525 else
Sujith2660b812009-02-09 13:27:26 +05303526 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303527 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303528 default:
3529 return false;
3530 }
3531}
3532
3533/****************************/
3534/* GPIO / RFKILL / Antennae */
3535/****************************/
3536
Sujithcbe61d82009-02-09 13:27:12 +05303537static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303538 u32 gpio, u32 type)
3539{
3540 int addr;
3541 u32 gpio_shift, tmp;
3542
3543 if (gpio > 11)
3544 addr = AR_GPIO_OUTPUT_MUX3;
3545 else if (gpio > 5)
3546 addr = AR_GPIO_OUTPUT_MUX2;
3547 else
3548 addr = AR_GPIO_OUTPUT_MUX1;
3549
3550 gpio_shift = (gpio % 6) * 5;
3551
3552 if (AR_SREV_9280_20_OR_LATER(ah)
3553 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3554 REG_RMW(ah, addr, (type << gpio_shift),
3555 (0x1f << gpio_shift));
3556 } else {
3557 tmp = REG_READ(ah, addr);
3558 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3559 tmp &= ~(0x1f << gpio_shift);
3560 tmp |= (type << gpio_shift);
3561 REG_WRITE(ah, addr, tmp);
3562 }
3563}
3564
Sujithcbe61d82009-02-09 13:27:12 +05303565void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303566{
3567 u32 gpio_shift;
3568
Sujith2660b812009-02-09 13:27:26 +05303569 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303570
3571 gpio_shift = gpio << 1;
3572
3573 REG_RMW(ah,
3574 AR_GPIO_OE_OUT,
3575 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3576 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3577}
3578
Sujithcbe61d82009-02-09 13:27:12 +05303579u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303580{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303581#define MS_REG_READ(x, y) \
3582 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3583
Sujith2660b812009-02-09 13:27:26 +05303584 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303585 return 0xffffffff;
3586
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303587 if (AR_SREV_9285_10_OR_LATER(ah))
3588 return MS_REG_READ(AR9285, gpio) != 0;
3589 else if (AR_SREV_9280_10_OR_LATER(ah))
3590 return MS_REG_READ(AR928X, gpio) != 0;
3591 else
3592 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303593}
3594
Sujithcbe61d82009-02-09 13:27:12 +05303595void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303596 u32 ah_signal_type)
3597{
3598 u32 gpio_shift;
3599
3600 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3601
3602 gpio_shift = 2 * gpio;
3603
3604 REG_RMW(ah,
3605 AR_GPIO_OE_OUT,
3606 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3607 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3608}
3609
Sujithcbe61d82009-02-09 13:27:12 +05303610void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303611{
3612 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3613 AR_GPIO_BIT(gpio));
3614}
3615
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303616#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujithcbe61d82009-02-09 13:27:12 +05303617void ath9k_enable_rfkill(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303618{
3619 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3620 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
3621
3622 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
3623 AR_GPIO_INPUT_MUX2_RFSILENT);
3624
Sujith2660b812009-02-09 13:27:26 +05303625 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303626 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
3627}
3628#endif
3629
Sujithcbe61d82009-02-09 13:27:12 +05303630u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303631{
3632 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3633}
3634
Sujithcbe61d82009-02-09 13:27:12 +05303635void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303636{
3637 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3638}
3639
Sujithcbe61d82009-02-09 13:27:12 +05303640bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303641 enum ath9k_ant_setting settings,
3642 struct ath9k_channel *chan,
3643 u8 *tx_chainmask,
3644 u8 *rx_chainmask,
3645 u8 *antenna_cfgd)
3646{
Sujithf1dc5602008-10-29 10:16:30 +05303647 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3648
3649 if (AR_SREV_9280(ah)) {
3650 if (!tx_chainmask_cfg) {
3651
3652 tx_chainmask_cfg = *tx_chainmask;
3653 rx_chainmask_cfg = *rx_chainmask;
3654 }
3655
3656 switch (settings) {
3657 case ATH9K_ANT_FIXED_A:
3658 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3659 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3660 *antenna_cfgd = true;
3661 break;
3662 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303663 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303664 ATH9K_ANTENNA1_CHAINMASK) {
3665 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3666 }
3667 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3668 *antenna_cfgd = true;
3669 break;
3670 case ATH9K_ANT_VARIABLE:
3671 *tx_chainmask = tx_chainmask_cfg;
3672 *rx_chainmask = rx_chainmask_cfg;
3673 *antenna_cfgd = true;
3674 break;
3675 default:
3676 break;
3677 }
3678 } else {
Sujith2660b812009-02-09 13:27:26 +05303679 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303680 }
3681
3682 return true;
3683}
3684
3685/*********************/
3686/* General Operation */
3687/*********************/
3688
Sujithcbe61d82009-02-09 13:27:12 +05303689u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303690{
3691 u32 bits = REG_READ(ah, AR_RX_FILTER);
3692 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3693
3694 if (phybits & AR_PHY_ERR_RADAR)
3695 bits |= ATH9K_RX_FILTER_PHYRADAR;
3696 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3697 bits |= ATH9K_RX_FILTER_PHYERR;
3698
3699 return bits;
3700}
3701
Sujithcbe61d82009-02-09 13:27:12 +05303702void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303703{
3704 u32 phybits;
3705
3706 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3707 phybits = 0;
3708 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3709 phybits |= AR_PHY_ERR_RADAR;
3710 if (bits & ATH9K_RX_FILTER_PHYERR)
3711 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3712 REG_WRITE(ah, AR_PHY_ERR, phybits);
3713
3714 if (phybits)
3715 REG_WRITE(ah, AR_RXCFG,
3716 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3717 else
3718 REG_WRITE(ah, AR_RXCFG,
3719 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3720}
3721
Sujithcbe61d82009-02-09 13:27:12 +05303722bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303723{
3724 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3725}
3726
Sujithcbe61d82009-02-09 13:27:12 +05303727bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303728{
3729 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3730 return false;
3731
3732 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3733}
3734
Sujithcbe61d82009-02-09 13:27:12 +05303735bool ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303736{
Sujith2660b812009-02-09 13:27:26 +05303737 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003738 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303739
Sujithd6bad492009-02-09 13:27:08 +05303740 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303741
Sujithf74df6f2009-02-09 13:27:24 +05303742 if (ah->eep_ops->set_txpower(ah, chan,
3743 ath9k_regd_get_ctl(ah, chan),
3744 channel->max_antenna_gain * 2,
3745 channel->max_power * 2,
3746 min((u32) MAX_RATE_POWER,
3747 (u32) ah->regulatory.power_limit)) != 0)
Sujithf1dc5602008-10-29 10:16:30 +05303748 return false;
3749
3750 return true;
3751}
3752
Sujithcbe61d82009-02-09 13:27:12 +05303753void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303754{
Sujithba52da52009-02-09 13:27:10 +05303755 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303756}
3757
Sujithcbe61d82009-02-09 13:27:12 +05303758void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303759{
Sujith2660b812009-02-09 13:27:26 +05303760 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303761}
3762
Sujithcbe61d82009-02-09 13:27:12 +05303763void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303764{
3765 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3766 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3767}
3768
Sujithba52da52009-02-09 13:27:10 +05303769void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303770{
Sujithba52da52009-02-09 13:27:10 +05303771 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3772 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303773}
3774
Sujithba52da52009-02-09 13:27:10 +05303775void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303776{
Sujithba52da52009-02-09 13:27:10 +05303777 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3778 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3779 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303780}
3781
Sujithcbe61d82009-02-09 13:27:12 +05303782u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303783{
3784 u64 tsf;
3785
3786 tsf = REG_READ(ah, AR_TSF_U32);
3787 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3788
3789 return tsf;
3790}
3791
Sujithcbe61d82009-02-09 13:27:12 +05303792void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003793{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003794 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003795 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003796}
3797
Sujithcbe61d82009-02-09 13:27:12 +05303798void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303799{
3800 int count;
3801
3802 count = 0;
3803 while (REG_READ(ah, AR_SLP32_MODE) & AR_SLP32_TSF_WRITE_STATUS) {
3804 count++;
3805 if (count > 10) {
3806 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05303807 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Sujithf1dc5602008-10-29 10:16:30 +05303808 break;
3809 }
3810 udelay(10);
3811 }
3812 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003813}
3814
Sujithcbe61d82009-02-09 13:27:12 +05303815bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003816{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003817 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303818 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003819 else
Sujith2660b812009-02-09 13:27:26 +05303820 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303821
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003822 return true;
3823}
3824
Sujithcbe61d82009-02-09 13:27:12 +05303825bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003826{
Sujithf1dc5602008-10-29 10:16:30 +05303827 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd4632008-11-28 22:18:05 +05303828 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303829 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303830 return false;
3831 } else {
3832 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303833 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303834 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003835 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003836}
3837
Sujithcbe61d82009-02-09 13:27:12 +05303838void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003839{
Sujithf1dc5602008-10-29 10:16:30 +05303840 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003841
Sujithf1dc5602008-10-29 10:16:30 +05303842 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303843 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303844 macmode = AR_2040_JOINED_RX_CLEAR;
3845 else
3846 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003847
Sujithf1dc5602008-10-29 10:16:30 +05303848 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003849}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303850
3851/***************************/
3852/* Bluetooth Coexistence */
3853/***************************/
3854
Sujithcbe61d82009-02-09 13:27:12 +05303855void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303856{
3857 /* connect bt_active to baseband */
3858 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3859 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3860 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3861
3862 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3863 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3864
3865 /* Set input mux for bt_active to gpio pin */
3866 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3867 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303868 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303869
3870 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303871 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303872
3873 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303874 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303875 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3876}