blob: 88f8bfdbded49bebe5655d6907191630ae04d5c8 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
18#include <asm/unaligned.h>
19
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "hw.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070021#include "rc.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070022#include "initvals.h"
23
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080024#define ATH9K_CLOCK_RATE_CCK 22
25#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
26#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Sujithcbe61d82009-02-09 13:27:12 +053028static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -070029static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan);
Sujithcbe61d82009-02-09 13:27:12 +053030static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +053031 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +053032 u32 reg, u32 value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040034MODULE_AUTHOR("Atheros Communications");
35MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
36MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
37MODULE_LICENSE("Dual BSD/GPL");
38
39static int __init ath9k_init(void)
40{
41 return 0;
42}
43module_init(ath9k_init);
44
45static void __exit ath9k_exit(void)
46{
47 return;
48}
49module_exit(ath9k_exit);
50
Sujithf1dc5602008-10-29 10:16:30 +053051/********************/
52/* Helper Functions */
53/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070054
Sujithcbe61d82009-02-09 13:27:12 +053055static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053056{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070057 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053058
Sujith2660b812009-02-09 13:27:26 +053059 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080060 return usecs *ATH9K_CLOCK_RATE_CCK;
61 if (conf->channel->band == IEEE80211_BAND_2GHZ)
62 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
63 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053064}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070065
Sujithcbe61d82009-02-09 13:27:12 +053066static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053067{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070068 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053069
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080070 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053071 return ath9k_hw_mac_clks(ah, usecs) * 2;
72 else
73 return ath9k_hw_mac_clks(ah, usecs);
74}
75
Sujith0caa7b12009-02-16 13:23:20 +053076bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070077{
78 int i;
79
Sujith0caa7b12009-02-16 13:23:20 +053080 BUG_ON(timeout < AH_TIME_QUANTUM);
81
82 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070083 if ((REG_READ(ah, reg) & mask) == val)
84 return true;
85
86 udelay(AH_TIME_QUANTUM);
87 }
Sujith04bd46382008-11-28 22:18:05 +053088
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070089 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
90 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
91 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +053092
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070093 return false;
94}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040095EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070096
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070097u32 ath9k_hw_reverse_bits(u32 val, u32 n)
98{
99 u32 retval;
100 int i;
101
102 for (i = 0, retval = 0; i < n; i++) {
103 retval = (retval << 1) | (val & 1);
104 val >>= 1;
105 }
106 return retval;
107}
108
Sujithcbe61d82009-02-09 13:27:12 +0530109bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530110 u16 flags, u16 *low,
111 u16 *high)
112{
Sujith2660b812009-02-09 13:27:26 +0530113 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530114
115 if (flags & CHANNEL_5GHZ) {
116 *low = pCap->low_5ghz_chan;
117 *high = pCap->high_5ghz_chan;
118 return true;
119 }
120 if ((flags & CHANNEL_2GHZ)) {
121 *low = pCap->low_2ghz_chan;
122 *high = pCap->high_2ghz_chan;
123 return true;
124 }
125 return false;
126}
127
Sujithcbe61d82009-02-09 13:27:12 +0530128u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100129 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530130 u32 frameLen, u16 rateix,
131 bool shortPreamble)
132{
133 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530134
135 if (kbps == 0)
136 return 0;
137
Felix Fietkau545750d2009-11-23 22:21:01 +0100138 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530139 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530140 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100141 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530142 phyTime >>= 1;
143 numBits = frameLen << 3;
144 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
145 break;
Sujith46d14a52008-11-18 09:08:13 +0530146 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530147 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530148 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
149 numBits = OFDM_PLCP_BITS + (frameLen << 3);
150 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
151 txTime = OFDM_SIFS_TIME_QUARTER
152 + OFDM_PREAMBLE_TIME_QUARTER
153 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530154 } else if (ah->curchan &&
155 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530156 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
157 numBits = OFDM_PLCP_BITS + (frameLen << 3);
158 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
159 txTime = OFDM_SIFS_TIME_HALF +
160 OFDM_PREAMBLE_TIME_HALF
161 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
162 } else {
163 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
164 numBits = OFDM_PLCP_BITS + (frameLen << 3);
165 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
166 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
167 + (numSymbols * OFDM_SYMBOL_TIME);
168 }
169 break;
170 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700171 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100172 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530173 txTime = 0;
174 break;
175 }
176
177 return txTime;
178}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400179EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530180
Sujithcbe61d82009-02-09 13:27:12 +0530181void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530182 struct ath9k_channel *chan,
183 struct chan_centers *centers)
184{
185 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530186
187 if (!IS_CHAN_HT40(chan)) {
188 centers->ctl_center = centers->ext_center =
189 centers->synth_center = chan->channel;
190 return;
191 }
192
193 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
194 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
195 centers->synth_center =
196 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
197 extoff = 1;
198 } else {
199 centers->synth_center =
200 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
201 extoff = -1;
202 }
203
204 centers->ctl_center =
205 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700206 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530207 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700208 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530209}
210
211/******************/
212/* Chip Revisions */
213/******************/
214
Sujithcbe61d82009-02-09 13:27:12 +0530215static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530216{
217 u32 val;
218
219 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
220
221 if (val == 0xFF) {
222 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530223 ah->hw_version.macVersion =
224 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
225 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530226 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530227 } else {
228 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530229 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530230
Sujithd535a422009-02-09 13:27:06 +0530231 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530232
Sujithd535a422009-02-09 13:27:06 +0530233 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530234 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530235 }
236}
237
Sujithcbe61d82009-02-09 13:27:12 +0530238static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530239{
240 u32 val;
241 int i;
242
243 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
244
245 for (i = 0; i < 8; i++)
246 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
247 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
248 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
249
250 return ath9k_hw_reverse_bits(val, 8);
251}
252
253/************************************/
254/* HW Attach, Detach, Init Routines */
255/************************************/
256
Sujithcbe61d82009-02-09 13:27:12 +0530257static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530258{
Sujithfeed0292009-01-29 11:37:35 +0530259 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530260 return;
261
262 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
263 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
264 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
265 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
266 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
267 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
268 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
269 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
270 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
271
272 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
273}
274
Sujithcbe61d82009-02-09 13:27:12 +0530275static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530276{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700277 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530278 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
279 u32 regHold[2];
280 u32 patternData[4] = { 0x55555555,
281 0xaaaaaaaa,
282 0x66666666,
283 0x99999999 };
284 int i, j;
285
286 for (i = 0; i < 2; i++) {
287 u32 addr = regAddr[i];
288 u32 wrData, rdData;
289
290 regHold[i] = REG_READ(ah, addr);
291 for (j = 0; j < 0x100; j++) {
292 wrData = (j << 16) | j;
293 REG_WRITE(ah, addr, wrData);
294 rdData = REG_READ(ah, addr);
295 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700296 ath_print(common, ATH_DBG_FATAL,
297 "address test failed "
298 "addr: 0x%08x - wr:0x%08x != "
299 "rd:0x%08x\n",
300 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530301 return false;
302 }
303 }
304 for (j = 0; j < 4; j++) {
305 wrData = patternData[j];
306 REG_WRITE(ah, addr, wrData);
307 rdData = REG_READ(ah, addr);
308 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700309 ath_print(common, ATH_DBG_FATAL,
310 "address test failed "
311 "addr: 0x%08x - wr:0x%08x != "
312 "rd:0x%08x\n",
313 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530314 return false;
315 }
316 }
317 REG_WRITE(ah, regAddr[i], regHold[i]);
318 }
319 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530320
Sujithf1dc5602008-10-29 10:16:30 +0530321 return true;
322}
323
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700324static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700325{
326 int i;
327
Sujith2660b812009-02-09 13:27:26 +0530328 ah->config.dma_beacon_response_time = 2;
329 ah->config.sw_beacon_response_time = 10;
330 ah->config.additional_swba_backoff = 0;
331 ah->config.ack_6mb = 0x0;
332 ah->config.cwm_ignore_extcca = 0;
333 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530334 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530335 ah->config.pcie_waen = 0;
336 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530337 ah->config.ofdm_trig_low = 200;
338 ah->config.ofdm_trig_high = 500;
339 ah->config.cck_trig_high = 200;
340 ah->config.cck_trig_low = 100;
341 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700342
343 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530344 ah->config.spurchans[i][0] = AR_NO_SPUR;
345 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700346 }
347
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500348 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
349 ah->config.ht_enable = 1;
350 else
351 ah->config.ht_enable = 0;
352
Sujith0ce024c2009-12-14 14:57:00 +0530353 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400354
355 /*
356 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
357 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
358 * This means we use it for all AR5416 devices, and the few
359 * minor PCI AR9280 devices out there.
360 *
361 * Serialization is required because these devices do not handle
362 * well the case of two concurrent reads/writes due to the latency
363 * involved. During one read/write another read/write can be issued
364 * on another CPU while the previous read/write may still be working
365 * on our hardware, if we hit this case the hardware poops in a loop.
366 * We prevent this by serializing reads and writes.
367 *
368 * This issue is not present on PCI-Express devices or pre-AR5416
369 * devices (legacy, 802.11abg).
370 */
371 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700372 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700373}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400374EXPORT_SYMBOL(ath9k_hw_init);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700375
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700376static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700377{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700378 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
379
380 regulatory->country_code = CTRY_DEFAULT;
381 regulatory->power_limit = MAX_RATE_POWER;
382 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
383
Sujithd535a422009-02-09 13:27:06 +0530384 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530385 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700386
387 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700388 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530389 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390 if (!AR_SREV_9100(ah))
391 ah->ah_flags = AH_USE_EEPROM;
392
Sujith2660b812009-02-09 13:27:26 +0530393 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530394 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
395 ah->beacon_interval = 100;
396 ah->enable_32kHz_clock = DONT_USE_32KHZ;
397 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530398 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200399 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400}
401
Sujithcbe61d82009-02-09 13:27:12 +0530402static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403{
404 u32 val;
405
406 REG_WRITE(ah, AR_PHY(0), 0x00000007);
407
408 val = ath9k_hw_get_radiorev(ah);
409 switch (val & AR_RADIO_SREV_MAJOR) {
410 case 0:
411 val = AR_RAD5133_SREV_MAJOR;
412 break;
413 case AR_RAD5133_SREV_MAJOR:
414 case AR_RAD5122_SREV_MAJOR:
415 case AR_RAD2133_SREV_MAJOR:
416 case AR_RAD2122_SREV_MAJOR:
417 break;
418 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700419 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
420 "Radio Chip Rev 0x%02X not supported\n",
421 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422 return -EOPNOTSUPP;
423 }
424
Sujithd535a422009-02-09 13:27:06 +0530425 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426
427 return 0;
428}
429
Sujithcbe61d82009-02-09 13:27:12 +0530430static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700432 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530433 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530435 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436
Sujithf1dc5602008-10-29 10:16:30 +0530437 sum = 0;
438 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530439 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530440 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700441 common->macaddr[2 * i] = eeval >> 8;
442 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 }
Sujithd8baa932009-03-30 15:28:25 +0530444 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530445 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447 return 0;
448}
449
Sujithcbe61d82009-02-09 13:27:12 +0530450static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530451{
452 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530453
Sujithf74df6f2009-02-09 13:27:24 +0530454 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
455 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530456
457 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530458 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530459 ar9280Modes_backoff_13db_rxgain_9280_2,
460 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
461 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530462 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530463 ar9280Modes_backoff_23db_rxgain_9280_2,
464 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
465 else
Sujith2660b812009-02-09 13:27:26 +0530466 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530467 ar9280Modes_original_rxgain_9280_2,
468 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530469 } else {
Sujith2660b812009-02-09 13:27:26 +0530470 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530471 ar9280Modes_original_rxgain_9280_2,
472 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530473 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530474}
475
Sujithcbe61d82009-02-09 13:27:12 +0530476static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530477{
478 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530479
Sujithf74df6f2009-02-09 13:27:24 +0530480 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
481 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530482
483 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530484 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530485 ar9280Modes_high_power_tx_gain_9280_2,
486 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
487 else
Sujith2660b812009-02-09 13:27:26 +0530488 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530489 ar9280Modes_original_tx_gain_9280_2,
490 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530491 } else {
Sujith2660b812009-02-09 13:27:26 +0530492 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530493 ar9280Modes_original_tx_gain_9280_2,
494 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530495 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530496}
497
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700498static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700499{
500 int ecode;
501
Sujith527d4852010-03-17 14:25:16 +0530502 if (!AR_SREV_9271(ah)) {
503 if (!ath9k_hw_chip_test(ah))
504 return -ENODEV;
505 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506
507 ecode = ath9k_hw_rf_claim(ah);
508 if (ecode != 0)
509 return ecode;
510
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700511 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512 if (ecode != 0)
513 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530514
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700515 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
516 "Eeprom VER: %d, REV: %d\n",
517 ah->eep_ops->get_eeprom_ver(ah),
518 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530519
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400520 if (!AR_SREV_9280_10_OR_LATER(ah)) {
521 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
522 if (ecode) {
523 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
524 "Failed allocating banks for "
525 "external radio\n");
526 return ecode;
527 }
528 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700529
530 if (!AR_SREV_9100(ah)) {
531 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700532 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700533 }
Sujithf1dc5602008-10-29 10:16:30 +0530534
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700535 return 0;
536}
537
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700538static bool ath9k_hw_devid_supported(u16 devid)
539{
540 switch (devid) {
541 case AR5416_DEVID_PCI:
542 case AR5416_DEVID_PCIE:
543 case AR5416_AR9100_DEVID:
544 case AR9160_DEVID_PCI:
545 case AR9280_DEVID_PCI:
546 case AR9280_DEVID_PCIE:
547 case AR9285_DEVID_PCIE:
548 case AR5416_DEVID_AR9287_PCI:
549 case AR5416_DEVID_AR9287_PCIE:
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500550 case AR2427_DEVID_PCIE:
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700551 return true;
552 default:
553 break;
554 }
555 return false;
556}
557
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700558static bool ath9k_hw_macversion_supported(u32 macversion)
559{
560 switch (macversion) {
561 case AR_SREV_VERSION_5416_PCI:
562 case AR_SREV_VERSION_5416_PCIE:
563 case AR_SREV_VERSION_9160:
564 case AR_SREV_VERSION_9100:
565 case AR_SREV_VERSION_9280:
566 case AR_SREV_VERSION_9285:
567 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400568 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400569 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700570 default:
571 break;
572 }
573 return false;
574}
575
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700576static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700577{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578 if (AR_SREV_9160_10_OR_LATER(ah)) {
579 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530580 ah->iq_caldata.calData = &iq_cal_single_sample;
581 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700582 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530583 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700584 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530585 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 &adc_init_dc_cal;
587 } else {
Sujith2660b812009-02-09 13:27:26 +0530588 ah->iq_caldata.calData = &iq_cal_multi_sample;
589 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700590 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530591 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530593 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700594 &adc_init_dc_cal;
595 }
Sujith2660b812009-02-09 13:27:26 +0530596 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700598}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700600static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
601{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400602 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400603 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
604 ARRAY_SIZE(ar9271Modes_9271), 6);
605 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
606 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530607 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
608 ar9271Common_normal_cck_fir_coeff_9271,
609 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
610 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
611 ar9271Common_japan_2484_cck_fir_coeff_9271,
612 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400613 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
614 ar9271Modes_9271_1_0_only,
615 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530616 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
617 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
618 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
619 ar9271Modes_high_power_tx_gain_9271,
620 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
621 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
622 ar9271Modes_normal_power_tx_gain_9271,
623 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400624 return;
625 }
626
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530627 if (AR_SREV_9287_11_OR_LATER(ah)) {
628 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
629 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
630 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
631 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
632 if (ah->config.pcie_clock_req)
633 INIT_INI_ARRAY(&ah->iniPcieSerdes,
634 ar9287PciePhy_clkreq_off_L1_9287_1_1,
635 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
636 else
637 INIT_INI_ARRAY(&ah->iniPcieSerdes,
638 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
639 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
640 2);
641 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
642 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
643 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
644 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
645 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530647 if (ah->config.pcie_clock_req)
648 INIT_INI_ARRAY(&ah->iniPcieSerdes,
649 ar9287PciePhy_clkreq_off_L1_9287_1_0,
650 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
651 else
652 INIT_INI_ARRAY(&ah->iniPcieSerdes,
653 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
654 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
655 2);
656 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
657
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530658
Sujith2660b812009-02-09 13:27:26 +0530659 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530660 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530661 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530662 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
663
Sujith2660b812009-02-09 13:27:26 +0530664 if (ah->config.pcie_clock_req) {
665 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530666 ar9285PciePhy_clkreq_off_L1_9285_1_2,
667 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
668 } else {
Sujith2660b812009-02-09 13:27:26 +0530669 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530670 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
671 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
672 2);
673 }
674 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530675 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530676 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530677 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530678 ARRAY_SIZE(ar9285Common_9285), 2);
679
Sujith2660b812009-02-09 13:27:26 +0530680 if (ah->config.pcie_clock_req) {
681 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530682 ar9285PciePhy_clkreq_off_L1_9285,
683 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
684 } else {
Sujith2660b812009-02-09 13:27:26 +0530685 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530686 ar9285PciePhy_clkreq_always_on_L1_9285,
687 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
688 }
689 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530690 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700691 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530692 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700693 ARRAY_SIZE(ar9280Common_9280_2), 2);
694
Sujith2660b812009-02-09 13:27:26 +0530695 if (ah->config.pcie_clock_req) {
696 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530697 ar9280PciePhy_clkreq_off_L1_9280,
698 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700699 } else {
Sujith2660b812009-02-09 13:27:26 +0530700 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530701 ar9280PciePhy_clkreq_always_on_L1_9280,
702 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 }
Sujith2660b812009-02-09 13:27:26 +0530704 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700705 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530706 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530708 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530710 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 ARRAY_SIZE(ar9280Common_9280), 2);
712 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530713 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530715 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700716 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530717 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700718 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530719 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530721 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530723 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700724 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530725 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530727 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700730 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732 ARRAY_SIZE(ar5416Bank7_9160), 2);
733 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530734 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700735 ar5416Addac_91601_1,
736 ARRAY_SIZE(ar5416Addac_91601_1), 2);
737 } else {
Sujith2660b812009-02-09 13:27:26 +0530738 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739 ARRAY_SIZE(ar5416Addac_9160), 2);
740 }
741 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530742 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530744 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530748 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530750 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530752 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530754 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar5416Addac_9100), 2);
764 } else {
Sujith2660b812009-02-09 13:27:26 +0530765 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530767 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700768 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530773 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530777 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530785 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700786 ARRAY_SIZE(ar5416Addac), 2);
787 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700788}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700790static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
791{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530792 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530793 INIT_INI_ARRAY(&ah->iniModesRxGain,
794 ar9287Modes_rx_gain_9287_1_1,
795 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
796 else if (AR_SREV_9287_10(ah))
797 INIT_INI_ARRAY(&ah->iniModesRxGain,
798 ar9287Modes_rx_gain_9287_1_0,
799 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
800 else if (AR_SREV_9280_20(ah))
801 ath9k_hw_init_rxgain_ini(ah);
802
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530803 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530804 INIT_INI_ARRAY(&ah->iniModesTxGain,
805 ar9287Modes_tx_gain_9287_1_1,
806 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
807 } else if (AR_SREV_9287_10(ah)) {
808 INIT_INI_ARRAY(&ah->iniModesTxGain,
809 ar9287Modes_tx_gain_9287_1_0,
810 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
811 } else if (AR_SREV_9280_20(ah)) {
812 ath9k_hw_init_txgain_ini(ah);
813 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530814 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
815
816 /* txgain table */
817 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530818 if (AR_SREV_9285E_20(ah)) {
819 INIT_INI_ARRAY(&ah->iniModesTxGain,
820 ar9285Modes_XE2_0_high_power,
821 ARRAY_SIZE(
822 ar9285Modes_XE2_0_high_power), 6);
823 } else {
824 INIT_INI_ARRAY(&ah->iniModesTxGain,
825 ar9285Modes_high_power_tx_gain_9285_1_2,
826 ARRAY_SIZE(
827 ar9285Modes_high_power_tx_gain_9285_1_2), 6);
828 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530829 } else {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530830 if (AR_SREV_9285E_20(ah)) {
831 INIT_INI_ARRAY(&ah->iniModesTxGain,
832 ar9285Modes_XE2_0_normal_power,
833 ARRAY_SIZE(
834 ar9285Modes_XE2_0_normal_power), 6);
835 } else {
836 INIT_INI_ARRAY(&ah->iniModesTxGain,
837 ar9285Modes_original_tx_gain_9285_1_2,
838 ARRAY_SIZE(
839 ar9285Modes_original_tx_gain_9285_1_2), 6);
840 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530841 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530842 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700843}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530844
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100845static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700846{
847 u32 i, j;
Sujith06d0f062009-02-12 10:06:45 +0530848
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100849 if (ah->hw_version.devid == AR9280_DEVID_PCI) {
Sujith06d0f062009-02-12 10:06:45 +0530850
851 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530852 for (i = 0; i < ah->iniModes.ia_rows; i++) {
853 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854
Sujith2660b812009-02-09 13:27:26 +0530855 for (j = 1; j < ah->iniModes.ia_columns; j++) {
856 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700857
Sujith2660b812009-02-09 13:27:26 +0530858 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530859 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530860 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700861 reg, val);
862 }
863 }
864 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700865}
866
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700867int ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700868{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700869 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700870 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700871
Sujithffa49f82010-04-01 10:28:23 +0530872 if (common->bus_ops->ath_bus_type != ATH_USB) {
873 if (!ath9k_hw_devid_supported(ah->hw_version.devid)) {
874 ath_print(common, ATH_DBG_FATAL,
875 "Unsupported device ID: 0x%0x\n",
876 ah->hw_version.devid);
877 return -EOPNOTSUPP;
878 }
Luis R. Rodriguez3ca34032009-09-23 23:07:01 -0400879 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700880
881 ath9k_hw_init_defaults(ah);
882 ath9k_hw_init_config(ah);
883
884 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700885 ath_print(common, ATH_DBG_FATAL,
886 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700887 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700888 }
889
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700890 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700891 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700892 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700893 }
894
895 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
896 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
897 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
898 ah->config.serialize_regmode =
899 SER_REG_MODE_ON;
900 } else {
901 ah->config.serialize_regmode =
902 SER_REG_MODE_OFF;
903 }
904 }
905
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700906 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700907 ah->config.serialize_regmode);
908
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500909 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
910 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
911 else
912 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
913
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700914 if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700915 ath_print(common, ATH_DBG_FATAL,
916 "Mac Chip Rev 0x%02x.%x is not supported by "
917 "this driver\n", ah->hw_version.macVersion,
918 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700919 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700920 }
921
922 if (AR_SREV_9100(ah)) {
923 ah->iq_caldata.calData = &iq_cal_multi_sample;
924 ah->supp_cals = IQ_MISMATCH_CAL;
925 ah->is_pciexpress = false;
926 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400927
928 if (AR_SREV_9271(ah))
929 ah->is_pciexpress = false;
930
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700931 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
932
933 ath9k_hw_init_cal_settings(ah);
934
935 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400936 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700937 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400938 ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400939 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_9280_spur_mitigate;
940 } else {
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400941 ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400942 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_spur_mitigate;
943 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700944
945 ath9k_hw_init_mode_regs(ah);
946
947 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530948 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700949 else
950 ath9k_hw_disablepcie(ah);
951
Sujith193cd452009-09-18 15:04:07 +0530952 /* Support for Japan ch.14 (2484) spread */
953 if (AR_SREV_9287_11_OR_LATER(ah)) {
954 INIT_INI_ARRAY(&ah->iniCckfirNormal,
955 ar9287Common_normal_cck_fir_coeff_92871_1,
956 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
957 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
958 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
959 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
960 }
961
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700962 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700963 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700964 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700965
966 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100967 r = ath9k_hw_fill_cap_info(ah);
968 if (r)
969 return r;
970
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100971 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530972
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700973 r = ath9k_hw_init_macaddr(ah);
974 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700975 ath_print(common, ATH_DBG_FATAL,
976 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700977 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700978 }
979
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400980 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530981 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700982 else
Sujith2660b812009-02-09 13:27:26 +0530983 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700984
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700985 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700986
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400987 common->state = ATH_HW_INITIALIZED;
988
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700989 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700990}
991
Sujithcbe61d82009-02-09 13:27:12 +0530992static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530993 struct ath9k_channel *chan)
994{
995 u32 synthDelay;
996
997 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530998 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530999 synthDelay = (4 * synthDelay) / 22;
1000 else
1001 synthDelay /= 10;
1002
1003 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1004
1005 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1006}
1007
Sujithcbe61d82009-02-09 13:27:12 +05301008static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301009{
1010 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1011 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1012
1013 REG_WRITE(ah, AR_QOS_NO_ACK,
1014 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1015 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1016 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1017
1018 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1019 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1020 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1021 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1022 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1023}
1024
Sujithcbe61d82009-02-09 13:27:12 +05301025static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301026 struct ath9k_channel *chan)
1027{
1028 u32 pll;
1029
1030 if (AR_SREV_9100(ah)) {
1031 if (chan && IS_CHAN_5GHZ(chan))
1032 pll = 0x1450;
1033 else
1034 pll = 0x1458;
1035 } else {
1036 if (AR_SREV_9280_10_OR_LATER(ah)) {
1037 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1038
1039 if (chan && IS_CHAN_HALF_RATE(chan))
1040 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1041 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1042 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1043
1044 if (chan && IS_CHAN_5GHZ(chan)) {
1045 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1046
1047
1048 if (AR_SREV_9280_20(ah)) {
1049 if (((chan->channel % 20) == 0)
1050 || ((chan->channel % 10) == 0))
1051 pll = 0x2850;
1052 else
1053 pll = 0x142c;
1054 }
1055 } else {
1056 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1057 }
1058
1059 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1060
1061 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1062
1063 if (chan && IS_CHAN_HALF_RATE(chan))
1064 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1065 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1066 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1067
1068 if (chan && IS_CHAN_5GHZ(chan))
1069 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1070 else
1071 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1072 } else {
1073 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1074
1075 if (chan && IS_CHAN_HALF_RATE(chan))
1076 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1077 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1078 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1079
1080 if (chan && IS_CHAN_5GHZ(chan))
1081 pll |= SM(0xa, AR_RTC_PLL_DIV);
1082 else
1083 pll |= SM(0xb, AR_RTC_PLL_DIV);
1084 }
1085 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001086 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301087
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001088 /* Switch the core clock for ar9271 to 117Mhz */
1089 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301090 udelay(500);
1091 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001092 }
1093
Sujithf1dc5602008-10-29 10:16:30 +05301094 udelay(RTC_PLL_SETTLE_DELAY);
1095
1096 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1097}
1098
Sujithcbe61d82009-02-09 13:27:12 +05301099static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301100{
Sujithf1dc5602008-10-29 10:16:30 +05301101 int rx_chainmask, tx_chainmask;
1102
Sujith2660b812009-02-09 13:27:26 +05301103 rx_chainmask = ah->rxchainmask;
1104 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301105
1106 switch (rx_chainmask) {
1107 case 0x5:
1108 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1109 AR_PHY_SWAP_ALT_CHAIN);
1110 case 0x3:
Sujithcb53a152009-11-16 11:40:57 +05301111 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
Sujithf1dc5602008-10-29 10:16:30 +05301112 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1113 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1114 break;
1115 }
1116 case 0x1:
1117 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301118 case 0x7:
1119 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1120 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1121 break;
1122 default:
1123 break;
1124 }
1125
1126 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1127 if (tx_chainmask == 0x5) {
1128 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1129 AR_PHY_SWAP_ALT_CHAIN);
1130 }
1131 if (AR_SREV_9100(ah))
1132 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1133 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1134}
1135
Sujithcbe61d82009-02-09 13:27:12 +05301136static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001137 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301138{
Pavel Roskin152d5302010-03-31 18:05:37 -04001139 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301140 AR_IMR_TXURN |
1141 AR_IMR_RXERR |
1142 AR_IMR_RXORN |
1143 AR_IMR_BCNMISC;
1144
Sujith0ce024c2009-12-14 14:57:00 +05301145 if (ah->config.rx_intr_mitigation)
Pavel Roskin152d5302010-03-31 18:05:37 -04001146 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301147 else
Pavel Roskin152d5302010-03-31 18:05:37 -04001148 imr_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301149
Pavel Roskin152d5302010-03-31 18:05:37 -04001150 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301151
Colin McCabed97809d2008-12-01 13:38:55 -08001152 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -04001153 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301154
Pavel Roskin152d5302010-03-31 18:05:37 -04001155 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001156 ah->imrs2_reg |= AR_IMR_S2_GTT;
1157 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301158
1159 if (!AR_SREV_9100(ah)) {
1160 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1161 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1162 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1163 }
1164}
1165
Felix Fietkau0005baf2010-01-15 02:33:40 +01001166static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301167{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001168 u32 val = ath9k_hw_mac_to_clks(ah, us);
1169 val = min(val, (u32) 0xFFFF);
1170 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301171}
1172
Felix Fietkau0005baf2010-01-15 02:33:40 +01001173static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301174{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001175 u32 val = ath9k_hw_mac_to_clks(ah, us);
1176 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1177 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1178}
1179
1180static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1181{
1182 u32 val = ath9k_hw_mac_to_clks(ah, us);
1183 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1184 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301185}
1186
Sujithcbe61d82009-02-09 13:27:12 +05301187static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301188{
Sujithf1dc5602008-10-29 10:16:30 +05301189 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001190 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1191 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301192 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301193 return false;
1194 } else {
1195 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301196 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301197 return true;
1198 }
1199}
1200
Felix Fietkau0005baf2010-01-15 02:33:40 +01001201void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301202{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001203 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1204 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001205 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001206 int sifstime;
1207
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001208 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1209 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301210
Sujith2660b812009-02-09 13:27:26 +05301211 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301212 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301213 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001214
1215 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1216 sifstime = 16;
1217 else
1218 sifstime = 10;
1219
Felix Fietkaue239d852010-01-15 02:34:58 +01001220 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1221 slottime = ah->slottime + 3 * ah->coverage_class;
1222 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001223
1224 /*
1225 * Workaround for early ACK timeouts, add an offset to match the
1226 * initval's 64us ack timeout value.
1227 * This was initially only meant to work around an issue with delayed
1228 * BA frames in some implementations, but it has been found to fix ACK
1229 * timeout issues in other cases as well.
1230 */
1231 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1232 acktimeout += 64 - sifstime - ah->slottime;
1233
Felix Fietkaue239d852010-01-15 02:34:58 +01001234 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001235 ath9k_hw_set_ack_timeout(ah, acktimeout);
1236 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301237 if (ah->globaltxtimeout != (u32) -1)
1238 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301239}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001240EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301241
Sujith285f2dd2010-01-08 10:36:07 +05301242void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001244 struct ath_common *common = ath9k_hw_common(ah);
1245
Sujith736b3a22010-03-17 14:25:24 +05301246 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001247 goto free_hw;
1248
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001250 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001252 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001253
1254free_hw:
Luis R. Rodriguezdc51dd52009-10-19 02:33:39 -04001255 if (!AR_SREV_9280_10_OR_LATER(ah))
1256 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257}
Sujith285f2dd2010-01-08 10:36:07 +05301258EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259
Sujithf1dc5602008-10-29 10:16:30 +05301260/*******/
1261/* INI */
1262/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001263
Sujithcbe61d82009-02-09 13:27:12 +05301264static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301265 struct ath9k_channel *chan)
1266{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001267 u32 val;
1268
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301269 /*
1270 * Set the RX_ABORT and RX_DIS and clear if off only after
1271 * RXE is set for MAC. This prevents frames with corrupted
1272 * descriptor status.
1273 */
1274 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1275
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301276 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith70807e92010-03-17 14:25:14 +05301277 val = REG_READ(ah, AR_PCU_MISC_MODE2);
1278
1279 if (!AR_SREV_9271(ah))
1280 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301281
1282 if (AR_SREV_9287_10_OR_LATER(ah))
1283 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
1284
1285 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
1286 }
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301287
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001288 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301289 AR_SREV_9280_10_OR_LATER(ah))
1290 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001291 /*
1292 * Disable BB clock gating
1293 * Necessary to avoid issues on AR5416 2.0
1294 */
Sujithf1dc5602008-10-29 10:16:30 +05301295 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
Felix Fietkau7bfbae12010-02-24 04:43:05 +01001296
1297 /*
1298 * Disable RIFS search on some chips to avoid baseband
1299 * hang issues.
1300 */
1301 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
1302 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
1303 val &= ~AR_PHY_RIFS_INIT_DELAY;
1304 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
1305 }
Sujithf1dc5602008-10-29 10:16:30 +05301306}
1307
Sujithcbe61d82009-02-09 13:27:12 +05301308static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301309 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301310 u32 reg, u32 value)
1311{
1312 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001313 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301314
Sujithd535a422009-02-09 13:27:06 +05301315 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301316 case AR9280_DEVID_PCI:
1317 if (reg == 0x7894) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001318 ath_print(common, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301319 "ini VAL: %x EEPROM: %x\n", value,
1320 (pBase->version & 0xff));
1321
1322 if ((pBase->version & 0xff) > 0x0a) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001323 ath_print(common, ATH_DBG_EEPROM,
1324 "PWDCLKIND: %d\n",
1325 pBase->pwdclkind);
Sujithf1dc5602008-10-29 10:16:30 +05301326 value &= ~AR_AN_TOP2_PWDCLKIND;
1327 value |= AR_AN_TOP2_PWDCLKIND &
1328 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1329 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001330 ath_print(common, ATH_DBG_EEPROM,
1331 "PWDCLKIND Earlier Rev\n");
Sujithf1dc5602008-10-29 10:16:30 +05301332 }
1333
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001334 ath_print(common, ATH_DBG_EEPROM,
1335 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001336 }
Sujithf1dc5602008-10-29 10:16:30 +05301337 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338 }
1339
Sujithf1dc5602008-10-29 10:16:30 +05301340 return value;
1341}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001342
Sujithcbe61d82009-02-09 13:27:12 +05301343static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301344 struct ar5416_eeprom_def *pEepData,
1345 u32 reg, u32 value)
1346{
Sujith2660b812009-02-09 13:27:26 +05301347 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301348 return value;
1349 else
1350 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1351}
1352
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301353static void ath9k_olc_init(struct ath_hw *ah)
1354{
1355 u32 i;
1356
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301357 if (OLC_FOR_AR9287_10_LATER) {
1358 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1359 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1360 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1361 AR9287_AN_TXPC0_TXPCMODE,
1362 AR9287_AN_TXPC0_TXPCMODE_S,
1363 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1364 udelay(100);
1365 } else {
1366 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1367 ah->originalGain[i] =
1368 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1369 AR_PHY_TX_GAIN);
1370 ah->PDADCdelta = 0;
1371 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301372}
1373
Bob Copeland3a702e42009-03-30 22:30:29 -04001374static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1375 struct ath9k_channel *chan)
1376{
1377 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1378
1379 if (IS_CHAN_B(chan))
1380 ctl |= CTL_11B;
1381 else if (IS_CHAN_G(chan))
1382 ctl |= CTL_11G;
1383 else
1384 ctl |= CTL_11A;
1385
1386 return ctl;
1387}
1388
Sujithcbe61d82009-02-09 13:27:12 +05301389static int ath9k_hw_process_ini(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001390 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301391{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001392 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301393 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001394 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301395 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001396
Sujithf1dc5602008-10-29 10:16:30 +05301397 switch (chan->chanmode) {
1398 case CHANNEL_A:
1399 case CHANNEL_A_HT20:
1400 modesIndex = 1;
1401 freqIndex = 1;
1402 break;
1403 case CHANNEL_A_HT40PLUS:
1404 case CHANNEL_A_HT40MINUS:
1405 modesIndex = 2;
1406 freqIndex = 1;
1407 break;
1408 case CHANNEL_G:
1409 case CHANNEL_G_HT20:
1410 case CHANNEL_B:
1411 modesIndex = 4;
1412 freqIndex = 2;
1413 break;
1414 case CHANNEL_G_HT40PLUS:
1415 case CHANNEL_G_HT40MINUS:
1416 modesIndex = 3;
1417 freqIndex = 2;
1418 break;
1419
1420 default:
1421 return -EINVAL;
1422 }
1423
Sujith70807e92010-03-17 14:25:14 +05301424 /* Set correct baseband to analog shift setting to access analog chips */
Sujithf1dc5602008-10-29 10:16:30 +05301425 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujith70807e92010-03-17 14:25:14 +05301426
1427 /* Write ADDAC shifts */
Sujithf1dc5602008-10-29 10:16:30 +05301428 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301429 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301430
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001431 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301432 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301433 } else {
1434 struct ar5416IniArray temp;
1435 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301436 sizeof(u32) * ah->iniAddac.ia_rows *
1437 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301438
Sujith70807e92010-03-17 14:25:14 +05301439 /* For AR5416 2.0/2.1 */
Sujith2660b812009-02-09 13:27:26 +05301440 memcpy(ah->addac5416_21,
1441 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301442
Sujith70807e92010-03-17 14:25:14 +05301443 /* override CLKDRV value at [row, column] = [31, 1] */
Sujith2660b812009-02-09 13:27:26 +05301444 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301445
Sujith2660b812009-02-09 13:27:26 +05301446 temp.ia_array = ah->addac5416_21;
1447 temp.ia_columns = ah->iniAddac.ia_columns;
1448 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301449 REG_WRITE_ARRAY(&temp, 1, regWrites);
1450 }
1451
1452 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1453
Sujith2660b812009-02-09 13:27:26 +05301454 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1455 u32 reg = INI_RA(&ah->iniModes, i, 0);
1456 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301457
Sujithf1dc5602008-10-29 10:16:30 +05301458 REG_WRITE(ah, reg, val);
1459
1460 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301461 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301462 udelay(100);
1463 }
1464
1465 DO_DELAY(regWrites);
1466 }
1467
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301468 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301469 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301470
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301471 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1472 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301473 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301474
Sujith70807e92010-03-17 14:25:14 +05301475 if (AR_SREV_9271_10(ah))
1476 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
1477 modesIndex, regWrites);
1478
1479 /* Write common array parameters */
Sujith2660b812009-02-09 13:27:26 +05301480 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1481 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1482 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301483
1484 REG_WRITE(ah, reg, val);
1485
1486 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301487 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301488 udelay(100);
1489 }
1490
1491 DO_DELAY(regWrites);
1492 }
1493
Sujith70807e92010-03-17 14:25:14 +05301494 if (AR_SREV_9271(ah)) {
1495 if (ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE) == 1)
1496 REG_WRITE_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
1497 modesIndex, regWrites);
1498 else
1499 REG_WRITE_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
1500 modesIndex, regWrites);
1501 }
Sujithf1dc5602008-10-29 10:16:30 +05301502
Sujith70807e92010-03-17 14:25:14 +05301503 ath9k_hw_write_regs(ah, freqIndex, regWrites);
Luis R. Rodriguez85643282009-10-19 02:33:33 -04001504
Sujithf1dc5602008-10-29 10:16:30 +05301505 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301506 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301507 regWrites);
1508 }
1509
1510 ath9k_hw_override_ini(ah, chan);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001511 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301512 ath9k_hw_init_chain_masks(ah);
1513
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301514 if (OLC_FOR_AR9280_20_LATER)
1515 ath9k_olc_init(ah);
1516
Sujith70807e92010-03-17 14:25:14 +05301517 /* Set TX power */
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001518 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001519 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001520 channel->max_antenna_gain * 2,
1521 channel->max_power * 2,
1522 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001523 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001524
Sujith70807e92010-03-17 14:25:14 +05301525 /* Write analog registers */
Sujithf1dc5602008-10-29 10:16:30 +05301526 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001527 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1528 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001529 return -EIO;
1530 }
1531
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001532 return 0;
1533}
1534
Sujithf1dc5602008-10-29 10:16:30 +05301535/****************************************/
1536/* Reset and Channel Switching Routines */
1537/****************************************/
1538
Sujithcbe61d82009-02-09 13:27:12 +05301539static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301540{
1541 u32 rfMode = 0;
1542
1543 if (chan == NULL)
1544 return;
1545
1546 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1547 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1548
1549 if (!AR_SREV_9280_10_OR_LATER(ah))
1550 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1551 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1552
1553 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1554 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1555
1556 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1557}
1558
Sujithcbe61d82009-02-09 13:27:12 +05301559static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301560{
1561 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1562}
1563
Sujithcbe61d82009-02-09 13:27:12 +05301564static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301565{
1566 u32 regval;
1567
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001568 /*
1569 * set AHB_MODE not to do cacheline prefetches
1570 */
Sujithf1dc5602008-10-29 10:16:30 +05301571 regval = REG_READ(ah, AR_AHB_MODE);
1572 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1573
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001574 /*
1575 * let mac dma reads be in 128 byte chunks
1576 */
Sujithf1dc5602008-10-29 10:16:30 +05301577 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1578 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1579
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001580 /*
1581 * Restore TX Trigger Level to its pre-reset value.
1582 * The initial value depends on whether aggregation is enabled, and is
1583 * adjusted whenever underruns are detected.
1584 */
Sujith2660b812009-02-09 13:27:26 +05301585 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301586
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001587 /*
1588 * let mac dma writes be in 128 byte chunks
1589 */
Sujithf1dc5602008-10-29 10:16:30 +05301590 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1591 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1592
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001593 /*
1594 * Setup receive FIFO threshold to hold off TX activities
1595 */
Sujithf1dc5602008-10-29 10:16:30 +05301596 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1597
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001598 /*
1599 * reduce the number of usable entries in PCU TXBUF to avoid
1600 * wrap around issues.
1601 */
Sujithf1dc5602008-10-29 10:16:30 +05301602 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001603 /* For AR9285 the number of Fifos are reduced to half.
1604 * So set the usable tx buf size also to half to
1605 * avoid data/delimiter underruns
1606 */
Sujithf1dc5602008-10-29 10:16:30 +05301607 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1608 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001609 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301610 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1611 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1612 }
1613}
1614
Sujithcbe61d82009-02-09 13:27:12 +05301615static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301616{
1617 u32 val;
1618
1619 val = REG_READ(ah, AR_STA_ID1);
1620 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1621 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001622 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301623 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1624 | AR_STA_ID1_KSRCH_MODE);
1625 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1626 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001627 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001628 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301629 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1630 | AR_STA_ID1_KSRCH_MODE);
1631 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1632 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001633 case NL80211_IFTYPE_STATION:
1634 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301635 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1636 break;
1637 }
1638}
1639
Sujithcbe61d82009-02-09 13:27:12 +05301640static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001641 u32 coef_scaled,
1642 u32 *coef_mantissa,
1643 u32 *coef_exponent)
1644{
1645 u32 coef_exp, coef_man;
1646
1647 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1648 if ((coef_scaled >> coef_exp) & 0x1)
1649 break;
1650
1651 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1652
1653 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1654
1655 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1656 *coef_exponent = coef_exp - 16;
1657}
1658
Sujithcbe61d82009-02-09 13:27:12 +05301659static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301660 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001661{
1662 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1663 u32 clockMhzScaled = 0x64000000;
1664 struct chan_centers centers;
1665
1666 if (IS_CHAN_HALF_RATE(chan))
1667 clockMhzScaled = clockMhzScaled >> 1;
1668 else if (IS_CHAN_QUARTER_RATE(chan))
1669 clockMhzScaled = clockMhzScaled >> 2;
1670
1671 ath9k_hw_get_channel_centers(ah, chan, &centers);
1672 coef_scaled = clockMhzScaled / centers.synth_center;
1673
1674 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1675 &ds_coef_exp);
1676
1677 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1678 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1679 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1680 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1681
1682 coef_scaled = (9 * coef_scaled) / 10;
1683
1684 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1685 &ds_coef_exp);
1686
1687 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1688 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1689 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1690 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1691}
1692
Sujithcbe61d82009-02-09 13:27:12 +05301693static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301694{
1695 u32 rst_flags;
1696 u32 tmpReg;
1697
Sujith70768492009-02-16 13:23:12 +05301698 if (AR_SREV_9100(ah)) {
1699 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1700 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1701 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1702 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1703 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1704 }
1705
Sujithf1dc5602008-10-29 10:16:30 +05301706 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1707 AR_RTC_FORCE_WAKE_ON_INT);
1708
1709 if (AR_SREV_9100(ah)) {
1710 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1711 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1712 } else {
1713 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1714 if (tmpReg &
1715 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1716 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1717 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1718 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1719 } else {
1720 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1721 }
1722
1723 rst_flags = AR_RTC_RC_MAC_WARM;
1724 if (type == ATH9K_RESET_COLD)
1725 rst_flags |= AR_RTC_RC_MAC_COLD;
1726 }
1727
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001728 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301729 udelay(50);
1730
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001731 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301732 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001733 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1734 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301735 return false;
1736 }
1737
1738 if (!AR_SREV_9100(ah))
1739 REG_WRITE(ah, AR_RC, 0);
1740
Sujithf1dc5602008-10-29 10:16:30 +05301741 if (AR_SREV_9100(ah))
1742 udelay(50);
1743
1744 return true;
1745}
1746
Sujithcbe61d82009-02-09 13:27:12 +05301747static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301748{
1749 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1750 AR_RTC_FORCE_WAKE_ON_INT);
1751
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301752 if (!AR_SREV_9100(ah))
1753 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1754
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001755 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301756 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301757
1758 if (!AR_SREV_9100(ah))
1759 REG_WRITE(ah, AR_RC, 0);
1760
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001761 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301762
1763 if (!ath9k_hw_wait(ah,
1764 AR_RTC_STATUS,
1765 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301766 AR_RTC_STATUS_ON,
1767 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001768 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1769 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301770 return false;
1771 }
1772
1773 ath9k_hw_read_revisions(ah);
1774
1775 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1776}
1777
Sujithcbe61d82009-02-09 13:27:12 +05301778static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301779{
1780 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1781 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1782
1783 switch (type) {
1784 case ATH9K_RESET_POWER_ON:
1785 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301786 case ATH9K_RESET_WARM:
1787 case ATH9K_RESET_COLD:
1788 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301789 default:
1790 return false;
1791 }
1792}
1793
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001794static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301795{
1796 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301797 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301798
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301799 if (AR_SREV_9285_10_OR_LATER(ah))
1800 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1801 AR_PHY_FC_ENABLE_DAC_FIFO);
1802
Sujithf1dc5602008-10-29 10:16:30 +05301803 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301804 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301805
1806 if (IS_CHAN_HT40(chan)) {
1807 phymode |= AR_PHY_FC_DYN2040_EN;
1808
1809 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1810 (chan->chanmode == CHANNEL_G_HT40PLUS))
1811 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1812
Sujithf1dc5602008-10-29 10:16:30 +05301813 }
1814 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1815
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001816 ath9k_hw_set11nmac2040(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301817
1818 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1819 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1820}
1821
Sujithcbe61d82009-02-09 13:27:12 +05301822static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301823 struct ath9k_channel *chan)
1824{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301825 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301826 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1827 return false;
1828 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301829 return false;
1830
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001831 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301832 return false;
1833
Sujith2660b812009-02-09 13:27:26 +05301834 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301835 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301836 ath9k_hw_set_rfmode(ah, chan);
1837
1838 return true;
1839}
1840
Sujithcbe61d82009-02-09 13:27:12 +05301841static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001842 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301843{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001844 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001845 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001846 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301847 u32 synthDelay, qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001848 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301849
1850 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1851 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001852 ath_print(common, ATH_DBG_QUEUE,
1853 "Transmit frames pending on "
1854 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301855 return false;
1856 }
1857 }
1858
1859 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1860 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301861 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001862 ath_print(common, ATH_DBG_FATAL,
1863 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301864 return false;
1865 }
1866
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001867 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301868
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04001869 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001870 if (r) {
1871 ath_print(common, ATH_DBG_FATAL,
1872 "Failed to set channel\n");
1873 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301874 }
1875
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001876 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001877 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301878 channel->max_antenna_gain * 2,
1879 channel->max_power * 2,
1880 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001881 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301882
1883 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301884 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301885 synthDelay = (4 * synthDelay) / 22;
1886 else
1887 synthDelay /= 10;
1888
1889 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1890
1891 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1892
1893 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1894 ath9k_hw_set_delta_slope(ah, chan);
1895
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04001896 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301897
1898 if (!chan->oneTimeCalsDone)
1899 chan->oneTimeCalsDone = true;
1900
1901 return true;
1902}
1903
Johannes Berg3b319aa2009-06-13 14:50:26 +05301904static void ath9k_enable_rfkill(struct ath_hw *ah)
1905{
1906 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
1907 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
1908
1909 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
1910 AR_GPIO_INPUT_MUX2_RFSILENT);
1911
1912 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
1913 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
1914}
1915
Sujithcbe61d82009-02-09 13:27:12 +05301916int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001917 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001918{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001919 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001920 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301921 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001922 u32 saveDefAntenna;
1923 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301924 u64 tsf = 0;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001925 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001926
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001927 ah->txchainmask = common->tx_chainmask;
1928 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001929
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001930 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001931 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001932
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301933 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001934 ath9k_hw_getnf(ah, curchan);
1935
1936 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301937 (ah->chip_fullsleep != true) &&
1938 (ah->curchan != NULL) &&
1939 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301941 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301942 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1943 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001944
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001945 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301946 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001947 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001948 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001949 }
1950 }
1951
1952 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1953 if (saveDefAntenna == 0)
1954 saveDefAntenna = 1;
1955
1956 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1957
Sujith46fe7822009-09-17 09:25:25 +05301958 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1959 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1960 tsf = ath9k_hw_gettsf64(ah);
1961
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001962 saveLedState = REG_READ(ah, AR_CFG_LED) &
1963 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1964 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1965
1966 ath9k_hw_mark_phy_inactive(ah);
1967
Sujith05020d22010-03-17 14:25:23 +05301968 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001969 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1970 REG_WRITE(ah,
1971 AR9271_RESET_POWER_DOWN_CONTROL,
1972 AR9271_RADIO_RF_RST);
1973 udelay(50);
1974 }
1975
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001976 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001977 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001978 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001979 }
1980
Sujith05020d22010-03-17 14:25:23 +05301981 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001982 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1983 ah->htc_reset_init = false;
1984 REG_WRITE(ah,
1985 AR9271_RESET_POWER_DOWN_CONTROL,
1986 AR9271_GATE_MAC_CTL);
1987 udelay(50);
1988 }
1989
Sujith46fe7822009-09-17 09:25:25 +05301990 /* Restore TSF */
1991 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1992 ath9k_hw_settsf64(ah, tsf);
1993
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301994 if (AR_SREV_9280_10_OR_LATER(ah))
1995 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001996
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301997 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301998 /* Enable ASYNC FIFO */
1999 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2000 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2001 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2002 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2003 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2004 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2005 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2006 }
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002007 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002008 if (r)
2009 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002010
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002011 /* Setup MFP options for CCMP */
2012 if (AR_SREV_9280_20_OR_LATER(ah)) {
2013 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2014 * frames when constructing CCMP AAD. */
2015 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2016 0xc7ff);
2017 ah->sw_mgmt_crypto = false;
2018 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2019 /* Disable hardware crypto for management frames */
2020 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2021 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2022 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2023 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2024 ah->sw_mgmt_crypto = true;
2025 } else
2026 ah->sw_mgmt_crypto = true;
2027
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2029 ath9k_hw_set_delta_slope(ah, chan);
2030
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04002031 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05302032 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04002033
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002034 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
2035 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002036 | macStaId1
2037 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302038 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302039 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302040 | ah->sta_id1_defaults);
2041 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002042
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07002043 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002044
2045 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2046
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07002047 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002048
2049 REG_WRITE(ah, AR_ISR, ~0);
2050
2051 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2052
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04002053 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04002054 if (r)
2055 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002056
2057 for (i = 0; i < AR_NUM_DCU; i++)
2058 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2059
Sujith2660b812009-02-09 13:27:26 +05302060 ah->intr_txqs = 0;
2061 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002062 ath9k_hw_resettxqueue(ah, i);
2063
Sujith2660b812009-02-09 13:27:26 +05302064 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002065 ath9k_hw_init_qos(ah);
2066
Sujith2660b812009-02-09 13:27:26 +05302067 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302068 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302069
Felix Fietkau0005baf2010-01-15 02:33:40 +01002070 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002071
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302072 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302073 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2074 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2075 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2076 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2077 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2078 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2079
2080 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2081 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2082
2083 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2084 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2085 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2086 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2087 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302088 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302089 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2090 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2091 }
2092
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002093 REG_WRITE(ah, AR_STA_ID1,
2094 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2095
2096 ath9k_hw_set_dma(ah);
2097
2098 REG_WRITE(ah, AR_OBS, 8);
2099
Sujith0ce024c2009-12-14 14:57:00 +05302100 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002101 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2102 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2103 }
2104
2105 ath9k_hw_init_bb(ah, chan);
2106
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002107 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002108 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002109
Sujith2660b812009-02-09 13:27:26 +05302110 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002111 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2112 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2113 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2114 }
2115
2116 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2117
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002118 /*
2119 * For big endian systems turn on swapping for descriptors
2120 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121 if (AR_SREV_9100(ah)) {
2122 u32 mask;
2123 mask = REG_READ(ah, AR_CFG);
2124 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002125 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302126 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002127 } else {
2128 mask =
2129 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2130 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002131 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302132 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002133 }
2134 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002135 /* Configure AR9271 target WLAN */
2136 if (AR_SREV_9271(ah))
2137 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002138#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002139 else
2140 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141#endif
2142 }
2143
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002144 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302145 ath9k_hw_btcoex_enable(ah);
2146
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002147 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002148}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002149EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150
Sujithf1dc5602008-10-29 10:16:30 +05302151/************************/
2152/* Key Cache Management */
2153/************************/
2154
Sujithcbe61d82009-02-09 13:27:12 +05302155bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002156{
Sujithf1dc5602008-10-29 10:16:30 +05302157 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158
Sujith2660b812009-02-09 13:27:26 +05302159 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002160 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2161 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002162 return false;
2163 }
2164
Sujithf1dc5602008-10-29 10:16:30 +05302165 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002166
Sujithf1dc5602008-10-29 10:16:30 +05302167 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2168 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2169 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2170 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2171 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2172 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2173 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2174 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2175
2176 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2177 u16 micentry = entry + 64;
2178
2179 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2180 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2181 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2182 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2183
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002184 }
2185
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002186 return true;
2187}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002188EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189
Sujithcbe61d82009-02-09 13:27:12 +05302190bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002191{
Sujithf1dc5602008-10-29 10:16:30 +05302192 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002193
Sujith2660b812009-02-09 13:27:26 +05302194 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002195 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2196 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002198 }
2199
Sujithf1dc5602008-10-29 10:16:30 +05302200 if (mac != NULL) {
2201 macHi = (mac[5] << 8) | mac[4];
2202 macLo = (mac[3] << 24) |
2203 (mac[2] << 16) |
2204 (mac[1] << 8) |
2205 mac[0];
2206 macLo >>= 1;
2207 macLo |= (macHi & 1) << 31;
2208 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002209 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302210 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002211 }
Sujithf1dc5602008-10-29 10:16:30 +05302212 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2213 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002214
2215 return true;
2216}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002217EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002218
Sujithcbe61d82009-02-09 13:27:12 +05302219bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302220 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002221 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222{
Sujith2660b812009-02-09 13:27:26 +05302223 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002224 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302225 u32 key0, key1, key2, key3, key4;
2226 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002227
Sujithf1dc5602008-10-29 10:16:30 +05302228 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002229 ath_print(common, ATH_DBG_FATAL,
2230 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302231 return false;
2232 }
2233
2234 switch (k->kv_type) {
2235 case ATH9K_CIPHER_AES_OCB:
2236 keyType = AR_KEYTABLE_TYPE_AES;
2237 break;
2238 case ATH9K_CIPHER_AES_CCM:
2239 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002240 ath_print(common, ATH_DBG_ANY,
2241 "AES-CCM not supported by mac rev 0x%x\n",
2242 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002243 return false;
2244 }
Sujithf1dc5602008-10-29 10:16:30 +05302245 keyType = AR_KEYTABLE_TYPE_CCM;
2246 break;
2247 case ATH9K_CIPHER_TKIP:
2248 keyType = AR_KEYTABLE_TYPE_TKIP;
2249 if (ATH9K_IS_MIC_ENABLED(ah)
2250 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002251 ath_print(common, ATH_DBG_ANY,
2252 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002254 }
Sujithf1dc5602008-10-29 10:16:30 +05302255 break;
2256 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002257 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002258 ath_print(common, ATH_DBG_ANY,
2259 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302260 return false;
2261 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002262 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302263 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002264 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302265 keyType = AR_KEYTABLE_TYPE_104;
2266 else
2267 keyType = AR_KEYTABLE_TYPE_128;
2268 break;
2269 case ATH9K_CIPHER_CLR:
2270 keyType = AR_KEYTABLE_TYPE_CLR;
2271 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002272 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002273 ath_print(common, ATH_DBG_FATAL,
2274 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275 return false;
2276 }
Sujithf1dc5602008-10-29 10:16:30 +05302277
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002278 key0 = get_unaligned_le32(k->kv_val + 0);
2279 key1 = get_unaligned_le16(k->kv_val + 4);
2280 key2 = get_unaligned_le32(k->kv_val + 6);
2281 key3 = get_unaligned_le16(k->kv_val + 10);
2282 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002283 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302284 key4 &= 0xff;
2285
Jouni Malinen672903b2009-03-02 15:06:31 +02002286 /*
2287 * Note: Key cache registers access special memory area that requires
2288 * two 32-bit writes to actually update the values in the internal
2289 * memory. Consequently, the exact order and pairs used here must be
2290 * maintained.
2291 */
2292
Sujithf1dc5602008-10-29 10:16:30 +05302293 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2294 u16 micentry = entry + 64;
2295
Jouni Malinen672903b2009-03-02 15:06:31 +02002296 /*
2297 * Write inverted key[47:0] first to avoid Michael MIC errors
2298 * on frames that could be sent or received at the same time.
2299 * The correct key will be written in the end once everything
2300 * else is ready.
2301 */
Sujithf1dc5602008-10-29 10:16:30 +05302302 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2303 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002304
2305 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302306 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2307 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002308
2309 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302310 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2311 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002312
2313 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302314 (void) ath9k_hw_keysetmac(ah, entry, mac);
2315
Sujith2660b812009-02-09 13:27:26 +05302316 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002317 /*
2318 * TKIP uses two key cache entries:
2319 * Michael MIC TX/RX keys in the same key cache entry
2320 * (idx = main index + 64):
2321 * key0 [31:0] = RX key [31:0]
2322 * key1 [15:0] = TX key [31:16]
2323 * key1 [31:16] = reserved
2324 * key2 [31:0] = RX key [63:32]
2325 * key3 [15:0] = TX key [15:0]
2326 * key3 [31:16] = reserved
2327 * key4 [31:0] = TX key [63:32]
2328 */
Sujithf1dc5602008-10-29 10:16:30 +05302329 u32 mic0, mic1, mic2, mic3, mic4;
2330
2331 mic0 = get_unaligned_le32(k->kv_mic + 0);
2332 mic2 = get_unaligned_le32(k->kv_mic + 4);
2333 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2334 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2335 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002336
2337 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302338 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2339 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002340
2341 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302342 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2343 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002344
2345 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302346 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2347 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2348 AR_KEYTABLE_TYPE_CLR);
2349
2350 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002351 /*
2352 * TKIP uses four key cache entries (two for group
2353 * keys):
2354 * Michael MIC TX/RX keys are in different key cache
2355 * entries (idx = main index + 64 for TX and
2356 * main index + 32 + 96 for RX):
2357 * key0 [31:0] = TX/RX MIC key [31:0]
2358 * key1 [31:0] = reserved
2359 * key2 [31:0] = TX/RX MIC key [63:32]
2360 * key3 [31:0] = reserved
2361 * key4 [31:0] = reserved
2362 *
2363 * Upper layer code will call this function separately
2364 * for TX and RX keys when these registers offsets are
2365 * used.
2366 */
Sujithf1dc5602008-10-29 10:16:30 +05302367 u32 mic0, mic2;
2368
2369 mic0 = get_unaligned_le32(k->kv_mic + 0);
2370 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002371
2372 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302373 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2374 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002375
2376 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302377 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2378 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002379
2380 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302381 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2382 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2383 AR_KEYTABLE_TYPE_CLR);
2384 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002385
2386 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302387 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2388 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002389
2390 /*
2391 * Write the correct (un-inverted) key[47:0] last to enable
2392 * TKIP now that all other registers are set with correct
2393 * values.
2394 */
Sujithf1dc5602008-10-29 10:16:30 +05302395 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2396 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2397 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002398 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302399 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2400 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002401
2402 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302403 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2404 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002405
2406 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302407 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2408 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2409
Jouni Malinen672903b2009-03-02 15:06:31 +02002410 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302411 (void) ath9k_hw_keysetmac(ah, entry, mac);
2412 }
2413
Sujithf1dc5602008-10-29 10:16:30 +05302414 return true;
2415}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002416EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05302417
Sujithcbe61d82009-02-09 13:27:12 +05302418bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302419{
Sujith2660b812009-02-09 13:27:26 +05302420 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302421 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2422 if (val & AR_KEYTABLE_VALID)
2423 return true;
2424 }
2425 return false;
2426}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002427EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05302428
2429/******************************/
2430/* Power Management (Chipset) */
2431/******************************/
2432
Sujithcbe61d82009-02-09 13:27:12 +05302433static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302434{
2435 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2436 if (setChip) {
2437 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2438 AR_RTC_FORCE_WAKE_EN);
2439 if (!AR_SREV_9100(ah))
2440 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2441
Sujith14b3af32010-03-17 14:25:18 +05302442 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05302443 REG_CLR_BIT(ah, (AR_RTC_RESET),
2444 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302445 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002446}
2447
Sujithcbe61d82009-02-09 13:27:12 +05302448static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002449{
Sujithf1dc5602008-10-29 10:16:30 +05302450 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2451 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302452 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453
Sujithf1dc5602008-10-29 10:16:30 +05302454 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2455 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2456 AR_RTC_FORCE_WAKE_ON_INT);
2457 } else {
2458 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2459 AR_RTC_FORCE_WAKE_EN);
2460 }
2461 }
2462}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002463
Sujithcbe61d82009-02-09 13:27:12 +05302464static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302465{
2466 u32 val;
2467 int i;
2468
2469 if (setChip) {
2470 if ((REG_READ(ah, AR_RTC_STATUS) &
2471 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2472 if (ath9k_hw_set_reset_reg(ah,
2473 ATH9K_RESET_POWER_ON) != true) {
2474 return false;
2475 }
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302476 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302477 }
2478 if (AR_SREV_9100(ah))
2479 REG_SET_BIT(ah, AR_RTC_RESET,
2480 AR_RTC_RESET_EN);
2481
2482 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2483 AR_RTC_FORCE_WAKE_EN);
2484 udelay(50);
2485
2486 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2487 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2488 if (val == AR_RTC_STATUS_ON)
2489 break;
2490 udelay(50);
2491 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2492 AR_RTC_FORCE_WAKE_EN);
2493 }
2494 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002495 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2496 "Failed to wakeup in %uus\n",
2497 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302498 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002499 }
2500 }
2501
Sujithf1dc5602008-10-29 10:16:30 +05302502 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2503
2504 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002505}
2506
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002507bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302508{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002509 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302510 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302511 static const char *modes[] = {
2512 "AWAKE",
2513 "FULL-SLEEP",
2514 "NETWORK SLEEP",
2515 "UNDEFINED"
2516 };
Sujithf1dc5602008-10-29 10:16:30 +05302517
Gabor Juhoscbdec972009-07-24 17:27:22 +02002518 if (ah->power_mode == mode)
2519 return status;
2520
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002521 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2522 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302523
2524 switch (mode) {
2525 case ATH9K_PM_AWAKE:
2526 status = ath9k_hw_set_power_awake(ah, setChip);
2527 break;
2528 case ATH9K_PM_FULL_SLEEP:
2529 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302530 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302531 break;
2532 case ATH9K_PM_NETWORK_SLEEP:
2533 ath9k_set_power_network_sleep(ah, setChip);
2534 break;
2535 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002536 ath_print(common, ATH_DBG_FATAL,
2537 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302538 return false;
2539 }
Sujith2660b812009-02-09 13:27:26 +05302540 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302541
2542 return status;
2543}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002544EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302545
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002546/*
2547 * Helper for ASPM support.
2548 *
2549 * Disable PLL when in L0s as well as receiver clock when in L1.
2550 * This power saving option must be enabled through the SerDes.
2551 *
2552 * Programming the SerDes must go through the same 288 bit serial shift
2553 * register as the other analog registers. Hence the 9 writes.
2554 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302555void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore, int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302556{
Sujithf1dc5602008-10-29 10:16:30 +05302557 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302558 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302559
Sujith2660b812009-02-09 13:27:26 +05302560 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302561 return;
2562
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002563 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302564 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302565 return;
2566
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002567 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302568 if (!restore) {
2569 if (AR_SREV_9280_20_OR_LATER(ah)) {
2570 /*
2571 * AR9280 2.0 or later chips use SerDes values from the
2572 * initvals.h initialized depending on chipset during
2573 * ath9k_hw_init()
2574 */
2575 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2576 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2577 INI_RA(&ah->iniPcieSerdes, i, 1));
2578 }
2579 } else if (AR_SREV_9280(ah) &&
2580 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2581 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2582 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302583
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302584 /* RX shut off when elecidle is asserted */
2585 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2586 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2587 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2588
2589 /* Shut off CLKREQ active in L1 */
2590 if (ah->config.pcie_clock_req)
2591 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2592 else
2593 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2594
2595 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2596 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2597 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2598
2599 /* Load the new settings */
2600 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2601
2602 } else {
2603 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2604 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2605
2606 /* RX shut off when elecidle is asserted */
2607 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2608 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2609 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2610
2611 /*
2612 * Ignore ah->ah_config.pcie_clock_req setting for
2613 * pre-AR9280 11n
2614 */
2615 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2616
2617 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2618 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2619 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2620
2621 /* Load the new settings */
2622 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302623 }
Sujithf1dc5602008-10-29 10:16:30 +05302624
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302625 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302626
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302627 /* set bit 19 to allow forcing of pcie core into L1 state */
2628 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302629
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302630 /* Several PCIe massages to ensure proper behaviour */
2631 if (ah->config.pcie_waen) {
2632 val = ah->config.pcie_waen;
2633 if (!power_off)
2634 val &= (~AR_WA_D3_L1_DISABLE);
2635 } else {
2636 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2637 AR_SREV_9287(ah)) {
2638 val = AR9285_WA_DEFAULT;
2639 if (!power_off)
2640 val &= (~AR_WA_D3_L1_DISABLE);
2641 } else if (AR_SREV_9280(ah)) {
2642 /*
2643 * On AR9280 chips bit 22 of 0x4004 needs to be
2644 * set otherwise card may disappear.
2645 */
2646 val = AR9280_WA_DEFAULT;
2647 if (!power_off)
2648 val &= (~AR_WA_D3_L1_DISABLE);
2649 } else
2650 val = AR_WA_DEFAULT;
2651 }
Sujithf1dc5602008-10-29 10:16:30 +05302652
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302653 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302654 }
2655
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302656 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002657 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302658 * Set PCIe workaround bits
2659 * bit 14 in WA register (disable L1) should only
2660 * be set when device enters D3 and be cleared
2661 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002662 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302663 if (ah->config.pcie_waen) {
2664 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2665 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2666 } else {
2667 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2668 AR_SREV_9287(ah)) &&
2669 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2670 (AR_SREV_9280(ah) &&
2671 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2672 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2673 }
2674 }
Sujithf1dc5602008-10-29 10:16:30 +05302675 }
2676}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002677EXPORT_SYMBOL(ath9k_hw_configpcipowersave);
Sujithf1dc5602008-10-29 10:16:30 +05302678
2679/**********************/
2680/* Interrupt Handling */
2681/**********************/
2682
Sujithcbe61d82009-02-09 13:27:12 +05302683bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002684{
2685 u32 host_isr;
2686
2687 if (AR_SREV_9100(ah))
2688 return true;
2689
2690 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2691 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2692 return true;
2693
2694 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2695 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2696 && (host_isr != AR_INTR_SPURIOUS))
2697 return true;
2698
2699 return false;
2700}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002701EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002702
Sujithcbe61d82009-02-09 13:27:12 +05302703bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002704{
2705 u32 isr = 0;
2706 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302707 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002708 u32 sync_cause = 0;
2709 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002710 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002711
2712 if (!AR_SREV_9100(ah)) {
2713 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2714 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2715 == AR_RTC_STATUS_ON) {
2716 isr = REG_READ(ah, AR_ISR);
2717 }
2718 }
2719
Sujithf1dc5602008-10-29 10:16:30 +05302720 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2721 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002722
2723 *masked = 0;
2724
2725 if (!isr && !sync_cause)
2726 return false;
2727 } else {
2728 *masked = 0;
2729 isr = REG_READ(ah, AR_ISR);
2730 }
2731
2732 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002733 if (isr & AR_ISR_BCNMISC) {
2734 u32 isr2;
2735 isr2 = REG_READ(ah, AR_ISR_S2);
2736 if (isr2 & AR_ISR_S2_TIM)
2737 mask2 |= ATH9K_INT_TIM;
2738 if (isr2 & AR_ISR_S2_DTIM)
2739 mask2 |= ATH9K_INT_DTIM;
2740 if (isr2 & AR_ISR_S2_DTIMSYNC)
2741 mask2 |= ATH9K_INT_DTIMSYNC;
2742 if (isr2 & (AR_ISR_S2_CABEND))
2743 mask2 |= ATH9K_INT_CABEND;
2744 if (isr2 & AR_ISR_S2_GTT)
2745 mask2 |= ATH9K_INT_GTT;
2746 if (isr2 & AR_ISR_S2_CST)
2747 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302748 if (isr2 & AR_ISR_S2_TSFOOR)
2749 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002750 }
2751
2752 isr = REG_READ(ah, AR_ISR_RAC);
2753 if (isr == 0xffffffff) {
2754 *masked = 0;
2755 return false;
2756 }
2757
2758 *masked = isr & ATH9K_INT_COMMON;
2759
Sujith0ce024c2009-12-14 14:57:00 +05302760 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002761 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2762 *masked |= ATH9K_INT_RX;
2763 }
2764
2765 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2766 *masked |= ATH9K_INT_RX;
2767 if (isr &
2768 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2769 AR_ISR_TXEOL)) {
2770 u32 s0_s, s1_s;
2771
2772 *masked |= ATH9K_INT_TX;
2773
2774 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302775 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2776 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002777
2778 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302779 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2780 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002781 }
2782
2783 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002784 ath_print(common, ATH_DBG_INTERRUPT,
2785 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002786 }
2787
2788 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302789 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002790 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2791 if (isr5 & AR_ISR_S5_TIM_TIMER)
2792 *masked |= ATH9K_INT_TIM_TIMER;
2793 }
2794 }
2795
2796 *masked |= mask2;
2797 }
Sujithf1dc5602008-10-29 10:16:30 +05302798
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002799 if (AR_SREV_9100(ah))
2800 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302801
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302802 if (isr & AR_ISR_GENTMR) {
2803 u32 s5_s;
2804
2805 s5_s = REG_READ(ah, AR_ISR_S5_S);
2806 if (isr & AR_ISR_GENTMR) {
2807 ah->intr_gen_timer_trigger =
2808 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2809
2810 ah->intr_gen_timer_thresh =
2811 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2812
2813 if (ah->intr_gen_timer_trigger)
2814 *masked |= ATH9K_INT_GENTIMER;
2815
2816 }
2817 }
2818
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002819 if (sync_cause) {
2820 fatal_int =
2821 (sync_cause &
2822 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2823 ? true : false;
2824
2825 if (fatal_int) {
2826 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002827 ath_print(common, ATH_DBG_ANY,
2828 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002829 }
2830 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002831 ath_print(common, ATH_DBG_ANY,
2832 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002833 }
Steven Luoa89bff92009-04-12 02:57:54 -07002834 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002835 }
2836 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002837 ath_print(common, ATH_DBG_INTERRUPT,
2838 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002839 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2840 REG_WRITE(ah, AR_RC, 0);
2841 *masked |= ATH9K_INT_FATAL;
2842 }
2843 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002844 ath_print(common, ATH_DBG_INTERRUPT,
2845 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002846 }
2847
2848 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2849 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2850 }
Sujithf1dc5602008-10-29 10:16:30 +05302851
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002852 return true;
2853}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002854EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002855
Sujithcbe61d82009-02-09 13:27:12 +05302856enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002857{
Pavel Roskin152d5302010-03-31 18:05:37 -04002858 enum ath9k_int omask = ah->imask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002859 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302860 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002861 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002862
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002863 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002864
2865 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002866 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002867 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2868 (void) REG_READ(ah, AR_IER);
2869 if (!AR_SREV_9100(ah)) {
2870 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2871 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2872
2873 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2874 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2875 }
2876 }
2877
2878 mask = ints & ATH9K_INT_COMMON;
2879 mask2 = 0;
2880
2881 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302882 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002883 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302884 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002885 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302886 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002887 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302888 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002889 mask |= AR_IMR_TXEOL;
2890 }
2891 if (ints & ATH9K_INT_RX) {
2892 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302893 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002894 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2895 else
2896 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302897 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002898 mask |= AR_IMR_GENTMR;
2899 }
2900
2901 if (ints & (ATH9K_INT_BMISC)) {
2902 mask |= AR_IMR_BCNMISC;
2903 if (ints & ATH9K_INT_TIM)
2904 mask2 |= AR_IMR_S2_TIM;
2905 if (ints & ATH9K_INT_DTIM)
2906 mask2 |= AR_IMR_S2_DTIM;
2907 if (ints & ATH9K_INT_DTIMSYNC)
2908 mask2 |= AR_IMR_S2_DTIMSYNC;
2909 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302910 mask2 |= AR_IMR_S2_CABEND;
2911 if (ints & ATH9K_INT_TSFOOR)
2912 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002913 }
2914
2915 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2916 mask |= AR_IMR_BCNMISC;
2917 if (ints & ATH9K_INT_GTT)
2918 mask2 |= AR_IMR_S2_GTT;
2919 if (ints & ATH9K_INT_CST)
2920 mask2 |= AR_IMR_S2_CST;
2921 }
2922
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002923 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002924 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002925 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2926 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2927 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2928 ah->imrs2_reg |= mask2;
2929 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002930
Sujith60b67f52008-08-07 10:52:38 +05302931 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002932 if (ints & ATH9K_INT_TIM_TIMER)
2933 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2934 else
2935 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2936 }
2937
2938 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002939 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002940 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2941 if (!AR_SREV_9100(ah)) {
2942 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2943 AR_INTR_MAC_IRQ);
2944 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2945
2946
2947 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2948 AR_INTR_SYNC_DEFAULT);
2949 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2950 AR_INTR_SYNC_DEFAULT);
2951 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002952 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2953 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002954 }
2955
2956 return omask;
2957}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002958EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002959
Sujithf1dc5602008-10-29 10:16:30 +05302960/*******************/
2961/* Beacon Handling */
2962/*******************/
2963
Sujithcbe61d82009-02-09 13:27:12 +05302964void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002965{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002966 int flags = 0;
2967
Sujith2660b812009-02-09 13:27:26 +05302968 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002969
Sujith2660b812009-02-09 13:27:26 +05302970 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002971 case NL80211_IFTYPE_STATION:
2972 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002973 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2974 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2975 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2976 flags |= AR_TBTT_TIMER_EN;
2977 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002978 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002979 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002980 REG_SET_BIT(ah, AR_TXCFG,
2981 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2982 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2983 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302984 (ah->atim_window ? ah->
2985 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002986 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002987 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002988 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2989 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2990 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302991 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302992 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002993 REG_WRITE(ah, AR_NEXT_SWBA,
2994 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302995 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302996 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002997 flags |=
2998 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2999 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003000 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003001 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
3002 "%s: unsupported opmode: %d\n",
3003 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003004 return;
3005 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003006 }
3007
3008 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3009 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3010 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3011 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3012
3013 beacon_period &= ~ATH9K_BEACON_ENA;
3014 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003015 ath9k_hw_reset_tsf(ah);
3016 }
3017
3018 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3019}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003020EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003021
Sujithcbe61d82009-02-09 13:27:12 +05303022void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303023 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003024{
3025 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303026 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003027 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003028
3029 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3030
3031 REG_WRITE(ah, AR_BEACON_PERIOD,
3032 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3033 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3034 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3035
3036 REG_RMW_FIELD(ah, AR_RSSI_THR,
3037 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3038
3039 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3040
3041 if (bs->bs_sleepduration > beaconintval)
3042 beaconintval = bs->bs_sleepduration;
3043
3044 dtimperiod = bs->bs_dtimperiod;
3045 if (bs->bs_sleepduration > dtimperiod)
3046 dtimperiod = bs->bs_sleepduration;
3047
3048 if (beaconintval == dtimperiod)
3049 nextTbtt = bs->bs_nextdtim;
3050 else
3051 nextTbtt = bs->bs_nexttbtt;
3052
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003053 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3054 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3055 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3056 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003057
3058 REG_WRITE(ah, AR_NEXT_DTIM,
3059 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3060 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3061
3062 REG_WRITE(ah, AR_SLEEP1,
3063 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3064 | AR_SLEEP1_ASSUME_DTIM);
3065
Sujith60b67f52008-08-07 10:52:38 +05303066 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003067 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3068 else
3069 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3070
3071 REG_WRITE(ah, AR_SLEEP2,
3072 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3073
3074 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3075 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3076
3077 REG_SET_BIT(ah, AR_TIMER_MODE,
3078 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3079 AR_DTIM_TIMER_EN);
3080
Sujith4af9cf42009-02-12 10:06:47 +05303081 /* TSF Out of Range Threshold */
3082 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003083}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003084EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003085
Sujithf1dc5602008-10-29 10:16:30 +05303086/*******************/
3087/* HW Capabilities */
3088/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003089
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003090int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003091{
Sujith2660b812009-02-09 13:27:26 +05303092 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003093 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003094 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003095 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003096
Sujithf1dc5602008-10-29 10:16:30 +05303097 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003098
Sujithf74df6f2009-02-09 13:27:24 +05303099 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003100 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303101
Sujithf74df6f2009-02-09 13:27:24 +05303102 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303103 if (AR_SREV_9285_10_OR_LATER(ah))
3104 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003105 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303106
Sujithf74df6f2009-02-09 13:27:24 +05303107 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303108
Sujith2660b812009-02-09 13:27:26 +05303109 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303110 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003111 if (regulatory->current_rd == 0x64 ||
3112 regulatory->current_rd == 0x65)
3113 regulatory->current_rd += 5;
3114 else if (regulatory->current_rd == 0x41)
3115 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003116 ath_print(common, ATH_DBG_REGULATORY,
3117 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003118 }
Sujithdc2222a2008-08-14 13:26:55 +05303119
Sujithf74df6f2009-02-09 13:27:24 +05303120 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003121 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
3122 ath_print(common, ATH_DBG_FATAL,
3123 "no band has been marked as supported in EEPROM.\n");
3124 return -EINVAL;
3125 }
3126
Sujithf1dc5602008-10-29 10:16:30 +05303127 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003128
Sujithf1dc5602008-10-29 10:16:30 +05303129 if (eeval & AR5416_OPFLAGS_11A) {
3130 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303131 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303132 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3133 set_bit(ATH9K_MODE_11NA_HT20,
3134 pCap->wireless_modes);
3135 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3136 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3137 pCap->wireless_modes);
3138 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3139 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140 }
3141 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003142 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003143
Sujithf1dc5602008-10-29 10:16:30 +05303144 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303145 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303146 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303147 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3148 set_bit(ATH9K_MODE_11NG_HT20,
3149 pCap->wireless_modes);
3150 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3151 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3152 pCap->wireless_modes);
3153 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3154 pCap->wireless_modes);
3155 }
3156 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003157 }
Sujithf1dc5602008-10-29 10:16:30 +05303158
Sujithf74df6f2009-02-09 13:27:24 +05303159 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003160 /*
3161 * For AR9271 we will temporarilly uses the rx chainmax as read from
3162 * the EEPROM.
3163 */
Sujith8147f5d2009-02-20 15:13:23 +05303164 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003165 !(eeval & AR5416_OPFLAGS_11A) &&
3166 !(AR_SREV_9271(ah)))
3167 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303168 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3169 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003170 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303171 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303172
Sujithd535a422009-02-09 13:27:06 +05303173 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303174 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303175
3176 pCap->low_2ghz_chan = 2312;
3177 pCap->high_2ghz_chan = 2732;
3178
3179 pCap->low_5ghz_chan = 4920;
3180 pCap->high_5ghz_chan = 6100;
3181
3182 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3183 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3184 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3185
3186 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3187 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3188 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3189
Sujith2660b812009-02-09 13:27:26 +05303190 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303191 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3192 else
3193 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3194
3195 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3196 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3197 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3198 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3199
3200 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3201 pCap->total_queues =
3202 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3203 else
3204 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3205
3206 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3207 pCap->keycache_size =
3208 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3209 else
3210 pCap->keycache_size = AR_KEYTABLE_SIZE;
3211
3212 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05003213
3214 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
3215 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
3216 else
3217 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05303218
Sujith5b5fa352010-03-17 14:25:15 +05303219 if (AR_SREV_9271(ah))
3220 pCap->num_gpio_pins = AR9271_NUM_GPIO;
3221 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303222 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3223 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303224 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3225 else
3226 pCap->num_gpio_pins = AR_NUM_GPIO;
3227
Sujithf1dc5602008-10-29 10:16:30 +05303228 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3229 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3230 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3231 } else {
3232 pCap->rts_aggr_limit = (8 * 1024);
3233 }
3234
3235 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3236
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303237#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303238 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3239 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3240 ah->rfkill_gpio =
3241 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3242 ah->rfkill_polarity =
3243 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303244
3245 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3246 }
3247#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05303248 if (AR_SREV_9271(ah))
3249 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3250 else
3251 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05303252
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303253 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303254 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3255 else
3256 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3257
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003258 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303259 pCap->reg_cap =
3260 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3261 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3262 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3263 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3264 } else {
3265 pCap->reg_cap =
3266 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3267 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3268 }
3269
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05303270 /* Advertise midband for AR5416 with FCC midband set in eeprom */
3271 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
3272 AR_SREV_5416(ah))
3273 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05303274
3275 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303276 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303277 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303278 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303279
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05303280 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07003281 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003282 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
3283 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303284
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303285 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003286 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
3287 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303288 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003289 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303290 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303291 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003292 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303293 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003294
3295 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003296}
3297
Sujithcbe61d82009-02-09 13:27:12 +05303298bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303299 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003300{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003301 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303302 switch (type) {
3303 case ATH9K_CAP_CIPHER:
3304 switch (capability) {
3305 case ATH9K_CIPHER_AES_CCM:
3306 case ATH9K_CIPHER_AES_OCB:
3307 case ATH9K_CIPHER_TKIP:
3308 case ATH9K_CIPHER_WEP:
3309 case ATH9K_CIPHER_MIC:
3310 case ATH9K_CIPHER_CLR:
3311 return true;
3312 default:
3313 return false;
3314 }
3315 case ATH9K_CAP_TKIP_MIC:
3316 switch (capability) {
3317 case 0:
3318 return true;
3319 case 1:
Sujith2660b812009-02-09 13:27:26 +05303320 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303321 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3322 false;
3323 }
3324 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303325 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303326 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303327 case ATH9K_CAP_DIVERSITY:
3328 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3329 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3330 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303331 case ATH9K_CAP_MCAST_KEYSRCH:
3332 switch (capability) {
3333 case 0:
3334 return true;
3335 case 1:
3336 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3337 return false;
3338 } else {
Sujith2660b812009-02-09 13:27:26 +05303339 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303340 AR_STA_ID1_MCAST_KSRCH) ? true :
3341 false;
3342 }
3343 }
3344 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303345 case ATH9K_CAP_TXPOW:
3346 switch (capability) {
3347 case 0:
3348 return 0;
3349 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003350 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303351 return 0;
3352 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003353 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303354 return 0;
3355 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003356 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303357 return 0;
3358 }
3359 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303360 case ATH9K_CAP_DS:
3361 return (AR_SREV_9280_20_OR_LATER(ah) &&
3362 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3363 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303364 default:
3365 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003366 }
Sujithf1dc5602008-10-29 10:16:30 +05303367}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003368EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003369
Sujithcbe61d82009-02-09 13:27:12 +05303370bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303371 u32 capability, u32 setting, int *status)
3372{
Sujithf1dc5602008-10-29 10:16:30 +05303373 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003374
Sujithf1dc5602008-10-29 10:16:30 +05303375 switch (type) {
3376 case ATH9K_CAP_TKIP_MIC:
3377 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303378 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303379 AR_STA_ID1_CRPT_MIC_ENABLE;
3380 else
Sujith2660b812009-02-09 13:27:26 +05303381 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303382 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3383 return true;
3384 case ATH9K_CAP_DIVERSITY:
3385 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3386 if (setting)
3387 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3388 else
3389 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3390 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3391 return true;
3392 case ATH9K_CAP_MCAST_KEYSRCH:
3393 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303394 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303395 else
Sujith2660b812009-02-09 13:27:26 +05303396 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303397 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303398 default:
3399 return false;
3400 }
3401}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003402EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05303403
3404/****************************/
3405/* GPIO / RFKILL / Antennae */
3406/****************************/
3407
Sujithcbe61d82009-02-09 13:27:12 +05303408static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303409 u32 gpio, u32 type)
3410{
3411 int addr;
3412 u32 gpio_shift, tmp;
3413
3414 if (gpio > 11)
3415 addr = AR_GPIO_OUTPUT_MUX3;
3416 else if (gpio > 5)
3417 addr = AR_GPIO_OUTPUT_MUX2;
3418 else
3419 addr = AR_GPIO_OUTPUT_MUX1;
3420
3421 gpio_shift = (gpio % 6) * 5;
3422
3423 if (AR_SREV_9280_20_OR_LATER(ah)
3424 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3425 REG_RMW(ah, addr, (type << gpio_shift),
3426 (0x1f << gpio_shift));
3427 } else {
3428 tmp = REG_READ(ah, addr);
3429 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3430 tmp &= ~(0x1f << gpio_shift);
3431 tmp |= (type << gpio_shift);
3432 REG_WRITE(ah, addr, tmp);
3433 }
3434}
3435
Sujithcbe61d82009-02-09 13:27:12 +05303436void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303437{
3438 u32 gpio_shift;
3439
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003440 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303441
3442 gpio_shift = gpio << 1;
3443
3444 REG_RMW(ah,
3445 AR_GPIO_OE_OUT,
3446 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3447 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3448}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003449EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303450
Sujithcbe61d82009-02-09 13:27:12 +05303451u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303452{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303453#define MS_REG_READ(x, y) \
3454 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3455
Sujith2660b812009-02-09 13:27:26 +05303456 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303457 return 0xffffffff;
3458
Sujith5b5fa352010-03-17 14:25:15 +05303459 if (AR_SREV_9271(ah))
3460 return MS_REG_READ(AR9271, gpio) != 0;
3461 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303462 return MS_REG_READ(AR9287, gpio) != 0;
3463 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303464 return MS_REG_READ(AR9285, gpio) != 0;
3465 else if (AR_SREV_9280_10_OR_LATER(ah))
3466 return MS_REG_READ(AR928X, gpio) != 0;
3467 else
3468 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303469}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003470EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303471
Sujithcbe61d82009-02-09 13:27:12 +05303472void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303473 u32 ah_signal_type)
3474{
3475 u32 gpio_shift;
3476
3477 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3478
3479 gpio_shift = 2 * gpio;
3480
3481 REG_RMW(ah,
3482 AR_GPIO_OE_OUT,
3483 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3484 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3485}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003486EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303487
Sujithcbe61d82009-02-09 13:27:12 +05303488void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303489{
Sujith5b5fa352010-03-17 14:25:15 +05303490 if (AR_SREV_9271(ah))
3491 val = ~val;
3492
Sujithf1dc5602008-10-29 10:16:30 +05303493 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3494 AR_GPIO_BIT(gpio));
3495}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003496EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303497
Sujithcbe61d82009-02-09 13:27:12 +05303498u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303499{
3500 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3501}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003502EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303503
Sujithcbe61d82009-02-09 13:27:12 +05303504void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303505{
3506 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3507}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003508EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303509
Sujithf1dc5602008-10-29 10:16:30 +05303510/*********************/
3511/* General Operation */
3512/*********************/
3513
Sujithcbe61d82009-02-09 13:27:12 +05303514u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303515{
3516 u32 bits = REG_READ(ah, AR_RX_FILTER);
3517 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3518
3519 if (phybits & AR_PHY_ERR_RADAR)
3520 bits |= ATH9K_RX_FILTER_PHYRADAR;
3521 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3522 bits |= ATH9K_RX_FILTER_PHYERR;
3523
3524 return bits;
3525}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003526EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303527
Sujithcbe61d82009-02-09 13:27:12 +05303528void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303529{
3530 u32 phybits;
3531
Sujith7ea310b2009-09-03 12:08:43 +05303532 REG_WRITE(ah, AR_RX_FILTER, bits);
3533
Sujithf1dc5602008-10-29 10:16:30 +05303534 phybits = 0;
3535 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3536 phybits |= AR_PHY_ERR_RADAR;
3537 if (bits & ATH9K_RX_FILTER_PHYERR)
3538 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3539 REG_WRITE(ah, AR_PHY_ERR, phybits);
3540
3541 if (phybits)
3542 REG_WRITE(ah, AR_RXCFG,
3543 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3544 else
3545 REG_WRITE(ah, AR_RXCFG,
3546 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3547}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003548EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303549
Sujithcbe61d82009-02-09 13:27:12 +05303550bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303551{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303552 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3553 return false;
3554
3555 ath9k_hw_init_pll(ah, NULL);
3556 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303557}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003558EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303559
Sujithcbe61d82009-02-09 13:27:12 +05303560bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303561{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003562 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303563 return false;
3564
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303565 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3566 return false;
3567
3568 ath9k_hw_init_pll(ah, NULL);
3569 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303570}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003571EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303572
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003573void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303574{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003575 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303576 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003577 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303578
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003579 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303580
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003581 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003582 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003583 channel->max_antenna_gain * 2,
3584 channel->max_power * 2,
3585 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003586 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303587}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003588EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303589
Sujithcbe61d82009-02-09 13:27:12 +05303590void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303591{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003592 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303593}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003594EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303595
Sujithcbe61d82009-02-09 13:27:12 +05303596void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303597{
Sujith2660b812009-02-09 13:27:26 +05303598 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303599}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003600EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303601
Sujithcbe61d82009-02-09 13:27:12 +05303602void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303603{
3604 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3605 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3606}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003607EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303608
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003609void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303610{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003611 struct ath_common *common = ath9k_hw_common(ah);
3612
3613 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3614 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3615 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303616}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003617EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303618
Sujithcbe61d82009-02-09 13:27:12 +05303619u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303620{
3621 u64 tsf;
3622
3623 tsf = REG_READ(ah, AR_TSF_U32);
3624 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3625
3626 return tsf;
3627}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003628EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303629
Sujithcbe61d82009-02-09 13:27:12 +05303630void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003631{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003632 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003633 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003634}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003635EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003636
Sujithcbe61d82009-02-09 13:27:12 +05303637void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303638{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003639 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3640 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003641 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3642 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003643
Sujithf1dc5602008-10-29 10:16:30 +05303644 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003645}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003646EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003647
Sujith54e4cec2009-08-07 09:45:09 +05303648void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003649{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003650 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303651 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003652 else
Sujith2660b812009-02-09 13:27:26 +05303653 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003654}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003655EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003656
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003657/*
3658 * Extend 15-bit time stamp from rx descriptor to
3659 * a full 64-bit TSF using the current h/w TSF.
3660*/
3661u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3662{
3663 u64 tsf;
3664
3665 tsf = ath9k_hw_gettsf64(ah);
3666 if ((tsf & 0x7fff) < rstamp)
3667 tsf -= 0x8000;
3668 return (tsf & ~0x7fff) | rstamp;
3669}
3670EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3671
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003672void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003673{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003674 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303675 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003676
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003677 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303678 macmode = AR_2040_JOINED_RX_CLEAR;
3679 else
3680 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003681
Sujithf1dc5602008-10-29 10:16:30 +05303682 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003683}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303684
3685/* HW Generic timers configuration */
3686
3687static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3688{
3689 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3690 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3691 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3692 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3693 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3694 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3695 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3696 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3697 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3698 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3699 AR_NDP2_TIMER_MODE, 0x0002},
3700 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3701 AR_NDP2_TIMER_MODE, 0x0004},
3702 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3703 AR_NDP2_TIMER_MODE, 0x0008},
3704 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3705 AR_NDP2_TIMER_MODE, 0x0010},
3706 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3707 AR_NDP2_TIMER_MODE, 0x0020},
3708 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3709 AR_NDP2_TIMER_MODE, 0x0040},
3710 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3711 AR_NDP2_TIMER_MODE, 0x0080}
3712};
3713
3714/* HW generic timer primitives */
3715
3716/* compute and clear index of rightmost 1 */
3717static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3718{
3719 u32 b;
3720
3721 b = *mask;
3722 b &= (0-b);
3723 *mask &= ~b;
3724 b *= debruijn32;
3725 b >>= 27;
3726
3727 return timer_table->gen_timer_index[b];
3728}
3729
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303730u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303731{
3732 return REG_READ(ah, AR_TSF_L32);
3733}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003734EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303735
3736struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3737 void (*trigger)(void *),
3738 void (*overflow)(void *),
3739 void *arg,
3740 u8 timer_index)
3741{
3742 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3743 struct ath_gen_timer *timer;
3744
3745 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3746
3747 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003748 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3749 "Failed to allocate memory"
3750 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303751 return NULL;
3752 }
3753
3754 /* allocate a hardware generic timer slot */
3755 timer_table->timers[timer_index] = timer;
3756 timer->index = timer_index;
3757 timer->trigger = trigger;
3758 timer->overflow = overflow;
3759 timer->arg = arg;
3760
3761 return timer;
3762}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003763EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303764
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003765void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3766 struct ath_gen_timer *timer,
3767 u32 timer_next,
3768 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303769{
3770 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3771 u32 tsf;
3772
3773 BUG_ON(!timer_period);
3774
3775 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3776
3777 tsf = ath9k_hw_gettsf32(ah);
3778
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003779 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3780 "curent tsf %x period %x"
3781 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303782
3783 /*
3784 * Pull timer_next forward if the current TSF already passed it
3785 * because of software latency
3786 */
3787 if (timer_next < tsf)
3788 timer_next = tsf + timer_period;
3789
3790 /*
3791 * Program generic timer registers
3792 */
3793 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3794 timer_next);
3795 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3796 timer_period);
3797 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3798 gen_tmr_configuration[timer->index].mode_mask);
3799
3800 /* Enable both trigger and thresh interrupt masks */
3801 REG_SET_BIT(ah, AR_IMR_S5,
3802 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3803 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303804}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003805EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303806
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003807void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303808{
3809 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3810
3811 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3812 (timer->index >= ATH_MAX_GEN_TIMER)) {
3813 return;
3814 }
3815
3816 /* Clear generic timer enable bits. */
3817 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3818 gen_tmr_configuration[timer->index].mode_mask);
3819
3820 /* Disable both trigger and thresh interrupt masks */
3821 REG_CLR_BIT(ah, AR_IMR_S5,
3822 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3823 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3824
3825 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303826}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003827EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303828
3829void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3830{
3831 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3832
3833 /* free the hardware generic timer slot */
3834 timer_table->timers[timer->index] = NULL;
3835 kfree(timer);
3836}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003837EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303838
3839/*
3840 * Generic Timer Interrupts handling
3841 */
3842void ath_gen_timer_isr(struct ath_hw *ah)
3843{
3844 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3845 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003846 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303847 u32 trigger_mask, thresh_mask, index;
3848
3849 /* get hardware generic timer interrupt status */
3850 trigger_mask = ah->intr_gen_timer_trigger;
3851 thresh_mask = ah->intr_gen_timer_thresh;
3852 trigger_mask &= timer_table->timer_mask.val;
3853 thresh_mask &= timer_table->timer_mask.val;
3854
3855 trigger_mask &= ~thresh_mask;
3856
3857 while (thresh_mask) {
3858 index = rightmost_index(timer_table, &thresh_mask);
3859 timer = timer_table->timers[index];
3860 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003861 ath_print(common, ATH_DBG_HWTIMER,
3862 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303863 timer->overflow(timer->arg);
3864 }
3865
3866 while (trigger_mask) {
3867 index = rightmost_index(timer_table, &trigger_mask);
3868 timer = timer_table->timers[index];
3869 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003870 ath_print(common, ATH_DBG_HWTIMER,
3871 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303872 timer->trigger(timer->arg);
3873 }
3874}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003875EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003876
Sujith05020d22010-03-17 14:25:23 +05303877/********/
3878/* HTC */
3879/********/
3880
3881void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3882{
3883 ah->htc_reset_init = true;
3884}
3885EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3886
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003887static struct {
3888 u32 version;
3889 const char * name;
3890} ath_mac_bb_names[] = {
3891 /* Devices with external radios */
3892 { AR_SREV_VERSION_5416_PCI, "5416" },
3893 { AR_SREV_VERSION_5416_PCIE, "5418" },
3894 { AR_SREV_VERSION_9100, "9100" },
3895 { AR_SREV_VERSION_9160, "9160" },
3896 /* Single-chip solutions */
3897 { AR_SREV_VERSION_9280, "9280" },
3898 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003899 { AR_SREV_VERSION_9287, "9287" },
3900 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003901};
3902
3903/* For devices with external radios */
3904static struct {
3905 u16 version;
3906 const char * name;
3907} ath_rf_names[] = {
3908 { 0, "5133" },
3909 { AR_RAD5133_SREV_MAJOR, "5133" },
3910 { AR_RAD5122_SREV_MAJOR, "5122" },
3911 { AR_RAD2133_SREV_MAJOR, "2133" },
3912 { AR_RAD2122_SREV_MAJOR, "2122" }
3913};
3914
3915/*
3916 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3917 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003918static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003919{
3920 int i;
3921
3922 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3923 if (ath_mac_bb_names[i].version == mac_bb_version) {
3924 return ath_mac_bb_names[i].name;
3925 }
3926 }
3927
3928 return "????";
3929}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003930
3931/*
3932 * Return the RF name. "????" is returned if the RF is unknown.
3933 * Used for devices with external radios.
3934 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003935static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003936{
3937 int i;
3938
3939 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3940 if (ath_rf_names[i].version == rf_version) {
3941 return ath_rf_names[i].name;
3942 }
3943 }
3944
3945 return "????";
3946}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003947
3948void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3949{
3950 int used;
3951
3952 /* chipsets >= AR9280 are single-chip */
3953 if (AR_SREV_9280_10_OR_LATER(ah)) {
3954 used = snprintf(hw_name, len,
3955 "Atheros AR%s Rev:%x",
3956 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3957 ah->hw_version.macRev);
3958 }
3959 else {
3960 used = snprintf(hw_name, len,
3961 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3962 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3963 ah->hw_version.macRev,
3964 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3965 AR_RADIO_SREV_MAJOR)),
3966 ah->hw_version.phyRev);
3967 }
3968
3969 hw_name[used] = '\0';
3970}
3971EXPORT_SYMBOL(ath9k_hw_name);