blob: 77282345efc1748c00ed25acf90fec95d9a94532 [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
20#include "core.h"
21#include "hw.h"
22#include "reg.h"
23#include "phy.h"
24#include "initvals.h"
25
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +053026static int btcoex_enable;
27module_param(btcoex_enable, bool, 0);
28MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
29
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080030#define ATH9K_CLOCK_RATE_CCK 22
31#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
32#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Sujithf1dc5602008-10-29 10:16:30 +053034static bool ath9k_hw_set_reset_reg(struct ath_hal *ah, u32 type);
35static void ath9k_hw_set_regs(struct ath_hal *ah, struct ath9k_channel *chan,
36 enum ath9k_ht_macmode macmode);
37static u32 ath9k_hw_ini_fixup(struct ath_hal *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053038 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +053039 u32 reg, u32 value);
40static void ath9k_hw_9280_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan);
41static void ath9k_hw_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070042
Sujithf1dc5602008-10-29 10:16:30 +053043/********************/
44/* Helper Functions */
45/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070046
Sujithf1dc5602008-10-29 10:16:30 +053047static u32 ath9k_hw_mac_usec(struct ath_hal *ah, u32 clks)
48{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080049 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
50 if (!ah->ah_curchan) /* should really check for CCK instead */
51 return clks / ATH9K_CLOCK_RATE_CCK;
52 if (conf->channel->band == IEEE80211_BAND_2GHZ)
53 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
54 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053055}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070056
Sujithf1dc5602008-10-29 10:16:30 +053057static u32 ath9k_hw_mac_to_usec(struct ath_hal *ah, u32 clks)
58{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080059 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
60 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
Sujithf1dc5602008-10-29 10:16:30 +053066static u32 ath9k_hw_mac_clks(struct ath_hal *ah, u32 usecs)
67{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080068 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
69 if (!ah->ah_curchan) /* should really check for CCK instead */
70 return usecs *ATH9K_CLOCK_RATE_CCK;
71 if (conf->channel->band == IEEE80211_BAND_2GHZ)
72 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
73 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053074}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070075
Sujithf1dc5602008-10-29 10:16:30 +053076static u32 ath9k_hw_mac_to_clks(struct ath_hal *ah, u32 usecs)
77{
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080078 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
79 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053080 return ath9k_hw_mac_clks(ah, usecs) * 2;
81 else
82 return ath9k_hw_mac_clks(ah, usecs);
83}
84
Sujithf1dc5602008-10-29 10:16:30 +053085bool ath9k_hw_wait(struct ath_hal *ah, u32 reg, u32 mask, u32 val)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070086{
87 int i;
88
89 for (i = 0; i < (AH_TIMEOUT / AH_TIME_QUANTUM); i++) {
90 if ((REG_READ(ah, reg) & mask) == val)
91 return true;
92
93 udelay(AH_TIME_QUANTUM);
94 }
Sujith04bd46382008-11-28 22:18:05 +053095
96 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
97 "timeout on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
98 reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +053099
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700100 return false;
101}
102
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700103u32 ath9k_hw_reverse_bits(u32 val, u32 n)
104{
105 u32 retval;
106 int i;
107
108 for (i = 0, retval = 0; i < n; i++) {
109 retval = (retval << 1) | (val & 1);
110 val >>= 1;
111 }
112 return retval;
113}
114
Sujithf1dc5602008-10-29 10:16:30 +0530115bool ath9k_get_channel_edges(struct ath_hal *ah,
116 u16 flags, u16 *low,
117 u16 *high)
118{
119 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
120
121 if (flags & CHANNEL_5GHZ) {
122 *low = pCap->low_5ghz_chan;
123 *high = pCap->high_5ghz_chan;
124 return true;
125 }
126 if ((flags & CHANNEL_2GHZ)) {
127 *low = pCap->low_2ghz_chan;
128 *high = pCap->high_2ghz_chan;
129 return true;
130 }
131 return false;
132}
133
134u16 ath9k_hw_computetxtime(struct ath_hal *ah,
Sujithe63835b2008-11-18 09:07:53 +0530135 struct ath_rate_table *rates,
Sujithf1dc5602008-10-29 10:16:30 +0530136 u32 frameLen, u16 rateix,
137 bool shortPreamble)
138{
139 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
140 u32 kbps;
141
Sujithe63835b2008-11-18 09:07:53 +0530142 kbps = rates->info[rateix].ratekbps;
Sujithf1dc5602008-10-29 10:16:30 +0530143
144 if (kbps == 0)
145 return 0;
146
147 switch (rates->info[rateix].phy) {
Sujith46d14a52008-11-18 09:08:13 +0530148 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530149 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Sujithe63835b2008-11-18 09:07:53 +0530150 if (shortPreamble && rates->info[rateix].short_preamble)
Sujithf1dc5602008-10-29 10:16:30 +0530151 phyTime >>= 1;
152 numBits = frameLen << 3;
153 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
154 break;
Sujith46d14a52008-11-18 09:08:13 +0530155 case WLAN_RC_PHY_OFDM:
Sujithf1dc5602008-10-29 10:16:30 +0530156 if (ah->ah_curchan && IS_CHAN_QUARTER_RATE(ah->ah_curchan)) {
157 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
158 numBits = OFDM_PLCP_BITS + (frameLen << 3);
159 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
160 txTime = OFDM_SIFS_TIME_QUARTER
161 + OFDM_PREAMBLE_TIME_QUARTER
162 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
163 } else if (ah->ah_curchan &&
164 IS_CHAN_HALF_RATE(ah->ah_curchan)) {
165 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
166 numBits = OFDM_PLCP_BITS + (frameLen << 3);
167 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
168 txTime = OFDM_SIFS_TIME_HALF +
169 OFDM_PREAMBLE_TIME_HALF
170 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
171 } else {
172 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
173 numBits = OFDM_PLCP_BITS + (frameLen << 3);
174 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
175 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
176 + (numSymbols * OFDM_SYMBOL_TIME);
177 }
178 break;
179 default:
Sujith04bd46382008-11-28 22:18:05 +0530180 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
181 "Unknown phy %u (rate ix %u)\n",
Sujithf1dc5602008-10-29 10:16:30 +0530182 rates->info[rateix].phy, rateix);
183 txTime = 0;
184 break;
185 }
186
187 return txTime;
188}
189
Sujithf1dc5602008-10-29 10:16:30 +0530190void ath9k_hw_get_channel_centers(struct ath_hal *ah,
191 struct ath9k_channel *chan,
192 struct chan_centers *centers)
193{
194 int8_t extoff;
195 struct ath_hal_5416 *ahp = AH5416(ah);
196
197 if (!IS_CHAN_HT40(chan)) {
198 centers->ctl_center = centers->ext_center =
199 centers->synth_center = chan->channel;
200 return;
201 }
202
203 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
204 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
205 centers->synth_center =
206 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
207 extoff = 1;
208 } else {
209 centers->synth_center =
210 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
211 extoff = -1;
212 }
213
214 centers->ctl_center =
215 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
216 centers->ext_center =
217 centers->synth_center + (extoff *
218 ((ahp->ah_extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
219 HT40_CHANNEL_CENTER_SHIFT : 15));
220
221}
222
223/******************/
224/* Chip Revisions */
225/******************/
226
227static void ath9k_hw_read_revisions(struct ath_hal *ah)
228{
229 u32 val;
230
231 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
232
233 if (val == 0xFF) {
234 val = REG_READ(ah, AR_SREV);
235 ah->ah_macVersion = (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
236 ah->ah_macRev = MS(val, AR_SREV_REVISION2);
237 ah->ah_isPciExpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
238 } else {
239 if (!AR_SREV_9100(ah))
240 ah->ah_macVersion = MS(val, AR_SREV_VERSION);
241
242 ah->ah_macRev = val & AR_SREV_REVISION;
243
244 if (ah->ah_macVersion == AR_SREV_VERSION_5416_PCIE)
245 ah->ah_isPciExpress = true;
246 }
247}
248
249static int ath9k_hw_get_radiorev(struct ath_hal *ah)
250{
251 u32 val;
252 int i;
253
254 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
255
256 for (i = 0; i < 8; i++)
257 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
258 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
259 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
260
261 return ath9k_hw_reverse_bits(val, 8);
262}
263
264/************************************/
265/* HW Attach, Detach, Init Routines */
266/************************************/
267
268static void ath9k_hw_disablepcie(struct ath_hal *ah)
269{
270 if (!AR_SREV_9100(ah))
271 return;
272
273 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
274 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
275 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
276 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
277 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
278 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
279 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
280 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
281 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
282
283 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
284}
285
286static bool ath9k_hw_chip_test(struct ath_hal *ah)
287{
288 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
289 u32 regHold[2];
290 u32 patternData[4] = { 0x55555555,
291 0xaaaaaaaa,
292 0x66666666,
293 0x99999999 };
294 int i, j;
295
296 for (i = 0; i < 2; i++) {
297 u32 addr = regAddr[i];
298 u32 wrData, rdData;
299
300 regHold[i] = REG_READ(ah, addr);
301 for (j = 0; j < 0x100; j++) {
302 wrData = (j << 16) | j;
303 REG_WRITE(ah, addr, wrData);
304 rdData = REG_READ(ah, addr);
305 if (rdData != wrData) {
306 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +0530307 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530308 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd46382008-11-28 22:18:05 +0530309 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530310 return false;
311 }
312 }
313 for (j = 0; j < 4; j++) {
314 wrData = patternData[j];
315 REG_WRITE(ah, addr, wrData);
316 rdData = REG_READ(ah, addr);
317 if (wrData != rdData) {
318 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +0530319 "address test failed "
Sujithf1dc5602008-10-29 10:16:30 +0530320 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
Sujith04bd46382008-11-28 22:18:05 +0530321 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530322 return false;
323 }
324 }
325 REG_WRITE(ah, regAddr[i], regHold[i]);
326 }
327 udelay(100);
328 return true;
329}
330
331static const char *ath9k_hw_devname(u16 devid)
332{
333 switch (devid) {
334 case AR5416_DEVID_PCI:
Sujithf1dc5602008-10-29 10:16:30 +0530335 return "Atheros 5416";
Benoit PAPILLAULT392dff82008-11-06 22:26:49 +0100336 case AR5416_DEVID_PCIE:
337 return "Atheros 5418";
Sujithf1dc5602008-10-29 10:16:30 +0530338 case AR9160_DEVID_PCI:
339 return "Atheros 9160";
Gabor Juhos0c1aa492009-01-14 20:17:12 +0100340 case AR5416_AR9100_DEVID:
341 return "Atheros 9100";
Sujithf1dc5602008-10-29 10:16:30 +0530342 case AR9280_DEVID_PCI:
343 case AR9280_DEVID_PCIE:
344 return "Atheros 9280";
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530345 case AR9285_DEVID_PCIE:
346 return "Atheros 9285";
Sujithf1dc5602008-10-29 10:16:30 +0530347 }
348
349 return NULL;
350}
351
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700352static void ath9k_hw_set_defaults(struct ath_hal *ah)
353{
354 int i;
355
Sujith60b67f52008-08-07 10:52:38 +0530356 ah->ah_config.dma_beacon_response_time = 2;
357 ah->ah_config.sw_beacon_response_time = 10;
358 ah->ah_config.additional_swba_backoff = 0;
359 ah->ah_config.ack_6mb = 0x0;
360 ah->ah_config.cwm_ignore_extcca = 0;
361 ah->ah_config.pcie_powersave_enable = 0;
362 ah->ah_config.pcie_l1skp_enable = 0;
363 ah->ah_config.pcie_clock_req = 0;
364 ah->ah_config.pcie_power_reset = 0x100;
365 ah->ah_config.pcie_restore = 0;
366 ah->ah_config.pcie_waen = 0;
367 ah->ah_config.analog_shiftreg = 1;
368 ah->ah_config.ht_enable = 1;
369 ah->ah_config.ofdm_trig_low = 200;
370 ah->ah_config.ofdm_trig_high = 500;
371 ah->ah_config.cck_trig_high = 200;
372 ah->ah_config.cck_trig_low = 100;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -0700373 ah->ah_config.enable_ani = 1;
Sujith60b67f52008-08-07 10:52:38 +0530374 ah->ah_config.noise_immunity_level = 4;
375 ah->ah_config.ofdm_weaksignal_det = 1;
376 ah->ah_config.cck_weaksignal_thr = 0;
377 ah->ah_config.spur_immunity_level = 2;
378 ah->ah_config.firstep_level = 0;
379 ah->ah_config.rssi_thr_high = 40;
380 ah->ah_config.rssi_thr_low = 7;
381 ah->ah_config.diversity_control = 0;
382 ah->ah_config.antenna_switch_swap = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700383
384 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith60b67f52008-08-07 10:52:38 +0530385 ah->ah_config.spurchans[i][0] = AR_NO_SPUR;
386 ah->ah_config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700387 }
388
Luis R. Rodriguezf97e4002008-10-22 13:28:44 -0700389 ah->ah_config.intr_mitigation = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390}
391
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392static struct ath_hal_5416 *ath9k_hw_newstate(u16 devid,
393 struct ath_softc *sc,
394 void __iomem *mem,
395 int *status)
396{
397 static const u8 defbssidmask[ETH_ALEN] =
398 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
399 struct ath_hal_5416 *ahp;
400 struct ath_hal *ah;
401
402 ahp = kzalloc(sizeof(struct ath_hal_5416), GFP_KERNEL);
403 if (ahp == NULL) {
404 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +0530405 "Cannot allocate memory for state block\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700406 *status = -ENOMEM;
407 return NULL;
408 }
409
410 ah = &ahp->ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700411 ah->ah_sc = sc;
412 ah->ah_sh = mem;
Sujithd2d80ee2008-08-11 14:04:13 +0530413 ah->ah_magic = AR5416_MAGIC;
414 ah->ah_countryCode = CTRY_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700415 ah->ah_devid = devid;
416 ah->ah_subvendorid = 0;
417
418 ah->ah_flags = 0;
419 if ((devid == AR5416_AR9100_DEVID))
420 ah->ah_macVersion = AR_SREV_VERSION_9100;
421 if (!AR_SREV_9100(ah))
422 ah->ah_flags = AH_USE_EEPROM;
423
424 ah->ah_powerLimit = MAX_RATE_POWER;
425 ah->ah_tpScale = ATH9K_TP_SCALE_MAX;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426 ahp->ah_atimWindow = 0;
Sujith60b67f52008-08-07 10:52:38 +0530427 ahp->ah_diversityControl = ah->ah_config.diversity_control;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700428 ahp->ah_antennaSwitchSwap =
Sujith60b67f52008-08-07 10:52:38 +0530429 ah->ah_config.antenna_switch_swap;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700430 ahp->ah_staId1Defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
431 ahp->ah_beaconInterval = 100;
432 ahp->ah_enable32kHzClock = DONT_USE_32KHZ;
433 ahp->ah_slottime = (u32) -1;
434 ahp->ah_acktimeout = (u32) -1;
435 ahp->ah_ctstimeout = (u32) -1;
436 ahp->ah_globaltxtimeout = (u32) -1;
437 memcpy(&ahp->ah_bssidmask, defbssidmask, ETH_ALEN);
438
439 ahp->ah_gBeaconRate = 0;
440
441 return ahp;
442}
443
Sujithff9b6622008-08-14 13:27:16 +0530444static int ath9k_hw_rfattach(struct ath_hal *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445{
446 bool rfStatus = false;
447 int ecode = 0;
448
449 rfStatus = ath9k_hw_init_rf(ah, &ecode);
450 if (!rfStatus) {
451 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530452 "RF setup failed, status %u\n", ecode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 return ecode;
454 }
455
456 return 0;
457}
458
459static int ath9k_hw_rf_claim(struct ath_hal *ah)
460{
461 u32 val;
462
463 REG_WRITE(ah, AR_PHY(0), 0x00000007);
464
465 val = ath9k_hw_get_radiorev(ah);
466 switch (val & AR_RADIO_SREV_MAJOR) {
467 case 0:
468 val = AR_RAD5133_SREV_MAJOR;
469 break;
470 case AR_RAD5133_SREV_MAJOR:
471 case AR_RAD5122_SREV_MAJOR:
472 case AR_RAD2133_SREV_MAJOR:
473 case AR_RAD2122_SREV_MAJOR:
474 break;
475 default:
476 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +0530477 "5G Radio Chip Rev 0x%02X is not "
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 "supported by this driver\n",
Sujith04bd46382008-11-28 22:18:05 +0530479 ah->ah_analog5GhzRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480 return -EOPNOTSUPP;
481 }
482
483 ah->ah_analog5GhzRev = val;
484
485 return 0;
486}
487
Sujithf1dc5602008-10-29 10:16:30 +0530488static int ath9k_hw_init_macaddr(struct ath_hal *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700489{
Sujithf1dc5602008-10-29 10:16:30 +0530490 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530492 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493 struct ath_hal_5416 *ahp = AH5416(ah);
494
Sujithf1dc5602008-10-29 10:16:30 +0530495 sum = 0;
496 for (i = 0; i < 3; i++) {
497 eeval = ath9k_hw_get_eeprom(ah, AR_EEPROM_MAC(i));
498 sum += eeval;
499 ahp->ah_macaddr[2 * i] = eeval >> 8;
500 ahp->ah_macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700501 }
Sujithf1dc5602008-10-29 10:16:30 +0530502 if (sum == 0 || sum == 0xffff * 3) {
503 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +0530504 "mac address read failed: %pM\n",
Sujithf1dc5602008-10-29 10:16:30 +0530505 ahp->ah_macaddr);
506 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507 }
508
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700509 return 0;
510}
511
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530512static void ath9k_hw_init_rxgain_ini(struct ath_hal *ah)
513{
514 u32 rxgain_type;
515 struct ath_hal_5416 *ahp = AH5416(ah);
516
517 if (ath9k_hw_get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
518 rxgain_type = ath9k_hw_get_eeprom(ah, EEP_RXGAIN_TYPE);
519
520 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
521 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
522 ar9280Modes_backoff_13db_rxgain_9280_2,
523 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
524 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
525 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
526 ar9280Modes_backoff_23db_rxgain_9280_2,
527 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
528 else
529 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
530 ar9280Modes_original_rxgain_9280_2,
531 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
532 } else
533 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
534 ar9280Modes_original_rxgain_9280_2,
535 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
536}
537
538static void ath9k_hw_init_txgain_ini(struct ath_hal *ah)
539{
540 u32 txgain_type;
541 struct ath_hal_5416 *ahp = AH5416(ah);
542
543 if (ath9k_hw_get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
544 txgain_type = ath9k_hw_get_eeprom(ah, EEP_TXGAIN_TYPE);
545
546 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
547 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
548 ar9280Modes_high_power_tx_gain_9280_2,
549 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
550 else
551 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
552 ar9280Modes_original_tx_gain_9280_2,
553 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
554 } else
555 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
556 ar9280Modes_original_tx_gain_9280_2,
557 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
558}
559
Sujithff9b6622008-08-14 13:27:16 +0530560static int ath9k_hw_post_attach(struct ath_hal *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700561{
562 int ecode;
563
564 if (!ath9k_hw_chip_test(ah)) {
565 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +0530566 "hardware self-test failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700567 return -ENODEV;
568 }
569
570 ecode = ath9k_hw_rf_claim(ah);
571 if (ecode != 0)
572 return ecode;
573
574 ecode = ath9k_hw_eeprom_attach(ah);
575 if (ecode != 0)
576 return ecode;
577 ecode = ath9k_hw_rfattach(ah);
578 if (ecode != 0)
579 return ecode;
580
581 if (!AR_SREV_9100(ah)) {
582 ath9k_hw_ani_setup(ah);
583 ath9k_hw_ani_attach(ah);
584 }
Sujithf1dc5602008-10-29 10:16:30 +0530585
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 return 0;
587}
588
Sujithf1dc5602008-10-29 10:16:30 +0530589static struct ath_hal *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
590 void __iomem *mem, int *status)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591{
592 struct ath_hal_5416 *ahp;
593 struct ath_hal *ah;
594 int ecode;
Sujithf6688cd2008-12-07 21:43:10 +0530595 u32 i, j;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596
597 ahp = ath9k_hw_newstate(devid, sc, mem, status);
598 if (ahp == NULL)
599 return NULL;
600
601 ah = &ahp->ah;
602
603 ath9k_hw_set_defaults(ah);
604
Sujith60b67f52008-08-07 10:52:38 +0530605 if (ah->ah_config.intr_mitigation != 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700606 ahp->ah_intrMitigation = true;
607
608 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujith04bd46382008-11-28 22:18:05 +0530609 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "Couldn't reset chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610 ecode = -EIO;
611 goto bad;
612 }
613
614 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Sujith04bd46382008-11-28 22:18:05 +0530615 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "Couldn't wakeup chip\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616 ecode = -EIO;
617 goto bad;
618 }
619
Sujith60b67f52008-08-07 10:52:38 +0530620 if (ah->ah_config.serialize_regmode == SER_REG_MODE_AUTO) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 if (ah->ah_macVersion == AR_SREV_VERSION_5416_PCI) {
Sujith60b67f52008-08-07 10:52:38 +0530622 ah->ah_config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 SER_REG_MODE_ON;
624 } else {
Sujith60b67f52008-08-07 10:52:38 +0530625 ah->ah_config.serialize_regmode =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700626 SER_REG_MODE_OFF;
627 }
628 }
Sujithf1dc5602008-10-29 10:16:30 +0530629
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530631 "serialize_regmode is %d\n",
632 ah->ah_config.serialize_regmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700633
634 if ((ah->ah_macVersion != AR_SREV_VERSION_5416_PCI) &&
635 (ah->ah_macVersion != AR_SREV_VERSION_5416_PCIE) &&
636 (ah->ah_macVersion != AR_SREV_VERSION_9160) &&
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530637 (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) && (!AR_SREV_9285(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530639 "Mac Chip Rev 0x%02x.%x is not supported by "
640 "this driver\n", ah->ah_macVersion, ah->ah_macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 ecode = -EOPNOTSUPP;
642 goto bad;
643 }
644
645 if (AR_SREV_9100(ah)) {
646 ahp->ah_iqCalData.calData = &iq_cal_multi_sample;
647 ahp->ah_suppCals = IQ_MISMATCH_CAL;
648 ah->ah_isPciExpress = false;
649 }
650 ah->ah_phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
651
652 if (AR_SREV_9160_10_OR_LATER(ah)) {
653 if (AR_SREV_9280_10_OR_LATER(ah)) {
654 ahp->ah_iqCalData.calData = &iq_cal_single_sample;
655 ahp->ah_adcGainCalData.calData =
656 &adc_gain_cal_single_sample;
657 ahp->ah_adcDcCalData.calData =
658 &adc_dc_cal_single_sample;
659 ahp->ah_adcDcCalInitData.calData =
660 &adc_init_dc_cal;
661 } else {
662 ahp->ah_iqCalData.calData = &iq_cal_multi_sample;
663 ahp->ah_adcGainCalData.calData =
664 &adc_gain_cal_multi_sample;
665 ahp->ah_adcDcCalData.calData =
666 &adc_dc_cal_multi_sample;
667 ahp->ah_adcDcCalInitData.calData =
668 &adc_init_dc_cal;
669 }
Sujithf1dc5602008-10-29 10:16:30 +0530670 ahp->ah_suppCals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700671 }
672
673 if (AR_SREV_9160(ah)) {
Sujith60b67f52008-08-07 10:52:38 +0530674 ah->ah_config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700675 ahp->ah_ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL |
676 ATH9K_ANI_FIRSTEP_LEVEL);
677 } else {
678 ahp->ah_ani_function = ATH9K_ANI_ALL;
679 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530680 ahp->ah_ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700681 }
682 }
683
684 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530685 "This Mac Chip Rev 0x%02x.%x is \n",
Sujithf1dc5602008-10-29 10:16:30 +0530686 ah->ah_macVersion, ah->ah_macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530688 if (AR_SREV_9285_12_OR_LATER(ah)) {
689 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9285Modes_9285_1_2,
690 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
691 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9285Common_9285_1_2,
692 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
693
694 if (ah->ah_config.pcie_clock_req) {
695 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
696 ar9285PciePhy_clkreq_off_L1_9285_1_2,
697 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
698 } else {
699 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
700 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
701 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
702 2);
703 }
704 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
705 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9285Modes_9285,
706 ARRAY_SIZE(ar9285Modes_9285), 6);
707 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9285Common_9285,
708 ARRAY_SIZE(ar9285Common_9285), 2);
709
710 if (ah->ah_config.pcie_clock_req) {
711 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
712 ar9285PciePhy_clkreq_off_L1_9285,
713 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
714 } else {
715 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
716 ar9285PciePhy_clkreq_always_on_L1_9285,
717 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
718 }
719 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9280Modes_9280_2,
721 ARRAY_SIZE(ar9280Modes_9280_2), 6);
722 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9280Common_9280_2,
723 ARRAY_SIZE(ar9280Common_9280_2), 2);
724
Sujith60b67f52008-08-07 10:52:38 +0530725 if (ah->ah_config.pcie_clock_req) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530727 ar9280PciePhy_clkreq_off_L1_9280,
728 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 } else {
730 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530731 ar9280PciePhy_clkreq_always_on_L1_9280,
732 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 }
734 INIT_INI_ARRAY(&ahp->ah_iniModesAdditional,
735 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530736 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
738 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9280Modes_9280,
739 ARRAY_SIZE(ar9280Modes_9280), 6);
740 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9280Common_9280,
741 ARRAY_SIZE(ar9280Common_9280), 2);
742 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
743 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes_9160,
744 ARRAY_SIZE(ar5416Modes_9160), 6);
745 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common_9160,
746 ARRAY_SIZE(ar5416Common_9160), 2);
747 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0_9160,
748 ARRAY_SIZE(ar5416Bank0_9160), 2);
749 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain_9160,
750 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
751 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1_9160,
752 ARRAY_SIZE(ar5416Bank1_9160), 2);
753 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2_9160,
754 ARRAY_SIZE(ar5416Bank2_9160), 2);
755 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3_9160,
756 ARRAY_SIZE(ar5416Bank3_9160), 3);
757 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6_9160,
758 ARRAY_SIZE(ar5416Bank6_9160), 3);
759 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC_9160,
760 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
761 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7_9160,
762 ARRAY_SIZE(ar5416Bank7_9160), 2);
763 if (AR_SREV_9160_11(ah)) {
764 INIT_INI_ARRAY(&ahp->ah_iniAddac,
765 ar5416Addac_91601_1,
766 ARRAY_SIZE(ar5416Addac_91601_1), 2);
767 } else {
768 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac_9160,
769 ARRAY_SIZE(ar5416Addac_9160), 2);
770 }
771 } else if (AR_SREV_9100_OR_LATER(ah)) {
772 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes_9100,
773 ARRAY_SIZE(ar5416Modes_9100), 6);
774 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common_9100,
775 ARRAY_SIZE(ar5416Common_9100), 2);
776 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0_9100,
777 ARRAY_SIZE(ar5416Bank0_9100), 2);
778 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain_9100,
779 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
780 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1_9100,
781 ARRAY_SIZE(ar5416Bank1_9100), 2);
782 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2_9100,
783 ARRAY_SIZE(ar5416Bank2_9100), 2);
784 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3_9100,
785 ARRAY_SIZE(ar5416Bank3_9100), 3);
786 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6_9100,
787 ARRAY_SIZE(ar5416Bank6_9100), 3);
788 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC_9100,
789 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
790 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7_9100,
791 ARRAY_SIZE(ar5416Bank7_9100), 2);
792 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac_9100,
793 ARRAY_SIZE(ar5416Addac_9100), 2);
794 } else {
795 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes,
796 ARRAY_SIZE(ar5416Modes), 6);
797 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common,
798 ARRAY_SIZE(ar5416Common), 2);
799 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0,
800 ARRAY_SIZE(ar5416Bank0), 2);
801 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain,
802 ARRAY_SIZE(ar5416BB_RfGain), 3);
803 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1,
804 ARRAY_SIZE(ar5416Bank1), 2);
805 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2,
806 ARRAY_SIZE(ar5416Bank2), 2);
807 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3,
808 ARRAY_SIZE(ar5416Bank3), 3);
809 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6,
810 ARRAY_SIZE(ar5416Bank6), 3);
811 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC,
812 ARRAY_SIZE(ar5416Bank6TPC), 3);
813 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7,
814 ARRAY_SIZE(ar5416Bank7), 2);
815 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac,
816 ARRAY_SIZE(ar5416Addac), 2);
817 }
818
819 if (ah->ah_isPciExpress)
820 ath9k_hw_configpcipowersave(ah, 0);
821 else
Sujithf1dc5602008-10-29 10:16:30 +0530822 ath9k_hw_disablepcie(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700823
824 ecode = ath9k_hw_post_attach(ah);
825 if (ecode != 0)
826 goto bad;
827
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530828 /* rxgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530829 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530830 ath9k_hw_init_rxgain_ini(ah);
831
832 /* txgain table */
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530833 if (AR_SREV_9280_20(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530834 ath9k_hw_init_txgain_ini(ah);
835
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700836 if (ah->ah_devid == AR9280_DEVID_PCI) {
837 for (i = 0; i < ahp->ah_iniModes.ia_rows; i++) {
838 u32 reg = INI_RA(&ahp->ah_iniModes, i, 0);
839
840 for (j = 1; j < ahp->ah_iniModes.ia_columns; j++) {
841 u32 val = INI_RA(&ahp->ah_iniModes, i, j);
842
843 INI_RA(&ahp->ah_iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530844 ath9k_hw_ini_fixup(ah,
845 &ahp->ah_eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700846 reg, val);
847 }
848 }
849 }
Sujithf6688cd2008-12-07 21:43:10 +0530850
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700851 if (!ath9k_hw_fill_cap_info(ah)) {
852 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530853 "failed ath9k_hw_fill_cap_info\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854 ecode = -EINVAL;
855 goto bad;
856 }
857
858 ecode = ath9k_hw_init_macaddr(ah);
859 if (ecode != 0) {
860 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +0530861 "failed initializing mac address\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862 goto bad;
863 }
864
865 if (AR_SREV_9285(ah))
866 ah->ah_txTrigLevel = (AR_FTRIG_256B >> AR_FTRIG_S);
867 else
868 ah->ah_txTrigLevel = (AR_FTRIG_512B >> AR_FTRIG_S);
869
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700871
872 return ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700873bad:
874 if (ahp)
875 ath9k_hw_detach((struct ath_hal *) ahp);
876 if (status)
877 *status = ecode;
Sujithf1dc5602008-10-29 10:16:30 +0530878
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700879 return NULL;
880}
881
Sujithf1dc5602008-10-29 10:16:30 +0530882static void ath9k_hw_init_bb(struct ath_hal *ah,
883 struct ath9k_channel *chan)
884{
885 u32 synthDelay;
886
887 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530888 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530889 synthDelay = (4 * synthDelay) / 22;
890 else
891 synthDelay /= 10;
892
893 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
894
895 udelay(synthDelay + BASE_ACTIVATE_DELAY);
896}
897
898static void ath9k_hw_init_qos(struct ath_hal *ah)
899{
900 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
901 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
902
903 REG_WRITE(ah, AR_QOS_NO_ACK,
904 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
905 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
906 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
907
908 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
909 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
910 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
911 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
912 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
913}
914
915static void ath9k_hw_init_pll(struct ath_hal *ah,
916 struct ath9k_channel *chan)
917{
918 u32 pll;
919
920 if (AR_SREV_9100(ah)) {
921 if (chan && IS_CHAN_5GHZ(chan))
922 pll = 0x1450;
923 else
924 pll = 0x1458;
925 } else {
926 if (AR_SREV_9280_10_OR_LATER(ah)) {
927 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
928
929 if (chan && IS_CHAN_HALF_RATE(chan))
930 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
931 else if (chan && IS_CHAN_QUARTER_RATE(chan))
932 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
933
934 if (chan && IS_CHAN_5GHZ(chan)) {
935 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
936
937
938 if (AR_SREV_9280_20(ah)) {
939 if (((chan->channel % 20) == 0)
940 || ((chan->channel % 10) == 0))
941 pll = 0x2850;
942 else
943 pll = 0x142c;
944 }
945 } else {
946 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
947 }
948
949 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
950
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(0x50, AR_RTC_9160_PLL_DIV);
960 else
961 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
962 } else {
963 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
964
965 if (chan && IS_CHAN_HALF_RATE(chan))
966 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
967 else if (chan && IS_CHAN_QUARTER_RATE(chan))
968 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
969
970 if (chan && IS_CHAN_5GHZ(chan))
971 pll |= SM(0xa, AR_RTC_PLL_DIV);
972 else
973 pll |= SM(0xb, AR_RTC_PLL_DIV);
974 }
975 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100976 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530977
978 udelay(RTC_PLL_SETTLE_DELAY);
979
980 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
981}
982
983static void ath9k_hw_init_chain_masks(struct ath_hal *ah)
984{
985 struct ath_hal_5416 *ahp = AH5416(ah);
986 int rx_chainmask, tx_chainmask;
987
988 rx_chainmask = ahp->ah_rxchainmask;
989 tx_chainmask = ahp->ah_txchainmask;
990
991 switch (rx_chainmask) {
992 case 0x5:
993 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
994 AR_PHY_SWAP_ALT_CHAIN);
995 case 0x3:
996 if (((ah)->ah_macVersion <= AR_SREV_VERSION_9160)) {
997 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
998 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
999 break;
1000 }
1001 case 0x1:
1002 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301003 case 0x7:
1004 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1005 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1006 break;
1007 default:
1008 break;
1009 }
1010
1011 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1012 if (tx_chainmask == 0x5) {
1013 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1014 AR_PHY_SWAP_ALT_CHAIN);
1015 }
1016 if (AR_SREV_9100(ah))
1017 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1018 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1019}
1020
Colin McCabed97809d2008-12-01 13:38:55 -08001021static void ath9k_hw_init_interrupt_masks(struct ath_hal *ah,
1022 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301023{
1024 struct ath_hal_5416 *ahp = AH5416(ah);
1025
1026 ahp->ah_maskReg = AR_IMR_TXERR |
1027 AR_IMR_TXURN |
1028 AR_IMR_RXERR |
1029 AR_IMR_RXORN |
1030 AR_IMR_BCNMISC;
1031
1032 if (ahp->ah_intrMitigation)
1033 ahp->ah_maskReg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
1034 else
1035 ahp->ah_maskReg |= AR_IMR_RXOK;
1036
1037 ahp->ah_maskReg |= AR_IMR_TXOK;
1038
Colin McCabed97809d2008-12-01 13:38:55 -08001039 if (opmode == NL80211_IFTYPE_AP)
Sujithf1dc5602008-10-29 10:16:30 +05301040 ahp->ah_maskReg |= AR_IMR_MIB;
1041
1042 REG_WRITE(ah, AR_IMR, ahp->ah_maskReg);
1043 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1044
1045 if (!AR_SREV_9100(ah)) {
1046 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1047 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1048 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1049 }
1050}
1051
1052static bool ath9k_hw_set_ack_timeout(struct ath_hal *ah, u32 us)
1053{
1054 struct ath_hal_5416 *ahp = AH5416(ah);
1055
1056 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
Sujith04bd46382008-11-28 22:18:05 +05301057 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
Sujithf1dc5602008-10-29 10:16:30 +05301058 ahp->ah_acktimeout = (u32) -1;
1059 return false;
1060 } else {
1061 REG_RMW_FIELD(ah, AR_TIME_OUT,
1062 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
1063 ahp->ah_acktimeout = us;
1064 return true;
1065 }
1066}
1067
1068static bool ath9k_hw_set_cts_timeout(struct ath_hal *ah, u32 us)
1069{
1070 struct ath_hal_5416 *ahp = AH5416(ah);
1071
1072 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
Sujith04bd46382008-11-28 22:18:05 +05301073 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
Sujithf1dc5602008-10-29 10:16:30 +05301074 ahp->ah_ctstimeout = (u32) -1;
1075 return false;
1076 } else {
1077 REG_RMW_FIELD(ah, AR_TIME_OUT,
1078 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
1079 ahp->ah_ctstimeout = us;
1080 return true;
1081 }
1082}
1083
1084static bool ath9k_hw_set_global_txtimeout(struct ath_hal *ah, u32 tu)
1085{
1086 struct ath_hal_5416 *ahp = AH5416(ah);
1087
1088 if (tu > 0xFFFF) {
1089 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
Sujith04bd46382008-11-28 22:18:05 +05301090 "bad global tx timeout %u\n", tu);
Sujithf1dc5602008-10-29 10:16:30 +05301091 ahp->ah_globaltxtimeout = (u32) -1;
1092 return false;
1093 } else {
1094 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
1095 ahp->ah_globaltxtimeout = tu;
1096 return true;
1097 }
1098}
1099
1100static void ath9k_hw_init_user_settings(struct ath_hal *ah)
1101{
1102 struct ath_hal_5416 *ahp = AH5416(ah);
1103
Sujith04bd46382008-11-28 22:18:05 +05301104 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ahp->ah_miscMode 0x%x\n",
1105 ahp->ah_miscMode);
Sujithf1dc5602008-10-29 10:16:30 +05301106
1107 if (ahp->ah_miscMode != 0)
1108 REG_WRITE(ah, AR_PCU_MISC,
1109 REG_READ(ah, AR_PCU_MISC) | ahp->ah_miscMode);
1110 if (ahp->ah_slottime != (u32) -1)
1111 ath9k_hw_setslottime(ah, ahp->ah_slottime);
1112 if (ahp->ah_acktimeout != (u32) -1)
1113 ath9k_hw_set_ack_timeout(ah, ahp->ah_acktimeout);
1114 if (ahp->ah_ctstimeout != (u32) -1)
1115 ath9k_hw_set_cts_timeout(ah, ahp->ah_ctstimeout);
1116 if (ahp->ah_globaltxtimeout != (u32) -1)
1117 ath9k_hw_set_global_txtimeout(ah, ahp->ah_globaltxtimeout);
1118}
1119
1120const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1121{
1122 return vendorid == ATHEROS_VENDOR_ID ?
1123 ath9k_hw_devname(devid) : NULL;
1124}
1125
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001126void ath9k_hw_detach(struct ath_hal *ah)
1127{
1128 if (!AR_SREV_9100(ah))
1129 ath9k_hw_ani_detach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001130
Sujithf1dc5602008-10-29 10:16:30 +05301131 ath9k_hw_rfdetach(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001132 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1133 kfree(ah);
1134}
1135
Sujithf1dc5602008-10-29 10:16:30 +05301136struct ath_hal *ath9k_hw_attach(u16 devid, struct ath_softc *sc,
1137 void __iomem *mem, int *error)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001138{
Sujithf1dc5602008-10-29 10:16:30 +05301139 struct ath_hal *ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001140
Sujithf1dc5602008-10-29 10:16:30 +05301141 switch (devid) {
1142 case AR5416_DEVID_PCI:
1143 case AR5416_DEVID_PCIE:
Gabor Juhos0c1aa492009-01-14 20:17:12 +01001144 case AR5416_AR9100_DEVID:
Sujithf1dc5602008-10-29 10:16:30 +05301145 case AR9160_DEVID_PCI:
1146 case AR9280_DEVID_PCI:
1147 case AR9280_DEVID_PCIE:
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301148 case AR9285_DEVID_PCIE:
Sujithf1dc5602008-10-29 10:16:30 +05301149 ah = ath9k_hw_do_attach(devid, sc, mem, error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001150 break;
Sujithf1dc5602008-10-29 10:16:30 +05301151 default:
Sujithf1dc5602008-10-29 10:16:30 +05301152 *error = -ENXIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001153 break;
1154 }
1155
Sujithf1dc5602008-10-29 10:16:30 +05301156 return ah;
1157}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001158
Sujithf1dc5602008-10-29 10:16:30 +05301159/*******/
1160/* INI */
1161/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001162
Sujithf1dc5602008-10-29 10:16:30 +05301163static void ath9k_hw_override_ini(struct ath_hal *ah,
1164 struct ath9k_channel *chan)
1165{
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301166 /*
1167 * Set the RX_ABORT and RX_DIS and clear if off only after
1168 * RXE is set for MAC. This prevents frames with corrupted
1169 * descriptor status.
1170 */
1171 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1172
1173
Sujithf1dc5602008-10-29 10:16:30 +05301174 if (!AR_SREV_5416_V20_OR_LATER(ah) ||
1175 AR_SREV_9280_10_OR_LATER(ah))
1176 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001177
Sujithf1dc5602008-10-29 10:16:30 +05301178 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1179}
1180
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301181static u32 ath9k_hw_def_ini_fixup(struct ath_hal *ah,
1182 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301183 u32 reg, u32 value)
1184{
1185 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1186
1187 switch (ah->ah_devid) {
1188 case AR9280_DEVID_PCI:
1189 if (reg == 0x7894) {
1190 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1191 "ini VAL: %x EEPROM: %x\n", value,
1192 (pBase->version & 0xff));
1193
1194 if ((pBase->version & 0xff) > 0x0a) {
1195 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1196 "PWDCLKIND: %d\n",
1197 pBase->pwdclkind);
1198 value &= ~AR_AN_TOP2_PWDCLKIND;
1199 value |= AR_AN_TOP2_PWDCLKIND &
1200 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1201 } else {
1202 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1203 "PWDCLKIND Earlier Rev\n");
1204 }
1205
1206 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1207 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208 }
Sujithf1dc5602008-10-29 10:16:30 +05301209 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001210 }
1211
Sujithf1dc5602008-10-29 10:16:30 +05301212 return value;
1213}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001214
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301215static u32 ath9k_hw_ini_fixup(struct ath_hal *ah,
1216 struct ar5416_eeprom_def *pEepData,
1217 u32 reg, u32 value)
1218{
1219 struct ath_hal_5416 *ahp = AH5416(ah);
1220
1221 if (ahp->ah_eep_map == EEP_MAP_4KBITS)
1222 return value;
1223 else
1224 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1225}
1226
Sujithf1dc5602008-10-29 10:16:30 +05301227static int ath9k_hw_process_ini(struct ath_hal *ah,
1228 struct ath9k_channel *chan,
1229 enum ath9k_ht_macmode macmode)
1230{
1231 int i, regWrites = 0;
1232 struct ath_hal_5416 *ahp = AH5416(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001233 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301234 u32 modesIndex, freqIndex;
1235 int status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001236
Sujithf1dc5602008-10-29 10:16:30 +05301237 switch (chan->chanmode) {
1238 case CHANNEL_A:
1239 case CHANNEL_A_HT20:
1240 modesIndex = 1;
1241 freqIndex = 1;
1242 break;
1243 case CHANNEL_A_HT40PLUS:
1244 case CHANNEL_A_HT40MINUS:
1245 modesIndex = 2;
1246 freqIndex = 1;
1247 break;
1248 case CHANNEL_G:
1249 case CHANNEL_G_HT20:
1250 case CHANNEL_B:
1251 modesIndex = 4;
1252 freqIndex = 2;
1253 break;
1254 case CHANNEL_G_HT40PLUS:
1255 case CHANNEL_G_HT40MINUS:
1256 modesIndex = 3;
1257 freqIndex = 2;
1258 break;
1259
1260 default:
1261 return -EINVAL;
1262 }
1263
1264 REG_WRITE(ah, AR_PHY(0), 0x00000007);
1265
1266 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
1267
1268 ath9k_hw_set_addac(ah, chan);
1269
1270 if (AR_SREV_5416_V22_OR_LATER(ah)) {
1271 REG_WRITE_ARRAY(&ahp->ah_iniAddac, 1, regWrites);
1272 } else {
1273 struct ar5416IniArray temp;
1274 u32 addacSize =
1275 sizeof(u32) * ahp->ah_iniAddac.ia_rows *
1276 ahp->ah_iniAddac.ia_columns;
1277
1278 memcpy(ahp->ah_addac5416_21,
1279 ahp->ah_iniAddac.ia_array, addacSize);
1280
1281 (ahp->ah_addac5416_21)[31 * ahp->ah_iniAddac.ia_columns + 1] = 0;
1282
1283 temp.ia_array = ahp->ah_addac5416_21;
1284 temp.ia_columns = ahp->ah_iniAddac.ia_columns;
1285 temp.ia_rows = ahp->ah_iniAddac.ia_rows;
1286 REG_WRITE_ARRAY(&temp, 1, regWrites);
1287 }
1288
1289 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1290
1291 for (i = 0; i < ahp->ah_iniModes.ia_rows; i++) {
1292 u32 reg = INI_RA(&ahp->ah_iniModes, i, 0);
1293 u32 val = INI_RA(&ahp->ah_iniModes, i, modesIndex);
1294
Sujithf1dc5602008-10-29 10:16:30 +05301295 REG_WRITE(ah, reg, val);
1296
1297 if (reg >= 0x7800 && reg < 0x78a0
1298 && ah->ah_config.analog_shiftreg) {
1299 udelay(100);
1300 }
1301
1302 DO_DELAY(regWrites);
1303 }
1304
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301305 if (AR_SREV_9280(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301306 REG_WRITE_ARRAY(&ahp->ah_iniModesRxGain, modesIndex, regWrites);
1307
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301308 if (AR_SREV_9280(ah))
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301309 REG_WRITE_ARRAY(&ahp->ah_iniModesTxGain, modesIndex, regWrites);
1310
Sujithf1dc5602008-10-29 10:16:30 +05301311 for (i = 0; i < ahp->ah_iniCommon.ia_rows; i++) {
1312 u32 reg = INI_RA(&ahp->ah_iniCommon, i, 0);
1313 u32 val = INI_RA(&ahp->ah_iniCommon, i, 1);
1314
1315 REG_WRITE(ah, reg, val);
1316
1317 if (reg >= 0x7800 && reg < 0x78a0
1318 && ah->ah_config.analog_shiftreg) {
1319 udelay(100);
1320 }
1321
1322 DO_DELAY(regWrites);
1323 }
1324
1325 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1326
1327 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
1328 REG_WRITE_ARRAY(&ahp->ah_iniModesAdditional, modesIndex,
1329 regWrites);
1330 }
1331
1332 ath9k_hw_override_ini(ah, chan);
1333 ath9k_hw_set_regs(ah, chan, macmode);
1334 ath9k_hw_init_chain_masks(ah);
1335
1336 status = ath9k_hw_set_txpower(ah, chan,
1337 ath9k_regd_get_ctl(ah, chan),
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001338 channel->max_antenna_gain * 2,
1339 channel->max_power * 2,
Sujithf1dc5602008-10-29 10:16:30 +05301340 min((u32) MAX_RATE_POWER,
1341 (u32) ah->ah_powerLimit));
1342 if (status != 0) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05301344 "error init'ing transmit power\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 return -EIO;
1346 }
1347
Sujithf1dc5602008-10-29 10:16:30 +05301348 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1349 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
Sujith04bd46382008-11-28 22:18:05 +05301350 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351 return -EIO;
1352 }
1353
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 return 0;
1355}
1356
Sujithf1dc5602008-10-29 10:16:30 +05301357/****************************************/
1358/* Reset and Channel Switching Routines */
1359/****************************************/
1360
1361static void ath9k_hw_set_rfmode(struct ath_hal *ah, struct ath9k_channel *chan)
1362{
1363 u32 rfMode = 0;
1364
1365 if (chan == NULL)
1366 return;
1367
1368 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1369 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1370
1371 if (!AR_SREV_9280_10_OR_LATER(ah))
1372 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1373 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1374
1375 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1376 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1377
1378 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1379}
1380
1381static void ath9k_hw_mark_phy_inactive(struct ath_hal *ah)
1382{
1383 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1384}
1385
1386static inline void ath9k_hw_set_dma(struct ath_hal *ah)
1387{
1388 u32 regval;
1389
1390 regval = REG_READ(ah, AR_AHB_MODE);
1391 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1392
1393 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1394 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1395
1396 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->ah_txTrigLevel);
1397
1398 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1399 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1400
1401 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1402
1403 if (AR_SREV_9285(ah)) {
1404 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1405 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1406 } else {
1407 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1408 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1409 }
1410}
1411
1412static void ath9k_hw_set_operating_mode(struct ath_hal *ah, int opmode)
1413{
1414 u32 val;
1415
1416 val = REG_READ(ah, AR_STA_ID1);
1417 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1418 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001419 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301420 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1421 | AR_STA_ID1_KSRCH_MODE);
1422 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1423 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001424 case NL80211_IFTYPE_ADHOC:
Sujithf1dc5602008-10-29 10:16:30 +05301425 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1426 | AR_STA_ID1_KSRCH_MODE);
1427 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1428 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001429 case NL80211_IFTYPE_STATION:
1430 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301431 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1432 break;
1433 }
1434}
1435
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001436static inline void ath9k_hw_get_delta_slope_vals(struct ath_hal *ah,
1437 u32 coef_scaled,
1438 u32 *coef_mantissa,
1439 u32 *coef_exponent)
1440{
1441 u32 coef_exp, coef_man;
1442
1443 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1444 if ((coef_scaled >> coef_exp) & 0x1)
1445 break;
1446
1447 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1448
1449 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1450
1451 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1452 *coef_exponent = coef_exp - 16;
1453}
1454
Sujithf1dc5602008-10-29 10:16:30 +05301455static void ath9k_hw_set_delta_slope(struct ath_hal *ah,
1456 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457{
1458 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1459 u32 clockMhzScaled = 0x64000000;
1460 struct chan_centers centers;
1461
1462 if (IS_CHAN_HALF_RATE(chan))
1463 clockMhzScaled = clockMhzScaled >> 1;
1464 else if (IS_CHAN_QUARTER_RATE(chan))
1465 clockMhzScaled = clockMhzScaled >> 2;
1466
1467 ath9k_hw_get_channel_centers(ah, chan, &centers);
1468 coef_scaled = clockMhzScaled / centers.synth_center;
1469
1470 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1471 &ds_coef_exp);
1472
1473 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1474 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1475 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1476 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1477
1478 coef_scaled = (9 * coef_scaled) / 10;
1479
1480 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1481 &ds_coef_exp);
1482
1483 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1484 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1485 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1486 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1487}
1488
Sujithf1dc5602008-10-29 10:16:30 +05301489static bool ath9k_hw_set_reset(struct ath_hal *ah, int type)
1490{
1491 u32 rst_flags;
1492 u32 tmpReg;
1493
1494 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1495 AR_RTC_FORCE_WAKE_ON_INT);
1496
1497 if (AR_SREV_9100(ah)) {
1498 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1499 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1500 } else {
1501 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1502 if (tmpReg &
1503 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1504 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1505 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1506 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1507 } else {
1508 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1509 }
1510
1511 rst_flags = AR_RTC_RC_MAC_WARM;
1512 if (type == ATH9K_RESET_COLD)
1513 rst_flags |= AR_RTC_RC_MAC_COLD;
1514 }
1515
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001516 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301517 udelay(50);
1518
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001519 REG_WRITE(ah, AR_RTC_RC, 0);
1520 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0)) {
Sujithf1dc5602008-10-29 10:16:30 +05301521 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301522 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301523 return false;
1524 }
1525
1526 if (!AR_SREV_9100(ah))
1527 REG_WRITE(ah, AR_RC, 0);
1528
1529 ath9k_hw_init_pll(ah, NULL);
1530
1531 if (AR_SREV_9100(ah))
1532 udelay(50);
1533
1534 return true;
1535}
1536
1537static bool ath9k_hw_set_reset_power_on(struct ath_hal *ah)
1538{
1539 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1540 AR_RTC_FORCE_WAKE_ON_INT);
1541
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001542 REG_WRITE(ah, AR_RTC_RESET, 0);
1543 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301544
1545 if (!ath9k_hw_wait(ah,
1546 AR_RTC_STATUS,
1547 AR_RTC_STATUS_M,
1548 AR_RTC_STATUS_ON)) {
Sujith04bd46382008-11-28 22:18:05 +05301549 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301550 return false;
1551 }
1552
1553 ath9k_hw_read_revisions(ah);
1554
1555 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1556}
1557
1558static bool ath9k_hw_set_reset_reg(struct ath_hal *ah, u32 type)
1559{
1560 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1561 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1562
1563 switch (type) {
1564 case ATH9K_RESET_POWER_ON:
1565 return ath9k_hw_set_reset_power_on(ah);
1566 break;
1567 case ATH9K_RESET_WARM:
1568 case ATH9K_RESET_COLD:
1569 return ath9k_hw_set_reset(ah, type);
1570 break;
1571 default:
1572 return false;
1573 }
1574}
1575
1576static void ath9k_hw_set_regs(struct ath_hal *ah, struct ath9k_channel *chan,
1577 enum ath9k_ht_macmode macmode)
1578{
1579 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301580 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301581 struct ath_hal_5416 *ahp = AH5416(ah);
1582
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301583 if (AR_SREV_9285_10_OR_LATER(ah))
1584 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1585 AR_PHY_FC_ENABLE_DAC_FIFO);
1586
Sujithf1dc5602008-10-29 10:16:30 +05301587 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301588 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301589
1590 if (IS_CHAN_HT40(chan)) {
1591 phymode |= AR_PHY_FC_DYN2040_EN;
1592
1593 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1594 (chan->chanmode == CHANNEL_G_HT40PLUS))
1595 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1596
1597 if (ahp->ah_extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
1598 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1599 }
1600 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1601
1602 ath9k_hw_set11nmac2040(ah, macmode);
1603
1604 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1605 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1606}
1607
1608static bool ath9k_hw_chip_reset(struct ath_hal *ah,
1609 struct ath9k_channel *chan)
1610{
1611 struct ath_hal_5416 *ahp = AH5416(ah);
1612
1613 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
1614 return false;
1615
1616 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1617 return false;
1618
1619 ahp->ah_chipFullSleep = false;
1620
1621 ath9k_hw_init_pll(ah, chan);
1622
1623 ath9k_hw_set_rfmode(ah, chan);
1624
1625 return true;
1626}
1627
Sujithf1dc5602008-10-29 10:16:30 +05301628static bool ath9k_hw_channel_change(struct ath_hal *ah,
1629 struct ath9k_channel *chan,
1630 enum ath9k_ht_macmode macmode)
1631{
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001632 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301633 u32 synthDelay, qnum;
1634
1635 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1636 if (ath9k_hw_numtxpending(ah, qnum)) {
1637 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
Sujith04bd46382008-11-28 22:18:05 +05301638 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301639 return false;
1640 }
1641 }
1642
1643 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1644 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
1645 AR_PHY_RFBUS_GRANT_EN)) {
Sujith04bd46382008-11-28 22:18:05 +05301646 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
1647 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301648 return false;
1649 }
1650
1651 ath9k_hw_set_regs(ah, chan, macmode);
1652
1653 if (AR_SREV_9280_10_OR_LATER(ah)) {
1654 if (!(ath9k_hw_ar9280_set_channel(ah, chan))) {
1655 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +05301656 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301657 return false;
1658 }
1659 } else {
1660 if (!(ath9k_hw_set_channel(ah, chan))) {
1661 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
Sujith04bd46382008-11-28 22:18:05 +05301662 "failed to set channel\n");
Sujithf1dc5602008-10-29 10:16:30 +05301663 return false;
1664 }
1665 }
1666
1667 if (ath9k_hw_set_txpower(ah, chan,
1668 ath9k_regd_get_ctl(ah, chan),
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001669 channel->max_antenna_gain * 2,
1670 channel->max_power * 2,
Sujithf1dc5602008-10-29 10:16:30 +05301671 min((u32) MAX_RATE_POWER,
1672 (u32) ah->ah_powerLimit)) != 0) {
1673 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +05301674 "error init'ing transmit power\n");
Sujithf1dc5602008-10-29 10:16:30 +05301675 return false;
1676 }
1677
1678 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301679 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301680 synthDelay = (4 * synthDelay) / 22;
1681 else
1682 synthDelay /= 10;
1683
1684 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1685
1686 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1687
1688 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1689 ath9k_hw_set_delta_slope(ah, chan);
1690
1691 if (AR_SREV_9280_10_OR_LATER(ah))
1692 ath9k_hw_9280_spur_mitigate(ah, chan);
1693 else
1694 ath9k_hw_spur_mitigate(ah, chan);
1695
1696 if (!chan->oneTimeCalsDone)
1697 chan->oneTimeCalsDone = true;
1698
1699 return true;
1700}
1701
1702static void ath9k_hw_9280_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001703{
1704 int bb_spur = AR_NO_SPUR;
1705 int freq;
1706 int bin, cur_bin;
1707 int bb_spur_off, spur_subchannel_sd;
1708 int spur_freq_sd;
1709 int spur_delta_phase;
1710 int denominator;
1711 int upper, lower, cur_vit_mask;
1712 int tmp, newVal;
1713 int i;
1714 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1715 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1716 };
1717 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1718 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1719 };
1720 int inc[4] = { 0, 100, 0, 0 };
1721 struct chan_centers centers;
1722
1723 int8_t mask_m[123];
1724 int8_t mask_p[123];
1725 int8_t mask_amt;
1726 int tmp_mask;
1727 int cur_bb_spur;
1728 bool is2GHz = IS_CHAN_2GHZ(chan);
1729
1730 memset(&mask_m, 0, sizeof(int8_t) * 123);
1731 memset(&mask_p, 0, sizeof(int8_t) * 123);
1732
1733 ath9k_hw_get_channel_centers(ah, chan, &centers);
1734 freq = centers.synth_center;
1735
Sujith60b67f52008-08-07 10:52:38 +05301736 ah->ah_config.spurmode = SPUR_ENABLE_EEPROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001737 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
1738 cur_bb_spur = ath9k_hw_eeprom_get_spur_chan(ah, i, is2GHz);
1739
1740 if (is2GHz)
1741 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1742 else
1743 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1744
1745 if (AR_NO_SPUR == cur_bb_spur)
1746 break;
1747 cur_bb_spur = cur_bb_spur - freq;
1748
1749 if (IS_CHAN_HT40(chan)) {
1750 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1751 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1752 bb_spur = cur_bb_spur;
1753 break;
1754 }
1755 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1756 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1757 bb_spur = cur_bb_spur;
1758 break;
1759 }
1760 }
1761
1762 if (AR_NO_SPUR == bb_spur) {
1763 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1764 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1765 return;
1766 } else {
1767 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1768 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1769 }
1770
1771 bin = bb_spur * 320;
1772
1773 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1774
1775 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1776 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1777 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1778 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1779 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1780
1781 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1782 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1783 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1784 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1785 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1786 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1787
1788 if (IS_CHAN_HT40(chan)) {
1789 if (bb_spur < 0) {
1790 spur_subchannel_sd = 1;
1791 bb_spur_off = bb_spur + 10;
1792 } else {
1793 spur_subchannel_sd = 0;
1794 bb_spur_off = bb_spur - 10;
1795 }
1796 } else {
1797 spur_subchannel_sd = 0;
1798 bb_spur_off = bb_spur;
1799 }
1800
1801 if (IS_CHAN_HT40(chan))
1802 spur_delta_phase =
1803 ((bb_spur * 262144) /
1804 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1805 else
1806 spur_delta_phase =
1807 ((bb_spur * 524288) /
1808 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1809
1810 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1811 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1812
1813 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1814 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1815 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1816 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1817
1818 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1819 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1820
1821 cur_bin = -6000;
1822 upper = bin + 100;
1823 lower = bin - 100;
1824
1825 for (i = 0; i < 4; i++) {
1826 int pilot_mask = 0;
1827 int chan_mask = 0;
1828 int bp = 0;
1829 for (bp = 0; bp < 30; bp++) {
1830 if ((cur_bin > lower) && (cur_bin < upper)) {
1831 pilot_mask = pilot_mask | 0x1 << bp;
1832 chan_mask = chan_mask | 0x1 << bp;
1833 }
1834 cur_bin += 100;
1835 }
1836 cur_bin += inc[i];
1837 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1838 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1839 }
1840
1841 cur_vit_mask = 6100;
1842 upper = bin + 120;
1843 lower = bin - 120;
1844
1845 for (i = 0; i < 123; i++) {
1846 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001847
1848 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001849 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunkb08cbcd2008-08-05 22:06:51 +03001850
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08001851 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001852 mask_amt = 1;
1853 else
1854 mask_amt = 0;
1855 if (cur_vit_mask < 0)
1856 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1857 else
1858 mask_p[cur_vit_mask / 100] = mask_amt;
1859 }
1860 cur_vit_mask -= 100;
1861 }
1862
1863 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1864 | (mask_m[48] << 26) | (mask_m[49] << 24)
1865 | (mask_m[50] << 22) | (mask_m[51] << 20)
1866 | (mask_m[52] << 18) | (mask_m[53] << 16)
1867 | (mask_m[54] << 14) | (mask_m[55] << 12)
1868 | (mask_m[56] << 10) | (mask_m[57] << 8)
1869 | (mask_m[58] << 6) | (mask_m[59] << 4)
1870 | (mask_m[60] << 2) | (mask_m[61] << 0);
1871 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1872 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1873
1874 tmp_mask = (mask_m[31] << 28)
1875 | (mask_m[32] << 26) | (mask_m[33] << 24)
1876 | (mask_m[34] << 22) | (mask_m[35] << 20)
1877 | (mask_m[36] << 18) | (mask_m[37] << 16)
1878 | (mask_m[48] << 14) | (mask_m[39] << 12)
1879 | (mask_m[40] << 10) | (mask_m[41] << 8)
1880 | (mask_m[42] << 6) | (mask_m[43] << 4)
1881 | (mask_m[44] << 2) | (mask_m[45] << 0);
1882 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1883 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1884
1885 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1886 | (mask_m[18] << 26) | (mask_m[18] << 24)
1887 | (mask_m[20] << 22) | (mask_m[20] << 20)
1888 | (mask_m[22] << 18) | (mask_m[22] << 16)
1889 | (mask_m[24] << 14) | (mask_m[24] << 12)
1890 | (mask_m[25] << 10) | (mask_m[26] << 8)
1891 | (mask_m[27] << 6) | (mask_m[28] << 4)
1892 | (mask_m[29] << 2) | (mask_m[30] << 0);
1893 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1894 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1895
1896 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1897 | (mask_m[2] << 26) | (mask_m[3] << 24)
1898 | (mask_m[4] << 22) | (mask_m[5] << 20)
1899 | (mask_m[6] << 18) | (mask_m[7] << 16)
1900 | (mask_m[8] << 14) | (mask_m[9] << 12)
1901 | (mask_m[10] << 10) | (mask_m[11] << 8)
1902 | (mask_m[12] << 6) | (mask_m[13] << 4)
1903 | (mask_m[14] << 2) | (mask_m[15] << 0);
1904 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1905 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1906
1907 tmp_mask = (mask_p[15] << 28)
1908 | (mask_p[14] << 26) | (mask_p[13] << 24)
1909 | (mask_p[12] << 22) | (mask_p[11] << 20)
1910 | (mask_p[10] << 18) | (mask_p[9] << 16)
1911 | (mask_p[8] << 14) | (mask_p[7] << 12)
1912 | (mask_p[6] << 10) | (mask_p[5] << 8)
1913 | (mask_p[4] << 6) | (mask_p[3] << 4)
1914 | (mask_p[2] << 2) | (mask_p[1] << 0);
1915 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1916 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1917
1918 tmp_mask = (mask_p[30] << 28)
1919 | (mask_p[29] << 26) | (mask_p[28] << 24)
1920 | (mask_p[27] << 22) | (mask_p[26] << 20)
1921 | (mask_p[25] << 18) | (mask_p[24] << 16)
1922 | (mask_p[23] << 14) | (mask_p[22] << 12)
1923 | (mask_p[21] << 10) | (mask_p[20] << 8)
1924 | (mask_p[19] << 6) | (mask_p[18] << 4)
1925 | (mask_p[17] << 2) | (mask_p[16] << 0);
1926 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1927 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1928
1929 tmp_mask = (mask_p[45] << 28)
1930 | (mask_p[44] << 26) | (mask_p[43] << 24)
1931 | (mask_p[42] << 22) | (mask_p[41] << 20)
1932 | (mask_p[40] << 18) | (mask_p[39] << 16)
1933 | (mask_p[38] << 14) | (mask_p[37] << 12)
1934 | (mask_p[36] << 10) | (mask_p[35] << 8)
1935 | (mask_p[34] << 6) | (mask_p[33] << 4)
1936 | (mask_p[32] << 2) | (mask_p[31] << 0);
1937 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
1938 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
1939
1940 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
1941 | (mask_p[59] << 26) | (mask_p[58] << 24)
1942 | (mask_p[57] << 22) | (mask_p[56] << 20)
1943 | (mask_p[55] << 18) | (mask_p[54] << 16)
1944 | (mask_p[53] << 14) | (mask_p[52] << 12)
1945 | (mask_p[51] << 10) | (mask_p[50] << 8)
1946 | (mask_p[49] << 6) | (mask_p[48] << 4)
1947 | (mask_p[47] << 2) | (mask_p[46] << 0);
1948 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
1949 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
1950}
1951
Sujithf1dc5602008-10-29 10:16:30 +05301952static void ath9k_hw_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001953{
1954 int bb_spur = AR_NO_SPUR;
1955 int bin, cur_bin;
1956 int spur_freq_sd;
1957 int spur_delta_phase;
1958 int denominator;
1959 int upper, lower, cur_vit_mask;
1960 int tmp, new;
1961 int i;
1962 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1963 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1964 };
1965 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1966 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1967 };
1968 int inc[4] = { 0, 100, 0, 0 };
1969
1970 int8_t mask_m[123];
1971 int8_t mask_p[123];
1972 int8_t mask_amt;
1973 int tmp_mask;
1974 int cur_bb_spur;
1975 bool is2GHz = IS_CHAN_2GHZ(chan);
1976
1977 memset(&mask_m, 0, sizeof(int8_t) * 123);
1978 memset(&mask_p, 0, sizeof(int8_t) * 123);
1979
1980 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
1981 cur_bb_spur = ath9k_hw_eeprom_get_spur_chan(ah, i, is2GHz);
1982 if (AR_NO_SPUR == cur_bb_spur)
1983 break;
1984 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
1985 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
1986 bb_spur = cur_bb_spur;
1987 break;
1988 }
1989 }
1990
1991 if (AR_NO_SPUR == bb_spur)
1992 return;
1993
1994 bin = bb_spur * 32;
1995
1996 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1997 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1998 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1999 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2000 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2001
2002 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2003
2004 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2005 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2006 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2007 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2008 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2009 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2010
2011 spur_delta_phase = ((bb_spur * 524288) / 100) &
2012 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2013
2014 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2015 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2016
2017 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2018 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2019 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2020 REG_WRITE(ah, AR_PHY_TIMING11, new);
2021
2022 cur_bin = -6000;
2023 upper = bin + 100;
2024 lower = bin - 100;
2025
2026 for (i = 0; i < 4; i++) {
2027 int pilot_mask = 0;
2028 int chan_mask = 0;
2029 int bp = 0;
2030 for (bp = 0; bp < 30; bp++) {
2031 if ((cur_bin > lower) && (cur_bin < upper)) {
2032 pilot_mask = pilot_mask | 0x1 << bp;
2033 chan_mask = chan_mask | 0x1 << bp;
2034 }
2035 cur_bin += 100;
2036 }
2037 cur_bin += inc[i];
2038 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2039 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2040 }
2041
2042 cur_vit_mask = 6100;
2043 upper = bin + 120;
2044 lower = bin - 120;
2045
2046 for (i = 0; i < 123; i++) {
2047 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002048
2049 /* workaround for gcc bug #37014 */
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002050 volatile int tmp_v = abs(cur_vit_mask - bin);
Adrian Bunk88b9e2b2008-08-05 22:06:51 +03002051
Luis R. Rodrigueza085ff72008-12-23 15:58:51 -08002052 if (tmp_v < 75)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002053 mask_amt = 1;
2054 else
2055 mask_amt = 0;
2056 if (cur_vit_mask < 0)
2057 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2058 else
2059 mask_p[cur_vit_mask / 100] = mask_amt;
2060 }
2061 cur_vit_mask -= 100;
2062 }
2063
2064 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2065 | (mask_m[48] << 26) | (mask_m[49] << 24)
2066 | (mask_m[50] << 22) | (mask_m[51] << 20)
2067 | (mask_m[52] << 18) | (mask_m[53] << 16)
2068 | (mask_m[54] << 14) | (mask_m[55] << 12)
2069 | (mask_m[56] << 10) | (mask_m[57] << 8)
2070 | (mask_m[58] << 6) | (mask_m[59] << 4)
2071 | (mask_m[60] << 2) | (mask_m[61] << 0);
2072 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2073 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2074
2075 tmp_mask = (mask_m[31] << 28)
2076 | (mask_m[32] << 26) | (mask_m[33] << 24)
2077 | (mask_m[34] << 22) | (mask_m[35] << 20)
2078 | (mask_m[36] << 18) | (mask_m[37] << 16)
2079 | (mask_m[48] << 14) | (mask_m[39] << 12)
2080 | (mask_m[40] << 10) | (mask_m[41] << 8)
2081 | (mask_m[42] << 6) | (mask_m[43] << 4)
2082 | (mask_m[44] << 2) | (mask_m[45] << 0);
2083 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2084 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2085
2086 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2087 | (mask_m[18] << 26) | (mask_m[18] << 24)
2088 | (mask_m[20] << 22) | (mask_m[20] << 20)
2089 | (mask_m[22] << 18) | (mask_m[22] << 16)
2090 | (mask_m[24] << 14) | (mask_m[24] << 12)
2091 | (mask_m[25] << 10) | (mask_m[26] << 8)
2092 | (mask_m[27] << 6) | (mask_m[28] << 4)
2093 | (mask_m[29] << 2) | (mask_m[30] << 0);
2094 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2095 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2096
2097 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2098 | (mask_m[2] << 26) | (mask_m[3] << 24)
2099 | (mask_m[4] << 22) | (mask_m[5] << 20)
2100 | (mask_m[6] << 18) | (mask_m[7] << 16)
2101 | (mask_m[8] << 14) | (mask_m[9] << 12)
2102 | (mask_m[10] << 10) | (mask_m[11] << 8)
2103 | (mask_m[12] << 6) | (mask_m[13] << 4)
2104 | (mask_m[14] << 2) | (mask_m[15] << 0);
2105 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2106 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2107
2108 tmp_mask = (mask_p[15] << 28)
2109 | (mask_p[14] << 26) | (mask_p[13] << 24)
2110 | (mask_p[12] << 22) | (mask_p[11] << 20)
2111 | (mask_p[10] << 18) | (mask_p[9] << 16)
2112 | (mask_p[8] << 14) | (mask_p[7] << 12)
2113 | (mask_p[6] << 10) | (mask_p[5] << 8)
2114 | (mask_p[4] << 6) | (mask_p[3] << 4)
2115 | (mask_p[2] << 2) | (mask_p[1] << 0);
2116 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2117 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2118
2119 tmp_mask = (mask_p[30] << 28)
2120 | (mask_p[29] << 26) | (mask_p[28] << 24)
2121 | (mask_p[27] << 22) | (mask_p[26] << 20)
2122 | (mask_p[25] << 18) | (mask_p[24] << 16)
2123 | (mask_p[23] << 14) | (mask_p[22] << 12)
2124 | (mask_p[21] << 10) | (mask_p[20] << 8)
2125 | (mask_p[19] << 6) | (mask_p[18] << 4)
2126 | (mask_p[17] << 2) | (mask_p[16] << 0);
2127 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2128 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2129
2130 tmp_mask = (mask_p[45] << 28)
2131 | (mask_p[44] << 26) | (mask_p[43] << 24)
2132 | (mask_p[42] << 22) | (mask_p[41] << 20)
2133 | (mask_p[40] << 18) | (mask_p[39] << 16)
2134 | (mask_p[38] << 14) | (mask_p[37] << 12)
2135 | (mask_p[36] << 10) | (mask_p[35] << 8)
2136 | (mask_p[34] << 6) | (mask_p[33] << 4)
2137 | (mask_p[32] << 2) | (mask_p[31] << 0);
2138 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2139 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2140
2141 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2142 | (mask_p[59] << 26) | (mask_p[58] << 24)
2143 | (mask_p[57] << 22) | (mask_p[56] << 20)
2144 | (mask_p[55] << 18) | (mask_p[54] << 16)
2145 | (mask_p[53] << 14) | (mask_p[52] << 12)
2146 | (mask_p[51] << 10) | (mask_p[50] << 8)
2147 | (mask_p[49] << 6) | (mask_p[48] << 4)
2148 | (mask_p[47] << 2) | (mask_p[46] << 0);
2149 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2150 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2151}
2152
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002153int ath9k_hw_reset(struct ath_hal *ah, struct ath9k_channel *chan,
2154 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002155{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002156 u32 saveLedState;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002157 struct ath_softc *sc = ah->ah_sc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158 struct ath_hal_5416 *ahp = AH5416(ah);
2159 struct ath9k_channel *curchan = ah->ah_curchan;
2160 u32 saveDefAntenna;
2161 u32 macStaId1;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002162 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002163
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002164 ahp->ah_extprotspacing = sc->sc_ht_extprotspacing;
2165 ahp->ah_txchainmask = sc->sc_tx_chainmask;
2166 ahp->ah_rxchainmask = sc->sc_rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002167
Senthil Balasubramanian793c5922009-01-26 20:28:14 +05302168 if (AR_SREV_9285(ah)) {
2169 ahp->ah_txchainmask &= 0x1;
2170 ahp->ah_rxchainmask &= 0x1;
2171 } else if (AR_SREV_9280(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002172 ahp->ah_txchainmask &= 0x3;
2173 ahp->ah_rxchainmask &= 0x3;
2174 }
2175
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002176 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2177 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002178
2179 if (curchan)
2180 ath9k_hw_getnf(ah, curchan);
2181
2182 if (bChannelChange &&
2183 (ahp->ah_chipFullSleep != true) &&
2184 (ah->ah_curchan != NULL) &&
2185 (chan->channel != ah->ah_curchan->channel) &&
2186 ((chan->channelFlags & CHANNEL_ALL) ==
2187 (ah->ah_curchan->channelFlags & CHANNEL_ALL)) &&
2188 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
Sujith99405f92008-11-24 12:08:35 +05302189 !IS_CHAN_A_5MHZ_SPACED(ah->ah_curchan)))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002190
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002191 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192 ath9k_hw_loadnf(ah, ah->ah_curchan);
2193 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002194 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195 }
2196 }
2197
2198 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2199 if (saveDefAntenna == 0)
2200 saveDefAntenna = 1;
2201
2202 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2203
2204 saveLedState = REG_READ(ah, AR_CFG_LED) &
2205 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2206 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2207
2208 ath9k_hw_mark_phy_inactive(ah);
2209
2210 if (!ath9k_hw_chip_reset(ah, chan)) {
Sujith04bd46382008-11-28 22:18:05 +05302211 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002212 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002213 }
2214
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05302215 if (AR_SREV_9280_10_OR_LATER(ah))
2216 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002218 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2219 if (r)
2220 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002221
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002222 /* Setup MFP options for CCMP */
2223 if (AR_SREV_9280_20_OR_LATER(ah)) {
2224 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2225 * frames when constructing CCMP AAD. */
2226 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2227 0xc7ff);
2228 ah->sw_mgmt_crypto = false;
2229 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2230 /* Disable hardware crypto for management frames */
2231 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2232 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2233 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2234 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2235 ah->sw_mgmt_crypto = true;
2236 } else
2237 ah->sw_mgmt_crypto = true;
2238
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002239 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2240 ath9k_hw_set_delta_slope(ah, chan);
2241
2242 if (AR_SREV_9280_10_OR_LATER(ah))
2243 ath9k_hw_9280_spur_mitigate(ah, chan);
2244 else
2245 ath9k_hw_spur_mitigate(ah, chan);
2246
2247 if (!ath9k_hw_eeprom_set_board_values(ah, chan)) {
2248 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
Sujith04bd46382008-11-28 22:18:05 +05302249 "error setting board options\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002250 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002251 }
2252
2253 ath9k_hw_decrease_chain_power(ah, chan);
2254
2255 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ahp->ah_macaddr));
2256 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ahp->ah_macaddr + 4)
2257 | macStaId1
2258 | AR_STA_ID1_RTS_USE_DEF
2259 | (ah->ah_config.
Sujith60b67f52008-08-07 10:52:38 +05302260 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261 | ahp->ah_staId1Defaults);
Sujithb4696c8b2008-08-11 14:04:52 +05302262 ath9k_hw_set_operating_mode(ah, ah->ah_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263
2264 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(ahp->ah_bssidmask));
2265 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(ahp->ah_bssidmask + 4));
2266
2267 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2268
2269 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(ahp->ah_bssid));
2270 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(ahp->ah_bssid + 4) |
2271 ((ahp->ah_assocId & 0x3fff) << AR_BSS_ID1_AID_S));
2272
2273 REG_WRITE(ah, AR_ISR, ~0);
2274
2275 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2276
2277 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002278 if (!(ath9k_hw_ar9280_set_channel(ah, chan)))
2279 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280 } else {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002281 if (!(ath9k_hw_set_channel(ah, chan)))
2282 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283 }
2284
2285 for (i = 0; i < AR_NUM_DCU; i++)
2286 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2287
2288 ahp->ah_intrTxqs = 0;
Sujith60b67f52008-08-07 10:52:38 +05302289 for (i = 0; i < ah->ah_caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002290 ath9k_hw_resettxqueue(ah, i);
2291
Sujithb4696c8b2008-08-11 14:04:52 +05302292 ath9k_hw_init_interrupt_masks(ah, ah->ah_opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002293 ath9k_hw_init_qos(ah);
2294
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302295#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302296 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2297 ath9k_enable_rfkill(ah);
2298#endif
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002299 ath9k_hw_init_user_settings(ah);
2300
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301 REG_WRITE(ah, AR_STA_ID1,
2302 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2303
2304 ath9k_hw_set_dma(ah);
2305
2306 REG_WRITE(ah, AR_OBS, 8);
2307
2308 if (ahp->ah_intrMitigation) {
2309
2310 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2311 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2312 }
2313
2314 ath9k_hw_init_bb(ah, chan);
2315
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002316 if (!ath9k_hw_init_cal(ah, chan))
2317 return -EIO;;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318
2319 rx_chainmask = ahp->ah_rxchainmask;
2320 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2321 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2322 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2323 }
2324
2325 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2326
2327 if (AR_SREV_9100(ah)) {
2328 u32 mask;
2329 mask = REG_READ(ah, AR_CFG);
2330 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2331 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302332 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002333 } else {
2334 mask =
2335 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2336 REG_WRITE(ah, AR_CFG, mask);
2337 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302338 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002339 }
2340 } else {
2341#ifdef __BIG_ENDIAN
2342 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2343#endif
2344 }
2345
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002346 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002347}
2348
Sujithf1dc5602008-10-29 10:16:30 +05302349/************************/
2350/* Key Cache Management */
2351/************************/
2352
2353bool ath9k_hw_keyreset(struct ath_hal *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002354{
Sujithf1dc5602008-10-29 10:16:30 +05302355 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002356
Sujithf1dc5602008-10-29 10:16:30 +05302357 if (entry >= ah->ah_caps.keycache_size) {
2358 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302359 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002360 return false;
2361 }
2362
Sujithf1dc5602008-10-29 10:16:30 +05302363 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002364
Sujithf1dc5602008-10-29 10:16:30 +05302365 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2366 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2367 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2368 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2369 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2370 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2371 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2372 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2373
2374 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2375 u16 micentry = entry + 64;
2376
2377 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2378 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2379 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2380 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2381
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002382 }
2383
Sujithf1dc5602008-10-29 10:16:30 +05302384 if (ah->ah_curchan == NULL)
2385 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002386
2387 return true;
2388}
2389
Sujithf1dc5602008-10-29 10:16:30 +05302390bool ath9k_hw_keysetmac(struct ath_hal *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002391{
Sujithf1dc5602008-10-29 10:16:30 +05302392 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393
Sujithf1dc5602008-10-29 10:16:30 +05302394 if (entry >= ah->ah_caps.keycache_size) {
2395 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302396 "entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002397 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002398 }
2399
Sujithf1dc5602008-10-29 10:16:30 +05302400 if (mac != NULL) {
2401 macHi = (mac[5] << 8) | mac[4];
2402 macLo = (mac[3] << 24) |
2403 (mac[2] << 16) |
2404 (mac[1] << 8) |
2405 mac[0];
2406 macLo >>= 1;
2407 macLo |= (macHi & 1) << 31;
2408 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302410 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 }
Sujithf1dc5602008-10-29 10:16:30 +05302412 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2413 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414
2415 return true;
2416}
2417
Sujithf1dc5602008-10-29 10:16:30 +05302418bool ath9k_hw_set_keycache_entry(struct ath_hal *ah, u16 entry,
2419 const struct ath9k_keyval *k,
2420 const u8 *mac, int xorKey)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421{
Sujith60b67f52008-08-07 10:52:38 +05302422 const struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Sujithf1dc5602008-10-29 10:16:30 +05302423 u32 key0, key1, key2, key3, key4;
2424 u32 keyType;
2425 u32 xorMask = xorKey ?
2426 (ATH9K_KEY_XOR << 24 | ATH9K_KEY_XOR << 16 | ATH9K_KEY_XOR << 8
2427 | ATH9K_KEY_XOR) : 0;
2428 struct ath_hal_5416 *ahp = AH5416(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429
Sujithf1dc5602008-10-29 10:16:30 +05302430 if (entry >= pCap->keycache_size) {
2431 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302432 "entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302433 return false;
2434 }
2435
2436 switch (k->kv_type) {
2437 case ATH9K_CIPHER_AES_OCB:
2438 keyType = AR_KEYTABLE_TYPE_AES;
2439 break;
2440 case ATH9K_CIPHER_AES_CCM:
2441 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2442 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302443 "AES-CCM not supported by mac rev 0x%x\n",
Sujithf1dc5602008-10-29 10:16:30 +05302444 ah->ah_macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445 return false;
2446 }
Sujithf1dc5602008-10-29 10:16:30 +05302447 keyType = AR_KEYTABLE_TYPE_CCM;
2448 break;
2449 case ATH9K_CIPHER_TKIP:
2450 keyType = AR_KEYTABLE_TYPE_TKIP;
2451 if (ATH9K_IS_MIC_ENABLED(ah)
2452 && entry + 64 >= pCap->keycache_size) {
2453 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302454 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002455 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002456 }
Sujithf1dc5602008-10-29 10:16:30 +05302457 break;
2458 case ATH9K_CIPHER_WEP:
2459 if (k->kv_len < LEN_WEP40) {
2460 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302461 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302462 return false;
2463 }
2464 if (k->kv_len <= LEN_WEP40)
2465 keyType = AR_KEYTABLE_TYPE_40;
2466 else if (k->kv_len <= LEN_WEP104)
2467 keyType = AR_KEYTABLE_TYPE_104;
2468 else
2469 keyType = AR_KEYTABLE_TYPE_128;
2470 break;
2471 case ATH9K_CIPHER_CLR:
2472 keyType = AR_KEYTABLE_TYPE_CLR;
2473 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002474 default:
Sujithf1dc5602008-10-29 10:16:30 +05302475 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
Sujith04bd46382008-11-28 22:18:05 +05302476 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002477 return false;
2478 }
Sujithf1dc5602008-10-29 10:16:30 +05302479
2480 key0 = get_unaligned_le32(k->kv_val + 0) ^ xorMask;
2481 key1 = (get_unaligned_le16(k->kv_val + 4) ^ xorMask) & 0xffff;
2482 key2 = get_unaligned_le32(k->kv_val + 6) ^ xorMask;
2483 key3 = (get_unaligned_le16(k->kv_val + 10) ^ xorMask) & 0xffff;
2484 key4 = get_unaligned_le32(k->kv_val + 12) ^ xorMask;
2485 if (k->kv_len <= LEN_WEP104)
2486 key4 &= 0xff;
2487
2488 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2489 u16 micentry = entry + 64;
2490
2491 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2492 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
2493 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2494 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2495 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2496 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2497 (void) ath9k_hw_keysetmac(ah, entry, mac);
2498
2499 if (ahp->ah_miscMode & AR_PCU_MIC_NEW_LOC_ENA) {
2500 u32 mic0, mic1, mic2, mic3, mic4;
2501
2502 mic0 = get_unaligned_le32(k->kv_mic + 0);
2503 mic2 = get_unaligned_le32(k->kv_mic + 4);
2504 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2505 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2506 mic4 = get_unaligned_le32(k->kv_txmic + 4);
2507 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2508 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
2509 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2510 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
2511 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2512 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2513 AR_KEYTABLE_TYPE_CLR);
2514
2515 } else {
2516 u32 mic0, mic2;
2517
2518 mic0 = get_unaligned_le32(k->kv_mic + 0);
2519 mic2 = get_unaligned_le32(k->kv_mic + 4);
2520 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2521 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2522 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2523 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2524 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2525 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2526 AR_KEYTABLE_TYPE_CLR);
2527 }
2528 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2529 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
2530 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2531 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2532 } else {
2533 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2534 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2535 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2536 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2537 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2538 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2539
2540 (void) ath9k_hw_keysetmac(ah, entry, mac);
2541 }
2542
2543 if (ah->ah_curchan == NULL)
2544 return true;
2545
2546 return true;
2547}
2548
2549bool ath9k_hw_keyisvalid(struct ath_hal *ah, u16 entry)
2550{
2551 if (entry < ah->ah_caps.keycache_size) {
2552 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2553 if (val & AR_KEYTABLE_VALID)
2554 return true;
2555 }
2556 return false;
2557}
2558
2559/******************************/
2560/* Power Management (Chipset) */
2561/******************************/
2562
2563static void ath9k_set_power_sleep(struct ath_hal *ah, int setChip)
2564{
2565 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2566 if (setChip) {
2567 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2568 AR_RTC_FORCE_WAKE_EN);
2569 if (!AR_SREV_9100(ah))
2570 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2571
Gabor Juhosd03a66c2009-01-14 20:17:09 +01002572 REG_CLR_BIT(ah, (AR_RTC_RESET),
Sujithf1dc5602008-10-29 10:16:30 +05302573 AR_RTC_RESET_EN);
2574 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002575}
2576
Sujithf1dc5602008-10-29 10:16:30 +05302577static void ath9k_set_power_network_sleep(struct ath_hal *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578{
Sujithf1dc5602008-10-29 10:16:30 +05302579 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2580 if (setChip) {
2581 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002582
Sujithf1dc5602008-10-29 10:16:30 +05302583 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2584 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2585 AR_RTC_FORCE_WAKE_ON_INT);
2586 } else {
2587 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2588 AR_RTC_FORCE_WAKE_EN);
2589 }
2590 }
2591}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002592
Sujithf1dc5602008-10-29 10:16:30 +05302593static bool ath9k_hw_set_power_awake(struct ath_hal *ah,
2594 int setChip)
2595{
2596 u32 val;
2597 int i;
2598
2599 if (setChip) {
2600 if ((REG_READ(ah, AR_RTC_STATUS) &
2601 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2602 if (ath9k_hw_set_reset_reg(ah,
2603 ATH9K_RESET_POWER_ON) != true) {
2604 return false;
2605 }
2606 }
2607 if (AR_SREV_9100(ah))
2608 REG_SET_BIT(ah, AR_RTC_RESET,
2609 AR_RTC_RESET_EN);
2610
2611 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2612 AR_RTC_FORCE_WAKE_EN);
2613 udelay(50);
2614
2615 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2616 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2617 if (val == AR_RTC_STATUS_ON)
2618 break;
2619 udelay(50);
2620 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2621 AR_RTC_FORCE_WAKE_EN);
2622 }
2623 if (i == 0) {
2624 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05302625 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302626 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002627 }
2628 }
2629
Sujithf1dc5602008-10-29 10:16:30 +05302630 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2631
2632 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002633}
2634
Sujithf1dc5602008-10-29 10:16:30 +05302635bool ath9k_hw_setpower(struct ath_hal *ah,
2636 enum ath9k_power_mode mode)
2637{
2638 struct ath_hal_5416 *ahp = AH5416(ah);
2639 static const char *modes[] = {
2640 "AWAKE",
2641 "FULL-SLEEP",
2642 "NETWORK SLEEP",
2643 "UNDEFINED"
2644 };
2645 int status = true, setChip = true;
2646
Sujith04bd46382008-11-28 22:18:05 +05302647 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT, "%s -> %s (%s)\n",
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302648 modes[ah->ah_power_mode], modes[mode],
Sujithf1dc5602008-10-29 10:16:30 +05302649 setChip ? "set chip " : "");
2650
2651 switch (mode) {
2652 case ATH9K_PM_AWAKE:
2653 status = ath9k_hw_set_power_awake(ah, setChip);
2654 break;
2655 case ATH9K_PM_FULL_SLEEP:
2656 ath9k_set_power_sleep(ah, setChip);
2657 ahp->ah_chipFullSleep = true;
2658 break;
2659 case ATH9K_PM_NETWORK_SLEEP:
2660 ath9k_set_power_network_sleep(ah, setChip);
2661 break;
2662 default:
2663 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
Sujith04bd46382008-11-28 22:18:05 +05302664 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302665 return false;
2666 }
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05302667 ah->ah_power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302668
2669 return status;
2670}
2671
2672void ath9k_hw_configpcipowersave(struct ath_hal *ah, int restore)
2673{
2674 struct ath_hal_5416 *ahp = AH5416(ah);
2675 u8 i;
2676
2677 if (ah->ah_isPciExpress != true)
2678 return;
2679
2680 if (ah->ah_config.pcie_powersave_enable == 2)
2681 return;
2682
2683 if (restore)
2684 return;
2685
2686 if (AR_SREV_9280_20_OR_LATER(ah)) {
2687 for (i = 0; i < ahp->ah_iniPcieSerdes.ia_rows; i++) {
2688 REG_WRITE(ah, INI_RA(&ahp->ah_iniPcieSerdes, i, 0),
2689 INI_RA(&ahp->ah_iniPcieSerdes, i, 1));
2690 }
2691 udelay(1000);
2692 } else if (AR_SREV_9280(ah) &&
2693 (ah->ah_macRev == AR_SREV_REVISION_9280_10)) {
2694 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2695 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2696
2697 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2698 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2699 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2700
2701 if (ah->ah_config.pcie_clock_req)
2702 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2703 else
2704 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2705
2706 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2707 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2708 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2709
2710 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2711
2712 udelay(1000);
2713 } else {
2714 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2715 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2716 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2717 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2718 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2719 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2720 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2721 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2722 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2723 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2724 }
2725
2726 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2727
2728 if (ah->ah_config.pcie_waen) {
2729 REG_WRITE(ah, AR_WA, ah->ah_config.pcie_waen);
2730 } else {
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302731 if (AR_SREV_9285(ah))
2732 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
2733 else if (AR_SREV_9280(ah))
2734 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302735 else
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302736 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
Sujithf1dc5602008-10-29 10:16:30 +05302737 }
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302738
Sujithf1dc5602008-10-29 10:16:30 +05302739}
2740
2741/**********************/
2742/* Interrupt Handling */
2743/**********************/
2744
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002745bool ath9k_hw_intrpend(struct ath_hal *ah)
2746{
2747 u32 host_isr;
2748
2749 if (AR_SREV_9100(ah))
2750 return true;
2751
2752 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2753 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2754 return true;
2755
2756 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2757 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2758 && (host_isr != AR_INTR_SPURIOUS))
2759 return true;
2760
2761 return false;
2762}
2763
2764bool ath9k_hw_getisr(struct ath_hal *ah, enum ath9k_int *masked)
2765{
2766 u32 isr = 0;
2767 u32 mask2 = 0;
Sujith60b67f52008-08-07 10:52:38 +05302768 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002769 u32 sync_cause = 0;
2770 bool fatal_int = false;
Sujithf1dc5602008-10-29 10:16:30 +05302771 struct ath_hal_5416 *ahp = AH5416(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002772
2773 if (!AR_SREV_9100(ah)) {
2774 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2775 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2776 == AR_RTC_STATUS_ON) {
2777 isr = REG_READ(ah, AR_ISR);
2778 }
2779 }
2780
Sujithf1dc5602008-10-29 10:16:30 +05302781 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2782 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002783
2784 *masked = 0;
2785
2786 if (!isr && !sync_cause)
2787 return false;
2788 } else {
2789 *masked = 0;
2790 isr = REG_READ(ah, AR_ISR);
2791 }
2792
2793 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002794 if (isr & AR_ISR_BCNMISC) {
2795 u32 isr2;
2796 isr2 = REG_READ(ah, AR_ISR_S2);
2797 if (isr2 & AR_ISR_S2_TIM)
2798 mask2 |= ATH9K_INT_TIM;
2799 if (isr2 & AR_ISR_S2_DTIM)
2800 mask2 |= ATH9K_INT_DTIM;
2801 if (isr2 & AR_ISR_S2_DTIMSYNC)
2802 mask2 |= ATH9K_INT_DTIMSYNC;
2803 if (isr2 & (AR_ISR_S2_CABEND))
2804 mask2 |= ATH9K_INT_CABEND;
2805 if (isr2 & AR_ISR_S2_GTT)
2806 mask2 |= ATH9K_INT_GTT;
2807 if (isr2 & AR_ISR_S2_CST)
2808 mask2 |= ATH9K_INT_CST;
2809 }
2810
2811 isr = REG_READ(ah, AR_ISR_RAC);
2812 if (isr == 0xffffffff) {
2813 *masked = 0;
2814 return false;
2815 }
2816
2817 *masked = isr & ATH9K_INT_COMMON;
2818
2819 if (ahp->ah_intrMitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002820 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2821 *masked |= ATH9K_INT_RX;
2822 }
2823
2824 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2825 *masked |= ATH9K_INT_RX;
2826 if (isr &
2827 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2828 AR_ISR_TXEOL)) {
2829 u32 s0_s, s1_s;
2830
2831 *masked |= ATH9K_INT_TX;
2832
2833 s0_s = REG_READ(ah, AR_ISR_S0_S);
2834 ahp->ah_intrTxqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2835 ahp->ah_intrTxqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
2836
2837 s1_s = REG_READ(ah, AR_ISR_S1_S);
2838 ahp->ah_intrTxqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2839 ahp->ah_intrTxqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
2840 }
2841
2842 if (isr & AR_ISR_RXORN) {
2843 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05302844 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002845 }
2846
2847 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302848 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002849 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2850 if (isr5 & AR_ISR_S5_TIM_TIMER)
2851 *masked |= ATH9K_INT_TIM_TIMER;
2852 }
2853 }
2854
2855 *masked |= mask2;
2856 }
Sujithf1dc5602008-10-29 10:16:30 +05302857
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002858 if (AR_SREV_9100(ah))
2859 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302860
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002861 if (sync_cause) {
2862 fatal_int =
2863 (sync_cause &
2864 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2865 ? true : false;
2866
2867 if (fatal_int) {
2868 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
2869 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302870 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002871 }
2872 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
2873 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
Sujith04bd46382008-11-28 22:18:05 +05302874 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002875 }
2876 }
2877 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
2878 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05302879 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002880 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2881 REG_WRITE(ah, AR_RC, 0);
2882 *masked |= ATH9K_INT_FATAL;
2883 }
2884 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
2885 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
Sujith04bd46382008-11-28 22:18:05 +05302886 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002887 }
2888
2889 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2890 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2891 }
Sujithf1dc5602008-10-29 10:16:30 +05302892
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002893 return true;
2894}
2895
2896enum ath9k_int ath9k_hw_intrget(struct ath_hal *ah)
2897{
2898 return AH5416(ah)->ah_maskReg;
2899}
2900
2901enum ath9k_int ath9k_hw_set_interrupts(struct ath_hal *ah, enum ath9k_int ints)
2902{
2903 struct ath_hal_5416 *ahp = AH5416(ah);
2904 u32 omask = ahp->ah_maskReg;
2905 u32 mask, mask2;
Sujith60b67f52008-08-07 10:52:38 +05302906 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002907
Sujith04bd46382008-11-28 22:18:05 +05302908 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002909
2910 if (omask & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05302911 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002912 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2913 (void) REG_READ(ah, AR_IER);
2914 if (!AR_SREV_9100(ah)) {
2915 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2916 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2917
2918 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2919 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2920 }
2921 }
2922
2923 mask = ints & ATH9K_INT_COMMON;
2924 mask2 = 0;
2925
2926 if (ints & ATH9K_INT_TX) {
2927 if (ahp->ah_txOkInterruptMask)
2928 mask |= AR_IMR_TXOK;
2929 if (ahp->ah_txDescInterruptMask)
2930 mask |= AR_IMR_TXDESC;
2931 if (ahp->ah_txErrInterruptMask)
2932 mask |= AR_IMR_TXERR;
2933 if (ahp->ah_txEolInterruptMask)
2934 mask |= AR_IMR_TXEOL;
2935 }
2936 if (ints & ATH9K_INT_RX) {
2937 mask |= AR_IMR_RXERR;
2938 if (ahp->ah_intrMitigation)
2939 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2940 else
2941 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302942 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002943 mask |= AR_IMR_GENTMR;
2944 }
2945
2946 if (ints & (ATH9K_INT_BMISC)) {
2947 mask |= AR_IMR_BCNMISC;
2948 if (ints & ATH9K_INT_TIM)
2949 mask2 |= AR_IMR_S2_TIM;
2950 if (ints & ATH9K_INT_DTIM)
2951 mask2 |= AR_IMR_S2_DTIM;
2952 if (ints & ATH9K_INT_DTIMSYNC)
2953 mask2 |= AR_IMR_S2_DTIMSYNC;
2954 if (ints & ATH9K_INT_CABEND)
2955 mask2 |= (AR_IMR_S2_CABEND);
2956 }
2957
2958 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2959 mask |= AR_IMR_BCNMISC;
2960 if (ints & ATH9K_INT_GTT)
2961 mask2 |= AR_IMR_S2_GTT;
2962 if (ints & ATH9K_INT_CST)
2963 mask2 |= AR_IMR_S2_CST;
2964 }
2965
Sujith04bd46382008-11-28 22:18:05 +05302966 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002967 REG_WRITE(ah, AR_IMR, mask);
2968 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
2969 AR_IMR_S2_DTIM |
2970 AR_IMR_S2_DTIMSYNC |
2971 AR_IMR_S2_CABEND |
2972 AR_IMR_S2_CABTO |
2973 AR_IMR_S2_TSFOOR |
2974 AR_IMR_S2_GTT | AR_IMR_S2_CST);
2975 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
2976 ahp->ah_maskReg = ints;
2977
Sujith60b67f52008-08-07 10:52:38 +05302978 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002979 if (ints & ATH9K_INT_TIM_TIMER)
2980 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2981 else
2982 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2983 }
2984
2985 if (ints & ATH9K_INT_GLOBAL) {
Sujith04bd46382008-11-28 22:18:05 +05302986 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002987 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2988 if (!AR_SREV_9100(ah)) {
2989 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2990 AR_INTR_MAC_IRQ);
2991 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2992
2993
2994 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2995 AR_INTR_SYNC_DEFAULT);
2996 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2997 AR_INTR_SYNC_DEFAULT);
2998 }
2999 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3000 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3001 }
3002
3003 return omask;
3004}
3005
Sujithf1dc5602008-10-29 10:16:30 +05303006/*******************/
3007/* Beacon Handling */
3008/*******************/
3009
3010void ath9k_hw_beaconinit(struct ath_hal *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003011{
3012 struct ath_hal_5416 *ahp = AH5416(ah);
3013 int flags = 0;
3014
3015 ahp->ah_beaconInterval = beacon_period;
3016
3017 switch (ah->ah_opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08003018 case NL80211_IFTYPE_STATION:
3019 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003020 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3021 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3022 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3023 flags |= AR_TBTT_TIMER_EN;
3024 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003025 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003026 REG_SET_BIT(ah, AR_TXCFG,
3027 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3028 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3029 TU_TO_USEC(next_beacon +
3030 (ahp->ah_atimWindow ? ahp->
3031 ah_atimWindow : 1)));
3032 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08003033 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003034 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3035 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3036 TU_TO_USEC(next_beacon -
3037 ah->ah_config.
Sujith60b67f52008-08-07 10:52:38 +05303038 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003039 REG_WRITE(ah, AR_NEXT_SWBA,
3040 TU_TO_USEC(next_beacon -
3041 ah->ah_config.
Sujith60b67f52008-08-07 10:52:38 +05303042 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003043 flags |=
3044 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3045 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003046 default:
3047 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3048 "%s: unsupported opmode: %d\n",
3049 __func__, ah->ah_opmode);
3050 return;
3051 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003052 }
3053
3054 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3055 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3056 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3057 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3058
3059 beacon_period &= ~ATH9K_BEACON_ENA;
3060 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3061 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3062 ath9k_hw_reset_tsf(ah);
3063 }
3064
3065 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3066}
3067
Sujithf1dc5602008-10-29 10:16:30 +05303068void ath9k_hw_set_sta_beacon_timers(struct ath_hal *ah,
3069 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003070{
3071 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith60b67f52008-08-07 10:52:38 +05303072 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003073
3074 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3075
3076 REG_WRITE(ah, AR_BEACON_PERIOD,
3077 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3078 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3079 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3080
3081 REG_RMW_FIELD(ah, AR_RSSI_THR,
3082 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3083
3084 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3085
3086 if (bs->bs_sleepduration > beaconintval)
3087 beaconintval = bs->bs_sleepduration;
3088
3089 dtimperiod = bs->bs_dtimperiod;
3090 if (bs->bs_sleepduration > dtimperiod)
3091 dtimperiod = bs->bs_sleepduration;
3092
3093 if (beaconintval == dtimperiod)
3094 nextTbtt = bs->bs_nextdtim;
3095 else
3096 nextTbtt = bs->bs_nexttbtt;
3097
Sujith04bd46382008-11-28 22:18:05 +05303098 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3099 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3100 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3101 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003102
3103 REG_WRITE(ah, AR_NEXT_DTIM,
3104 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3105 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3106
3107 REG_WRITE(ah, AR_SLEEP1,
3108 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3109 | AR_SLEEP1_ASSUME_DTIM);
3110
Sujith60b67f52008-08-07 10:52:38 +05303111 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003112 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3113 else
3114 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3115
3116 REG_WRITE(ah, AR_SLEEP2,
3117 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3118
3119 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3120 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3121
3122 REG_SET_BIT(ah, AR_TIMER_MODE,
3123 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3124 AR_DTIM_TIMER_EN);
3125
3126}
3127
Sujithf1dc5602008-10-29 10:16:30 +05303128/*******************/
3129/* HW Capabilities */
3130/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003131
Sujithf1dc5602008-10-29 10:16:30 +05303132bool ath9k_hw_fill_cap_info(struct ath_hal *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003133{
Sujithf1dc5602008-10-29 10:16:30 +05303134 struct ath_hal_5416 *ahp = AH5416(ah);
3135 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
3136 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003137
Sujithf1dc5602008-10-29 10:16:30 +05303138 eeval = ath9k_hw_get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003139
Sujithf1dc5602008-10-29 10:16:30 +05303140 ah->ah_currentRD = eeval;
3141
3142 eeval = ath9k_hw_get_eeprom(ah, EEP_REG_1);
3143 ah->ah_currentRDExt = eeval;
3144
3145 capField = ath9k_hw_get_eeprom(ah, EEP_OP_CAP);
3146
Colin McCabed97809d2008-12-01 13:38:55 -08003147 if (ah->ah_opmode != NL80211_IFTYPE_AP &&
Sujithf1dc5602008-10-29 10:16:30 +05303148 ah->ah_subvendorid == AR_SUBVENDOR_ID_NEW_A) {
3149 if (ah->ah_currentRD == 0x64 || ah->ah_currentRD == 0x65)
3150 ah->ah_currentRD += 5;
3151 else if (ah->ah_currentRD == 0x41)
3152 ah->ah_currentRD = 0x43;
3153 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
Sujith04bd46382008-11-28 22:18:05 +05303154 "regdomain mapped to 0x%x\n", ah->ah_currentRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003155 }
Sujithdc2222a2008-08-14 13:26:55 +05303156
Sujithf1dc5602008-10-29 10:16:30 +05303157 eeval = ath9k_hw_get_eeprom(ah, EEP_OP_MODE);
3158 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003159
Sujithf1dc5602008-10-29 10:16:30 +05303160 if (eeval & AR5416_OPFLAGS_11A) {
3161 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
3162 if (ah->ah_config.ht_enable) {
3163 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3164 set_bit(ATH9K_MODE_11NA_HT20,
3165 pCap->wireless_modes);
3166 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3167 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3168 pCap->wireless_modes);
3169 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3170 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003171 }
3172 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003173 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003174
Sujithf1dc5602008-10-29 10:16:30 +05303175 if (eeval & AR5416_OPFLAGS_11G) {
3176 set_bit(ATH9K_MODE_11B, pCap->wireless_modes);
3177 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
3178 if (ah->ah_config.ht_enable) {
3179 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3180 set_bit(ATH9K_MODE_11NG_HT20,
3181 pCap->wireless_modes);
3182 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3183 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3184 pCap->wireless_modes);
3185 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3186 pCap->wireless_modes);
3187 }
3188 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003189 }
Sujithf1dc5602008-10-29 10:16:30 +05303190
3191 pCap->tx_chainmask = ath9k_hw_get_eeprom(ah, EEP_TX_MASK);
3192 if ((ah->ah_isPciExpress)
3193 || (eeval & AR5416_OPFLAGS_11A)) {
3194 pCap->rx_chainmask =
3195 ath9k_hw_get_eeprom(ah, EEP_RX_MASK);
3196 } else {
3197 pCap->rx_chainmask =
3198 (ath9k_hw_gpio_get(ah, 0)) ? 0x5 : 0x7;
3199 }
3200
3201 if (!(AR_SREV_9280(ah) && (ah->ah_macRev == 0)))
3202 ahp->ah_miscMode |= AR_PCU_MIC_NEW_LOC_ENA;
3203
3204 pCap->low_2ghz_chan = 2312;
3205 pCap->high_2ghz_chan = 2732;
3206
3207 pCap->low_5ghz_chan = 4920;
3208 pCap->high_5ghz_chan = 6100;
3209
3210 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3211 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3212 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3213
3214 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3215 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3216 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3217
3218 pCap->hw_caps |= ATH9K_HW_CAP_CHAN_SPREAD;
3219
3220 if (ah->ah_config.ht_enable)
3221 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3222 else
3223 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3224
3225 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3226 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3227 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3228 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3229
3230 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3231 pCap->total_queues =
3232 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3233 else
3234 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3235
3236 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3237 pCap->keycache_size =
3238 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3239 else
3240 pCap->keycache_size = AR_KEYTABLE_SIZE;
3241
3242 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
3243 pCap->num_mr_retries = 4;
3244 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3245
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303246 if (AR_SREV_9285_10_OR_LATER(ah))
3247 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3248 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303249 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3250 else
3251 pCap->num_gpio_pins = AR_NUM_GPIO;
3252
3253 if (AR_SREV_9280_10_OR_LATER(ah)) {
3254 pCap->hw_caps |= ATH9K_HW_CAP_WOW;
3255 pCap->hw_caps |= ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3256 } else {
3257 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW;
3258 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3259 }
3260
3261 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3262 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3263 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3264 } else {
3265 pCap->rts_aggr_limit = (8 * 1024);
3266 }
3267
3268 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3269
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303270#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujithf1dc5602008-10-29 10:16:30 +05303271 ah->ah_rfsilent = ath9k_hw_get_eeprom(ah, EEP_RF_SILENT);
3272 if (ah->ah_rfsilent & EEP_RFSILENT_ENABLED) {
3273 ah->ah_rfkill_gpio =
3274 MS(ah->ah_rfsilent, EEP_RFSILENT_GPIO_SEL);
3275 ah->ah_rfkill_polarity =
3276 MS(ah->ah_rfsilent, EEP_RFSILENT_POLARITY);
3277
3278 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3279 }
3280#endif
3281
3282 if ((ah->ah_macVersion == AR_SREV_VERSION_5416_PCI) ||
3283 (ah->ah_macVersion == AR_SREV_VERSION_5416_PCIE) ||
3284 (ah->ah_macVersion == AR_SREV_VERSION_9160) ||
3285 (ah->ah_macVersion == AR_SREV_VERSION_9100) ||
3286 (ah->ah_macVersion == AR_SREV_VERSION_9280))
3287 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3288 else
3289 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3290
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303291 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303292 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3293 else
3294 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3295
3296 if (ah->ah_currentRDExt & (1 << REG_EXT_JAPAN_MIDBAND)) {
3297 pCap->reg_cap =
3298 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3299 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3300 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3301 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3302 } else {
3303 pCap->reg_cap =
3304 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3305 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3306 }
3307
3308 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3309
3310 pCap->num_antcfg_5ghz =
Senthil Balasubramanian2df1bff2008-12-08 19:43:49 +05303311 ath9k_hw_get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303312 pCap->num_antcfg_2ghz =
Senthil Balasubramanian2df1bff2008-12-08 19:43:49 +05303313 ath9k_hw_get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303314
Vasanthakumar Thiagarajan138ab2e2009-01-10 17:07:09 +05303315 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303316 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
3317 ah->ah_btactive_gpio = 6;
3318 ah->ah_wlanactive_gpio = 5;
3319 }
3320
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003321 return true;
3322}
3323
Sujithf1dc5602008-10-29 10:16:30 +05303324bool ath9k_hw_getcapability(struct ath_hal *ah, enum ath9k_capability_type type,
3325 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003326{
Sujithf1dc5602008-10-29 10:16:30 +05303327 struct ath_hal_5416 *ahp = AH5416(ah);
3328 const struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003329
Sujithf1dc5602008-10-29 10:16:30 +05303330 switch (type) {
3331 case ATH9K_CAP_CIPHER:
3332 switch (capability) {
3333 case ATH9K_CIPHER_AES_CCM:
3334 case ATH9K_CIPHER_AES_OCB:
3335 case ATH9K_CIPHER_TKIP:
3336 case ATH9K_CIPHER_WEP:
3337 case ATH9K_CIPHER_MIC:
3338 case ATH9K_CIPHER_CLR:
3339 return true;
3340 default:
3341 return false;
3342 }
3343 case ATH9K_CAP_TKIP_MIC:
3344 switch (capability) {
3345 case 0:
3346 return true;
3347 case 1:
3348 return (ahp->ah_staId1Defaults &
3349 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3350 false;
3351 }
3352 case ATH9K_CAP_TKIP_SPLIT:
3353 return (ahp->ah_miscMode & AR_PCU_MIC_NEW_LOC_ENA) ?
3354 false : true;
3355 case ATH9K_CAP_WME_TKIPMIC:
3356 return 0;
3357 case ATH9K_CAP_PHYCOUNTERS:
3358 return ahp->ah_hasHwPhyCounters ? 0 : -ENXIO;
3359 case ATH9K_CAP_DIVERSITY:
3360 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3361 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3362 true : false;
3363 case ATH9K_CAP_PHYDIAG:
3364 return true;
3365 case ATH9K_CAP_MCAST_KEYSRCH:
3366 switch (capability) {
3367 case 0:
3368 return true;
3369 case 1:
3370 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3371 return false;
3372 } else {
3373 return (ahp->ah_staId1Defaults &
3374 AR_STA_ID1_MCAST_KSRCH) ? true :
3375 false;
3376 }
3377 }
3378 return false;
3379 case ATH9K_CAP_TSF_ADJUST:
3380 return (ahp->ah_miscMode & AR_PCU_TX_ADD_TSF) ?
3381 true : false;
3382 case ATH9K_CAP_RFSILENT:
3383 if (capability == 3)
3384 return false;
3385 case ATH9K_CAP_ANT_CFG_2GHZ:
3386 *result = pCap->num_antcfg_2ghz;
3387 return true;
3388 case ATH9K_CAP_ANT_CFG_5GHZ:
3389 *result = pCap->num_antcfg_5ghz;
3390 return true;
3391 case ATH9K_CAP_TXPOW:
3392 switch (capability) {
3393 case 0:
3394 return 0;
3395 case 1:
3396 *result = ah->ah_powerLimit;
3397 return 0;
3398 case 2:
3399 *result = ah->ah_maxPowerLevel;
3400 return 0;
3401 case 3:
3402 *result = ah->ah_tpScale;
3403 return 0;
3404 }
3405 return false;
3406 default:
3407 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003408 }
Sujithf1dc5602008-10-29 10:16:30 +05303409}
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003410
Sujithf1dc5602008-10-29 10:16:30 +05303411bool ath9k_hw_setcapability(struct ath_hal *ah, enum ath9k_capability_type type,
3412 u32 capability, u32 setting, int *status)
3413{
3414 struct ath_hal_5416 *ahp = AH5416(ah);
3415 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003416
Sujithf1dc5602008-10-29 10:16:30 +05303417 switch (type) {
3418 case ATH9K_CAP_TKIP_MIC:
3419 if (setting)
3420 ahp->ah_staId1Defaults |=
3421 AR_STA_ID1_CRPT_MIC_ENABLE;
3422 else
3423 ahp->ah_staId1Defaults &=
3424 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3425 return true;
3426 case ATH9K_CAP_DIVERSITY:
3427 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3428 if (setting)
3429 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3430 else
3431 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3432 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3433 return true;
3434 case ATH9K_CAP_MCAST_KEYSRCH:
3435 if (setting)
3436 ahp->ah_staId1Defaults |= AR_STA_ID1_MCAST_KSRCH;
3437 else
3438 ahp->ah_staId1Defaults &= ~AR_STA_ID1_MCAST_KSRCH;
3439 return true;
3440 case ATH9K_CAP_TSF_ADJUST:
3441 if (setting)
3442 ahp->ah_miscMode |= AR_PCU_TX_ADD_TSF;
3443 else
3444 ahp->ah_miscMode &= ~AR_PCU_TX_ADD_TSF;
3445 return true;
3446 default:
3447 return false;
3448 }
3449}
3450
3451/****************************/
3452/* GPIO / RFKILL / Antennae */
3453/****************************/
3454
3455static void ath9k_hw_gpio_cfg_output_mux(struct ath_hal *ah,
3456 u32 gpio, u32 type)
3457{
3458 int addr;
3459 u32 gpio_shift, tmp;
3460
3461 if (gpio > 11)
3462 addr = AR_GPIO_OUTPUT_MUX3;
3463 else if (gpio > 5)
3464 addr = AR_GPIO_OUTPUT_MUX2;
3465 else
3466 addr = AR_GPIO_OUTPUT_MUX1;
3467
3468 gpio_shift = (gpio % 6) * 5;
3469
3470 if (AR_SREV_9280_20_OR_LATER(ah)
3471 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3472 REG_RMW(ah, addr, (type << gpio_shift),
3473 (0x1f << gpio_shift));
3474 } else {
3475 tmp = REG_READ(ah, addr);
3476 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3477 tmp &= ~(0x1f << gpio_shift);
3478 tmp |= (type << gpio_shift);
3479 REG_WRITE(ah, addr, tmp);
3480 }
3481}
3482
3483void ath9k_hw_cfg_gpio_input(struct ath_hal *ah, u32 gpio)
3484{
3485 u32 gpio_shift;
3486
3487 ASSERT(gpio < ah->ah_caps.num_gpio_pins);
3488
3489 gpio_shift = gpio << 1;
3490
3491 REG_RMW(ah,
3492 AR_GPIO_OE_OUT,
3493 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3494 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3495}
3496
3497u32 ath9k_hw_gpio_get(struct ath_hal *ah, u32 gpio)
3498{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303499#define MS_REG_READ(x, y) \
3500 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3501
Sujithf1dc5602008-10-29 10:16:30 +05303502 if (gpio >= ah->ah_caps.num_gpio_pins)
3503 return 0xffffffff;
3504
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303505 if (AR_SREV_9285_10_OR_LATER(ah))
3506 return MS_REG_READ(AR9285, gpio) != 0;
3507 else if (AR_SREV_9280_10_OR_LATER(ah))
3508 return MS_REG_READ(AR928X, gpio) != 0;
3509 else
3510 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303511}
3512
3513void ath9k_hw_cfg_output(struct ath_hal *ah, u32 gpio,
3514 u32 ah_signal_type)
3515{
3516 u32 gpio_shift;
3517
3518 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3519
3520 gpio_shift = 2 * gpio;
3521
3522 REG_RMW(ah,
3523 AR_GPIO_OE_OUT,
3524 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3525 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3526}
3527
3528void ath9k_hw_set_gpio(struct ath_hal *ah, u32 gpio, u32 val)
3529{
3530 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3531 AR_GPIO_BIT(gpio));
3532}
3533
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303534#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujithf1dc5602008-10-29 10:16:30 +05303535void ath9k_enable_rfkill(struct ath_hal *ah)
3536{
3537 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3538 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
3539
3540 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
3541 AR_GPIO_INPUT_MUX2_RFSILENT);
3542
3543 ath9k_hw_cfg_gpio_input(ah, ah->ah_rfkill_gpio);
3544 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
3545}
3546#endif
3547
Sujithf1dc5602008-10-29 10:16:30 +05303548u32 ath9k_hw_getdefantenna(struct ath_hal *ah)
3549{
3550 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3551}
3552
3553void ath9k_hw_setantenna(struct ath_hal *ah, u32 antenna)
3554{
3555 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3556}
3557
3558bool ath9k_hw_setantennaswitch(struct ath_hal *ah,
3559 enum ath9k_ant_setting settings,
3560 struct ath9k_channel *chan,
3561 u8 *tx_chainmask,
3562 u8 *rx_chainmask,
3563 u8 *antenna_cfgd)
3564{
3565 struct ath_hal_5416 *ahp = AH5416(ah);
3566 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3567
3568 if (AR_SREV_9280(ah)) {
3569 if (!tx_chainmask_cfg) {
3570
3571 tx_chainmask_cfg = *tx_chainmask;
3572 rx_chainmask_cfg = *rx_chainmask;
3573 }
3574
3575 switch (settings) {
3576 case ATH9K_ANT_FIXED_A:
3577 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3578 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3579 *antenna_cfgd = true;
3580 break;
3581 case ATH9K_ANT_FIXED_B:
3582 if (ah->ah_caps.tx_chainmask >
3583 ATH9K_ANTENNA1_CHAINMASK) {
3584 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3585 }
3586 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3587 *antenna_cfgd = true;
3588 break;
3589 case ATH9K_ANT_VARIABLE:
3590 *tx_chainmask = tx_chainmask_cfg;
3591 *rx_chainmask = rx_chainmask_cfg;
3592 *antenna_cfgd = true;
3593 break;
3594 default:
3595 break;
3596 }
3597 } else {
3598 ahp->ah_diversityControl = settings;
3599 }
3600
3601 return true;
3602}
3603
3604/*********************/
3605/* General Operation */
3606/*********************/
3607
3608u32 ath9k_hw_getrxfilter(struct ath_hal *ah)
3609{
3610 u32 bits = REG_READ(ah, AR_RX_FILTER);
3611 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3612
3613 if (phybits & AR_PHY_ERR_RADAR)
3614 bits |= ATH9K_RX_FILTER_PHYRADAR;
3615 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3616 bits |= ATH9K_RX_FILTER_PHYERR;
3617
3618 return bits;
3619}
3620
3621void ath9k_hw_setrxfilter(struct ath_hal *ah, u32 bits)
3622{
3623 u32 phybits;
3624
3625 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3626 phybits = 0;
3627 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3628 phybits |= AR_PHY_ERR_RADAR;
3629 if (bits & ATH9K_RX_FILTER_PHYERR)
3630 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3631 REG_WRITE(ah, AR_PHY_ERR, phybits);
3632
3633 if (phybits)
3634 REG_WRITE(ah, AR_RXCFG,
3635 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3636 else
3637 REG_WRITE(ah, AR_RXCFG,
3638 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3639}
3640
3641bool ath9k_hw_phy_disable(struct ath_hal *ah)
3642{
3643 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3644}
3645
3646bool ath9k_hw_disable(struct ath_hal *ah)
3647{
3648 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3649 return false;
3650
3651 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3652}
3653
3654bool ath9k_hw_set_txpowerlimit(struct ath_hal *ah, u32 limit)
3655{
3656 struct ath9k_channel *chan = ah->ah_curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003657 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303658
3659 ah->ah_powerLimit = min(limit, (u32) MAX_RATE_POWER);
3660
3661 if (ath9k_hw_set_txpower(ah, chan,
3662 ath9k_regd_get_ctl(ah, chan),
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003663 channel->max_antenna_gain * 2,
3664 channel->max_power * 2,
Sujithf1dc5602008-10-29 10:16:30 +05303665 min((u32) MAX_RATE_POWER,
3666 (u32) ah->ah_powerLimit)) != 0)
3667 return false;
3668
3669 return true;
3670}
3671
3672void ath9k_hw_getmac(struct ath_hal *ah, u8 *mac)
3673{
3674 struct ath_hal_5416 *ahp = AH5416(ah);
3675
3676 memcpy(mac, ahp->ah_macaddr, ETH_ALEN);
3677}
3678
3679bool ath9k_hw_setmac(struct ath_hal *ah, const u8 *mac)
3680{
3681 struct ath_hal_5416 *ahp = AH5416(ah);
3682
3683 memcpy(ahp->ah_macaddr, mac, ETH_ALEN);
3684
3685 return true;
3686}
3687
3688void ath9k_hw_setopmode(struct ath_hal *ah)
3689{
3690 ath9k_hw_set_operating_mode(ah, ah->ah_opmode);
3691}
3692
3693void ath9k_hw_setmcastfilter(struct ath_hal *ah, u32 filter0, u32 filter1)
3694{
3695 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3696 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3697}
3698
3699void ath9k_hw_getbssidmask(struct ath_hal *ah, u8 *mask)
3700{
3701 struct ath_hal_5416 *ahp = AH5416(ah);
3702
3703 memcpy(mask, ahp->ah_bssidmask, ETH_ALEN);
3704}
3705
3706bool ath9k_hw_setbssidmask(struct ath_hal *ah, const u8 *mask)
3707{
3708 struct ath_hal_5416 *ahp = AH5416(ah);
3709
3710 memcpy(ahp->ah_bssidmask, mask, ETH_ALEN);
3711
3712 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(ahp->ah_bssidmask));
3713 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(ahp->ah_bssidmask + 4));
3714
3715 return true;
3716}
3717
3718void ath9k_hw_write_associd(struct ath_hal *ah, const u8 *bssid, u16 assocId)
3719{
3720 struct ath_hal_5416 *ahp = AH5416(ah);
3721
3722 memcpy(ahp->ah_bssid, bssid, ETH_ALEN);
3723 ahp->ah_assocId = assocId;
3724
3725 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(ahp->ah_bssid));
3726 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(ahp->ah_bssid + 4) |
3727 ((assocId & 0x3fff) << AR_BSS_ID1_AID_S));
3728}
3729
3730u64 ath9k_hw_gettsf64(struct ath_hal *ah)
3731{
3732 u64 tsf;
3733
3734 tsf = REG_READ(ah, AR_TSF_U32);
3735 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3736
3737 return tsf;
3738}
3739
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003740void ath9k_hw_settsf64(struct ath_hal *ah, u64 tsf64)
3741{
3742 REG_WRITE(ah, AR_TSF_L32, 0x00000000);
3743 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
3744 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
3745}
3746
Sujithf1dc5602008-10-29 10:16:30 +05303747void ath9k_hw_reset_tsf(struct ath_hal *ah)
3748{
3749 int count;
3750
3751 count = 0;
3752 while (REG_READ(ah, AR_SLP32_MODE) & AR_SLP32_TSF_WRITE_STATUS) {
3753 count++;
3754 if (count > 10) {
3755 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05303756 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Sujithf1dc5602008-10-29 10:16:30 +05303757 break;
3758 }
3759 udelay(10);
3760 }
3761 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003762}
3763
3764bool ath9k_hw_set_tsfadjust(struct ath_hal *ah, u32 setting)
3765{
3766 struct ath_hal_5416 *ahp = AH5416(ah);
3767
3768 if (setting)
3769 ahp->ah_miscMode |= AR_PCU_TX_ADD_TSF;
3770 else
3771 ahp->ah_miscMode &= ~AR_PCU_TX_ADD_TSF;
Sujithf1dc5602008-10-29 10:16:30 +05303772
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003773 return true;
3774}
3775
Sujithf1dc5602008-10-29 10:16:30 +05303776bool ath9k_hw_setslottime(struct ath_hal *ah, u32 us)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003777{
3778 struct ath_hal_5416 *ahp = AH5416(ah);
3779
Sujithf1dc5602008-10-29 10:16:30 +05303780 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
Sujith04bd46382008-11-28 22:18:05 +05303781 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
Sujithf1dc5602008-10-29 10:16:30 +05303782 ahp->ah_slottime = (u32) -1;
3783 return false;
3784 } else {
3785 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
3786 ahp->ah_slottime = us;
3787 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003788 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003789}
3790
Sujithf1dc5602008-10-29 10:16:30 +05303791void ath9k_hw_set11nmac2040(struct ath_hal *ah, enum ath9k_ht_macmode mode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003792{
Sujithf1dc5602008-10-29 10:16:30 +05303793 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003794
Sujithf1dc5602008-10-29 10:16:30 +05303795 if (mode == ATH9K_HT_MACMODE_2040 &&
3796 !ah->ah_config.cwm_ignore_extcca)
3797 macmode = AR_2040_JOINED_RX_CLEAR;
3798 else
3799 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003800
Sujithf1dc5602008-10-29 10:16:30 +05303801 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003802}
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303803
3804/***************************/
3805/* Bluetooth Coexistence */
3806/***************************/
3807
3808void ath9k_hw_btcoex_enable(struct ath_hal *ah)
3809{
3810 /* connect bt_active to baseband */
3811 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3812 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3813 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3814
3815 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3816 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3817
3818 /* Set input mux for bt_active to gpio pin */
3819 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3820 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
3821 ah->ah_btactive_gpio);
3822
3823 /* Configure the desired gpio port for input */
3824 ath9k_hw_cfg_gpio_input(ah, ah->ah_btactive_gpio);
3825
3826 /* Configure the desired GPIO port for TX_FRAME output */
3827 ath9k_hw_cfg_output(ah, ah->ah_wlanactive_gpio,
3828 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
3829}