blob: d494e98ba971b3160fcd3830deb1d882fc65152a [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 }
Sujith04bd46382008-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:
Sujith04bd46382008-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,
Sujith04bd46382008-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",
Sujith04bd46382008-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,
Sujith04bd46382008-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",
Sujith04bd46382008-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. Rodriguez61584252009-03-12 18:18:49 -0400394
395 /*
396 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
397 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
398 * This means we use it for all AR5416 devices, and the few
399 * minor PCI AR9280 devices out there.
400 *
401 * Serialization is required because these devices do not handle
402 * well the case of two concurrent reads/writes due to the latency
403 * involved. During one read/write another read/write can be issued
404 * on another CPU while the previous read/write may still be working
405 * on our hardware, if we hit this case the hardware poops in a loop.
406 * We prevent this by serializing reads and writes.
407 *
408 * This issue is not present on PCI-Express devices or pre-AR5416
409 * devices (legacy, 802.11abg).
410 */
411 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700412 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700413}
414
Sujithcbe61d82009-02-09 13:27:12 +0530415static struct ath_hw *ath9k_hw_newstate(u16 devid, struct ath_softc *sc,
416 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700417{
Sujithcbe61d82009-02-09 13:27:12 +0530418 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700419
Sujithcbe61d82009-02-09 13:27:12 +0530420 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
421 if (ah == NULL) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530423 "Cannot allocate memory for state block\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700424 *status = -ENOMEM;
425 return NULL;
426 }
427
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700428 ah->ah_sc = sc;
Sujithd535a422009-02-09 13:27:06 +0530429 ah->hw_version.magic = AR5416_MAGIC;
Sujithd6bad492009-02-09 13:27:08 +0530430 ah->regulatory.country_code = CTRY_DEFAULT;
Sujithd535a422009-02-09 13:27:06 +0530431 ah->hw_version.devid = devid;
432 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433
434 ah->ah_flags = 0;
435 if ((devid == AR5416_AR9100_DEVID))
Sujithd535a422009-02-09 13:27:06 +0530436 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437 if (!AR_SREV_9100(ah))
438 ah->ah_flags = AH_USE_EEPROM;
439
Sujithd6bad492009-02-09 13:27:08 +0530440 ah->regulatory.power_limit = MAX_RATE_POWER;
441 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
Sujith2660b812009-02-09 13:27:26 +0530442 ah->atim_window = 0;
443 ah->diversity_control = ah->config.diversity_control;
444 ah->antenna_switch_swap =
445 ah->config.antenna_switch_swap;
446 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
447 ah->beacon_interval = 100;
448 ah->enable_32kHz_clock = DONT_USE_32KHZ;
449 ah->slottime = (u32) -1;
450 ah->acktimeout = (u32) -1;
451 ah->ctstimeout = (u32) -1;
452 ah->globaltxtimeout = (u32) -1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453
Sujith2660b812009-02-09 13:27:26 +0530454 ah->gbeacon_rate = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
Sujithcbe61d82009-02-09 13:27:12 +0530456 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457}
458
Sujithcbe61d82009-02-09 13:27:12 +0530459static int ath9k_hw_rfattach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460{
461 bool rfStatus = false;
462 int ecode = 0;
463
464 rfStatus = ath9k_hw_init_rf(ah, &ecode);
465 if (!rfStatus) {
466 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530467 "RF setup failed, status %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468 return ecode;
469 }
470
471 return 0;
472}
473
Sujithcbe61d82009-02-09 13:27:12 +0530474static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475{
476 u32 val;
477
478 REG_WRITE(ah, AR_PHY(0), 0x00000007);
479
480 val = ath9k_hw_get_radiorev(ah);
481 switch (val & AR_RADIO_SREV_MAJOR) {
482 case 0:
483 val = AR_RAD5133_SREV_MAJOR;
484 break;
485 case AR_RAD5133_SREV_MAJOR:
486 case AR_RAD5122_SREV_MAJOR:
487 case AR_RAD2133_SREV_MAJOR:
488 case AR_RAD2122_SREV_MAJOR:
489 break;
490 default:
491 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +0530492 "5G Radio Chip Rev 0x%02X is not "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493 "supported by this driver\n",
Sujithd535a422009-02-09 13:27:06 +0530494 ah->hw_version.analog5GhzRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 return -EOPNOTSUPP;
496 }
497
Sujithd535a422009-02-09 13:27:06 +0530498 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499
500 return 0;
501}
502
Sujithcbe61d82009-02-09 13:27:12 +0530503static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504{
Sujithf1dc5602008-10-29 10:16:30 +0530505 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530507 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508
Sujithf1dc5602008-10-29 10:16:30 +0530509 sum = 0;
510 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530511 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530512 sum += eeval;
Sujithba52da52009-02-09 13:27:10 +0530513 ah->macaddr[2 * i] = eeval >> 8;
514 ah->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700515 }
Sujithf1dc5602008-10-29 10:16:30 +0530516 if (sum == 0 || sum == 0xffff * 3) {
517 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +0530518 "mac address read failed: %pM\n",
Sujithba52da52009-02-09 13:27:10 +0530519 ah->macaddr);
Sujithf1dc5602008-10-29 10:16:30 +0530520 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700521 }
522
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700523 return 0;
524}
525
Sujithcbe61d82009-02-09 13:27:12 +0530526static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530527{
528 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530529
Sujithf74df6f2009-02-09 13:27:24 +0530530 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
531 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530532
533 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530534 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530535 ar9280Modes_backoff_13db_rxgain_9280_2,
536 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
537 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530538 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530539 ar9280Modes_backoff_23db_rxgain_9280_2,
540 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
541 else
Sujith2660b812009-02-09 13:27:26 +0530542 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530543 ar9280Modes_original_rxgain_9280_2,
544 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530545 } else {
Sujith2660b812009-02-09 13:27:26 +0530546 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530547 ar9280Modes_original_rxgain_9280_2,
548 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530549 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530550}
551
Sujithcbe61d82009-02-09 13:27:12 +0530552static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530553{
554 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530555
Sujithf74df6f2009-02-09 13:27:24 +0530556 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
557 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530558
559 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530560 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530561 ar9280Modes_high_power_tx_gain_9280_2,
562 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
563 else
Sujith2660b812009-02-09 13:27:26 +0530564 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530565 ar9280Modes_original_tx_gain_9280_2,
566 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530567 } else {
Sujith2660b812009-02-09 13:27:26 +0530568 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530569 ar9280Modes_original_tx_gain_9280_2,
570 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530571 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530572}
573
Sujithcbe61d82009-02-09 13:27:12 +0530574static int ath9k_hw_post_attach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700575{
576 int ecode;
577
578 if (!ath9k_hw_chip_test(ah)) {
579 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +0530580 "hardware self-test failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700581 return -ENODEV;
582 }
583
584 ecode = ath9k_hw_rf_claim(ah);
585 if (ecode != 0)
586 return ecode;
587
588 ecode = ath9k_hw_eeprom_attach(ah);
589 if (ecode != 0)
590 return ecode;
591 ecode = ath9k_hw_rfattach(ah);
592 if (ecode != 0)
593 return ecode;
594
595 if (!AR_SREV_9100(ah)) {
596 ath9k_hw_ani_setup(ah);
597 ath9k_hw_ani_attach(ah);
598 }
Sujithf1dc5602008-10-29 10:16:30 +0530599
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600 return 0;
601}
602
Sujithcbe61d82009-02-09 13:27:12 +0530603static struct ath_hw *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
604 int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605{
Sujithcbe61d82009-02-09 13:27:12 +0530606 struct ath_hw *ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607 int ecode;
Sujithf6688cd2008-12-07 21:43:10 +0530608 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609
Sujithcbe61d82009-02-09 13:27:12 +0530610 ah = ath9k_hw_newstate(devid, sc, status);
611 if (ah == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612 return NULL;
613
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614 ath9k_hw_set_defaults(ah);
615
Sujith2660b812009-02-09 13:27:26 +0530616 if (ah->config.intr_mitigation != 0)
617 ah->intr_mitigation = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618
619 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithcbe61d82009-02-09 13:27:12 +0530620 DPRINTF(sc, ATH_DBG_RESET, "Couldn't reset chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 ecode = -EIO;
622 goto bad;
623 }
624
625 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujithcbe61d82009-02-09 13:27:12 +0530626 DPRINTF(sc, ATH_DBG_RESET, "Couldn't wakeup chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700627 ecode = -EIO;
628 goto bad;
629 }
630
Sujith2660b812009-02-09 13:27:26 +0530631 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
David S. Miller2d6a5e92009-03-17 15:01:30 -0700632 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
633 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
Sujith2660b812009-02-09 13:27:26 +0530634 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700635 SER_REG_MODE_ON;
636 } else {
Sujith2660b812009-02-09 13:27:26 +0530637 ah->config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 SER_REG_MODE_OFF;
639 }
640 }
Sujithf1dc5602008-10-29 10:16:30 +0530641
Sujithcbe61d82009-02-09 13:27:12 +0530642 DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
Sujith2660b812009-02-09 13:27:26 +0530643 ah->config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644
Sujithd535a422009-02-09 13:27:06 +0530645 if ((ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCI) &&
646 (ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCIE) &&
647 (ah->hw_version.macVersion != AR_SREV_VERSION_9160) &&
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530648 (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) && (!AR_SREV_9285(ah))) {
Sujithcbe61d82009-02-09 13:27:12 +0530649 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530650 "Mac Chip Rev 0x%02x.%x is not supported by "
Sujithd535a422009-02-09 13:27:06 +0530651 "this driver\n", ah->hw_version.macVersion,
652 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653 ecode = -EOPNOTSUPP;
654 goto bad;
655 }
656
657 if (AR_SREV_9100(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530658 ah->iq_caldata.calData = &iq_cal_multi_sample;
659 ah->supp_cals = IQ_MISMATCH_CAL;
660 ah->is_pciexpress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700661 }
Sujithd535a422009-02-09 13:27:06 +0530662 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663
664 if (AR_SREV_9160_10_OR_LATER(ah)) {
665 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530666 ah->iq_caldata.calData = &iq_cal_single_sample;
667 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530669 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530671 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700672 &adc_init_dc_cal;
673 } else {
Sujith2660b812009-02-09 13:27:26 +0530674 ah->iq_caldata.calData = &iq_cal_multi_sample;
675 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700676 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530677 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530679 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700680 &adc_init_dc_cal;
681 }
Sujith2660b812009-02-09 13:27:26 +0530682 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700683 }
684
Sujith9c81e8b2009-03-09 09:31:49 +0530685 ah->ani_function = ATH9K_ANI_ALL;
686 if (AR_SREV_9280_10_OR_LATER(ah))
687 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700688
Sujithcbe61d82009-02-09 13:27:12 +0530689 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530690 "This Mac Chip Rev 0x%02x.%x is \n",
Sujithd535a422009-02-09 13:27:06 +0530691 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530693 if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530694
Sujith2660b812009-02-09 13:27:26 +0530695 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530696 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530697 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530698 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
699
Sujith2660b812009-02-09 13:27:26 +0530700 if (ah->config.pcie_clock_req) {
701 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530702 ar9285PciePhy_clkreq_off_L1_9285_1_2,
703 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
704 } else {
Sujith2660b812009-02-09 13:27:26 +0530705 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530706 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
707 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
708 2);
709 }
710 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530711 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530712 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530713 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530714 ARRAY_SIZE(ar9285Common_9285), 2);
715
Sujith2660b812009-02-09 13:27:26 +0530716 if (ah->config.pcie_clock_req) {
717 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530718 ar9285PciePhy_clkreq_off_L1_9285,
719 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
720 } else {
Sujith2660b812009-02-09 13:27:26 +0530721 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530722 ar9285PciePhy_clkreq_always_on_L1_9285,
723 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
724 }
725 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530726 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530728 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 ARRAY_SIZE(ar9280Common_9280_2), 2);
730
Sujith2660b812009-02-09 13:27:26 +0530731 if (ah->config.pcie_clock_req) {
732 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530733 ar9280PciePhy_clkreq_off_L1_9280,
734 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700735 } else {
Sujith2660b812009-02-09 13:27:26 +0530736 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530737 ar9280PciePhy_clkreq_always_on_L1_9280,
738 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739 }
Sujith2660b812009-02-09 13:27:26 +0530740 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700741 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530742 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530744 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar9280Common_9280), 2);
748 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530749 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530751 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530753 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700754 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530755 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530757 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700758 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530759 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530765 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530767 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700768 ARRAY_SIZE(ar5416Bank7_9160), 2);
769 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ar5416Addac_91601_1,
772 ARRAY_SIZE(ar5416Addac_91601_1), 2);
773 } else {
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Addac_9160), 2);
776 }
777 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530780 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530782 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530788 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530790 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530792 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530794 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530796 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530798 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ARRAY_SIZE(ar5416Addac_9100), 2);
800 } else {
Sujith2660b812009-02-09 13:27:26 +0530801 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530803 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530805 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530807 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530809 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530811 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700812 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530813 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700814 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530815 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530817 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700818 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530819 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700820 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530821 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700822 ARRAY_SIZE(ar5416Addac), 2);
823 }
824
Sujith2660b812009-02-09 13:27:26 +0530825 if (ah->is_pciexpress)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700826 ath9k_hw_configpcipowersave(ah, 0);
827 else
Sujithf1dc5602008-10-29 10:16:30 +0530828 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700829
830 ecode = ath9k_hw_post_attach(ah);
831 if (ecode != 0)
832 goto bad;
833
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530834 if (AR_SREV_9285_12_OR_LATER(ah)) {
835 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
836
837 /* txgain table */
838 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
839 INIT_INI_ARRAY(&ah->iniModesTxGain,
840 ar9285Modes_high_power_tx_gain_9285_1_2,
841 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
842 } else {
843 INIT_INI_ARRAY(&ah->iniModesTxGain,
844 ar9285Modes_original_tx_gain_9285_1_2,
845 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
846 }
847
848 }
849
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530850 /* rxgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530851 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530852 ath9k_hw_init_rxgain_ini(ah);
853
854 /* txgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530855 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530856 ath9k_hw_init_txgain_ini(ah);
857
Sujith06d0f062009-02-12 10:06:45 +0530858 if (!ath9k_hw_fill_cap_info(ah)) {
859 DPRINTF(sc, ATH_DBG_RESET, "failed ath9k_hw_fill_cap_info\n");
860 ecode = -EINVAL;
861 goto bad;
862 }
863
864 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
865 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
866
867 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530868 for (i = 0; i < ah->iniModes.ia_rows; i++) {
869 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870
Sujith2660b812009-02-09 13:27:26 +0530871 for (j = 1; j < ah->iniModes.ia_columns; j++) {
872 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873
Sujith2660b812009-02-09 13:27:26 +0530874 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530875 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530876 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700877 reg, val);
878 }
879 }
880 }
Sujithf6688cd2008-12-07 21:43:10 +0530881
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700882 ecode = ath9k_hw_init_macaddr(ah);
883 if (ecode != 0) {
Sujithcbe61d82009-02-09 13:27:12 +0530884 DPRINTF(sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530885 "failed initializing mac address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700886 goto bad;
887 }
888
889 if (AR_SREV_9285(ah))
Sujith2660b812009-02-09 13:27:26 +0530890 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700891 else
Sujith2660b812009-02-09 13:27:26 +0530892 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700893
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700894 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700895
896 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700897bad:
Sujithcbe61d82009-02-09 13:27:12 +0530898 if (ah)
899 ath9k_hw_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700900 if (status)
901 *status = ecode;
Sujithf1dc5602008-10-29 10:16:30 +0530902
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700903 return NULL;
904}
905
Sujithcbe61d82009-02-09 13:27:12 +0530906static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530907 struct ath9k_channel *chan)
908{
909 u32 synthDelay;
910
911 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530912 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530913 synthDelay = (4 * synthDelay) / 22;
914 else
915 synthDelay /= 10;
916
917 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
918
919 udelay(synthDelay + BASE_ACTIVATE_DELAY);
920}
921
Sujithcbe61d82009-02-09 13:27:12 +0530922static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530923{
924 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
925 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
926
927 REG_WRITE(ah, AR_QOS_NO_ACK,
928 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
929 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
930 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
931
932 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
933 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
934 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
935 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
936 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
937}
938
Sujithcbe61d82009-02-09 13:27:12 +0530939static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530940 struct ath9k_channel *chan)
941{
942 u32 pll;
943
944 if (AR_SREV_9100(ah)) {
945 if (chan && IS_CHAN_5GHZ(chan))
946 pll = 0x1450;
947 else
948 pll = 0x1458;
949 } else {
950 if (AR_SREV_9280_10_OR_LATER(ah)) {
951 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
952
953 if (chan && IS_CHAN_HALF_RATE(chan))
954 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
955 else if (chan && IS_CHAN_QUARTER_RATE(chan))
956 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
957
958 if (chan && IS_CHAN_5GHZ(chan)) {
959 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
960
961
962 if (AR_SREV_9280_20(ah)) {
963 if (((chan->channel % 20) == 0)
964 || ((chan->channel % 10) == 0))
965 pll = 0x2850;
966 else
967 pll = 0x142c;
968 }
969 } else {
970 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
971 }
972
973 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
974
975 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
976
977 if (chan && IS_CHAN_HALF_RATE(chan))
978 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
979 else if (chan && IS_CHAN_QUARTER_RATE(chan))
980 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
981
982 if (chan && IS_CHAN_5GHZ(chan))
983 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
984 else
985 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
986 } else {
987 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
988
989 if (chan && IS_CHAN_HALF_RATE(chan))
990 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
991 else if (chan && IS_CHAN_QUARTER_RATE(chan))
992 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
993
994 if (chan && IS_CHAN_5GHZ(chan))
995 pll |= SM(0xa, AR_RTC_PLL_DIV);
996 else
997 pll |= SM(0xb, AR_RTC_PLL_DIV);
998 }
999 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001000 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301001
1002 udelay(RTC_PLL_SETTLE_DELAY);
1003
1004 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1005}
1006
Sujithcbe61d82009-02-09 13:27:12 +05301007static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301008{
Sujithf1dc5602008-10-29 10:16:30 +05301009 int rx_chainmask, tx_chainmask;
1010
Sujith2660b812009-02-09 13:27:26 +05301011 rx_chainmask = ah->rxchainmask;
1012 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301013
1014 switch (rx_chainmask) {
1015 case 0x5:
1016 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1017 AR_PHY_SWAP_ALT_CHAIN);
1018 case 0x3:
Sujithd535a422009-02-09 13:27:06 +05301019 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
Sujithf1dc5602008-10-29 10:16:30 +05301020 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1021 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1022 break;
1023 }
1024 case 0x1:
1025 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301026 case 0x7:
1027 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1028 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1029 break;
1030 default:
1031 break;
1032 }
1033
1034 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1035 if (tx_chainmask == 0x5) {
1036 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1037 AR_PHY_SWAP_ALT_CHAIN);
1038 }
1039 if (AR_SREV_9100(ah))
1040 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1041 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1042}
1043
Sujithcbe61d82009-02-09 13:27:12 +05301044static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001045 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301046{
Sujith2660b812009-02-09 13:27:26 +05301047 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301048 AR_IMR_TXURN |
1049 AR_IMR_RXERR |
1050 AR_IMR_RXORN |
1051 AR_IMR_BCNMISC;
1052
Sujith2660b812009-02-09 13:27:26 +05301053 if (ah->intr_mitigation)
1054 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301055 else
Sujith2660b812009-02-09 13:27:26 +05301056 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301057
Sujith2660b812009-02-09 13:27:26 +05301058 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301059
Colin McCabed97809d2008-12-01 13:38:55 -08001060 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301061 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301062
Sujith2660b812009-02-09 13:27:26 +05301063 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301064 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1065
1066 if (!AR_SREV_9100(ah)) {
1067 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1068 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1069 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1070 }
1071}
1072
Sujithcbe61d82009-02-09 13:27:12 +05301073static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301074{
Sujithf1dc5602008-10-29 10:16:30 +05301075 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd46382008-11-28 22:18:05 +05301076 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301077 ah->acktimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301078 return false;
1079 } else {
1080 REG_RMW_FIELD(ah, AR_TIME_OUT,
1081 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301082 ah->acktimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301083 return true;
1084 }
1085}
1086
Sujithcbe61d82009-02-09 13:27:12 +05301087static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301088{
Sujithf1dc5602008-10-29 10:16:30 +05301089 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd46382008-11-28 22:18:05 +05301090 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05301091 ah->ctstimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301092 return false;
1093 } else {
1094 REG_RMW_FIELD(ah, AR_TIME_OUT,
1095 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05301096 ah->ctstimeout = us;
Sujithf1dc5602008-10-29 10:16:30 +05301097 return true;
1098 }
1099}
1100
Sujithcbe61d82009-02-09 13:27:12 +05301101static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301102{
Sujithf1dc5602008-10-29 10:16:30 +05301103 if (tu > 0xFFFF) {
1104 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd46382008-11-28 22:18:05 +05301105 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301106 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301107 return false;
1108 } else {
1109 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301110 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301111 return true;
1112 }
1113}
1114
Sujithcbe61d82009-02-09 13:27:12 +05301115static void ath9k_hw_init_user_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301116{
Sujith2660b812009-02-09 13:27:26 +05301117 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1118 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301119
Sujith2660b812009-02-09 13:27:26 +05301120 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301121 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301122 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1123 if (ah->slottime != (u32) -1)
1124 ath9k_hw_setslottime(ah, ah->slottime);
1125 if (ah->acktimeout != (u32) -1)
1126 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1127 if (ah->ctstimeout != (u32) -1)
1128 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1129 if (ah->globaltxtimeout != (u32) -1)
1130 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301131}
1132
1133const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1134{
1135 return vendorid == ATHEROS_VENDOR_ID ?
1136 ath9k_hw_devname(devid) : NULL;
1137}
1138
Sujithcbe61d82009-02-09 13:27:12 +05301139void ath9k_hw_detach(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001140{
1141 if (!AR_SREV_9100(ah))
1142 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001143
Sujithf1dc5602008-10-29 10:16:30 +05301144 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001145 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1146 kfree(ah);
1147}
1148
Sujithcbe61d82009-02-09 13:27:12 +05301149struct ath_hw *ath9k_hw_attach(u16 devid, struct ath_softc *sc, int *error)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001150{
Sujithcbe61d82009-02-09 13:27:12 +05301151 struct ath_hw *ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001152
Sujithf1dc5602008-10-29 10:16:30 +05301153 switch (devid) {
1154 case AR5416_DEVID_PCI:
1155 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001156 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301157 case AR9160_DEVID_PCI:
1158 case AR9280_DEVID_PCI:
1159 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301160 case AR9285_DEVID_PCIE:
Sujithcbe61d82009-02-09 13:27:12 +05301161 ah = ath9k_hw_do_attach(devid, sc, error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001162 break;
Sujithf1dc5602008-10-29 10:16:30 +05301163 default:
Sujithf1dc5602008-10-29 10:16:30 +05301164 *error = -ENXIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001165 break;
1166 }
1167
Sujithf1dc5602008-10-29 10:16:30 +05301168 return ah;
1169}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001170
Sujithf1dc5602008-10-29 10:16:30 +05301171/*******/
1172/* INI */
1173/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001174
Sujithcbe61d82009-02-09 13:27:12 +05301175static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301176 struct ath9k_channel *chan)
1177{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301178 /*
1179 * Set the RX_ABORT and RX_DIS and clear if off only after
1180 * RXE is set for MAC. This prevents frames with corrupted
1181 * descriptor status.
1182 */
1183 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1184
1185
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001186 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301187 AR_SREV_9280_10_OR_LATER(ah))
1188 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001189
Sujithf1dc5602008-10-29 10:16:30 +05301190 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1191}
1192
Sujithcbe61d82009-02-09 13:27:12 +05301193static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301194 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301195 u32 reg, u32 value)
1196{
1197 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1198
Sujithd535a422009-02-09 13:27:06 +05301199 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301200 case AR9280_DEVID_PCI:
1201 if (reg == 0x7894) {
1202 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1203 "ini VAL: %x EEPROM: %x\n", value,
1204 (pBase->version & 0xff));
1205
1206 if ((pBase->version & 0xff) > 0x0a) {
1207 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1208 "PWDCLKIND: %d\n",
1209 pBase->pwdclkind);
1210 value &= ~AR_AN_TOP2_PWDCLKIND;
1211 value |= AR_AN_TOP2_PWDCLKIND &
1212 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1213 } else {
1214 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1215 "PWDCLKIND Earlier Rev\n");
1216 }
1217
1218 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1219 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001220 }
Sujithf1dc5602008-10-29 10:16:30 +05301221 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222 }
1223
Sujithf1dc5602008-10-29 10:16:30 +05301224 return value;
1225}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001226
Sujithcbe61d82009-02-09 13:27:12 +05301227static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301228 struct ar5416_eeprom_def *pEepData,
1229 u32 reg, u32 value)
1230{
Sujith2660b812009-02-09 13:27:26 +05301231 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301232 return value;
1233 else
1234 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1235}
1236
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301237static void ath9k_olc_init(struct ath_hw *ah)
1238{
1239 u32 i;
1240
1241 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1242 ah->originalGain[i] =
1243 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1244 AR_PHY_TX_GAIN);
1245 ah->PDADCdelta = 0;
1246}
1247
Sujithcbe61d82009-02-09 13:27:12 +05301248static int ath9k_hw_process_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301249 struct ath9k_channel *chan,
1250 enum ath9k_ht_macmode macmode)
1251{
1252 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001253 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301254 u32 modesIndex, freqIndex;
1255 int status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256
Sujithf1dc5602008-10-29 10:16:30 +05301257 switch (chan->chanmode) {
1258 case CHANNEL_A:
1259 case CHANNEL_A_HT20:
1260 modesIndex = 1;
1261 freqIndex = 1;
1262 break;
1263 case CHANNEL_A_HT40PLUS:
1264 case CHANNEL_A_HT40MINUS:
1265 modesIndex = 2;
1266 freqIndex = 1;
1267 break;
1268 case CHANNEL_G:
1269 case CHANNEL_G_HT20:
1270 case CHANNEL_B:
1271 modesIndex = 4;
1272 freqIndex = 2;
1273 break;
1274 case CHANNEL_G_HT40PLUS:
1275 case CHANNEL_G_HT40MINUS:
1276 modesIndex = 3;
1277 freqIndex = 2;
1278 break;
1279
1280 default:
1281 return -EINVAL;
1282 }
1283
1284 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301285 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301286 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301287
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001288 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301289 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301290 } else {
1291 struct ar5416IniArray temp;
1292 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301293 sizeof(u32) * ah->iniAddac.ia_rows *
1294 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301295
Sujith2660b812009-02-09 13:27:26 +05301296 memcpy(ah->addac5416_21,
1297 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301298
Sujith2660b812009-02-09 13:27:26 +05301299 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301300
Sujith2660b812009-02-09 13:27:26 +05301301 temp.ia_array = ah->addac5416_21;
1302 temp.ia_columns = ah->iniAddac.ia_columns;
1303 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301304 REG_WRITE_ARRAY(&temp, 1, regWrites);
1305 }
1306
1307 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1308
Sujith2660b812009-02-09 13:27:26 +05301309 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1310 u32 reg = INI_RA(&ah->iniModes, i, 0);
1311 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301312
Sujithf1dc5602008-10-29 10:16:30 +05301313 REG_WRITE(ah, reg, val);
1314
1315 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301316 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301317 udelay(100);
1318 }
1319
1320 DO_DELAY(regWrites);
1321 }
1322
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301323 if (AR_SREV_9280(ah))
Sujith2660b812009-02-09 13:27:26 +05301324 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301325
Senthil Balasubramanian4e845162009-03-06 11:24:10 +05301326 if (AR_SREV_9280(ah) || (AR_SREV_9285(ah) &&
1327 AR_SREV_9285_12_OR_LATER(ah)))
Sujith2660b812009-02-09 13:27:26 +05301328 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301329
Sujith2660b812009-02-09 13:27:26 +05301330 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1331 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1332 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301333
1334 REG_WRITE(ah, reg, val);
1335
1336 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301337 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301338 udelay(100);
1339 }
1340
1341 DO_DELAY(regWrites);
1342 }
1343
1344 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1345
1346 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301347 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301348 regWrites);
1349 }
1350
1351 ath9k_hw_override_ini(ah, chan);
1352 ath9k_hw_set_regs(ah, chan, macmode);
1353 ath9k_hw_init_chain_masks(ah);
1354
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301355 if (OLC_FOR_AR9280_20_LATER)
1356 ath9k_olc_init(ah);
1357
Sujithf74df6f2009-02-09 13:27:24 +05301358 status = ah->eep_ops->set_txpower(ah, chan,
1359 ath9k_regd_get_ctl(ah, chan),
1360 channel->max_antenna_gain * 2,
1361 channel->max_power * 2,
1362 min((u32) MAX_RATE_POWER,
1363 (u32) ah->regulatory.power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301364 if (status != 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05301366 "error init'ing transmit power\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001367 return -EIO;
1368 }
1369
Sujithf1dc5602008-10-29 10:16:30 +05301370 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1371 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +05301372 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001373 return -EIO;
1374 }
1375
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001376 return 0;
1377}
1378
Sujithf1dc5602008-10-29 10:16:30 +05301379/****************************************/
1380/* Reset and Channel Switching Routines */
1381/****************************************/
1382
Sujithcbe61d82009-02-09 13:27:12 +05301383static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301384{
1385 u32 rfMode = 0;
1386
1387 if (chan == NULL)
1388 return;
1389
1390 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1391 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1392
1393 if (!AR_SREV_9280_10_OR_LATER(ah))
1394 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1395 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1396
1397 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1398 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1399
1400 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1401}
1402
Sujithcbe61d82009-02-09 13:27:12 +05301403static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301404{
1405 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1406}
1407
Sujithcbe61d82009-02-09 13:27:12 +05301408static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301409{
1410 u32 regval;
1411
1412 regval = REG_READ(ah, AR_AHB_MODE);
1413 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1414
1415 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1416 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1417
Sujith2660b812009-02-09 13:27:26 +05301418 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301419
1420 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1421 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1422
1423 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1424
1425 if (AR_SREV_9285(ah)) {
1426 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1427 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1428 } else {
1429 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1430 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1431 }
1432}
1433
Sujithcbe61d82009-02-09 13:27:12 +05301434static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301435{
1436 u32 val;
1437
1438 val = REG_READ(ah, AR_STA_ID1);
1439 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1440 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001441 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301442 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1443 | AR_STA_ID1_KSRCH_MODE);
1444 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1445 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001446 case NL80211_IFTYPE_ADHOC:
Sujithf1dc5602008-10-29 10:16:30 +05301447 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1448 | AR_STA_ID1_KSRCH_MODE);
1449 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1450 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001451 case NL80211_IFTYPE_STATION:
1452 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301453 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1454 break;
1455 }
1456}
1457
Sujithcbe61d82009-02-09 13:27:12 +05301458static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459 u32 coef_scaled,
1460 u32 *coef_mantissa,
1461 u32 *coef_exponent)
1462{
1463 u32 coef_exp, coef_man;
1464
1465 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1466 if ((coef_scaled >> coef_exp) & 0x1)
1467 break;
1468
1469 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1470
1471 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1472
1473 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1474 *coef_exponent = coef_exp - 16;
1475}
1476
Sujithcbe61d82009-02-09 13:27:12 +05301477static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301478 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001479{
1480 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1481 u32 clockMhzScaled = 0x64000000;
1482 struct chan_centers centers;
1483
1484 if (IS_CHAN_HALF_RATE(chan))
1485 clockMhzScaled = clockMhzScaled >> 1;
1486 else if (IS_CHAN_QUARTER_RATE(chan))
1487 clockMhzScaled = clockMhzScaled >> 2;
1488
1489 ath9k_hw_get_channel_centers(ah, chan, &centers);
1490 coef_scaled = clockMhzScaled / centers.synth_center;
1491
1492 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1493 &ds_coef_exp);
1494
1495 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1496 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1497 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1498 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1499
1500 coef_scaled = (9 * coef_scaled) / 10;
1501
1502 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1503 &ds_coef_exp);
1504
1505 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1506 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1507 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1508 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1509}
1510
Sujithcbe61d82009-02-09 13:27:12 +05301511static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301512{
1513 u32 rst_flags;
1514 u32 tmpReg;
1515
Sujith70768492009-02-16 13:23:12 +05301516 if (AR_SREV_9100(ah)) {
1517 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1518 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1519 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1520 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1521 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1522 }
1523
Sujithf1dc5602008-10-29 10:16:30 +05301524 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1525 AR_RTC_FORCE_WAKE_ON_INT);
1526
1527 if (AR_SREV_9100(ah)) {
1528 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1529 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1530 } else {
1531 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1532 if (tmpReg &
1533 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1534 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1535 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1536 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1537 } else {
1538 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1539 }
1540
1541 rst_flags = AR_RTC_RC_MAC_WARM;
1542 if (type == ATH9K_RESET_COLD)
1543 rst_flags |= AR_RTC_RC_MAC_COLD;
1544 }
1545
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001546 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301547 udelay(50);
1548
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001549 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301550 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +05301551 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301552 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301553 return false;
1554 }
1555
1556 if (!AR_SREV_9100(ah))
1557 REG_WRITE(ah, AR_RC, 0);
1558
1559 ath9k_hw_init_pll(ah, NULL);
1560
1561 if (AR_SREV_9100(ah))
1562 udelay(50);
1563
1564 return true;
1565}
1566
Sujithcbe61d82009-02-09 13:27:12 +05301567static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301568{
1569 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1570 AR_RTC_FORCE_WAKE_ON_INT);
1571
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001572 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301573 udelay(2);
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001574 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301575
1576 if (!ath9k_hw_wait(ah,
1577 AR_RTC_STATUS,
1578 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301579 AR_RTC_STATUS_ON,
1580 AH_WAIT_TIMEOUT)) {
Sujith04bd46382008-11-28 22:18:05 +05301581 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301582 return false;
1583 }
1584
1585 ath9k_hw_read_revisions(ah);
1586
1587 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1588}
1589
Sujithcbe61d82009-02-09 13:27:12 +05301590static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301591{
1592 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1593 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1594
1595 switch (type) {
1596 case ATH9K_RESET_POWER_ON:
1597 return ath9k_hw_set_reset_power_on(ah);
1598 break;
1599 case ATH9K_RESET_WARM:
1600 case ATH9K_RESET_COLD:
1601 return ath9k_hw_set_reset(ah, type);
1602 break;
1603 default:
1604 return false;
1605 }
1606}
1607
Sujithcbe61d82009-02-09 13:27:12 +05301608static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
Sujithf1dc5602008-10-29 10:16:30 +05301609 enum ath9k_ht_macmode macmode)
1610{
1611 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301612 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301613
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301614 if (AR_SREV_9285_10_OR_LATER(ah))
1615 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1616 AR_PHY_FC_ENABLE_DAC_FIFO);
1617
Sujithf1dc5602008-10-29 10:16:30 +05301618 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301619 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301620
1621 if (IS_CHAN_HT40(chan)) {
1622 phymode |= AR_PHY_FC_DYN2040_EN;
1623
1624 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1625 (chan->chanmode == CHANNEL_G_HT40PLUS))
1626 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1627
Sujith2660b812009-02-09 13:27:26 +05301628 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
Sujithf1dc5602008-10-29 10:16:30 +05301629 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1630 }
1631 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1632
1633 ath9k_hw_set11nmac2040(ah, macmode);
1634
1635 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1636 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1637}
1638
Sujithcbe61d82009-02-09 13:27:12 +05301639static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301640 struct ath9k_channel *chan)
1641{
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301642 if (OLC_FOR_AR9280_20_LATER) {
1643 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1644 return false;
1645 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301646 return false;
1647
1648 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1649 return false;
1650
Sujith2660b812009-02-09 13:27:26 +05301651 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301652 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301653 ath9k_hw_set_rfmode(ah, chan);
1654
1655 return true;
1656}
1657
Sujithcbe61d82009-02-09 13:27:12 +05301658static bool ath9k_hw_channel_change(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301659 struct ath9k_channel *chan,
1660 enum ath9k_ht_macmode macmode)
1661{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001662 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301663 u32 synthDelay, qnum;
1664
1665 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1666 if (ath9k_hw_numtxpending(ah, qnum)) {
1667 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd46382008-11-28 22:18:05 +05301668 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301669 return false;
1670 }
1671 }
1672
1673 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1674 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301675 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Sujith04bd46382008-11-28 22:18:05 +05301676 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
1677 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301678 return false;
1679 }
1680
1681 ath9k_hw_set_regs(ah, chan, macmode);
1682
1683 if (AR_SREV_9280_10_OR_LATER(ah)) {
1684 if (!(ath9k_hw_ar9280_set_channel(ah, chan))) {
1685 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +05301686 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301687 return false;
1688 }
1689 } else {
1690 if (!(ath9k_hw_set_channel(ah, chan))) {
1691 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +05301692 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301693 return false;
1694 }
1695 }
1696
Sujithf74df6f2009-02-09 13:27:24 +05301697 if (ah->eep_ops->set_txpower(ah, chan,
1698 ath9k_regd_get_ctl(ah, chan),
1699 channel->max_antenna_gain * 2,
1700 channel->max_power * 2,
1701 min((u32) MAX_RATE_POWER,
1702 (u32) ah->regulatory.power_limit)) != 0) {
Sujithf1dc5602008-10-29 10:16:30 +05301703 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +05301704 "error init'ing transmit power\n");
Sujithf1dc5602008-10-29 10:16:30 +05301705 return false;
1706 }
1707
1708 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301709 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301710 synthDelay = (4 * synthDelay) / 22;
1711 else
1712 synthDelay /= 10;
1713
1714 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1715
1716 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1717
1718 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1719 ath9k_hw_set_delta_slope(ah, chan);
1720
1721 if (AR_SREV_9280_10_OR_LATER(ah))
1722 ath9k_hw_9280_spur_mitigate(ah, chan);
1723 else
1724 ath9k_hw_spur_mitigate(ah, chan);
1725
1726 if (!chan->oneTimeCalsDone)
1727 chan->oneTimeCalsDone = true;
1728
1729 return true;
1730}
1731
Sujithcbe61d82009-02-09 13:27:12 +05301732static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001733{
1734 int bb_spur = AR_NO_SPUR;
1735 int freq;
1736 int bin, cur_bin;
1737 int bb_spur_off, spur_subchannel_sd;
1738 int spur_freq_sd;
1739 int spur_delta_phase;
1740 int denominator;
1741 int upper, lower, cur_vit_mask;
1742 int tmp, newVal;
1743 int i;
1744 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1745 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1746 };
1747 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1748 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1749 };
1750 int inc[4] = { 0, 100, 0, 0 };
1751 struct chan_centers centers;
1752
1753 int8_t mask_m[123];
1754 int8_t mask_p[123];
1755 int8_t mask_amt;
1756 int tmp_mask;
1757 int cur_bb_spur;
1758 bool is2GHz = IS_CHAN_2GHZ(chan);
1759
1760 memset(&mask_m, 0, sizeof(int8_t) * 123);
1761 memset(&mask_p, 0, sizeof(int8_t) * 123);
1762
1763 ath9k_hw_get_channel_centers(ah, chan, &centers);
1764 freq = centers.synth_center;
1765
Sujith2660b812009-02-09 13:27:26 +05301766 ah->config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001767 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05301768 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001769
1770 if (is2GHz)
1771 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1772 else
1773 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1774
1775 if (AR_NO_SPUR == cur_bb_spur)
1776 break;
1777 cur_bb_spur = cur_bb_spur - freq;
1778
1779 if (IS_CHAN_HT40(chan)) {
1780 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1781 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1782 bb_spur = cur_bb_spur;
1783 break;
1784 }
1785 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1786 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1787 bb_spur = cur_bb_spur;
1788 break;
1789 }
1790 }
1791
1792 if (AR_NO_SPUR == bb_spur) {
1793 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1794 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1795 return;
1796 } else {
1797 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1798 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1799 }
1800
1801 bin = bb_spur * 320;
1802
1803 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1804
1805 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1806 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1807 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1808 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1809 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1810
1811 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1812 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1813 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1814 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1815 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1816 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1817
1818 if (IS_CHAN_HT40(chan)) {
1819 if (bb_spur < 0) {
1820 spur_subchannel_sd = 1;
1821 bb_spur_off = bb_spur + 10;
1822 } else {
1823 spur_subchannel_sd = 0;
1824 bb_spur_off = bb_spur - 10;
1825 }
1826 } else {
1827 spur_subchannel_sd = 0;
1828 bb_spur_off = bb_spur;
1829 }
1830
1831 if (IS_CHAN_HT40(chan))
1832 spur_delta_phase =
1833 ((bb_spur * 262144) /
1834 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1835 else
1836 spur_delta_phase =
1837 ((bb_spur * 524288) /
1838 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1839
1840 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1841 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1842
1843 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1844 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1845 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1846 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1847
1848 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1849 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1850
1851 cur_bin = -6000;
1852 upper = bin + 100;
1853 lower = bin - 100;
1854
1855 for (i = 0; i < 4; i++) {
1856 int pilot_mask = 0;
1857 int chan_mask = 0;
1858 int bp = 0;
1859 for (bp = 0; bp < 30; bp++) {
1860 if ((cur_bin > lower) && (cur_bin < upper)) {
1861 pilot_mask = pilot_mask | 0x1 << bp;
1862 chan_mask = chan_mask | 0x1 << bp;
1863 }
1864 cur_bin += 100;
1865 }
1866 cur_bin += inc[i];
1867 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1868 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1869 }
1870
1871 cur_vit_mask = 6100;
1872 upper = bin + 120;
1873 lower = bin - 120;
1874
1875 for (i = 0; i < 123; i++) {
1876 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001877
1878 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001879 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001880
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001881 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882 mask_amt = 1;
1883 else
1884 mask_amt = 0;
1885 if (cur_vit_mask < 0)
1886 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1887 else
1888 mask_p[cur_vit_mask / 100] = mask_amt;
1889 }
1890 cur_vit_mask -= 100;
1891 }
1892
1893 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1894 | (mask_m[48] << 26) | (mask_m[49] << 24)
1895 | (mask_m[50] << 22) | (mask_m[51] << 20)
1896 | (mask_m[52] << 18) | (mask_m[53] << 16)
1897 | (mask_m[54] << 14) | (mask_m[55] << 12)
1898 | (mask_m[56] << 10) | (mask_m[57] << 8)
1899 | (mask_m[58] << 6) | (mask_m[59] << 4)
1900 | (mask_m[60] << 2) | (mask_m[61] << 0);
1901 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1902 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1903
1904 tmp_mask = (mask_m[31] << 28)
1905 | (mask_m[32] << 26) | (mask_m[33] << 24)
1906 | (mask_m[34] << 22) | (mask_m[35] << 20)
1907 | (mask_m[36] << 18) | (mask_m[37] << 16)
1908 | (mask_m[48] << 14) | (mask_m[39] << 12)
1909 | (mask_m[40] << 10) | (mask_m[41] << 8)
1910 | (mask_m[42] << 6) | (mask_m[43] << 4)
1911 | (mask_m[44] << 2) | (mask_m[45] << 0);
1912 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1913 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1914
1915 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1916 | (mask_m[18] << 26) | (mask_m[18] << 24)
1917 | (mask_m[20] << 22) | (mask_m[20] << 20)
1918 | (mask_m[22] << 18) | (mask_m[22] << 16)
1919 | (mask_m[24] << 14) | (mask_m[24] << 12)
1920 | (mask_m[25] << 10) | (mask_m[26] << 8)
1921 | (mask_m[27] << 6) | (mask_m[28] << 4)
1922 | (mask_m[29] << 2) | (mask_m[30] << 0);
1923 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1924 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1925
1926 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1927 | (mask_m[2] << 26) | (mask_m[3] << 24)
1928 | (mask_m[4] << 22) | (mask_m[5] << 20)
1929 | (mask_m[6] << 18) | (mask_m[7] << 16)
1930 | (mask_m[8] << 14) | (mask_m[9] << 12)
1931 | (mask_m[10] << 10) | (mask_m[11] << 8)
1932 | (mask_m[12] << 6) | (mask_m[13] << 4)
1933 | (mask_m[14] << 2) | (mask_m[15] << 0);
1934 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1935 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1936
1937 tmp_mask = (mask_p[15] << 28)
1938 | (mask_p[14] << 26) | (mask_p[13] << 24)
1939 | (mask_p[12] << 22) | (mask_p[11] << 20)
1940 | (mask_p[10] << 18) | (mask_p[9] << 16)
1941 | (mask_p[8] << 14) | (mask_p[7] << 12)
1942 | (mask_p[6] << 10) | (mask_p[5] << 8)
1943 | (mask_p[4] << 6) | (mask_p[3] << 4)
1944 | (mask_p[2] << 2) | (mask_p[1] << 0);
1945 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1946 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1947
1948 tmp_mask = (mask_p[30] << 28)
1949 | (mask_p[29] << 26) | (mask_p[28] << 24)
1950 | (mask_p[27] << 22) | (mask_p[26] << 20)
1951 | (mask_p[25] << 18) | (mask_p[24] << 16)
1952 | (mask_p[23] << 14) | (mask_p[22] << 12)
1953 | (mask_p[21] << 10) | (mask_p[20] << 8)
1954 | (mask_p[19] << 6) | (mask_p[18] << 4)
1955 | (mask_p[17] << 2) | (mask_p[16] << 0);
1956 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1957 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1958
1959 tmp_mask = (mask_p[45] << 28)
1960 | (mask_p[44] << 26) | (mask_p[43] << 24)
1961 | (mask_p[42] << 22) | (mask_p[41] << 20)
1962 | (mask_p[40] << 18) | (mask_p[39] << 16)
1963 | (mask_p[38] << 14) | (mask_p[37] << 12)
1964 | (mask_p[36] << 10) | (mask_p[35] << 8)
1965 | (mask_p[34] << 6) | (mask_p[33] << 4)
1966 | (mask_p[32] << 2) | (mask_p[31] << 0);
1967 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
1968 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
1969
1970 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
1971 | (mask_p[59] << 26) | (mask_p[58] << 24)
1972 | (mask_p[57] << 22) | (mask_p[56] << 20)
1973 | (mask_p[55] << 18) | (mask_p[54] << 16)
1974 | (mask_p[53] << 14) | (mask_p[52] << 12)
1975 | (mask_p[51] << 10) | (mask_p[50] << 8)
1976 | (mask_p[49] << 6) | (mask_p[48] << 4)
1977 | (mask_p[47] << 2) | (mask_p[46] << 0);
1978 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
1979 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
1980}
1981
Sujithcbe61d82009-02-09 13:27:12 +05301982static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983{
1984 int bb_spur = AR_NO_SPUR;
1985 int bin, cur_bin;
1986 int spur_freq_sd;
1987 int spur_delta_phase;
1988 int denominator;
1989 int upper, lower, cur_vit_mask;
1990 int tmp, new;
1991 int i;
1992 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1993 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1994 };
1995 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1996 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1997 };
1998 int inc[4] = { 0, 100, 0, 0 };
1999
2000 int8_t mask_m[123];
2001 int8_t mask_p[123];
2002 int8_t mask_amt;
2003 int tmp_mask;
2004 int cur_bb_spur;
2005 bool is2GHz = IS_CHAN_2GHZ(chan);
2006
2007 memset(&mask_m, 0, sizeof(int8_t) * 123);
2008 memset(&mask_p, 0, sizeof(int8_t) * 123);
2009
2010 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithf74df6f2009-02-09 13:27:24 +05302011 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012 if (AR_NO_SPUR == cur_bb_spur)
2013 break;
2014 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2015 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2016 bb_spur = cur_bb_spur;
2017 break;
2018 }
2019 }
2020
2021 if (AR_NO_SPUR == bb_spur)
2022 return;
2023
2024 bin = bb_spur * 32;
2025
2026 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2027 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2028 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2029 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2030 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2031
2032 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2033
2034 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2035 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2036 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2037 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2038 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2039 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2040
2041 spur_delta_phase = ((bb_spur * 524288) / 100) &
2042 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2043
2044 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2045 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2046
2047 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2048 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2049 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2050 REG_WRITE(ah, AR_PHY_TIMING11, new);
2051
2052 cur_bin = -6000;
2053 upper = bin + 100;
2054 lower = bin - 100;
2055
2056 for (i = 0; i < 4; i++) {
2057 int pilot_mask = 0;
2058 int chan_mask = 0;
2059 int bp = 0;
2060 for (bp = 0; bp < 30; bp++) {
2061 if ((cur_bin > lower) && (cur_bin < upper)) {
2062 pilot_mask = pilot_mask | 0x1 << bp;
2063 chan_mask = chan_mask | 0x1 << bp;
2064 }
2065 cur_bin += 100;
2066 }
2067 cur_bin += inc[i];
2068 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2069 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2070 }
2071
2072 cur_vit_mask = 6100;
2073 upper = bin + 120;
2074 lower = bin - 120;
2075
2076 for (i = 0; i < 123; i++) {
2077 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002078
2079 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002080 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002081
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002082 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002083 mask_amt = 1;
2084 else
2085 mask_amt = 0;
2086 if (cur_vit_mask < 0)
2087 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2088 else
2089 mask_p[cur_vit_mask / 100] = mask_amt;
2090 }
2091 cur_vit_mask -= 100;
2092 }
2093
2094 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2095 | (mask_m[48] << 26) | (mask_m[49] << 24)
2096 | (mask_m[50] << 22) | (mask_m[51] << 20)
2097 | (mask_m[52] << 18) | (mask_m[53] << 16)
2098 | (mask_m[54] << 14) | (mask_m[55] << 12)
2099 | (mask_m[56] << 10) | (mask_m[57] << 8)
2100 | (mask_m[58] << 6) | (mask_m[59] << 4)
2101 | (mask_m[60] << 2) | (mask_m[61] << 0);
2102 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2103 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2104
2105 tmp_mask = (mask_m[31] << 28)
2106 | (mask_m[32] << 26) | (mask_m[33] << 24)
2107 | (mask_m[34] << 22) | (mask_m[35] << 20)
2108 | (mask_m[36] << 18) | (mask_m[37] << 16)
2109 | (mask_m[48] << 14) | (mask_m[39] << 12)
2110 | (mask_m[40] << 10) | (mask_m[41] << 8)
2111 | (mask_m[42] << 6) | (mask_m[43] << 4)
2112 | (mask_m[44] << 2) | (mask_m[45] << 0);
2113 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2114 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2115
2116 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2117 | (mask_m[18] << 26) | (mask_m[18] << 24)
2118 | (mask_m[20] << 22) | (mask_m[20] << 20)
2119 | (mask_m[22] << 18) | (mask_m[22] << 16)
2120 | (mask_m[24] << 14) | (mask_m[24] << 12)
2121 | (mask_m[25] << 10) | (mask_m[26] << 8)
2122 | (mask_m[27] << 6) | (mask_m[28] << 4)
2123 | (mask_m[29] << 2) | (mask_m[30] << 0);
2124 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2125 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2126
2127 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2128 | (mask_m[2] << 26) | (mask_m[3] << 24)
2129 | (mask_m[4] << 22) | (mask_m[5] << 20)
2130 | (mask_m[6] << 18) | (mask_m[7] << 16)
2131 | (mask_m[8] << 14) | (mask_m[9] << 12)
2132 | (mask_m[10] << 10) | (mask_m[11] << 8)
2133 | (mask_m[12] << 6) | (mask_m[13] << 4)
2134 | (mask_m[14] << 2) | (mask_m[15] << 0);
2135 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2136 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2137
2138 tmp_mask = (mask_p[15] << 28)
2139 | (mask_p[14] << 26) | (mask_p[13] << 24)
2140 | (mask_p[12] << 22) | (mask_p[11] << 20)
2141 | (mask_p[10] << 18) | (mask_p[9] << 16)
2142 | (mask_p[8] << 14) | (mask_p[7] << 12)
2143 | (mask_p[6] << 10) | (mask_p[5] << 8)
2144 | (mask_p[4] << 6) | (mask_p[3] << 4)
2145 | (mask_p[2] << 2) | (mask_p[1] << 0);
2146 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2147 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2148
2149 tmp_mask = (mask_p[30] << 28)
2150 | (mask_p[29] << 26) | (mask_p[28] << 24)
2151 | (mask_p[27] << 22) | (mask_p[26] << 20)
2152 | (mask_p[25] << 18) | (mask_p[24] << 16)
2153 | (mask_p[23] << 14) | (mask_p[22] << 12)
2154 | (mask_p[21] << 10) | (mask_p[20] << 8)
2155 | (mask_p[19] << 6) | (mask_p[18] << 4)
2156 | (mask_p[17] << 2) | (mask_p[16] << 0);
2157 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2158 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2159
2160 tmp_mask = (mask_p[45] << 28)
2161 | (mask_p[44] << 26) | (mask_p[43] << 24)
2162 | (mask_p[42] << 22) | (mask_p[41] << 20)
2163 | (mask_p[40] << 18) | (mask_p[39] << 16)
2164 | (mask_p[38] << 14) | (mask_p[37] << 12)
2165 | (mask_p[36] << 10) | (mask_p[35] << 8)
2166 | (mask_p[34] << 6) | (mask_p[33] << 4)
2167 | (mask_p[32] << 2) | (mask_p[31] << 0);
2168 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2169 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2170
2171 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2172 | (mask_p[59] << 26) | (mask_p[58] << 24)
2173 | (mask_p[57] << 22) | (mask_p[56] << 20)
2174 | (mask_p[55] << 18) | (mask_p[54] << 16)
2175 | (mask_p[53] << 14) | (mask_p[52] << 12)
2176 | (mask_p[51] << 10) | (mask_p[50] << 8)
2177 | (mask_p[49] << 6) | (mask_p[48] << 4)
2178 | (mask_p[47] << 2) | (mask_p[46] << 0);
2179 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2180 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2181}
2182
Sujithcbe61d82009-02-09 13:27:12 +05302183int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002184 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002185{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002186 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002187 struct ath_softc *sc = ah->ah_sc;
Sujith2660b812009-02-09 13:27:26 +05302188 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189 u32 saveDefAntenna;
2190 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002191 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192
Sujith2660b812009-02-09 13:27:26 +05302193 ah->extprotspacing = sc->ht_extprotspacing;
2194 ah->txchainmask = sc->tx_chainmask;
2195 ah->rxchainmask = sc->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002196
Senthil Balasubramanian793c5922009-01-26 20:28:14 +05302197 if (AR_SREV_9285(ah)) {
Sujith2660b812009-02-09 13:27:26 +05302198 ah->txchainmask &= 0x1;
2199 ah->rxchainmask &= 0x1;
Senthil Balasubramanian793c5922009-01-26 20:28:14 +05302200 } else if (AR_SREV_9280(ah)) {
Sujith2660b812009-02-09 13:27:26 +05302201 ah->txchainmask &= 0x3;
2202 ah->rxchainmask &= 0x3;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002203 }
2204
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002205 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2206 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002207
2208 if (curchan)
2209 ath9k_hw_getnf(ah, curchan);
2210
2211 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05302212 (ah->chip_fullsleep != true) &&
2213 (ah->curchan != NULL) &&
2214 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002215 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05302216 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith2660b812009-02-09 13:27:26 +05302218 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002219
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002220 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Sujith2660b812009-02-09 13:27:26 +05302221 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002223 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002224 }
2225 }
2226
2227 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2228 if (saveDefAntenna == 0)
2229 saveDefAntenna = 1;
2230
2231 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2232
2233 saveLedState = REG_READ(ah, AR_CFG_LED) &
2234 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2235 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2236
2237 ath9k_hw_mark_phy_inactive(ah);
2238
2239 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujith04bd46382008-11-28 22:18:05 +05302240 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002241 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242 }
2243
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302244 if (AR_SREV_9280_10_OR_LATER(ah))
2245 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002246
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002247 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2248 if (r)
2249 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002250
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002251 /* Setup MFP options for CCMP */
2252 if (AR_SREV_9280_20_OR_LATER(ah)) {
2253 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2254 * frames when constructing CCMP AAD. */
2255 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2256 0xc7ff);
2257 ah->sw_mgmt_crypto = false;
2258 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2259 /* Disable hardware crypto for management frames */
2260 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2261 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2262 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2263 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2264 ah->sw_mgmt_crypto = true;
2265 } else
2266 ah->sw_mgmt_crypto = true;
2267
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002268 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2269 ath9k_hw_set_delta_slope(ah, chan);
2270
2271 if (AR_SREV_9280_10_OR_LATER(ah))
2272 ath9k_hw_9280_spur_mitigate(ah, chan);
2273 else
2274 ath9k_hw_spur_mitigate(ah, chan);
2275
Sujithf74df6f2009-02-09 13:27:24 +05302276 if (!ah->eep_ops->set_board_values(ah, chan)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +05302278 "error setting board options\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002279 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 }
2281
2282 ath9k_hw_decrease_chain_power(ah, chan);
2283
Sujithba52da52009-02-09 13:27:10 +05302284 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2285 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002286 | macStaId1
2287 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302288 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302289 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302290 | ah->sta_id1_defaults);
2291 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292
Sujithba52da52009-02-09 13:27:10 +05302293 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2294 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002295
2296 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2297
Sujithba52da52009-02-09 13:27:10 +05302298 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2299 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2300 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301
2302 REG_WRITE(ah, AR_ISR, ~0);
2303
2304 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2305
2306 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002307 if (!(ath9k_hw_ar9280_set_channel(ah, chan)))
2308 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002309 } else {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002310 if (!(ath9k_hw_set_channel(ah, chan)))
2311 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002312 }
2313
2314 for (i = 0; i < AR_NUM_DCU; i++)
2315 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2316
Sujith2660b812009-02-09 13:27:26 +05302317 ah->intr_txqs = 0;
2318 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002319 ath9k_hw_resettxqueue(ah, i);
2320
Sujith2660b812009-02-09 13:27:26 +05302321 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002322 ath9k_hw_init_qos(ah);
2323
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302324#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302325 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302326 ath9k_enable_rfkill(ah);
2327#endif
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002328 ath9k_hw_init_user_settings(ah);
2329
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002330 REG_WRITE(ah, AR_STA_ID1,
2331 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2332
2333 ath9k_hw_set_dma(ah);
2334
2335 REG_WRITE(ah, AR_OBS, 8);
2336
Sujith2660b812009-02-09 13:27:26 +05302337 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338
2339 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2340 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2341 }
2342
2343 ath9k_hw_init_bb(ah, chan);
2344
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002345 if (!ath9k_hw_init_cal(ah, chan))
2346 return -EIO;;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002347
Sujith2660b812009-02-09 13:27:26 +05302348 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2350 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2351 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2352 }
2353
2354 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2355
2356 if (AR_SREV_9100(ah)) {
2357 u32 mask;
2358 mask = REG_READ(ah, AR_CFG);
2359 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2360 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302361 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 } else {
2363 mask =
2364 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2365 REG_WRITE(ah, AR_CFG, mask);
2366 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302367 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002368 }
2369 } else {
2370#ifdef __BIG_ENDIAN
2371 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2372#endif
2373 }
2374
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002375 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002376}
2377
Sujithf1dc5602008-10-29 10:16:30 +05302378/************************/
2379/* Key Cache Management */
2380/************************/
2381
Sujithcbe61d82009-02-09 13:27:12 +05302382bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383{
Sujithf1dc5602008-10-29 10:16:30 +05302384 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385
Sujith2660b812009-02-09 13:27:26 +05302386 if (entry >= ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302387 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302388 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 return false;
2390 }
2391
Sujithf1dc5602008-10-29 10:16:30 +05302392 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393
Sujithf1dc5602008-10-29 10:16:30 +05302394 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2395 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2396 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2397 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2398 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2399 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2400 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2401 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2402
2403 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2404 u16 micentry = entry + 64;
2405
2406 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2407 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2408 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2409 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2410
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 }
2412
Sujith2660b812009-02-09 13:27:26 +05302413 if (ah->curchan == NULL)
Sujithf1dc5602008-10-29 10:16:30 +05302414 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002415
2416 return true;
2417}
2418
Sujithcbe61d82009-02-09 13:27:12 +05302419bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420{
Sujithf1dc5602008-10-29 10:16:30 +05302421 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002422
Sujith2660b812009-02-09 13:27:26 +05302423 if (entry >= ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302424 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302425 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002426 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427 }
2428
Sujithf1dc5602008-10-29 10:16:30 +05302429 if (mac != NULL) {
2430 macHi = (mac[5] << 8) | mac[4];
2431 macLo = (mac[3] << 24) |
2432 (mac[2] << 16) |
2433 (mac[1] << 8) |
2434 mac[0];
2435 macLo >>= 1;
2436 macLo |= (macHi & 1) << 31;
2437 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002438 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302439 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002440 }
Sujithf1dc5602008-10-29 10:16:30 +05302441 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2442 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443
2444 return true;
2445}
2446
Sujithcbe61d82009-02-09 13:27:12 +05302447bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302448 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002449 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002450{
Sujith2660b812009-02-09 13:27:26 +05302451 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05302452 u32 key0, key1, key2, key3, key4;
2453 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454
Sujithf1dc5602008-10-29 10:16:30 +05302455 if (entry >= pCap->keycache_size) {
2456 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302457 "entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302458 return false;
2459 }
2460
2461 switch (k->kv_type) {
2462 case ATH9K_CIPHER_AES_OCB:
2463 keyType = AR_KEYTABLE_TYPE_AES;
2464 break;
2465 case ATH9K_CIPHER_AES_CCM:
2466 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2467 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302468 "AES-CCM not supported by mac rev 0x%x\n",
Sujithd535a422009-02-09 13:27:06 +05302469 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470 return false;
2471 }
Sujithf1dc5602008-10-29 10:16:30 +05302472 keyType = AR_KEYTABLE_TYPE_CCM;
2473 break;
2474 case ATH9K_CIPHER_TKIP:
2475 keyType = AR_KEYTABLE_TYPE_TKIP;
2476 if (ATH9K_IS_MIC_ENABLED(ah)
2477 && entry + 64 >= pCap->keycache_size) {
2478 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302479 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002480 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002481 }
Sujithf1dc5602008-10-29 10:16:30 +05302482 break;
2483 case ATH9K_CIPHER_WEP:
2484 if (k->kv_len < LEN_WEP40) {
2485 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302486 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302487 return false;
2488 }
2489 if (k->kv_len <= LEN_WEP40)
2490 keyType = AR_KEYTABLE_TYPE_40;
2491 else if (k->kv_len <= LEN_WEP104)
2492 keyType = AR_KEYTABLE_TYPE_104;
2493 else
2494 keyType = AR_KEYTABLE_TYPE_128;
2495 break;
2496 case ATH9K_CIPHER_CLR:
2497 keyType = AR_KEYTABLE_TYPE_CLR;
2498 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002499 default:
Sujithf1dc5602008-10-29 10:16:30 +05302500 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302501 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002502 return false;
2503 }
Sujithf1dc5602008-10-29 10:16:30 +05302504
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002505 key0 = get_unaligned_le32(k->kv_val + 0);
2506 key1 = get_unaligned_le16(k->kv_val + 4);
2507 key2 = get_unaligned_le32(k->kv_val + 6);
2508 key3 = get_unaligned_le16(k->kv_val + 10);
2509 key4 = get_unaligned_le32(k->kv_val + 12);
Sujithf1dc5602008-10-29 10:16:30 +05302510 if (k->kv_len <= LEN_WEP104)
2511 key4 &= 0xff;
2512
Jouni Malinen672903b2009-03-02 15:06:31 +02002513 /*
2514 * Note: Key cache registers access special memory area that requires
2515 * two 32-bit writes to actually update the values in the internal
2516 * memory. Consequently, the exact order and pairs used here must be
2517 * maintained.
2518 */
2519
Sujithf1dc5602008-10-29 10:16:30 +05302520 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2521 u16 micentry = entry + 64;
2522
Jouni Malinen672903b2009-03-02 15:06:31 +02002523 /*
2524 * Write inverted key[47:0] first to avoid Michael MIC errors
2525 * on frames that could be sent or received at the same time.
2526 * The correct key will be written in the end once everything
2527 * else is ready.
2528 */
Sujithf1dc5602008-10-29 10:16:30 +05302529 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2530 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002531
2532 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302533 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2534 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002535
2536 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302537 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2538 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002539
2540 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302541 (void) ath9k_hw_keysetmac(ah, entry, mac);
2542
Sujith2660b812009-02-09 13:27:26 +05302543 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002544 /*
2545 * TKIP uses two key cache entries:
2546 * Michael MIC TX/RX keys in the same key cache entry
2547 * (idx = main index + 64):
2548 * key0 [31:0] = RX key [31:0]
2549 * key1 [15:0] = TX key [31:16]
2550 * key1 [31:16] = reserved
2551 * key2 [31:0] = RX key [63:32]
2552 * key3 [15:0] = TX key [15:0]
2553 * key3 [31:16] = reserved
2554 * key4 [31:0] = TX key [63:32]
2555 */
Sujithf1dc5602008-10-29 10:16:30 +05302556 u32 mic0, mic1, mic2, mic3, mic4;
2557
2558 mic0 = get_unaligned_le32(k->kv_mic + 0);
2559 mic2 = get_unaligned_le32(k->kv_mic + 4);
2560 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2561 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2562 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002563
2564 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302565 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2566 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002567
2568 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302569 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2570 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002571
2572 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302573 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2574 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2575 AR_KEYTABLE_TYPE_CLR);
2576
2577 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002578 /*
2579 * TKIP uses four key cache entries (two for group
2580 * keys):
2581 * Michael MIC TX/RX keys are in different key cache
2582 * entries (idx = main index + 64 for TX and
2583 * main index + 32 + 96 for RX):
2584 * key0 [31:0] = TX/RX MIC key [31:0]
2585 * key1 [31:0] = reserved
2586 * key2 [31:0] = TX/RX MIC key [63:32]
2587 * key3 [31:0] = reserved
2588 * key4 [31:0] = reserved
2589 *
2590 * Upper layer code will call this function separately
2591 * for TX and RX keys when these registers offsets are
2592 * used.
2593 */
Sujithf1dc5602008-10-29 10:16:30 +05302594 u32 mic0, mic2;
2595
2596 mic0 = get_unaligned_le32(k->kv_mic + 0);
2597 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002598
2599 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302600 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2601 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002602
2603 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302604 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2605 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002606
2607 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302608 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2609 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2610 AR_KEYTABLE_TYPE_CLR);
2611 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002612
2613 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302614 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2615 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002616
2617 /*
2618 * Write the correct (un-inverted) key[47:0] last to enable
2619 * TKIP now that all other registers are set with correct
2620 * values.
2621 */
Sujithf1dc5602008-10-29 10:16:30 +05302622 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2623 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2624 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002625 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302626 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2627 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002628
2629 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302630 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2631 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002632
2633 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302634 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2635 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2636
Jouni Malinen672903b2009-03-02 15:06:31 +02002637 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302638 (void) ath9k_hw_keysetmac(ah, entry, mac);
2639 }
2640
Sujithf1dc5602008-10-29 10:16:30 +05302641 return true;
2642}
2643
Sujithcbe61d82009-02-09 13:27:12 +05302644bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302645{
Sujith2660b812009-02-09 13:27:26 +05302646 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302647 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2648 if (val & AR_KEYTABLE_VALID)
2649 return true;
2650 }
2651 return false;
2652}
2653
2654/******************************/
2655/* Power Management (Chipset) */
2656/******************************/
2657
Sujithcbe61d82009-02-09 13:27:12 +05302658static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302659{
2660 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2661 if (setChip) {
2662 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2663 AR_RTC_FORCE_WAKE_EN);
2664 if (!AR_SREV_9100(ah))
2665 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2666
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002667 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302668 AR_RTC_RESET_EN);
2669 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002670}
2671
Sujithcbe61d82009-02-09 13:27:12 +05302672static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002673{
Sujithf1dc5602008-10-29 10:16:30 +05302674 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2675 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302676 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002677
Sujithf1dc5602008-10-29 10:16:30 +05302678 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2679 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2680 AR_RTC_FORCE_WAKE_ON_INT);
2681 } else {
2682 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2683 AR_RTC_FORCE_WAKE_EN);
2684 }
2685 }
2686}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002687
Sujithcbe61d82009-02-09 13:27:12 +05302688static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302689{
2690 u32 val;
2691 int i;
2692
2693 if (setChip) {
2694 if ((REG_READ(ah, AR_RTC_STATUS) &
2695 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2696 if (ath9k_hw_set_reset_reg(ah,
2697 ATH9K_RESET_POWER_ON) != true) {
2698 return false;
2699 }
2700 }
2701 if (AR_SREV_9100(ah))
2702 REG_SET_BIT(ah, AR_RTC_RESET,
2703 AR_RTC_RESET_EN);
2704
2705 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2706 AR_RTC_FORCE_WAKE_EN);
2707 udelay(50);
2708
2709 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2710 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2711 if (val == AR_RTC_STATUS_ON)
2712 break;
2713 udelay(50);
2714 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2715 AR_RTC_FORCE_WAKE_EN);
2716 }
2717 if (i == 0) {
2718 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05302719 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302720 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002721 }
2722 }
2723
Sujithf1dc5602008-10-29 10:16:30 +05302724 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2725
2726 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002727}
2728
Sujithcbe61d82009-02-09 13:27:12 +05302729bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302730{
Sujithcbe61d82009-02-09 13:27:12 +05302731 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302732 static const char *modes[] = {
2733 "AWAKE",
2734 "FULL-SLEEP",
2735 "NETWORK SLEEP",
2736 "UNDEFINED"
2737 };
Sujithf1dc5602008-10-29 10:16:30 +05302738
Sujith04bd46382008-11-28 22:18:05 +05302739 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT, "%s -> %s (%s)\n",
Sujith2660b812009-02-09 13:27:26 +05302740 modes[ah->power_mode], modes[mode],
Sujithf1dc5602008-10-29 10:16:30 +05302741 setChip ? "set chip " : "");
2742
2743 switch (mode) {
2744 case ATH9K_PM_AWAKE:
2745 status = ath9k_hw_set_power_awake(ah, setChip);
2746 break;
2747 case ATH9K_PM_FULL_SLEEP:
2748 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302749 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302750 break;
2751 case ATH9K_PM_NETWORK_SLEEP:
2752 ath9k_set_power_network_sleep(ah, setChip);
2753 break;
2754 default:
2755 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05302756 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302757 return false;
2758 }
Sujith2660b812009-02-09 13:27:26 +05302759 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302760
2761 return status;
2762}
2763
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002764/*
2765 * Helper for ASPM support.
2766 *
2767 * Disable PLL when in L0s as well as receiver clock when in L1.
2768 * This power saving option must be enabled through the SerDes.
2769 *
2770 * Programming the SerDes must go through the same 288 bit serial shift
2771 * register as the other analog registers. Hence the 9 writes.
2772 */
Sujithcbe61d82009-02-09 13:27:12 +05302773void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
Sujithf1dc5602008-10-29 10:16:30 +05302774{
Sujithf1dc5602008-10-29 10:16:30 +05302775 u8 i;
2776
Sujith2660b812009-02-09 13:27:26 +05302777 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302778 return;
2779
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002780 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302781 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302782 return;
2783
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002784 /* Nothing to do on restore for 11N */
Sujithf1dc5602008-10-29 10:16:30 +05302785 if (restore)
2786 return;
2787
2788 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002789 /*
2790 * AR9280 2.0 or later chips use SerDes values from the
2791 * initvals.h initialized depending on chipset during
2792 * ath9k_hw_do_attach()
2793 */
Sujith2660b812009-02-09 13:27:26 +05302794 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2795 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2796 INI_RA(&ah->iniPcieSerdes, i, 1));
Sujithf1dc5602008-10-29 10:16:30 +05302797 }
Sujithf1dc5602008-10-29 10:16:30 +05302798 } else if (AR_SREV_9280(ah) &&
Sujithd535a422009-02-09 13:27:06 +05302799 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
Sujithf1dc5602008-10-29 10:16:30 +05302800 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2801 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2802
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002803 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302804 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2805 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2806 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2807
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002808 /* Shut off CLKREQ active in L1 */
Sujith2660b812009-02-09 13:27:26 +05302809 if (ah->config.pcie_clock_req)
Sujithf1dc5602008-10-29 10:16:30 +05302810 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2811 else
2812 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2813
2814 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2815 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2816 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2817
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002818 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302819 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2820
Sujithf1dc5602008-10-29 10:16:30 +05302821 } else {
2822 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2823 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002824
2825 /* RX shut off when elecidle is asserted */
Sujithf1dc5602008-10-29 10:16:30 +05302826 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2827 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2828 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002829
2830 /*
2831 * Ignore ah->ah_config.pcie_clock_req setting for
2832 * pre-AR9280 11n
2833 */
Sujithf1dc5602008-10-29 10:16:30 +05302834 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002835
Sujithf1dc5602008-10-29 10:16:30 +05302836 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2837 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2838 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002839
2840 /* Load the new settings */
Sujithf1dc5602008-10-29 10:16:30 +05302841 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2842 }
2843
Luis R. Rodriguez6d08b9b2009-02-10 15:35:27 -08002844 udelay(1000);
2845
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002846 /* set bit 19 to allow forcing of pcie core into L1 state */
Sujithf1dc5602008-10-29 10:16:30 +05302847 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2848
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002849 /* Several PCIe massages to ensure proper behaviour */
Sujith2660b812009-02-09 13:27:26 +05302850 if (ah->config.pcie_waen) {
2851 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Sujithf1dc5602008-10-29 10:16:30 +05302852 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302853 if (AR_SREV_9285(ah))
2854 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002855 /*
2856 * On AR9280 chips bit 22 of 0x4004 needs to be set to
2857 * otherwise card may disappear.
2858 */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302859 else if (AR_SREV_9280(ah))
2860 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302861 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302862 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302863 }
2864}
2865
2866/**********************/
2867/* Interrupt Handling */
2868/**********************/
2869
Sujithcbe61d82009-02-09 13:27:12 +05302870bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002871{
2872 u32 host_isr;
2873
2874 if (AR_SREV_9100(ah))
2875 return true;
2876
2877 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2878 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2879 return true;
2880
2881 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2882 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2883 && (host_isr != AR_INTR_SPURIOUS))
2884 return true;
2885
2886 return false;
2887}
2888
Sujithcbe61d82009-02-09 13:27:12 +05302889bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002890{
2891 u32 isr = 0;
2892 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302893 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002894 u32 sync_cause = 0;
2895 bool fatal_int = false;
2896
2897 if (!AR_SREV_9100(ah)) {
2898 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2899 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2900 == AR_RTC_STATUS_ON) {
2901 isr = REG_READ(ah, AR_ISR);
2902 }
2903 }
2904
Sujithf1dc5602008-10-29 10:16:30 +05302905 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2906 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002907
2908 *masked = 0;
2909
2910 if (!isr && !sync_cause)
2911 return false;
2912 } else {
2913 *masked = 0;
2914 isr = REG_READ(ah, AR_ISR);
2915 }
2916
2917 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002918 if (isr & AR_ISR_BCNMISC) {
2919 u32 isr2;
2920 isr2 = REG_READ(ah, AR_ISR_S2);
2921 if (isr2 & AR_ISR_S2_TIM)
2922 mask2 |= ATH9K_INT_TIM;
2923 if (isr2 & AR_ISR_S2_DTIM)
2924 mask2 |= ATH9K_INT_DTIM;
2925 if (isr2 & AR_ISR_S2_DTIMSYNC)
2926 mask2 |= ATH9K_INT_DTIMSYNC;
2927 if (isr2 & (AR_ISR_S2_CABEND))
2928 mask2 |= ATH9K_INT_CABEND;
2929 if (isr2 & AR_ISR_S2_GTT)
2930 mask2 |= ATH9K_INT_GTT;
2931 if (isr2 & AR_ISR_S2_CST)
2932 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302933 if (isr2 & AR_ISR_S2_TSFOOR)
2934 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002935 }
2936
2937 isr = REG_READ(ah, AR_ISR_RAC);
2938 if (isr == 0xffffffff) {
2939 *masked = 0;
2940 return false;
2941 }
2942
2943 *masked = isr & ATH9K_INT_COMMON;
2944
Sujith2660b812009-02-09 13:27:26 +05302945 if (ah->intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002946 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2947 *masked |= ATH9K_INT_RX;
2948 }
2949
2950 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2951 *masked |= ATH9K_INT_RX;
2952 if (isr &
2953 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2954 AR_ISR_TXEOL)) {
2955 u32 s0_s, s1_s;
2956
2957 *masked |= ATH9K_INT_TX;
2958
2959 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302960 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2961 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002962
2963 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302964 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2965 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002966 }
2967
2968 if (isr & AR_ISR_RXORN) {
2969 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05302970 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002971 }
2972
2973 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302974 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002975 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2976 if (isr5 & AR_ISR_S5_TIM_TIMER)
2977 *masked |= ATH9K_INT_TIM_TIMER;
2978 }
2979 }
2980
2981 *masked |= mask2;
2982 }
Sujithf1dc5602008-10-29 10:16:30 +05302983
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002984 if (AR_SREV_9100(ah))
2985 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302986
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002987 if (sync_cause) {
2988 fatal_int =
2989 (sync_cause &
2990 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2991 ? true : false;
2992
2993 if (fatal_int) {
2994 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
2995 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302996 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002997 }
2998 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
2999 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05303000 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003001 }
3002 }
3003 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3004 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05303005 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003006 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3007 REG_WRITE(ah, AR_RC, 0);
3008 *masked |= ATH9K_INT_FATAL;
3009 }
3010 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3011 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05303012 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003013 }
3014
3015 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3016 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3017 }
Sujithf1dc5602008-10-29 10:16:30 +05303018
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003019 return true;
3020}
3021
Sujithcbe61d82009-02-09 13:27:12 +05303022enum ath9k_int ath9k_hw_intrget(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003023{
Sujith2660b812009-02-09 13:27:26 +05303024 return ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003025}
3026
Sujithcbe61d82009-02-09 13:27:12 +05303027enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003028{
Sujith2660b812009-02-09 13:27:26 +05303029 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003030 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05303031 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003032
Sujith04bd46382008-11-28 22:18:05 +05303033 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003034
3035 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05303036 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003037 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3038 (void) REG_READ(ah, AR_IER);
3039 if (!AR_SREV_9100(ah)) {
3040 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3041 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3042
3043 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3044 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3045 }
3046 }
3047
3048 mask = ints & ATH9K_INT_COMMON;
3049 mask2 = 0;
3050
3051 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05303052 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003053 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05303054 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003055 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05303056 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003057 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05303058 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003059 mask |= AR_IMR_TXEOL;
3060 }
3061 if (ints & ATH9K_INT_RX) {
3062 mask |= AR_IMR_RXERR;
Sujith2660b812009-02-09 13:27:26 +05303063 if (ah->intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003064 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3065 else
3066 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05303067 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003068 mask |= AR_IMR_GENTMR;
3069 }
3070
3071 if (ints & (ATH9K_INT_BMISC)) {
3072 mask |= AR_IMR_BCNMISC;
3073 if (ints & ATH9K_INT_TIM)
3074 mask2 |= AR_IMR_S2_TIM;
3075 if (ints & ATH9K_INT_DTIM)
3076 mask2 |= AR_IMR_S2_DTIM;
3077 if (ints & ATH9K_INT_DTIMSYNC)
3078 mask2 |= AR_IMR_S2_DTIMSYNC;
3079 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05303080 mask2 |= AR_IMR_S2_CABEND;
3081 if (ints & ATH9K_INT_TSFOOR)
3082 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003083 }
3084
3085 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3086 mask |= AR_IMR_BCNMISC;
3087 if (ints & ATH9K_INT_GTT)
3088 mask2 |= AR_IMR_S2_GTT;
3089 if (ints & ATH9K_INT_CST)
3090 mask2 |= AR_IMR_S2_CST;
3091 }
3092
Sujith04bd46382008-11-28 22:18:05 +05303093 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003094 REG_WRITE(ah, AR_IMR, mask);
3095 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3096 AR_IMR_S2_DTIM |
3097 AR_IMR_S2_DTIMSYNC |
3098 AR_IMR_S2_CABEND |
3099 AR_IMR_S2_CABTO |
3100 AR_IMR_S2_TSFOOR |
3101 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3102 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
Sujith2660b812009-02-09 13:27:26 +05303103 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003104
Sujith60b67f52008-08-07 10:52:38 +05303105 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003106 if (ints & ATH9K_INT_TIM_TIMER)
3107 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3108 else
3109 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3110 }
3111
3112 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05303113 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003114 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3115 if (!AR_SREV_9100(ah)) {
3116 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3117 AR_INTR_MAC_IRQ);
3118 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3119
3120
3121 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3122 AR_INTR_SYNC_DEFAULT);
3123 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3124 AR_INTR_SYNC_DEFAULT);
3125 }
3126 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3127 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3128 }
3129
3130 return omask;
3131}
3132
Sujithf1dc5602008-10-29 10:16:30 +05303133/*******************/
3134/* Beacon Handling */
3135/*******************/
3136
Sujithcbe61d82009-02-09 13:27:12 +05303137void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003138{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003139 int flags = 0;
3140
Sujith2660b812009-02-09 13:27:26 +05303141 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003142
Sujith2660b812009-02-09 13:27:26 +05303143 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003144 case NL80211_IFTYPE_STATION:
3145 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003146 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3147 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3148 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3149 flags |= AR_TBTT_TIMER_EN;
3150 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003151 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003152 REG_SET_BIT(ah, AR_TXCFG,
3153 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3154 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3155 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05303156 (ah->atim_window ? ah->
3157 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003158 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003159 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003160 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3161 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3162 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303163 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303164 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003165 REG_WRITE(ah, AR_NEXT_SWBA,
3166 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05303167 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05303168 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003169 flags |=
3170 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3171 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003172 default:
3173 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3174 "%s: unsupported opmode: %d\n",
Sujith2660b812009-02-09 13:27:26 +05303175 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003176 return;
3177 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003178 }
3179
3180 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3181 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3182 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3183 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3184
3185 beacon_period &= ~ATH9K_BEACON_ENA;
3186 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3187 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3188 ath9k_hw_reset_tsf(ah);
3189 }
3190
3191 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3192}
3193
Sujithcbe61d82009-02-09 13:27:12 +05303194void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303195 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003196{
3197 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303198 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003199
3200 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3201
3202 REG_WRITE(ah, AR_BEACON_PERIOD,
3203 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3204 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3205 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3206
3207 REG_RMW_FIELD(ah, AR_RSSI_THR,
3208 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3209
3210 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3211
3212 if (bs->bs_sleepduration > beaconintval)
3213 beaconintval = bs->bs_sleepduration;
3214
3215 dtimperiod = bs->bs_dtimperiod;
3216 if (bs->bs_sleepduration > dtimperiod)
3217 dtimperiod = bs->bs_sleepduration;
3218
3219 if (beaconintval == dtimperiod)
3220 nextTbtt = bs->bs_nextdtim;
3221 else
3222 nextTbtt = bs->bs_nexttbtt;
3223
Sujith04bd46382008-11-28 22:18:05 +05303224 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3225 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3226 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3227 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003228
3229 REG_WRITE(ah, AR_NEXT_DTIM,
3230 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3231 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3232
3233 REG_WRITE(ah, AR_SLEEP1,
3234 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3235 | AR_SLEEP1_ASSUME_DTIM);
3236
Sujith60b67f52008-08-07 10:52:38 +05303237 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003238 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3239 else
3240 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3241
3242 REG_WRITE(ah, AR_SLEEP2,
3243 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3244
3245 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3246 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3247
3248 REG_SET_BIT(ah, AR_TIMER_MODE,
3249 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3250 AR_DTIM_TIMER_EN);
3251
Sujith4af9cf42009-02-12 10:06:47 +05303252 /* TSF Out of Range Threshold */
3253 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003254}
3255
Sujithf1dc5602008-10-29 10:16:30 +05303256/*******************/
3257/* HW Capabilities */
3258/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003259
Sujithcbe61d82009-02-09 13:27:12 +05303260bool ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003261{
Sujith2660b812009-02-09 13:27:26 +05303262 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +05303263 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003264
Sujithf74df6f2009-02-09 13:27:24 +05303265 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Sujithd6bad492009-02-09 13:27:08 +05303266 ah->regulatory.current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303267
Sujithf74df6f2009-02-09 13:27:24 +05303268 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303269 if (AR_SREV_9285_10_OR_LATER(ah))
3270 eeval |= AR9285_RDEXT_DEFAULT;
Sujithd6bad492009-02-09 13:27:08 +05303271 ah->regulatory.current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303272
Sujithf74df6f2009-02-09 13:27:24 +05303273 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303274
Sujith2660b812009-02-09 13:27:26 +05303275 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303276 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Sujithd6bad492009-02-09 13:27:08 +05303277 if (ah->regulatory.current_rd == 0x64 ||
3278 ah->regulatory.current_rd == 0x65)
3279 ah->regulatory.current_rd += 5;
3280 else if (ah->regulatory.current_rd == 0x41)
3281 ah->regulatory.current_rd = 0x43;
Sujithf1dc5602008-10-29 10:16:30 +05303282 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujithd6bad492009-02-09 13:27:08 +05303283 "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003284 }
Sujithdc2222a2008-08-14 13:26:55 +05303285
Sujithf74df6f2009-02-09 13:27:24 +05303286 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Sujithf1dc5602008-10-29 10:16:30 +05303287 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003288
Sujithf1dc5602008-10-29 10:16:30 +05303289 if (eeval & AR5416_OPFLAGS_11A) {
3290 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303291 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303292 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3293 set_bit(ATH9K_MODE_11NA_HT20,
3294 pCap->wireless_modes);
3295 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3296 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3297 pCap->wireless_modes);
3298 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3299 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003300 }
3301 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003302 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003303
Sujithf1dc5602008-10-29 10:16:30 +05303304 if (eeval & AR5416_OPFLAGS_11G) {
3305 set_bit(ATH9K_MODE_11B, pCap->wireless_modes);
3306 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303307 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303308 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3309 set_bit(ATH9K_MODE_11NG_HT20,
3310 pCap->wireless_modes);
3311 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3312 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3313 pCap->wireless_modes);
3314 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3315 pCap->wireless_modes);
3316 }
3317 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003318 }
Sujithf1dc5602008-10-29 10:16:30 +05303319
Sujithf74df6f2009-02-09 13:27:24 +05303320 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Sujith8147f5d2009-02-20 15:13:23 +05303321 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3322 !(eeval & AR5416_OPFLAGS_11A))
3323 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3324 else
3325 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303326
Sujithd535a422009-02-09 13:27:06 +05303327 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303328 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303329
3330 pCap->low_2ghz_chan = 2312;
3331 pCap->high_2ghz_chan = 2732;
3332
3333 pCap->low_5ghz_chan = 4920;
3334 pCap->high_5ghz_chan = 6100;
3335
3336 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3337 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3338 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3339
3340 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3341 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3342 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3343
3344 pCap->hw_caps |= ATH9K_HW_CAP_CHAN_SPREAD;
3345
Sujith2660b812009-02-09 13:27:26 +05303346 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303347 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3348 else
3349 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3350
3351 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3352 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3353 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3354 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3355
3356 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3357 pCap->total_queues =
3358 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3359 else
3360 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3361
3362 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3363 pCap->keycache_size =
3364 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3365 else
3366 pCap->keycache_size = AR_KEYTABLE_SIZE;
3367
3368 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
3369 pCap->num_mr_retries = 4;
3370 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3371
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303372 if (AR_SREV_9285_10_OR_LATER(ah))
3373 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3374 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303375 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3376 else
3377 pCap->num_gpio_pins = AR_NUM_GPIO;
3378
3379 if (AR_SREV_9280_10_OR_LATER(ah)) {
3380 pCap->hw_caps |= ATH9K_HW_CAP_WOW;
3381 pCap->hw_caps |= ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3382 } else {
3383 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW;
3384 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3385 }
3386
3387 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3388 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3389 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3390 } else {
3391 pCap->rts_aggr_limit = (8 * 1024);
3392 }
3393
3394 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3395
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303396#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303397 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3398 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3399 ah->rfkill_gpio =
3400 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3401 ah->rfkill_polarity =
3402 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303403
3404 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3405 }
3406#endif
3407
Sujithd535a422009-02-09 13:27:06 +05303408 if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3409 (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3410 (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3411 (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
3412 (ah->hw_version.macVersion == AR_SREV_VERSION_9280))
Sujithf1dc5602008-10-29 10:16:30 +05303413 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3414 else
3415 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3416
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303417 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303418 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3419 else
3420 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3421
Sujithd6bad492009-02-09 13:27:08 +05303422 if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303423 pCap->reg_cap =
3424 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3425 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3426 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3427 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3428 } else {
3429 pCap->reg_cap =
3430 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3431 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3432 }
3433
3434 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3435
3436 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303437 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303438 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303439 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303440
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303441 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303442 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
Sujith2660b812009-02-09 13:27:26 +05303443 ah->btactive_gpio = 6;
3444 ah->wlanactive_gpio = 5;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303445 }
3446
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003447 return true;
3448}
3449
Sujithcbe61d82009-02-09 13:27:12 +05303450bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303451 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003452{
Sujithf1dc5602008-10-29 10:16:30 +05303453 switch (type) {
3454 case ATH9K_CAP_CIPHER:
3455 switch (capability) {
3456 case ATH9K_CIPHER_AES_CCM:
3457 case ATH9K_CIPHER_AES_OCB:
3458 case ATH9K_CIPHER_TKIP:
3459 case ATH9K_CIPHER_WEP:
3460 case ATH9K_CIPHER_MIC:
3461 case ATH9K_CIPHER_CLR:
3462 return true;
3463 default:
3464 return false;
3465 }
3466 case ATH9K_CAP_TKIP_MIC:
3467 switch (capability) {
3468 case 0:
3469 return true;
3470 case 1:
Sujith2660b812009-02-09 13:27:26 +05303471 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303472 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3473 false;
3474 }
3475 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303476 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303477 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303478 case ATH9K_CAP_DIVERSITY:
3479 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3480 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3481 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303482 case ATH9K_CAP_MCAST_KEYSRCH:
3483 switch (capability) {
3484 case 0:
3485 return true;
3486 case 1:
3487 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3488 return false;
3489 } else {
Sujith2660b812009-02-09 13:27:26 +05303490 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303491 AR_STA_ID1_MCAST_KSRCH) ? true :
3492 false;
3493 }
3494 }
3495 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303496 case ATH9K_CAP_TXPOW:
3497 switch (capability) {
3498 case 0:
3499 return 0;
3500 case 1:
Sujithd6bad492009-02-09 13:27:08 +05303501 *result = ah->regulatory.power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303502 return 0;
3503 case 2:
Sujithd6bad492009-02-09 13:27:08 +05303504 *result = ah->regulatory.max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303505 return 0;
3506 case 3:
Sujithd6bad492009-02-09 13:27:08 +05303507 *result = ah->regulatory.tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303508 return 0;
3509 }
3510 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303511 case ATH9K_CAP_DS:
3512 return (AR_SREV_9280_20_OR_LATER(ah) &&
3513 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3514 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303515 default:
3516 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003517 }
Sujithf1dc5602008-10-29 10:16:30 +05303518}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003519
Sujithcbe61d82009-02-09 13:27:12 +05303520bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303521 u32 capability, u32 setting, int *status)
3522{
Sujithf1dc5602008-10-29 10:16:30 +05303523 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003524
Sujithf1dc5602008-10-29 10:16:30 +05303525 switch (type) {
3526 case ATH9K_CAP_TKIP_MIC:
3527 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303528 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303529 AR_STA_ID1_CRPT_MIC_ENABLE;
3530 else
Sujith2660b812009-02-09 13:27:26 +05303531 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303532 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3533 return true;
3534 case ATH9K_CAP_DIVERSITY:
3535 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3536 if (setting)
3537 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3538 else
3539 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3540 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3541 return true;
3542 case ATH9K_CAP_MCAST_KEYSRCH:
3543 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303544 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303545 else
Sujith2660b812009-02-09 13:27:26 +05303546 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303547 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303548 default:
3549 return false;
3550 }
3551}
3552
3553/****************************/
3554/* GPIO / RFKILL / Antennae */
3555/****************************/
3556
Sujithcbe61d82009-02-09 13:27:12 +05303557static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303558 u32 gpio, u32 type)
3559{
3560 int addr;
3561 u32 gpio_shift, tmp;
3562
3563 if (gpio > 11)
3564 addr = AR_GPIO_OUTPUT_MUX3;
3565 else if (gpio > 5)
3566 addr = AR_GPIO_OUTPUT_MUX2;
3567 else
3568 addr = AR_GPIO_OUTPUT_MUX1;
3569
3570 gpio_shift = (gpio % 6) * 5;
3571
3572 if (AR_SREV_9280_20_OR_LATER(ah)
3573 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3574 REG_RMW(ah, addr, (type << gpio_shift),
3575 (0x1f << gpio_shift));
3576 } else {
3577 tmp = REG_READ(ah, addr);
3578 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3579 tmp &= ~(0x1f << gpio_shift);
3580 tmp |= (type << gpio_shift);
3581 REG_WRITE(ah, addr, tmp);
3582 }
3583}
3584
Sujithcbe61d82009-02-09 13:27:12 +05303585void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303586{
3587 u32 gpio_shift;
3588
Sujith2660b812009-02-09 13:27:26 +05303589 ASSERT(gpio < ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303590
3591 gpio_shift = gpio << 1;
3592
3593 REG_RMW(ah,
3594 AR_GPIO_OE_OUT,
3595 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3596 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3597}
3598
Sujithcbe61d82009-02-09 13:27:12 +05303599u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303600{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303601#define MS_REG_READ(x, y) \
3602 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3603
Sujith2660b812009-02-09 13:27:26 +05303604 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303605 return 0xffffffff;
3606
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303607 if (AR_SREV_9285_10_OR_LATER(ah))
3608 return MS_REG_READ(AR9285, gpio) != 0;
3609 else if (AR_SREV_9280_10_OR_LATER(ah))
3610 return MS_REG_READ(AR928X, gpio) != 0;
3611 else
3612 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303613}
3614
Sujithcbe61d82009-02-09 13:27:12 +05303615void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303616 u32 ah_signal_type)
3617{
3618 u32 gpio_shift;
3619
3620 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3621
3622 gpio_shift = 2 * gpio;
3623
3624 REG_RMW(ah,
3625 AR_GPIO_OE_OUT,
3626 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3627 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3628}
3629
Sujithcbe61d82009-02-09 13:27:12 +05303630void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303631{
3632 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3633 AR_GPIO_BIT(gpio));
3634}
3635
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303636#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujithcbe61d82009-02-09 13:27:12 +05303637void ath9k_enable_rfkill(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303638{
3639 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3640 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
3641
3642 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
3643 AR_GPIO_INPUT_MUX2_RFSILENT);
3644
Sujith2660b812009-02-09 13:27:26 +05303645 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303646 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
3647}
3648#endif
3649
Sujithcbe61d82009-02-09 13:27:12 +05303650u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303651{
3652 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3653}
3654
Sujithcbe61d82009-02-09 13:27:12 +05303655void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303656{
3657 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3658}
3659
Sujithcbe61d82009-02-09 13:27:12 +05303660bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303661 enum ath9k_ant_setting settings,
3662 struct ath9k_channel *chan,
3663 u8 *tx_chainmask,
3664 u8 *rx_chainmask,
3665 u8 *antenna_cfgd)
3666{
Sujithf1dc5602008-10-29 10:16:30 +05303667 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3668
3669 if (AR_SREV_9280(ah)) {
3670 if (!tx_chainmask_cfg) {
3671
3672 tx_chainmask_cfg = *tx_chainmask;
3673 rx_chainmask_cfg = *rx_chainmask;
3674 }
3675
3676 switch (settings) {
3677 case ATH9K_ANT_FIXED_A:
3678 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3679 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3680 *antenna_cfgd = true;
3681 break;
3682 case ATH9K_ANT_FIXED_B:
Sujith2660b812009-02-09 13:27:26 +05303683 if (ah->caps.tx_chainmask >
Sujithf1dc5602008-10-29 10:16:30 +05303684 ATH9K_ANTENNA1_CHAINMASK) {
3685 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3686 }
3687 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3688 *antenna_cfgd = true;
3689 break;
3690 case ATH9K_ANT_VARIABLE:
3691 *tx_chainmask = tx_chainmask_cfg;
3692 *rx_chainmask = rx_chainmask_cfg;
3693 *antenna_cfgd = true;
3694 break;
3695 default:
3696 break;
3697 }
3698 } else {
Sujith2660b812009-02-09 13:27:26 +05303699 ah->diversity_control = settings;
Sujithf1dc5602008-10-29 10:16:30 +05303700 }
3701
3702 return true;
3703}
3704
3705/*********************/
3706/* General Operation */
3707/*********************/
3708
Sujithcbe61d82009-02-09 13:27:12 +05303709u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303710{
3711 u32 bits = REG_READ(ah, AR_RX_FILTER);
3712 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3713
3714 if (phybits & AR_PHY_ERR_RADAR)
3715 bits |= ATH9K_RX_FILTER_PHYRADAR;
3716 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3717 bits |= ATH9K_RX_FILTER_PHYERR;
3718
3719 return bits;
3720}
3721
Sujithcbe61d82009-02-09 13:27:12 +05303722void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303723{
3724 u32 phybits;
3725
3726 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3727 phybits = 0;
3728 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3729 phybits |= AR_PHY_ERR_RADAR;
3730 if (bits & ATH9K_RX_FILTER_PHYERR)
3731 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3732 REG_WRITE(ah, AR_PHY_ERR, phybits);
3733
3734 if (phybits)
3735 REG_WRITE(ah, AR_RXCFG,
3736 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3737 else
3738 REG_WRITE(ah, AR_RXCFG,
3739 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3740}
3741
Sujithcbe61d82009-02-09 13:27:12 +05303742bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303743{
3744 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3745}
3746
Sujithcbe61d82009-02-09 13:27:12 +05303747bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303748{
3749 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3750 return false;
3751
3752 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3753}
3754
Sujithcbe61d82009-02-09 13:27:12 +05303755bool ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303756{
Sujith2660b812009-02-09 13:27:26 +05303757 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003758 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303759
Sujithd6bad492009-02-09 13:27:08 +05303760 ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303761
Sujithf74df6f2009-02-09 13:27:24 +05303762 if (ah->eep_ops->set_txpower(ah, chan,
3763 ath9k_regd_get_ctl(ah, chan),
3764 channel->max_antenna_gain * 2,
3765 channel->max_power * 2,
3766 min((u32) MAX_RATE_POWER,
3767 (u32) ah->regulatory.power_limit)) != 0)
Sujithf1dc5602008-10-29 10:16:30 +05303768 return false;
3769
3770 return true;
3771}
3772
Sujithcbe61d82009-02-09 13:27:12 +05303773void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303774{
Sujithba52da52009-02-09 13:27:10 +05303775 memcpy(ah->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303776}
3777
Sujithcbe61d82009-02-09 13:27:12 +05303778void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303779{
Sujith2660b812009-02-09 13:27:26 +05303780 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303781}
3782
Sujithcbe61d82009-02-09 13:27:12 +05303783void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303784{
3785 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3786 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3787}
3788
Sujithba52da52009-02-09 13:27:10 +05303789void ath9k_hw_setbssidmask(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303790{
Sujithba52da52009-02-09 13:27:10 +05303791 REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
3792 REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
Sujithf1dc5602008-10-29 10:16:30 +05303793}
3794
Sujithba52da52009-02-09 13:27:10 +05303795void ath9k_hw_write_associd(struct ath_softc *sc)
Sujithf1dc5602008-10-29 10:16:30 +05303796{
Sujithba52da52009-02-09 13:27:10 +05303797 REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
3798 REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
3799 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303800}
3801
Sujithcbe61d82009-02-09 13:27:12 +05303802u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303803{
3804 u64 tsf;
3805
3806 tsf = REG_READ(ah, AR_TSF_U32);
3807 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3808
3809 return tsf;
3810}
3811
Sujithcbe61d82009-02-09 13:27:12 +05303812void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003813{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003814 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003815 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003816}
3817
Sujithcbe61d82009-02-09 13:27:12 +05303818void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303819{
3820 int count;
3821
3822 count = 0;
3823 while (REG_READ(ah, AR_SLP32_MODE) & AR_SLP32_TSF_WRITE_STATUS) {
3824 count++;
3825 if (count > 10) {
3826 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05303827 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Sujithf1dc5602008-10-29 10:16:30 +05303828 break;
3829 }
3830 udelay(10);
3831 }
3832 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003833}
3834
Sujithcbe61d82009-02-09 13:27:12 +05303835bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003836{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003837 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303838 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003839 else
Sujith2660b812009-02-09 13:27:26 +05303840 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303841
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003842 return true;
3843}
3844
Sujithcbe61d82009-02-09 13:27:12 +05303845bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003846{
Sujithf1dc5602008-10-29 10:16:30 +05303847 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd46382008-11-28 22:18:05 +05303848 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujith2660b812009-02-09 13:27:26 +05303849 ah->slottime = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05303850 return false;
3851 } else {
3852 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
Sujith2660b812009-02-09 13:27:26 +05303853 ah->slottime = us;
Sujithf1dc5602008-10-29 10:16:30 +05303854 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003855 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003856}
3857
Sujithcbe61d82009-02-09 13:27:12 +05303858void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003859{
Sujithf1dc5602008-10-29 10:16:30 +05303860 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003861
Sujithf1dc5602008-10-29 10:16:30 +05303862 if (mode == ATH9K_HT_MACMODE_2040 &&
Sujith2660b812009-02-09 13:27:26 +05303863 !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303864 macmode = AR_2040_JOINED_RX_CLEAR;
3865 else
3866 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003867
Sujithf1dc5602008-10-29 10:16:30 +05303868 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003869}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303870
3871/***************************/
3872/* Bluetooth Coexistence */
3873/***************************/
3874
Sujithcbe61d82009-02-09 13:27:12 +05303875void ath9k_hw_btcoex_enable(struct ath_hw *ah)
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303876{
3877 /* connect bt_active to baseband */
3878 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3879 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3880 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3881
3882 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3883 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3884
3885 /* Set input mux for bt_active to gpio pin */
3886 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3887 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
Sujith2660b812009-02-09 13:27:26 +05303888 ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303889
3890 /* Configure the desired gpio port for input */
Sujith2660b812009-02-09 13:27:26 +05303891 ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303892
3893 /* Configure the desired GPIO port for TX_FRAME output */
Sujith2660b812009-02-09 13:27:26 +05303894 ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303895 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3896}