blob: 77db932c3137febc4632f8cb549fc97dcf251fa3 [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. Rodriguez7976b422009-09-23 23:07:02 -0400550 case AR9271_USB:
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500551 case AR2427_DEVID_PCIE:
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700552 return true;
553 default:
554 break;
555 }
556 return false;
557}
558
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700559static bool ath9k_hw_macversion_supported(u32 macversion)
560{
561 switch (macversion) {
562 case AR_SREV_VERSION_5416_PCI:
563 case AR_SREV_VERSION_5416_PCIE:
564 case AR_SREV_VERSION_9160:
565 case AR_SREV_VERSION_9100:
566 case AR_SREV_VERSION_9280:
567 case AR_SREV_VERSION_9285:
568 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400569 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400570 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700571 default:
572 break;
573 }
574 return false;
575}
576
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700577static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700579 if (AR_SREV_9160_10_OR_LATER(ah)) {
580 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530581 ah->iq_caldata.calData = &iq_cal_single_sample;
582 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700583 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530584 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700585 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530586 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587 &adc_init_dc_cal;
588 } else {
Sujith2660b812009-02-09 13:27:26 +0530589 ah->iq_caldata.calData = &iq_cal_multi_sample;
590 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530592 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530594 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595 &adc_init_dc_cal;
596 }
Sujith2660b812009-02-09 13:27:26 +0530597 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700601static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
602{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400603 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400604 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
605 ARRAY_SIZE(ar9271Modes_9271), 6);
606 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
607 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530608 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
609 ar9271Common_normal_cck_fir_coeff_9271,
610 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
611 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
612 ar9271Common_japan_2484_cck_fir_coeff_9271,
613 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400614 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
615 ar9271Modes_9271_1_0_only,
616 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530617 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
618 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
619 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
620 ar9271Modes_high_power_tx_gain_9271,
621 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
622 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
623 ar9271Modes_normal_power_tx_gain_9271,
624 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400625 return;
626 }
627
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530628 if (AR_SREV_9287_11_OR_LATER(ah)) {
629 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
630 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
631 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
632 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
633 if (ah->config.pcie_clock_req)
634 INIT_INI_ARRAY(&ah->iniPcieSerdes,
635 ar9287PciePhy_clkreq_off_L1_9287_1_1,
636 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
637 else
638 INIT_INI_ARRAY(&ah->iniPcieSerdes,
639 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
640 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
641 2);
642 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
643 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
644 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
645 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
646 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530648 if (ah->config.pcie_clock_req)
649 INIT_INI_ARRAY(&ah->iniPcieSerdes,
650 ar9287PciePhy_clkreq_off_L1_9287_1_0,
651 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
652 else
653 INIT_INI_ARRAY(&ah->iniPcieSerdes,
654 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
655 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
656 2);
657 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
658
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530659
Sujith2660b812009-02-09 13:27:26 +0530660 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530661 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530662 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530663 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
664
Sujith2660b812009-02-09 13:27:26 +0530665 if (ah->config.pcie_clock_req) {
666 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530667 ar9285PciePhy_clkreq_off_L1_9285_1_2,
668 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
669 } else {
Sujith2660b812009-02-09 13:27:26 +0530670 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530671 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
672 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
673 2);
674 }
675 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530676 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530677 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530678 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530679 ARRAY_SIZE(ar9285Common_9285), 2);
680
Sujith2660b812009-02-09 13:27:26 +0530681 if (ah->config.pcie_clock_req) {
682 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530683 ar9285PciePhy_clkreq_off_L1_9285,
684 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
685 } else {
Sujith2660b812009-02-09 13:27:26 +0530686 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530687 ar9285PciePhy_clkreq_always_on_L1_9285,
688 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
689 }
690 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530691 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700694 ARRAY_SIZE(ar9280Common_9280_2), 2);
695
Sujith2660b812009-02-09 13:27:26 +0530696 if (ah->config.pcie_clock_req) {
697 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530698 ar9280PciePhy_clkreq_off_L1_9280,
699 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700700 } else {
Sujith2660b812009-02-09 13:27:26 +0530701 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530702 ar9280PciePhy_clkreq_always_on_L1_9280,
703 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700704 }
Sujith2660b812009-02-09 13:27:26 +0530705 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700706 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530707 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530709 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700710 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530711 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700712 ARRAY_SIZE(ar9280Common_9280), 2);
713 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530714 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530716 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530718 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530720 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530722 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530724 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530726 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530728 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530730 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 ARRAY_SIZE(ar5416Bank7_9160), 2);
734 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530735 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 ar5416Addac_91601_1,
737 ARRAY_SIZE(ar5416Addac_91601_1), 2);
738 } else {
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Addac_9160), 2);
741 }
742 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530749 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530751 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530753 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700754 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530755 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530757 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700758 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530759 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar5416Addac_9100), 2);
765 } else {
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530780 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530782 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Addac), 2);
788 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700789}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700791static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
792{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530793 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530794 INIT_INI_ARRAY(&ah->iniModesRxGain,
795 ar9287Modes_rx_gain_9287_1_1,
796 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
797 else if (AR_SREV_9287_10(ah))
798 INIT_INI_ARRAY(&ah->iniModesRxGain,
799 ar9287Modes_rx_gain_9287_1_0,
800 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
801 else if (AR_SREV_9280_20(ah))
802 ath9k_hw_init_rxgain_ini(ah);
803
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530804 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530805 INIT_INI_ARRAY(&ah->iniModesTxGain,
806 ar9287Modes_tx_gain_9287_1_1,
807 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
808 } else if (AR_SREV_9287_10(ah)) {
809 INIT_INI_ARRAY(&ah->iniModesTxGain,
810 ar9287Modes_tx_gain_9287_1_0,
811 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
812 } else if (AR_SREV_9280_20(ah)) {
813 ath9k_hw_init_txgain_ini(ah);
814 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530815 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
816
817 /* txgain table */
818 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
819 INIT_INI_ARRAY(&ah->iniModesTxGain,
820 ar9285Modes_high_power_tx_gain_9285_1_2,
821 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
822 } else {
823 INIT_INI_ARRAY(&ah->iniModesTxGain,
824 ar9285Modes_original_tx_gain_9285_1_2,
825 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
826 }
827
828 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700829}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530830
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100831static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700832{
833 u32 i, j;
Sujith06d0f062009-02-12 10:06:45 +0530834
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100835 if (ah->hw_version.devid == AR9280_DEVID_PCI) {
Sujith06d0f062009-02-12 10:06:45 +0530836
837 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530838 for (i = 0; i < ah->iniModes.ia_rows; i++) {
839 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840
Sujith2660b812009-02-09 13:27:26 +0530841 for (j = 1; j < ah->iniModes.ia_columns; j++) {
842 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700843
Sujith2660b812009-02-09 13:27:26 +0530844 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530845 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530846 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700847 reg, val);
848 }
849 }
850 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700851}
852
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700853int ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700854{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700855 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700856 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700857
Luis R. Rodriguez3ca34032009-09-23 23:07:01 -0400858 if (!ath9k_hw_devid_supported(ah->hw_version.devid)) {
859 ath_print(common, ATH_DBG_FATAL,
860 "Unsupported device ID: 0x%0x\n",
861 ah->hw_version.devid);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700862 return -EOPNOTSUPP;
Luis R. Rodriguez3ca34032009-09-23 23:07:01 -0400863 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700864
865 ath9k_hw_init_defaults(ah);
866 ath9k_hw_init_config(ah);
867
868 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700869 ath_print(common, ATH_DBG_FATAL,
870 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700871 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700872 }
873
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700874 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700875 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700876 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700877 }
878
879 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
880 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
881 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
882 ah->config.serialize_regmode =
883 SER_REG_MODE_ON;
884 } else {
885 ah->config.serialize_regmode =
886 SER_REG_MODE_OFF;
887 }
888 }
889
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700890 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700891 ah->config.serialize_regmode);
892
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500893 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
894 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
895 else
896 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
897
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700898 if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700899 ath_print(common, ATH_DBG_FATAL,
900 "Mac Chip Rev 0x%02x.%x is not supported by "
901 "this driver\n", ah->hw_version.macVersion,
902 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700903 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700904 }
905
906 if (AR_SREV_9100(ah)) {
907 ah->iq_caldata.calData = &iq_cal_multi_sample;
908 ah->supp_cals = IQ_MISMATCH_CAL;
909 ah->is_pciexpress = false;
910 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400911
912 if (AR_SREV_9271(ah))
913 ah->is_pciexpress = false;
914
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700915 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
916
917 ath9k_hw_init_cal_settings(ah);
918
919 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400920 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700921 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400922 ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400923 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_9280_spur_mitigate;
924 } else {
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400925 ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400926 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_spur_mitigate;
927 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700928
929 ath9k_hw_init_mode_regs(ah);
930
931 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530932 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700933 else
934 ath9k_hw_disablepcie(ah);
935
Sujith193cd452009-09-18 15:04:07 +0530936 /* Support for Japan ch.14 (2484) spread */
937 if (AR_SREV_9287_11_OR_LATER(ah)) {
938 INIT_INI_ARRAY(&ah->iniCckfirNormal,
939 ar9287Common_normal_cck_fir_coeff_92871_1,
940 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
941 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
942 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
943 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
944 }
945
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700946 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700947 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700948 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700949
950 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100951 r = ath9k_hw_fill_cap_info(ah);
952 if (r)
953 return r;
954
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100955 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530956
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700957 r = ath9k_hw_init_macaddr(ah);
958 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700959 ath_print(common, ATH_DBG_FATAL,
960 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700961 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700962 }
963
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400964 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530965 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700966 else
Sujith2660b812009-02-09 13:27:26 +0530967 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700968
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700969 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700970
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400971 common->state = ATH_HW_INITIALIZED;
972
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700973 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700974}
975
Sujithcbe61d82009-02-09 13:27:12 +0530976static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530977 struct ath9k_channel *chan)
978{
979 u32 synthDelay;
980
981 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530982 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530983 synthDelay = (4 * synthDelay) / 22;
984 else
985 synthDelay /= 10;
986
987 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
988
989 udelay(synthDelay + BASE_ACTIVATE_DELAY);
990}
991
Sujithcbe61d82009-02-09 13:27:12 +0530992static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530993{
994 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
995 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
996
997 REG_WRITE(ah, AR_QOS_NO_ACK,
998 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
999 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1000 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1001
1002 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1003 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1004 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1005 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1006 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1007}
1008
Sujithcbe61d82009-02-09 13:27:12 +05301009static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301010 struct ath9k_channel *chan)
1011{
1012 u32 pll;
1013
1014 if (AR_SREV_9100(ah)) {
1015 if (chan && IS_CHAN_5GHZ(chan))
1016 pll = 0x1450;
1017 else
1018 pll = 0x1458;
1019 } else {
1020 if (AR_SREV_9280_10_OR_LATER(ah)) {
1021 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1022
1023 if (chan && IS_CHAN_HALF_RATE(chan))
1024 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1025 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1026 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1027
1028 if (chan && IS_CHAN_5GHZ(chan)) {
1029 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1030
1031
1032 if (AR_SREV_9280_20(ah)) {
1033 if (((chan->channel % 20) == 0)
1034 || ((chan->channel % 10) == 0))
1035 pll = 0x2850;
1036 else
1037 pll = 0x142c;
1038 }
1039 } else {
1040 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1041 }
1042
1043 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1044
1045 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1046
1047 if (chan && IS_CHAN_HALF_RATE(chan))
1048 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1049 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1050 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1051
1052 if (chan && IS_CHAN_5GHZ(chan))
1053 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1054 else
1055 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1056 } else {
1057 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1058
1059 if (chan && IS_CHAN_HALF_RATE(chan))
1060 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1061 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1062 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1063
1064 if (chan && IS_CHAN_5GHZ(chan))
1065 pll |= SM(0xa, AR_RTC_PLL_DIV);
1066 else
1067 pll |= SM(0xb, AR_RTC_PLL_DIV);
1068 }
1069 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001070 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301071
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001072 /* Switch the core clock for ar9271 to 117Mhz */
1073 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301074 udelay(500);
1075 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001076 }
1077
Sujithf1dc5602008-10-29 10:16:30 +05301078 udelay(RTC_PLL_SETTLE_DELAY);
1079
1080 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1081}
1082
Sujithcbe61d82009-02-09 13:27:12 +05301083static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301084{
Sujithf1dc5602008-10-29 10:16:30 +05301085 int rx_chainmask, tx_chainmask;
1086
Sujith2660b812009-02-09 13:27:26 +05301087 rx_chainmask = ah->rxchainmask;
1088 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301089
1090 switch (rx_chainmask) {
1091 case 0x5:
1092 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1093 AR_PHY_SWAP_ALT_CHAIN);
1094 case 0x3:
Sujithcb53a152009-11-16 11:40:57 +05301095 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
Sujithf1dc5602008-10-29 10:16:30 +05301096 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1097 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1098 break;
1099 }
1100 case 0x1:
1101 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301102 case 0x7:
1103 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1104 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1105 break;
1106 default:
1107 break;
1108 }
1109
1110 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1111 if (tx_chainmask == 0x5) {
1112 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1113 AR_PHY_SWAP_ALT_CHAIN);
1114 }
1115 if (AR_SREV_9100(ah))
1116 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1117 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1118}
1119
Sujithcbe61d82009-02-09 13:27:12 +05301120static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001121 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301122{
Sujith2660b812009-02-09 13:27:26 +05301123 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301124 AR_IMR_TXURN |
1125 AR_IMR_RXERR |
1126 AR_IMR_RXORN |
1127 AR_IMR_BCNMISC;
1128
Sujith0ce024c2009-12-14 14:57:00 +05301129 if (ah->config.rx_intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301130 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301131 else
Sujith2660b812009-02-09 13:27:26 +05301132 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301133
Sujith2660b812009-02-09 13:27:26 +05301134 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301135
Colin McCabed97809d2008-12-01 13:38:55 -08001136 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301137 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301138
Sujith2660b812009-02-09 13:27:26 +05301139 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001140 ah->imrs2_reg |= AR_IMR_S2_GTT;
1141 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301142
1143 if (!AR_SREV_9100(ah)) {
1144 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1145 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1146 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1147 }
1148}
1149
Felix Fietkau0005baf2010-01-15 02:33:40 +01001150static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301151{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001152 u32 val = ath9k_hw_mac_to_clks(ah, us);
1153 val = min(val, (u32) 0xFFFF);
1154 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301155}
1156
Felix Fietkau0005baf2010-01-15 02:33:40 +01001157static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301158{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001159 u32 val = ath9k_hw_mac_to_clks(ah, us);
1160 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1161 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1162}
1163
1164static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1165{
1166 u32 val = ath9k_hw_mac_to_clks(ah, us);
1167 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1168 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301169}
1170
Sujithcbe61d82009-02-09 13:27:12 +05301171static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301172{
Sujithf1dc5602008-10-29 10:16:30 +05301173 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001174 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1175 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301176 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301177 return false;
1178 } else {
1179 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301180 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301181 return true;
1182 }
1183}
1184
Felix Fietkau0005baf2010-01-15 02:33:40 +01001185void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301186{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001187 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1188 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001189 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001190 int sifstime;
1191
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001192 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1193 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301194
Sujith2660b812009-02-09 13:27:26 +05301195 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301196 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301197 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001198
1199 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1200 sifstime = 16;
1201 else
1202 sifstime = 10;
1203
Felix Fietkaue239d852010-01-15 02:34:58 +01001204 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1205 slottime = ah->slottime + 3 * ah->coverage_class;
1206 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001207
1208 /*
1209 * Workaround for early ACK timeouts, add an offset to match the
1210 * initval's 64us ack timeout value.
1211 * This was initially only meant to work around an issue with delayed
1212 * BA frames in some implementations, but it has been found to fix ACK
1213 * timeout issues in other cases as well.
1214 */
1215 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1216 acktimeout += 64 - sifstime - ah->slottime;
1217
Felix Fietkaue239d852010-01-15 02:34:58 +01001218 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001219 ath9k_hw_set_ack_timeout(ah, acktimeout);
1220 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301221 if (ah->globaltxtimeout != (u32) -1)
1222 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301223}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001224EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301225
Sujith285f2dd2010-01-08 10:36:07 +05301226void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001227{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001228 struct ath_common *common = ath9k_hw_common(ah);
1229
Sujith736b3a22010-03-17 14:25:24 +05301230 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001231 goto free_hw;
1232
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001233 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001234 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001235
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001236 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001237
1238free_hw:
Luis R. Rodriguezdc51dd52009-10-19 02:33:39 -04001239 if (!AR_SREV_9280_10_OR_LATER(ah))
1240 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001241}
Sujith285f2dd2010-01-08 10:36:07 +05301242EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243
Sujithf1dc5602008-10-29 10:16:30 +05301244/*******/
1245/* INI */
1246/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247
Sujithcbe61d82009-02-09 13:27:12 +05301248static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301249 struct ath9k_channel *chan)
1250{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001251 u32 val;
1252
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301253 /*
1254 * Set the RX_ABORT and RX_DIS and clear if off only after
1255 * RXE is set for MAC. This prevents frames with corrupted
1256 * descriptor status.
1257 */
1258 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1259
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301260 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith70807e92010-03-17 14:25:14 +05301261 val = REG_READ(ah, AR_PCU_MISC_MODE2);
1262
1263 if (!AR_SREV_9271(ah))
1264 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301265
1266 if (AR_SREV_9287_10_OR_LATER(ah))
1267 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
1268
1269 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
1270 }
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301271
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001272 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301273 AR_SREV_9280_10_OR_LATER(ah))
1274 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001275 /*
1276 * Disable BB clock gating
1277 * Necessary to avoid issues on AR5416 2.0
1278 */
Sujithf1dc5602008-10-29 10:16:30 +05301279 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
Felix Fietkau7bfbae12010-02-24 04:43:05 +01001280
1281 /*
1282 * Disable RIFS search on some chips to avoid baseband
1283 * hang issues.
1284 */
1285 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
1286 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
1287 val &= ~AR_PHY_RIFS_INIT_DELAY;
1288 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
1289 }
Sujithf1dc5602008-10-29 10:16:30 +05301290}
1291
Sujithcbe61d82009-02-09 13:27:12 +05301292static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301293 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301294 u32 reg, u32 value)
1295{
1296 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001297 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301298
Sujithd535a422009-02-09 13:27:06 +05301299 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301300 case AR9280_DEVID_PCI:
1301 if (reg == 0x7894) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001302 ath_print(common, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301303 "ini VAL: %x EEPROM: %x\n", value,
1304 (pBase->version & 0xff));
1305
1306 if ((pBase->version & 0xff) > 0x0a) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001307 ath_print(common, ATH_DBG_EEPROM,
1308 "PWDCLKIND: %d\n",
1309 pBase->pwdclkind);
Sujithf1dc5602008-10-29 10:16:30 +05301310 value &= ~AR_AN_TOP2_PWDCLKIND;
1311 value |= AR_AN_TOP2_PWDCLKIND &
1312 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1313 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001314 ath_print(common, ATH_DBG_EEPROM,
1315 "PWDCLKIND Earlier Rev\n");
Sujithf1dc5602008-10-29 10:16:30 +05301316 }
1317
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001318 ath_print(common, ATH_DBG_EEPROM,
1319 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001320 }
Sujithf1dc5602008-10-29 10:16:30 +05301321 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001322 }
1323
Sujithf1dc5602008-10-29 10:16:30 +05301324 return value;
1325}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326
Sujithcbe61d82009-02-09 13:27:12 +05301327static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301328 struct ar5416_eeprom_def *pEepData,
1329 u32 reg, u32 value)
1330{
Sujith2660b812009-02-09 13:27:26 +05301331 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301332 return value;
1333 else
1334 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1335}
1336
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301337static void ath9k_olc_init(struct ath_hw *ah)
1338{
1339 u32 i;
1340
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301341 if (OLC_FOR_AR9287_10_LATER) {
1342 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1343 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1344 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1345 AR9287_AN_TXPC0_TXPCMODE,
1346 AR9287_AN_TXPC0_TXPCMODE_S,
1347 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1348 udelay(100);
1349 } else {
1350 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1351 ah->originalGain[i] =
1352 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1353 AR_PHY_TX_GAIN);
1354 ah->PDADCdelta = 0;
1355 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301356}
1357
Bob Copeland3a702e42009-03-30 22:30:29 -04001358static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1359 struct ath9k_channel *chan)
1360{
1361 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1362
1363 if (IS_CHAN_B(chan))
1364 ctl |= CTL_11B;
1365 else if (IS_CHAN_G(chan))
1366 ctl |= CTL_11G;
1367 else
1368 ctl |= CTL_11A;
1369
1370 return ctl;
1371}
1372
Sujithcbe61d82009-02-09 13:27:12 +05301373static int ath9k_hw_process_ini(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001374 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301375{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001376 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301377 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001378 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301379 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001380
Sujithf1dc5602008-10-29 10:16:30 +05301381 switch (chan->chanmode) {
1382 case CHANNEL_A:
1383 case CHANNEL_A_HT20:
1384 modesIndex = 1;
1385 freqIndex = 1;
1386 break;
1387 case CHANNEL_A_HT40PLUS:
1388 case CHANNEL_A_HT40MINUS:
1389 modesIndex = 2;
1390 freqIndex = 1;
1391 break;
1392 case CHANNEL_G:
1393 case CHANNEL_G_HT20:
1394 case CHANNEL_B:
1395 modesIndex = 4;
1396 freqIndex = 2;
1397 break;
1398 case CHANNEL_G_HT40PLUS:
1399 case CHANNEL_G_HT40MINUS:
1400 modesIndex = 3;
1401 freqIndex = 2;
1402 break;
1403
1404 default:
1405 return -EINVAL;
1406 }
1407
Sujith70807e92010-03-17 14:25:14 +05301408 /* Set correct baseband to analog shift setting to access analog chips */
Sujithf1dc5602008-10-29 10:16:30 +05301409 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujith70807e92010-03-17 14:25:14 +05301410
1411 /* Write ADDAC shifts */
Sujithf1dc5602008-10-29 10:16:30 +05301412 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301413 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301414
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001415 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301416 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301417 } else {
1418 struct ar5416IniArray temp;
1419 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301420 sizeof(u32) * ah->iniAddac.ia_rows *
1421 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301422
Sujith70807e92010-03-17 14:25:14 +05301423 /* For AR5416 2.0/2.1 */
Sujith2660b812009-02-09 13:27:26 +05301424 memcpy(ah->addac5416_21,
1425 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301426
Sujith70807e92010-03-17 14:25:14 +05301427 /* override CLKDRV value at [row, column] = [31, 1] */
Sujith2660b812009-02-09 13:27:26 +05301428 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301429
Sujith2660b812009-02-09 13:27:26 +05301430 temp.ia_array = ah->addac5416_21;
1431 temp.ia_columns = ah->iniAddac.ia_columns;
1432 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301433 REG_WRITE_ARRAY(&temp, 1, regWrites);
1434 }
1435
1436 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1437
Sujith2660b812009-02-09 13:27:26 +05301438 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1439 u32 reg = INI_RA(&ah->iniModes, i, 0);
1440 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301441
Sujithf1dc5602008-10-29 10:16:30 +05301442 REG_WRITE(ah, reg, val);
1443
1444 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301445 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301446 udelay(100);
1447 }
1448
1449 DO_DELAY(regWrites);
1450 }
1451
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301452 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301453 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301454
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301455 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1456 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301457 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301458
Sujith70807e92010-03-17 14:25:14 +05301459 if (AR_SREV_9271_10(ah))
1460 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
1461 modesIndex, regWrites);
1462
1463 /* Write common array parameters */
Sujith2660b812009-02-09 13:27:26 +05301464 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1465 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1466 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301467
1468 REG_WRITE(ah, reg, val);
1469
1470 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301471 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301472 udelay(100);
1473 }
1474
1475 DO_DELAY(regWrites);
1476 }
1477
Sujith70807e92010-03-17 14:25:14 +05301478 if (AR_SREV_9271(ah)) {
1479 if (ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE) == 1)
1480 REG_WRITE_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
1481 modesIndex, regWrites);
1482 else
1483 REG_WRITE_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
1484 modesIndex, regWrites);
1485 }
Sujithf1dc5602008-10-29 10:16:30 +05301486
Sujith70807e92010-03-17 14:25:14 +05301487 ath9k_hw_write_regs(ah, freqIndex, regWrites);
Luis R. Rodriguez85643282009-10-19 02:33:33 -04001488
Sujithf1dc5602008-10-29 10:16:30 +05301489 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301490 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301491 regWrites);
1492 }
1493
1494 ath9k_hw_override_ini(ah, chan);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001495 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301496 ath9k_hw_init_chain_masks(ah);
1497
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301498 if (OLC_FOR_AR9280_20_LATER)
1499 ath9k_olc_init(ah);
1500
Sujith70807e92010-03-17 14:25:14 +05301501 /* Set TX power */
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001502 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001503 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001504 channel->max_antenna_gain * 2,
1505 channel->max_power * 2,
1506 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001507 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001508
Sujith70807e92010-03-17 14:25:14 +05301509 /* Write analog registers */
Sujithf1dc5602008-10-29 10:16:30 +05301510 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001511 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1512 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001513 return -EIO;
1514 }
1515
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001516 return 0;
1517}
1518
Sujithf1dc5602008-10-29 10:16:30 +05301519/****************************************/
1520/* Reset and Channel Switching Routines */
1521/****************************************/
1522
Sujithcbe61d82009-02-09 13:27:12 +05301523static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301524{
1525 u32 rfMode = 0;
1526
1527 if (chan == NULL)
1528 return;
1529
1530 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1531 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1532
1533 if (!AR_SREV_9280_10_OR_LATER(ah))
1534 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1535 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1536
1537 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1538 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1539
1540 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1541}
1542
Sujithcbe61d82009-02-09 13:27:12 +05301543static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301544{
1545 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1546}
1547
Sujithcbe61d82009-02-09 13:27:12 +05301548static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301549{
1550 u32 regval;
1551
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001552 /*
1553 * set AHB_MODE not to do cacheline prefetches
1554 */
Sujithf1dc5602008-10-29 10:16:30 +05301555 regval = REG_READ(ah, AR_AHB_MODE);
1556 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1557
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001558 /*
1559 * let mac dma reads be in 128 byte chunks
1560 */
Sujithf1dc5602008-10-29 10:16:30 +05301561 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1562 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1563
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001564 /*
1565 * Restore TX Trigger Level to its pre-reset value.
1566 * The initial value depends on whether aggregation is enabled, and is
1567 * adjusted whenever underruns are detected.
1568 */
Sujith2660b812009-02-09 13:27:26 +05301569 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301570
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001571 /*
1572 * let mac dma writes be in 128 byte chunks
1573 */
Sujithf1dc5602008-10-29 10:16:30 +05301574 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1575 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1576
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001577 /*
1578 * Setup receive FIFO threshold to hold off TX activities
1579 */
Sujithf1dc5602008-10-29 10:16:30 +05301580 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1581
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001582 /*
1583 * reduce the number of usable entries in PCU TXBUF to avoid
1584 * wrap around issues.
1585 */
Sujithf1dc5602008-10-29 10:16:30 +05301586 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001587 /* For AR9285 the number of Fifos are reduced to half.
1588 * So set the usable tx buf size also to half to
1589 * avoid data/delimiter underruns
1590 */
Sujithf1dc5602008-10-29 10:16:30 +05301591 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1592 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001593 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301594 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1595 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1596 }
1597}
1598
Sujithcbe61d82009-02-09 13:27:12 +05301599static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301600{
1601 u32 val;
1602
1603 val = REG_READ(ah, AR_STA_ID1);
1604 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1605 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001606 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301607 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1608 | AR_STA_ID1_KSRCH_MODE);
1609 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1610 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001611 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001612 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301613 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1614 | AR_STA_ID1_KSRCH_MODE);
1615 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1616 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001617 case NL80211_IFTYPE_STATION:
1618 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301619 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1620 break;
1621 }
1622}
1623
Sujithcbe61d82009-02-09 13:27:12 +05301624static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001625 u32 coef_scaled,
1626 u32 *coef_mantissa,
1627 u32 *coef_exponent)
1628{
1629 u32 coef_exp, coef_man;
1630
1631 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1632 if ((coef_scaled >> coef_exp) & 0x1)
1633 break;
1634
1635 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1636
1637 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1638
1639 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1640 *coef_exponent = coef_exp - 16;
1641}
1642
Sujithcbe61d82009-02-09 13:27:12 +05301643static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301644 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001645{
1646 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1647 u32 clockMhzScaled = 0x64000000;
1648 struct chan_centers centers;
1649
1650 if (IS_CHAN_HALF_RATE(chan))
1651 clockMhzScaled = clockMhzScaled >> 1;
1652 else if (IS_CHAN_QUARTER_RATE(chan))
1653 clockMhzScaled = clockMhzScaled >> 2;
1654
1655 ath9k_hw_get_channel_centers(ah, chan, &centers);
1656 coef_scaled = clockMhzScaled / centers.synth_center;
1657
1658 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1659 &ds_coef_exp);
1660
1661 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1662 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1663 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1664 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1665
1666 coef_scaled = (9 * coef_scaled) / 10;
1667
1668 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1669 &ds_coef_exp);
1670
1671 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1672 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1673 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1674 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1675}
1676
Sujithcbe61d82009-02-09 13:27:12 +05301677static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301678{
1679 u32 rst_flags;
1680 u32 tmpReg;
1681
Sujith70768492009-02-16 13:23:12 +05301682 if (AR_SREV_9100(ah)) {
1683 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1684 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1685 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1686 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1687 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1688 }
1689
Sujithf1dc5602008-10-29 10:16:30 +05301690 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1691 AR_RTC_FORCE_WAKE_ON_INT);
1692
1693 if (AR_SREV_9100(ah)) {
1694 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1695 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1696 } else {
1697 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1698 if (tmpReg &
1699 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1700 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1701 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1702 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1703 } else {
1704 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1705 }
1706
1707 rst_flags = AR_RTC_RC_MAC_WARM;
1708 if (type == ATH9K_RESET_COLD)
1709 rst_flags |= AR_RTC_RC_MAC_COLD;
1710 }
1711
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001712 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301713 udelay(50);
1714
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001715 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301716 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001717 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1718 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301719 return false;
1720 }
1721
1722 if (!AR_SREV_9100(ah))
1723 REG_WRITE(ah, AR_RC, 0);
1724
Sujithf1dc5602008-10-29 10:16:30 +05301725 if (AR_SREV_9100(ah))
1726 udelay(50);
1727
1728 return true;
1729}
1730
Sujithcbe61d82009-02-09 13:27:12 +05301731static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301732{
1733 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1734 AR_RTC_FORCE_WAKE_ON_INT);
1735
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301736 if (!AR_SREV_9100(ah))
1737 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1738
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001739 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301740 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301741
1742 if (!AR_SREV_9100(ah))
1743 REG_WRITE(ah, AR_RC, 0);
1744
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001745 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301746
1747 if (!ath9k_hw_wait(ah,
1748 AR_RTC_STATUS,
1749 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301750 AR_RTC_STATUS_ON,
1751 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001752 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1753 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301754 return false;
1755 }
1756
1757 ath9k_hw_read_revisions(ah);
1758
1759 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1760}
1761
Sujithcbe61d82009-02-09 13:27:12 +05301762static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301763{
1764 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1765 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1766
1767 switch (type) {
1768 case ATH9K_RESET_POWER_ON:
1769 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301770 case ATH9K_RESET_WARM:
1771 case ATH9K_RESET_COLD:
1772 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301773 default:
1774 return false;
1775 }
1776}
1777
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001778static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301779{
1780 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301781 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301782
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301783 if (AR_SREV_9285_10_OR_LATER(ah))
1784 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1785 AR_PHY_FC_ENABLE_DAC_FIFO);
1786
Sujithf1dc5602008-10-29 10:16:30 +05301787 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301788 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301789
1790 if (IS_CHAN_HT40(chan)) {
1791 phymode |= AR_PHY_FC_DYN2040_EN;
1792
1793 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1794 (chan->chanmode == CHANNEL_G_HT40PLUS))
1795 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1796
Sujithf1dc5602008-10-29 10:16:30 +05301797 }
1798 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1799
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001800 ath9k_hw_set11nmac2040(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301801
1802 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1803 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1804}
1805
Sujithcbe61d82009-02-09 13:27:12 +05301806static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301807 struct ath9k_channel *chan)
1808{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301809 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301810 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1811 return false;
1812 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301813 return false;
1814
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001815 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301816 return false;
1817
Sujith2660b812009-02-09 13:27:26 +05301818 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301819 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301820 ath9k_hw_set_rfmode(ah, chan);
1821
1822 return true;
1823}
1824
Sujithcbe61d82009-02-09 13:27:12 +05301825static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001826 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301827{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001828 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001829 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001830 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301831 u32 synthDelay, qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001832 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301833
1834 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1835 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001836 ath_print(common, ATH_DBG_QUEUE,
1837 "Transmit frames pending on "
1838 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301839 return false;
1840 }
1841 }
1842
1843 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1844 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301845 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001846 ath_print(common, ATH_DBG_FATAL,
1847 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301848 return false;
1849 }
1850
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001851 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301852
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04001853 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001854 if (r) {
1855 ath_print(common, ATH_DBG_FATAL,
1856 "Failed to set channel\n");
1857 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301858 }
1859
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001860 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001861 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301862 channel->max_antenna_gain * 2,
1863 channel->max_power * 2,
1864 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001865 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301866
1867 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301868 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301869 synthDelay = (4 * synthDelay) / 22;
1870 else
1871 synthDelay /= 10;
1872
1873 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1874
1875 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1876
1877 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1878 ath9k_hw_set_delta_slope(ah, chan);
1879
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04001880 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301881
1882 if (!chan->oneTimeCalsDone)
1883 chan->oneTimeCalsDone = true;
1884
1885 return true;
1886}
1887
Johannes Berg3b319aa2009-06-13 14:50:26 +05301888static void ath9k_enable_rfkill(struct ath_hw *ah)
1889{
1890 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
1891 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
1892
1893 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
1894 AR_GPIO_INPUT_MUX2_RFSILENT);
1895
1896 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
1897 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
1898}
1899
Sujithcbe61d82009-02-09 13:27:12 +05301900int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001901 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001903 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001904 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301905 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001906 u32 saveDefAntenna;
1907 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301908 u64 tsf = 0;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001909 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001910
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001911 ah->txchainmask = common->tx_chainmask;
1912 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001913
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001914 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001915 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001916
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301917 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001918 ath9k_hw_getnf(ah, curchan);
1919
1920 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301921 (ah->chip_fullsleep != true) &&
1922 (ah->curchan != NULL) &&
1923 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001924 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301925 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301926 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1927 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001928
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001929 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301930 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001931 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001932 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001933 }
1934 }
1935
1936 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1937 if (saveDefAntenna == 0)
1938 saveDefAntenna = 1;
1939
1940 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1941
Sujith46fe7822009-09-17 09:25:25 +05301942 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1943 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1944 tsf = ath9k_hw_gettsf64(ah);
1945
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001946 saveLedState = REG_READ(ah, AR_CFG_LED) &
1947 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1948 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1949
1950 ath9k_hw_mark_phy_inactive(ah);
1951
Sujith05020d22010-03-17 14:25:23 +05301952 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001953 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1954 REG_WRITE(ah,
1955 AR9271_RESET_POWER_DOWN_CONTROL,
1956 AR9271_RADIO_RF_RST);
1957 udelay(50);
1958 }
1959
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001961 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001962 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963 }
1964
Sujith05020d22010-03-17 14:25:23 +05301965 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001966 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1967 ah->htc_reset_init = false;
1968 REG_WRITE(ah,
1969 AR9271_RESET_POWER_DOWN_CONTROL,
1970 AR9271_GATE_MAC_CTL);
1971 udelay(50);
1972 }
1973
Sujith46fe7822009-09-17 09:25:25 +05301974 /* Restore TSF */
1975 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1976 ath9k_hw_settsf64(ah, tsf);
1977
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301978 if (AR_SREV_9280_10_OR_LATER(ah))
1979 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001980
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301981 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301982 /* Enable ASYNC FIFO */
1983 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1984 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
1985 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
1986 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1987 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
1988 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1989 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
1990 }
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001991 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001992 if (r)
1993 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001994
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001995 /* Setup MFP options for CCMP */
1996 if (AR_SREV_9280_20_OR_LATER(ah)) {
1997 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1998 * frames when constructing CCMP AAD. */
1999 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2000 0xc7ff);
2001 ah->sw_mgmt_crypto = false;
2002 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2003 /* Disable hardware crypto for management frames */
2004 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2005 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2006 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2007 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2008 ah->sw_mgmt_crypto = true;
2009 } else
2010 ah->sw_mgmt_crypto = true;
2011
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2013 ath9k_hw_set_delta_slope(ah, chan);
2014
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04002015 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05302016 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04002017
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002018 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
2019 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020 | macStaId1
2021 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302022 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302023 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302024 | ah->sta_id1_defaults);
2025 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002026
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07002027 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028
2029 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2030
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07002031 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032
2033 REG_WRITE(ah, AR_ISR, ~0);
2034
2035 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2036
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04002037 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04002038 if (r)
2039 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002040
2041 for (i = 0; i < AR_NUM_DCU; i++)
2042 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2043
Sujith2660b812009-02-09 13:27:26 +05302044 ah->intr_txqs = 0;
2045 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002046 ath9k_hw_resettxqueue(ah, i);
2047
Sujith2660b812009-02-09 13:27:26 +05302048 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049 ath9k_hw_init_qos(ah);
2050
Sujith2660b812009-02-09 13:27:26 +05302051 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302052 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302053
Felix Fietkau0005baf2010-01-15 02:33:40 +01002054 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002055
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302056 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302057 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2058 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2059 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2060 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2061 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2062 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2063
2064 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2065 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2066
2067 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2068 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2069 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2070 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2071 }
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_SET_BIT(ah, AR_PCU_MISC_MODE2,
2074 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2075 }
2076
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002077 REG_WRITE(ah, AR_STA_ID1,
2078 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2079
2080 ath9k_hw_set_dma(ah);
2081
2082 REG_WRITE(ah, AR_OBS, 8);
2083
Sujith0ce024c2009-12-14 14:57:00 +05302084 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002085 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2086 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2087 }
2088
2089 ath9k_hw_init_bb(ah, chan);
2090
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002091 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002092 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002093
Sujith2660b812009-02-09 13:27:26 +05302094 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002095 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2096 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2097 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2098 }
2099
2100 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2101
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002102 /*
2103 * For big endian systems turn on swapping for descriptors
2104 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002105 if (AR_SREV_9100(ah)) {
2106 u32 mask;
2107 mask = REG_READ(ah, AR_CFG);
2108 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002109 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302110 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002111 } else {
2112 mask =
2113 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2114 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002115 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302116 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002117 }
2118 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002119 /* Configure AR9271 target WLAN */
2120 if (AR_SREV_9271(ah))
2121 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002123 else
2124 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002125#endif
2126 }
2127
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002128 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302129 ath9k_hw_btcoex_enable(ah);
2130
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002131 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002132}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002133EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002134
Sujithf1dc5602008-10-29 10:16:30 +05302135/************************/
2136/* Key Cache Management */
2137/************************/
2138
Sujithcbe61d82009-02-09 13:27:12 +05302139bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002140{
Sujithf1dc5602008-10-29 10:16:30 +05302141 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142
Sujith2660b812009-02-09 13:27:26 +05302143 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002144 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2145 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002146 return false;
2147 }
2148
Sujithf1dc5602008-10-29 10:16:30 +05302149 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150
Sujithf1dc5602008-10-29 10:16:30 +05302151 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2152 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2153 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2154 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2155 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2156 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2157 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2158 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2159
2160 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2161 u16 micentry = entry + 64;
2162
2163 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2164 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2165 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2166 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2167
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002168 }
2169
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002170 return true;
2171}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002172EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002173
Sujithcbe61d82009-02-09 13:27:12 +05302174bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002175{
Sujithf1dc5602008-10-29 10:16:30 +05302176 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002177
Sujith2660b812009-02-09 13:27:26 +05302178 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002179 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2180 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002181 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002182 }
2183
Sujithf1dc5602008-10-29 10:16:30 +05302184 if (mac != NULL) {
2185 macHi = (mac[5] << 8) | mac[4];
2186 macLo = (mac[3] << 24) |
2187 (mac[2] << 16) |
2188 (mac[1] << 8) |
2189 mac[0];
2190 macLo >>= 1;
2191 macLo |= (macHi & 1) << 31;
2192 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002193 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302194 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195 }
Sujithf1dc5602008-10-29 10:16:30 +05302196 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2197 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002198
2199 return true;
2200}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002201EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002202
Sujithcbe61d82009-02-09 13:27:12 +05302203bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302204 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002205 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002206{
Sujith2660b812009-02-09 13:27:26 +05302207 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002208 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302209 u32 key0, key1, key2, key3, key4;
2210 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002211
Sujithf1dc5602008-10-29 10:16:30 +05302212 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002213 ath_print(common, ATH_DBG_FATAL,
2214 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302215 return false;
2216 }
2217
2218 switch (k->kv_type) {
2219 case ATH9K_CIPHER_AES_OCB:
2220 keyType = AR_KEYTABLE_TYPE_AES;
2221 break;
2222 case ATH9K_CIPHER_AES_CCM:
2223 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002224 ath_print(common, ATH_DBG_ANY,
2225 "AES-CCM not supported by mac rev 0x%x\n",
2226 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002227 return false;
2228 }
Sujithf1dc5602008-10-29 10:16:30 +05302229 keyType = AR_KEYTABLE_TYPE_CCM;
2230 break;
2231 case ATH9K_CIPHER_TKIP:
2232 keyType = AR_KEYTABLE_TYPE_TKIP;
2233 if (ATH9K_IS_MIC_ENABLED(ah)
2234 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002235 ath_print(common, ATH_DBG_ANY,
2236 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002237 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238 }
Sujithf1dc5602008-10-29 10:16:30 +05302239 break;
2240 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002241 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002242 ath_print(common, ATH_DBG_ANY,
2243 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302244 return false;
2245 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002246 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302247 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002248 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302249 keyType = AR_KEYTABLE_TYPE_104;
2250 else
2251 keyType = AR_KEYTABLE_TYPE_128;
2252 break;
2253 case ATH9K_CIPHER_CLR:
2254 keyType = AR_KEYTABLE_TYPE_CLR;
2255 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002257 ath_print(common, ATH_DBG_FATAL,
2258 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259 return false;
2260 }
Sujithf1dc5602008-10-29 10:16:30 +05302261
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002262 key0 = get_unaligned_le32(k->kv_val + 0);
2263 key1 = get_unaligned_le16(k->kv_val + 4);
2264 key2 = get_unaligned_le32(k->kv_val + 6);
2265 key3 = get_unaligned_le16(k->kv_val + 10);
2266 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002267 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302268 key4 &= 0xff;
2269
Jouni Malinen672903b2009-03-02 15:06:31 +02002270 /*
2271 * Note: Key cache registers access special memory area that requires
2272 * two 32-bit writes to actually update the values in the internal
2273 * memory. Consequently, the exact order and pairs used here must be
2274 * maintained.
2275 */
2276
Sujithf1dc5602008-10-29 10:16:30 +05302277 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2278 u16 micentry = entry + 64;
2279
Jouni Malinen672903b2009-03-02 15:06:31 +02002280 /*
2281 * Write inverted key[47:0] first to avoid Michael MIC errors
2282 * on frames that could be sent or received at the same time.
2283 * The correct key will be written in the end once everything
2284 * else is ready.
2285 */
Sujithf1dc5602008-10-29 10:16:30 +05302286 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2287 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002288
2289 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302290 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2291 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002292
2293 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302294 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2295 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002296
2297 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302298 (void) ath9k_hw_keysetmac(ah, entry, mac);
2299
Sujith2660b812009-02-09 13:27:26 +05302300 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002301 /*
2302 * TKIP uses two key cache entries:
2303 * Michael MIC TX/RX keys in the same key cache entry
2304 * (idx = main index + 64):
2305 * key0 [31:0] = RX key [31:0]
2306 * key1 [15:0] = TX key [31:16]
2307 * key1 [31:16] = reserved
2308 * key2 [31:0] = RX key [63:32]
2309 * key3 [15:0] = TX key [15:0]
2310 * key3 [31:16] = reserved
2311 * key4 [31:0] = TX key [63:32]
2312 */
Sujithf1dc5602008-10-29 10:16:30 +05302313 u32 mic0, mic1, mic2, mic3, mic4;
2314
2315 mic0 = get_unaligned_le32(k->kv_mic + 0);
2316 mic2 = get_unaligned_le32(k->kv_mic + 4);
2317 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2318 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2319 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002320
2321 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302322 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2323 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002324
2325 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302326 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2327 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002328
2329 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302330 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2331 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2332 AR_KEYTABLE_TYPE_CLR);
2333
2334 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002335 /*
2336 * TKIP uses four key cache entries (two for group
2337 * keys):
2338 * Michael MIC TX/RX keys are in different key cache
2339 * entries (idx = main index + 64 for TX and
2340 * main index + 32 + 96 for RX):
2341 * key0 [31:0] = TX/RX MIC key [31:0]
2342 * key1 [31:0] = reserved
2343 * key2 [31:0] = TX/RX MIC key [63:32]
2344 * key3 [31:0] = reserved
2345 * key4 [31:0] = reserved
2346 *
2347 * Upper layer code will call this function separately
2348 * for TX and RX keys when these registers offsets are
2349 * used.
2350 */
Sujithf1dc5602008-10-29 10:16:30 +05302351 u32 mic0, mic2;
2352
2353 mic0 = get_unaligned_le32(k->kv_mic + 0);
2354 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002355
2356 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302357 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2358 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002359
2360 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302361 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2362 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002363
2364 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302365 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2366 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2367 AR_KEYTABLE_TYPE_CLR);
2368 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002369
2370 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302371 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2372 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002373
2374 /*
2375 * Write the correct (un-inverted) key[47:0] last to enable
2376 * TKIP now that all other registers are set with correct
2377 * values.
2378 */
Sujithf1dc5602008-10-29 10:16:30 +05302379 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2380 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2381 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002382 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302383 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2384 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002385
2386 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302387 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2388 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002389
2390 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302391 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2392 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2393
Jouni Malinen672903b2009-03-02 15:06:31 +02002394 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302395 (void) ath9k_hw_keysetmac(ah, entry, mac);
2396 }
2397
Sujithf1dc5602008-10-29 10:16:30 +05302398 return true;
2399}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002400EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05302401
Sujithcbe61d82009-02-09 13:27:12 +05302402bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302403{
Sujith2660b812009-02-09 13:27:26 +05302404 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302405 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2406 if (val & AR_KEYTABLE_VALID)
2407 return true;
2408 }
2409 return false;
2410}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002411EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05302412
2413/******************************/
2414/* Power Management (Chipset) */
2415/******************************/
2416
Sujithcbe61d82009-02-09 13:27:12 +05302417static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302418{
2419 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2420 if (setChip) {
2421 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2422 AR_RTC_FORCE_WAKE_EN);
2423 if (!AR_SREV_9100(ah))
2424 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2425
Sujith14b3af32010-03-17 14:25:18 +05302426 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05302427 REG_CLR_BIT(ah, (AR_RTC_RESET),
2428 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302429 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002430}
2431
Sujithcbe61d82009-02-09 13:27:12 +05302432static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433{
Sujithf1dc5602008-10-29 10:16:30 +05302434 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2435 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302436 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437
Sujithf1dc5602008-10-29 10:16:30 +05302438 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2439 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2440 AR_RTC_FORCE_WAKE_ON_INT);
2441 } else {
2442 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2443 AR_RTC_FORCE_WAKE_EN);
2444 }
2445 }
2446}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447
Sujithcbe61d82009-02-09 13:27:12 +05302448static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302449{
2450 u32 val;
2451 int i;
2452
2453 if (setChip) {
2454 if ((REG_READ(ah, AR_RTC_STATUS) &
2455 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2456 if (ath9k_hw_set_reset_reg(ah,
2457 ATH9K_RESET_POWER_ON) != true) {
2458 return false;
2459 }
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302460 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302461 }
2462 if (AR_SREV_9100(ah))
2463 REG_SET_BIT(ah, AR_RTC_RESET,
2464 AR_RTC_RESET_EN);
2465
2466 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2467 AR_RTC_FORCE_WAKE_EN);
2468 udelay(50);
2469
2470 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2471 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2472 if (val == AR_RTC_STATUS_ON)
2473 break;
2474 udelay(50);
2475 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2476 AR_RTC_FORCE_WAKE_EN);
2477 }
2478 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002479 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2480 "Failed to wakeup in %uus\n",
2481 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302482 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483 }
2484 }
2485
Sujithf1dc5602008-10-29 10:16:30 +05302486 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2487
2488 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002489}
2490
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002491bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302492{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002493 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302494 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302495 static const char *modes[] = {
2496 "AWAKE",
2497 "FULL-SLEEP",
2498 "NETWORK SLEEP",
2499 "UNDEFINED"
2500 };
Sujithf1dc5602008-10-29 10:16:30 +05302501
Gabor Juhoscbdec972009-07-24 17:27:22 +02002502 if (ah->power_mode == mode)
2503 return status;
2504
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002505 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2506 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302507
2508 switch (mode) {
2509 case ATH9K_PM_AWAKE:
2510 status = ath9k_hw_set_power_awake(ah, setChip);
2511 break;
2512 case ATH9K_PM_FULL_SLEEP:
2513 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302514 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302515 break;
2516 case ATH9K_PM_NETWORK_SLEEP:
2517 ath9k_set_power_network_sleep(ah, setChip);
2518 break;
2519 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002520 ath_print(common, ATH_DBG_FATAL,
2521 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302522 return false;
2523 }
Sujith2660b812009-02-09 13:27:26 +05302524 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302525
2526 return status;
2527}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002528EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302529
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002530/*
2531 * Helper for ASPM support.
2532 *
2533 * Disable PLL when in L0s as well as receiver clock when in L1.
2534 * This power saving option must be enabled through the SerDes.
2535 *
2536 * Programming the SerDes must go through the same 288 bit serial shift
2537 * register as the other analog registers. Hence the 9 writes.
2538 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302539void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore, int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302540{
Sujithf1dc5602008-10-29 10:16:30 +05302541 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302542 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302543
Sujith2660b812009-02-09 13:27:26 +05302544 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302545 return;
2546
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002547 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302548 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302549 return;
2550
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002551 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302552 if (!restore) {
2553 if (AR_SREV_9280_20_OR_LATER(ah)) {
2554 /*
2555 * AR9280 2.0 or later chips use SerDes values from the
2556 * initvals.h initialized depending on chipset during
2557 * ath9k_hw_init()
2558 */
2559 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2560 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2561 INI_RA(&ah->iniPcieSerdes, i, 1));
2562 }
2563 } else if (AR_SREV_9280(ah) &&
2564 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2565 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2566 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302567
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302568 /* RX shut off when elecidle is asserted */
2569 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2570 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2571 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2572
2573 /* Shut off CLKREQ active in L1 */
2574 if (ah->config.pcie_clock_req)
2575 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2576 else
2577 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2578
2579 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2580 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2581 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2582
2583 /* Load the new settings */
2584 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2585
2586 } else {
2587 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2588 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2589
2590 /* RX shut off when elecidle is asserted */
2591 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2592 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2593 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2594
2595 /*
2596 * Ignore ah->ah_config.pcie_clock_req setting for
2597 * pre-AR9280 11n
2598 */
2599 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2600
2601 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2602 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2603 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2604
2605 /* Load the new settings */
2606 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302607 }
Sujithf1dc5602008-10-29 10:16:30 +05302608
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302609 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302610
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302611 /* set bit 19 to allow forcing of pcie core into L1 state */
2612 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302613
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302614 /* Several PCIe massages to ensure proper behaviour */
2615 if (ah->config.pcie_waen) {
2616 val = ah->config.pcie_waen;
2617 if (!power_off)
2618 val &= (~AR_WA_D3_L1_DISABLE);
2619 } else {
2620 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2621 AR_SREV_9287(ah)) {
2622 val = AR9285_WA_DEFAULT;
2623 if (!power_off)
2624 val &= (~AR_WA_D3_L1_DISABLE);
2625 } else if (AR_SREV_9280(ah)) {
2626 /*
2627 * On AR9280 chips bit 22 of 0x4004 needs to be
2628 * set otherwise card may disappear.
2629 */
2630 val = AR9280_WA_DEFAULT;
2631 if (!power_off)
2632 val &= (~AR_WA_D3_L1_DISABLE);
2633 } else
2634 val = AR_WA_DEFAULT;
2635 }
Sujithf1dc5602008-10-29 10:16:30 +05302636
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302637 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302638 }
2639
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302640 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002641 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302642 * Set PCIe workaround bits
2643 * bit 14 in WA register (disable L1) should only
2644 * be set when device enters D3 and be cleared
2645 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002646 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302647 if (ah->config.pcie_waen) {
2648 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2649 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2650 } else {
2651 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2652 AR_SREV_9287(ah)) &&
2653 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2654 (AR_SREV_9280(ah) &&
2655 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2656 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2657 }
2658 }
Sujithf1dc5602008-10-29 10:16:30 +05302659 }
2660}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002661EXPORT_SYMBOL(ath9k_hw_configpcipowersave);
Sujithf1dc5602008-10-29 10:16:30 +05302662
2663/**********************/
2664/* Interrupt Handling */
2665/**********************/
2666
Sujithcbe61d82009-02-09 13:27:12 +05302667bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002668{
2669 u32 host_isr;
2670
2671 if (AR_SREV_9100(ah))
2672 return true;
2673
2674 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2675 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2676 return true;
2677
2678 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2679 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2680 && (host_isr != AR_INTR_SPURIOUS))
2681 return true;
2682
2683 return false;
2684}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002685EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002686
Sujithcbe61d82009-02-09 13:27:12 +05302687bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688{
2689 u32 isr = 0;
2690 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302691 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002692 u32 sync_cause = 0;
2693 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002694 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002695
2696 if (!AR_SREV_9100(ah)) {
2697 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2698 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2699 == AR_RTC_STATUS_ON) {
2700 isr = REG_READ(ah, AR_ISR);
2701 }
2702 }
2703
Sujithf1dc5602008-10-29 10:16:30 +05302704 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2705 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002706
2707 *masked = 0;
2708
2709 if (!isr && !sync_cause)
2710 return false;
2711 } else {
2712 *masked = 0;
2713 isr = REG_READ(ah, AR_ISR);
2714 }
2715
2716 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002717 if (isr & AR_ISR_BCNMISC) {
2718 u32 isr2;
2719 isr2 = REG_READ(ah, AR_ISR_S2);
2720 if (isr2 & AR_ISR_S2_TIM)
2721 mask2 |= ATH9K_INT_TIM;
2722 if (isr2 & AR_ISR_S2_DTIM)
2723 mask2 |= ATH9K_INT_DTIM;
2724 if (isr2 & AR_ISR_S2_DTIMSYNC)
2725 mask2 |= ATH9K_INT_DTIMSYNC;
2726 if (isr2 & (AR_ISR_S2_CABEND))
2727 mask2 |= ATH9K_INT_CABEND;
2728 if (isr2 & AR_ISR_S2_GTT)
2729 mask2 |= ATH9K_INT_GTT;
2730 if (isr2 & AR_ISR_S2_CST)
2731 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302732 if (isr2 & AR_ISR_S2_TSFOOR)
2733 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734 }
2735
2736 isr = REG_READ(ah, AR_ISR_RAC);
2737 if (isr == 0xffffffff) {
2738 *masked = 0;
2739 return false;
2740 }
2741
2742 *masked = isr & ATH9K_INT_COMMON;
2743
Sujith0ce024c2009-12-14 14:57:00 +05302744 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002745 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2746 *masked |= ATH9K_INT_RX;
2747 }
2748
2749 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2750 *masked |= ATH9K_INT_RX;
2751 if (isr &
2752 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2753 AR_ISR_TXEOL)) {
2754 u32 s0_s, s1_s;
2755
2756 *masked |= ATH9K_INT_TX;
2757
2758 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302759 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2760 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002761
2762 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302763 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2764 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002765 }
2766
2767 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002768 ath_print(common, ATH_DBG_INTERRUPT,
2769 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002770 }
2771
2772 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302773 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002774 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2775 if (isr5 & AR_ISR_S5_TIM_TIMER)
2776 *masked |= ATH9K_INT_TIM_TIMER;
2777 }
2778 }
2779
2780 *masked |= mask2;
2781 }
Sujithf1dc5602008-10-29 10:16:30 +05302782
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002783 if (AR_SREV_9100(ah))
2784 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302785
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302786 if (isr & AR_ISR_GENTMR) {
2787 u32 s5_s;
2788
2789 s5_s = REG_READ(ah, AR_ISR_S5_S);
2790 if (isr & AR_ISR_GENTMR) {
2791 ah->intr_gen_timer_trigger =
2792 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2793
2794 ah->intr_gen_timer_thresh =
2795 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2796
2797 if (ah->intr_gen_timer_trigger)
2798 *masked |= ATH9K_INT_GENTIMER;
2799
2800 }
2801 }
2802
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002803 if (sync_cause) {
2804 fatal_int =
2805 (sync_cause &
2806 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2807 ? true : false;
2808
2809 if (fatal_int) {
2810 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002811 ath_print(common, ATH_DBG_ANY,
2812 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813 }
2814 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002815 ath_print(common, ATH_DBG_ANY,
2816 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002817 }
Steven Luoa89bff92009-04-12 02:57:54 -07002818 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002819 }
2820 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002821 ath_print(common, ATH_DBG_INTERRUPT,
2822 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002823 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2824 REG_WRITE(ah, AR_RC, 0);
2825 *masked |= ATH9K_INT_FATAL;
2826 }
2827 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002828 ath_print(common, ATH_DBG_INTERRUPT,
2829 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002830 }
2831
2832 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2833 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2834 }
Sujithf1dc5602008-10-29 10:16:30 +05302835
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002836 return true;
2837}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002838EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002839
Sujithcbe61d82009-02-09 13:27:12 +05302840enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002841{
Sujith2660b812009-02-09 13:27:26 +05302842 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002843 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302844 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002845 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002846
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002847 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002848
2849 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002850 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002851 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2852 (void) REG_READ(ah, AR_IER);
2853 if (!AR_SREV_9100(ah)) {
2854 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2855 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2856
2857 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2858 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2859 }
2860 }
2861
2862 mask = ints & ATH9K_INT_COMMON;
2863 mask2 = 0;
2864
2865 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302866 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002867 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302868 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002869 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302870 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002871 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302872 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002873 mask |= AR_IMR_TXEOL;
2874 }
2875 if (ints & ATH9K_INT_RX) {
2876 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302877 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002878 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2879 else
2880 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302881 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002882 mask |= AR_IMR_GENTMR;
2883 }
2884
2885 if (ints & (ATH9K_INT_BMISC)) {
2886 mask |= AR_IMR_BCNMISC;
2887 if (ints & ATH9K_INT_TIM)
2888 mask2 |= AR_IMR_S2_TIM;
2889 if (ints & ATH9K_INT_DTIM)
2890 mask2 |= AR_IMR_S2_DTIM;
2891 if (ints & ATH9K_INT_DTIMSYNC)
2892 mask2 |= AR_IMR_S2_DTIMSYNC;
2893 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302894 mask2 |= AR_IMR_S2_CABEND;
2895 if (ints & ATH9K_INT_TSFOOR)
2896 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002897 }
2898
2899 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2900 mask |= AR_IMR_BCNMISC;
2901 if (ints & ATH9K_INT_GTT)
2902 mask2 |= AR_IMR_S2_GTT;
2903 if (ints & ATH9K_INT_CST)
2904 mask2 |= AR_IMR_S2_CST;
2905 }
2906
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002907 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002908 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002909 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2910 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2911 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2912 ah->imrs2_reg |= mask2;
2913 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujith2660b812009-02-09 13:27:26 +05302914 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002915
Sujith60b67f52008-08-07 10:52:38 +05302916 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002917 if (ints & ATH9K_INT_TIM_TIMER)
2918 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2919 else
2920 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2921 }
2922
2923 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002924 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002925 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2926 if (!AR_SREV_9100(ah)) {
2927 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2928 AR_INTR_MAC_IRQ);
2929 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2930
2931
2932 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2933 AR_INTR_SYNC_DEFAULT);
2934 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2935 AR_INTR_SYNC_DEFAULT);
2936 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002937 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2938 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002939 }
2940
2941 return omask;
2942}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002943EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002944
Sujithf1dc5602008-10-29 10:16:30 +05302945/*******************/
2946/* Beacon Handling */
2947/*******************/
2948
Sujithcbe61d82009-02-09 13:27:12 +05302949void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002950{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002951 int flags = 0;
2952
Sujith2660b812009-02-09 13:27:26 +05302953 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002954
Sujith2660b812009-02-09 13:27:26 +05302955 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002956 case NL80211_IFTYPE_STATION:
2957 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002958 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2959 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2960 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2961 flags |= AR_TBTT_TIMER_EN;
2962 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002963 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002964 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002965 REG_SET_BIT(ah, AR_TXCFG,
2966 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2967 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2968 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302969 (ah->atim_window ? ah->
2970 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002971 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002972 case NL80211_IFTYPE_AP:
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,
2975 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302976 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302977 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002978 REG_WRITE(ah, AR_NEXT_SWBA,
2979 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302980 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302981 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002982 flags |=
2983 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2984 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002985 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002986 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
2987 "%s: unsupported opmode: %d\n",
2988 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002989 return;
2990 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002991 }
2992
2993 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2994 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2995 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
2996 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
2997
2998 beacon_period &= ~ATH9K_BEACON_ENA;
2999 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003000 ath9k_hw_reset_tsf(ah);
3001 }
3002
3003 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3004}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003005EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003006
Sujithcbe61d82009-02-09 13:27:12 +05303007void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303008 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003009{
3010 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303011 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003012 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003013
3014 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3015
3016 REG_WRITE(ah, AR_BEACON_PERIOD,
3017 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3018 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3019 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3020
3021 REG_RMW_FIELD(ah, AR_RSSI_THR,
3022 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3023
3024 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3025
3026 if (bs->bs_sleepduration > beaconintval)
3027 beaconintval = bs->bs_sleepduration;
3028
3029 dtimperiod = bs->bs_dtimperiod;
3030 if (bs->bs_sleepduration > dtimperiod)
3031 dtimperiod = bs->bs_sleepduration;
3032
3033 if (beaconintval == dtimperiod)
3034 nextTbtt = bs->bs_nextdtim;
3035 else
3036 nextTbtt = bs->bs_nexttbtt;
3037
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003038 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3039 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3040 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3041 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003042
3043 REG_WRITE(ah, AR_NEXT_DTIM,
3044 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3045 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3046
3047 REG_WRITE(ah, AR_SLEEP1,
3048 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3049 | AR_SLEEP1_ASSUME_DTIM);
3050
Sujith60b67f52008-08-07 10:52:38 +05303051 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003052 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3053 else
3054 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3055
3056 REG_WRITE(ah, AR_SLEEP2,
3057 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3058
3059 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3060 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3061
3062 REG_SET_BIT(ah, AR_TIMER_MODE,
3063 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3064 AR_DTIM_TIMER_EN);
3065
Sujith4af9cf42009-02-12 10:06:47 +05303066 /* TSF Out of Range Threshold */
3067 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003068}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003069EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003070
Sujithf1dc5602008-10-29 10:16:30 +05303071/*******************/
3072/* HW Capabilities */
3073/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003074
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003075int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003076{
Sujith2660b812009-02-09 13:27:26 +05303077 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003078 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003079 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003080 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003081
Sujithf1dc5602008-10-29 10:16:30 +05303082 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003083
Sujithf74df6f2009-02-09 13:27:24 +05303084 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003085 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303086
Sujithf74df6f2009-02-09 13:27:24 +05303087 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303088 if (AR_SREV_9285_10_OR_LATER(ah))
3089 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003090 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303091
Sujithf74df6f2009-02-09 13:27:24 +05303092 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303093
Sujith2660b812009-02-09 13:27:26 +05303094 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303095 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003096 if (regulatory->current_rd == 0x64 ||
3097 regulatory->current_rd == 0x65)
3098 regulatory->current_rd += 5;
3099 else if (regulatory->current_rd == 0x41)
3100 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003101 ath_print(common, ATH_DBG_REGULATORY,
3102 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003103 }
Sujithdc2222a2008-08-14 13:26:55 +05303104
Sujithf74df6f2009-02-09 13:27:24 +05303105 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003106 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
3107 ath_print(common, ATH_DBG_FATAL,
3108 "no band has been marked as supported in EEPROM.\n");
3109 return -EINVAL;
3110 }
3111
Sujithf1dc5602008-10-29 10:16:30 +05303112 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003113
Sujithf1dc5602008-10-29 10:16:30 +05303114 if (eeval & AR5416_OPFLAGS_11A) {
3115 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303116 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303117 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3118 set_bit(ATH9K_MODE_11NA_HT20,
3119 pCap->wireless_modes);
3120 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3121 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3122 pCap->wireless_modes);
3123 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3124 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003125 }
3126 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003127 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003128
Sujithf1dc5602008-10-29 10:16:30 +05303129 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303130 set_bit(ATH9K_MODE_11G, 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_2G_HT20))
3133 set_bit(ATH9K_MODE_11NG_HT20,
3134 pCap->wireless_modes);
3135 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3136 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3137 pCap->wireless_modes);
3138 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3139 pCap->wireless_modes);
3140 }
3141 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003142 }
Sujithf1dc5602008-10-29 10:16:30 +05303143
Sujithf74df6f2009-02-09 13:27:24 +05303144 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003145 /*
3146 * For AR9271 we will temporarilly uses the rx chainmax as read from
3147 * the EEPROM.
3148 */
Sujith8147f5d2009-02-20 15:13:23 +05303149 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003150 !(eeval & AR5416_OPFLAGS_11A) &&
3151 !(AR_SREV_9271(ah)))
3152 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303153 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3154 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003155 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303156 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303157
Sujithd535a422009-02-09 13:27:06 +05303158 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303159 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303160
3161 pCap->low_2ghz_chan = 2312;
3162 pCap->high_2ghz_chan = 2732;
3163
3164 pCap->low_5ghz_chan = 4920;
3165 pCap->high_5ghz_chan = 6100;
3166
3167 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3168 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3169 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3170
3171 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3172 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3173 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3174
Sujith2660b812009-02-09 13:27:26 +05303175 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303176 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3177 else
3178 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3179
3180 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3181 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3182 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3183 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3184
3185 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3186 pCap->total_queues =
3187 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3188 else
3189 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3190
3191 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3192 pCap->keycache_size =
3193 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3194 else
3195 pCap->keycache_size = AR_KEYTABLE_SIZE;
3196
3197 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05003198
3199 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
3200 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
3201 else
3202 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05303203
Sujith5b5fa352010-03-17 14:25:15 +05303204 if (AR_SREV_9271(ah))
3205 pCap->num_gpio_pins = AR9271_NUM_GPIO;
3206 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303207 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3208 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303209 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3210 else
3211 pCap->num_gpio_pins = AR_NUM_GPIO;
3212
Sujithf1dc5602008-10-29 10:16:30 +05303213 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3214 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3215 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3216 } else {
3217 pCap->rts_aggr_limit = (8 * 1024);
3218 }
3219
3220 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3221
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303222#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303223 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3224 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3225 ah->rfkill_gpio =
3226 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3227 ah->rfkill_polarity =
3228 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303229
3230 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3231 }
3232#endif
3233
Vivek Natarajana3ca95fb2009-09-17 09:29:07 +05303234 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05303235
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303236 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303237 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3238 else
3239 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3240
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003241 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303242 pCap->reg_cap =
3243 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3244 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3245 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3246 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3247 } else {
3248 pCap->reg_cap =
3249 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3250 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3251 }
3252
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05303253 /* Advertise midband for AR5416 with FCC midband set in eeprom */
3254 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
3255 AR_SREV_5416(ah))
3256 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05303257
3258 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303259 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303260 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303261 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303262
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05303263 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07003264 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003265 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
3266 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303267
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303268 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003269 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
3270 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303271 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003272 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303273 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303274 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003275 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303276 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003277
3278 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003279}
3280
Sujithcbe61d82009-02-09 13:27:12 +05303281bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303282 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003283{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003284 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303285 switch (type) {
3286 case ATH9K_CAP_CIPHER:
3287 switch (capability) {
3288 case ATH9K_CIPHER_AES_CCM:
3289 case ATH9K_CIPHER_AES_OCB:
3290 case ATH9K_CIPHER_TKIP:
3291 case ATH9K_CIPHER_WEP:
3292 case ATH9K_CIPHER_MIC:
3293 case ATH9K_CIPHER_CLR:
3294 return true;
3295 default:
3296 return false;
3297 }
3298 case ATH9K_CAP_TKIP_MIC:
3299 switch (capability) {
3300 case 0:
3301 return true;
3302 case 1:
Sujith2660b812009-02-09 13:27:26 +05303303 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303304 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3305 false;
3306 }
3307 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303308 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303309 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303310 case ATH9K_CAP_DIVERSITY:
3311 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3312 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3313 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303314 case ATH9K_CAP_MCAST_KEYSRCH:
3315 switch (capability) {
3316 case 0:
3317 return true;
3318 case 1:
3319 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3320 return false;
3321 } else {
Sujith2660b812009-02-09 13:27:26 +05303322 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303323 AR_STA_ID1_MCAST_KSRCH) ? true :
3324 false;
3325 }
3326 }
3327 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303328 case ATH9K_CAP_TXPOW:
3329 switch (capability) {
3330 case 0:
3331 return 0;
3332 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003333 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303334 return 0;
3335 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003336 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303337 return 0;
3338 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003339 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303340 return 0;
3341 }
3342 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303343 case ATH9K_CAP_DS:
3344 return (AR_SREV_9280_20_OR_LATER(ah) &&
3345 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3346 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303347 default:
3348 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003349 }
Sujithf1dc5602008-10-29 10:16:30 +05303350}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003351EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003352
Sujithcbe61d82009-02-09 13:27:12 +05303353bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303354 u32 capability, u32 setting, int *status)
3355{
Sujithf1dc5602008-10-29 10:16:30 +05303356 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003357
Sujithf1dc5602008-10-29 10:16:30 +05303358 switch (type) {
3359 case ATH9K_CAP_TKIP_MIC:
3360 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303361 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303362 AR_STA_ID1_CRPT_MIC_ENABLE;
3363 else
Sujith2660b812009-02-09 13:27:26 +05303364 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303365 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3366 return true;
3367 case ATH9K_CAP_DIVERSITY:
3368 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3369 if (setting)
3370 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3371 else
3372 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3373 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3374 return true;
3375 case ATH9K_CAP_MCAST_KEYSRCH:
3376 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303377 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303378 else
Sujith2660b812009-02-09 13:27:26 +05303379 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303380 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303381 default:
3382 return false;
3383 }
3384}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003385EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05303386
3387/****************************/
3388/* GPIO / RFKILL / Antennae */
3389/****************************/
3390
Sujithcbe61d82009-02-09 13:27:12 +05303391static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303392 u32 gpio, u32 type)
3393{
3394 int addr;
3395 u32 gpio_shift, tmp;
3396
3397 if (gpio > 11)
3398 addr = AR_GPIO_OUTPUT_MUX3;
3399 else if (gpio > 5)
3400 addr = AR_GPIO_OUTPUT_MUX2;
3401 else
3402 addr = AR_GPIO_OUTPUT_MUX1;
3403
3404 gpio_shift = (gpio % 6) * 5;
3405
3406 if (AR_SREV_9280_20_OR_LATER(ah)
3407 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3408 REG_RMW(ah, addr, (type << gpio_shift),
3409 (0x1f << gpio_shift));
3410 } else {
3411 tmp = REG_READ(ah, addr);
3412 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3413 tmp &= ~(0x1f << gpio_shift);
3414 tmp |= (type << gpio_shift);
3415 REG_WRITE(ah, addr, tmp);
3416 }
3417}
3418
Sujithcbe61d82009-02-09 13:27:12 +05303419void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303420{
3421 u32 gpio_shift;
3422
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003423 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303424
3425 gpio_shift = gpio << 1;
3426
3427 REG_RMW(ah,
3428 AR_GPIO_OE_OUT,
3429 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3430 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3431}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003432EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303433
Sujithcbe61d82009-02-09 13:27:12 +05303434u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303435{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303436#define MS_REG_READ(x, y) \
3437 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3438
Sujith2660b812009-02-09 13:27:26 +05303439 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303440 return 0xffffffff;
3441
Sujith5b5fa352010-03-17 14:25:15 +05303442 if (AR_SREV_9271(ah))
3443 return MS_REG_READ(AR9271, gpio) != 0;
3444 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303445 return MS_REG_READ(AR9287, gpio) != 0;
3446 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303447 return MS_REG_READ(AR9285, gpio) != 0;
3448 else if (AR_SREV_9280_10_OR_LATER(ah))
3449 return MS_REG_READ(AR928X, gpio) != 0;
3450 else
3451 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303452}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003453EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303454
Sujithcbe61d82009-02-09 13:27:12 +05303455void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303456 u32 ah_signal_type)
3457{
3458 u32 gpio_shift;
3459
3460 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3461
3462 gpio_shift = 2 * gpio;
3463
3464 REG_RMW(ah,
3465 AR_GPIO_OE_OUT,
3466 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3467 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3468}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003469EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303470
Sujithcbe61d82009-02-09 13:27:12 +05303471void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303472{
Sujith5b5fa352010-03-17 14:25:15 +05303473 if (AR_SREV_9271(ah))
3474 val = ~val;
3475
Sujithf1dc5602008-10-29 10:16:30 +05303476 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3477 AR_GPIO_BIT(gpio));
3478}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003479EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303480
Sujithcbe61d82009-02-09 13:27:12 +05303481u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303482{
3483 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3484}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003485EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303486
Sujithcbe61d82009-02-09 13:27:12 +05303487void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303488{
3489 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3490}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003491EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303492
Sujithf1dc5602008-10-29 10:16:30 +05303493/*********************/
3494/* General Operation */
3495/*********************/
3496
Sujithcbe61d82009-02-09 13:27:12 +05303497u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303498{
3499 u32 bits = REG_READ(ah, AR_RX_FILTER);
3500 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3501
3502 if (phybits & AR_PHY_ERR_RADAR)
3503 bits |= ATH9K_RX_FILTER_PHYRADAR;
3504 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3505 bits |= ATH9K_RX_FILTER_PHYERR;
3506
3507 return bits;
3508}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003509EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303510
Sujithcbe61d82009-02-09 13:27:12 +05303511void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303512{
3513 u32 phybits;
3514
Sujith7ea310b2009-09-03 12:08:43 +05303515 REG_WRITE(ah, AR_RX_FILTER, bits);
3516
Sujithf1dc5602008-10-29 10:16:30 +05303517 phybits = 0;
3518 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3519 phybits |= AR_PHY_ERR_RADAR;
3520 if (bits & ATH9K_RX_FILTER_PHYERR)
3521 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3522 REG_WRITE(ah, AR_PHY_ERR, phybits);
3523
3524 if (phybits)
3525 REG_WRITE(ah, AR_RXCFG,
3526 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3527 else
3528 REG_WRITE(ah, AR_RXCFG,
3529 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3530}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003531EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303532
Sujithcbe61d82009-02-09 13:27:12 +05303533bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303534{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303535 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3536 return false;
3537
3538 ath9k_hw_init_pll(ah, NULL);
3539 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303540}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003541EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303542
Sujithcbe61d82009-02-09 13:27:12 +05303543bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303544{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003545 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303546 return false;
3547
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303548 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3549 return false;
3550
3551 ath9k_hw_init_pll(ah, NULL);
3552 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303553}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003554EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303555
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003556void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303557{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003558 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303559 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003560 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303561
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003562 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303563
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003564 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003565 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003566 channel->max_antenna_gain * 2,
3567 channel->max_power * 2,
3568 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003569 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303570}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003571EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303572
Sujithcbe61d82009-02-09 13:27:12 +05303573void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303574{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003575 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303576}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003577EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303578
Sujithcbe61d82009-02-09 13:27:12 +05303579void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303580{
Sujith2660b812009-02-09 13:27:26 +05303581 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303582}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003583EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303584
Sujithcbe61d82009-02-09 13:27:12 +05303585void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303586{
3587 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3588 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3589}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003590EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303591
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003592void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303593{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003594 struct ath_common *common = ath9k_hw_common(ah);
3595
3596 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3597 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3598 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303599}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003600EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303601
Sujithcbe61d82009-02-09 13:27:12 +05303602u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303603{
3604 u64 tsf;
3605
3606 tsf = REG_READ(ah, AR_TSF_U32);
3607 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3608
3609 return tsf;
3610}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003611EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303612
Sujithcbe61d82009-02-09 13:27:12 +05303613void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003614{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003615 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003616 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003617}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003618EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003619
Sujithcbe61d82009-02-09 13:27:12 +05303620void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303621{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003622 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3623 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003624 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3625 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003626
Sujithf1dc5602008-10-29 10:16:30 +05303627 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003628}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003629EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003630
Sujith54e4cec2009-08-07 09:45:09 +05303631void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003632{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003633 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303634 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003635 else
Sujith2660b812009-02-09 13:27:26 +05303636 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003637}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003638EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003639
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003640/*
3641 * Extend 15-bit time stamp from rx descriptor to
3642 * a full 64-bit TSF using the current h/w TSF.
3643*/
3644u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3645{
3646 u64 tsf;
3647
3648 tsf = ath9k_hw_gettsf64(ah);
3649 if ((tsf & 0x7fff) < rstamp)
3650 tsf -= 0x8000;
3651 return (tsf & ~0x7fff) | rstamp;
3652}
3653EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3654
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003655void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003656{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003657 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303658 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003659
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003660 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303661 macmode = AR_2040_JOINED_RX_CLEAR;
3662 else
3663 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003664
Sujithf1dc5602008-10-29 10:16:30 +05303665 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003666}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303667
3668/* HW Generic timers configuration */
3669
3670static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3671{
3672 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3673 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3674 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3675 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3676 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3677 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3678 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3679 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3680 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3681 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3682 AR_NDP2_TIMER_MODE, 0x0002},
3683 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3684 AR_NDP2_TIMER_MODE, 0x0004},
3685 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3686 AR_NDP2_TIMER_MODE, 0x0008},
3687 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3688 AR_NDP2_TIMER_MODE, 0x0010},
3689 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3690 AR_NDP2_TIMER_MODE, 0x0020},
3691 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3692 AR_NDP2_TIMER_MODE, 0x0040},
3693 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3694 AR_NDP2_TIMER_MODE, 0x0080}
3695};
3696
3697/* HW generic timer primitives */
3698
3699/* compute and clear index of rightmost 1 */
3700static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3701{
3702 u32 b;
3703
3704 b = *mask;
3705 b &= (0-b);
3706 *mask &= ~b;
3707 b *= debruijn32;
3708 b >>= 27;
3709
3710 return timer_table->gen_timer_index[b];
3711}
3712
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303713u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303714{
3715 return REG_READ(ah, AR_TSF_L32);
3716}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003717EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303718
3719struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3720 void (*trigger)(void *),
3721 void (*overflow)(void *),
3722 void *arg,
3723 u8 timer_index)
3724{
3725 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3726 struct ath_gen_timer *timer;
3727
3728 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3729
3730 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003731 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3732 "Failed to allocate memory"
3733 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303734 return NULL;
3735 }
3736
3737 /* allocate a hardware generic timer slot */
3738 timer_table->timers[timer_index] = timer;
3739 timer->index = timer_index;
3740 timer->trigger = trigger;
3741 timer->overflow = overflow;
3742 timer->arg = arg;
3743
3744 return timer;
3745}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003746EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303747
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003748void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3749 struct ath_gen_timer *timer,
3750 u32 timer_next,
3751 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303752{
3753 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3754 u32 tsf;
3755
3756 BUG_ON(!timer_period);
3757
3758 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3759
3760 tsf = ath9k_hw_gettsf32(ah);
3761
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003762 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3763 "curent tsf %x period %x"
3764 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303765
3766 /*
3767 * Pull timer_next forward if the current TSF already passed it
3768 * because of software latency
3769 */
3770 if (timer_next < tsf)
3771 timer_next = tsf + timer_period;
3772
3773 /*
3774 * Program generic timer registers
3775 */
3776 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3777 timer_next);
3778 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3779 timer_period);
3780 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3781 gen_tmr_configuration[timer->index].mode_mask);
3782
3783 /* Enable both trigger and thresh interrupt masks */
3784 REG_SET_BIT(ah, AR_IMR_S5,
3785 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3786 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303787}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003788EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303789
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003790void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303791{
3792 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3793
3794 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3795 (timer->index >= ATH_MAX_GEN_TIMER)) {
3796 return;
3797 }
3798
3799 /* Clear generic timer enable bits. */
3800 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3801 gen_tmr_configuration[timer->index].mode_mask);
3802
3803 /* Disable both trigger and thresh interrupt masks */
3804 REG_CLR_BIT(ah, AR_IMR_S5,
3805 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3806 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3807
3808 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303809}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003810EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303811
3812void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3813{
3814 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3815
3816 /* free the hardware generic timer slot */
3817 timer_table->timers[timer->index] = NULL;
3818 kfree(timer);
3819}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003820EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303821
3822/*
3823 * Generic Timer Interrupts handling
3824 */
3825void ath_gen_timer_isr(struct ath_hw *ah)
3826{
3827 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3828 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003829 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303830 u32 trigger_mask, thresh_mask, index;
3831
3832 /* get hardware generic timer interrupt status */
3833 trigger_mask = ah->intr_gen_timer_trigger;
3834 thresh_mask = ah->intr_gen_timer_thresh;
3835 trigger_mask &= timer_table->timer_mask.val;
3836 thresh_mask &= timer_table->timer_mask.val;
3837
3838 trigger_mask &= ~thresh_mask;
3839
3840 while (thresh_mask) {
3841 index = rightmost_index(timer_table, &thresh_mask);
3842 timer = timer_table->timers[index];
3843 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003844 ath_print(common, ATH_DBG_HWTIMER,
3845 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303846 timer->overflow(timer->arg);
3847 }
3848
3849 while (trigger_mask) {
3850 index = rightmost_index(timer_table, &trigger_mask);
3851 timer = timer_table->timers[index];
3852 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003853 ath_print(common, ATH_DBG_HWTIMER,
3854 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303855 timer->trigger(timer->arg);
3856 }
3857}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003858EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003859
Sujith05020d22010-03-17 14:25:23 +05303860/********/
3861/* HTC */
3862/********/
3863
3864void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3865{
3866 ah->htc_reset_init = true;
3867}
3868EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3869
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003870static struct {
3871 u32 version;
3872 const char * name;
3873} ath_mac_bb_names[] = {
3874 /* Devices with external radios */
3875 { AR_SREV_VERSION_5416_PCI, "5416" },
3876 { AR_SREV_VERSION_5416_PCIE, "5418" },
3877 { AR_SREV_VERSION_9100, "9100" },
3878 { AR_SREV_VERSION_9160, "9160" },
3879 /* Single-chip solutions */
3880 { AR_SREV_VERSION_9280, "9280" },
3881 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003882 { AR_SREV_VERSION_9287, "9287" },
3883 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003884};
3885
3886/* For devices with external radios */
3887static struct {
3888 u16 version;
3889 const char * name;
3890} ath_rf_names[] = {
3891 { 0, "5133" },
3892 { AR_RAD5133_SREV_MAJOR, "5133" },
3893 { AR_RAD5122_SREV_MAJOR, "5122" },
3894 { AR_RAD2133_SREV_MAJOR, "2133" },
3895 { AR_RAD2122_SREV_MAJOR, "2122" }
3896};
3897
3898/*
3899 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3900 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003901static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003902{
3903 int i;
3904
3905 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3906 if (ath_mac_bb_names[i].version == mac_bb_version) {
3907 return ath_mac_bb_names[i].name;
3908 }
3909 }
3910
3911 return "????";
3912}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003913
3914/*
3915 * Return the RF name. "????" is returned if the RF is unknown.
3916 * Used for devices with external radios.
3917 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003918static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003919{
3920 int i;
3921
3922 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3923 if (ath_rf_names[i].version == rf_version) {
3924 return ath_rf_names[i].name;
3925 }
3926 }
3927
3928 return "????";
3929}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003930
3931void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3932{
3933 int used;
3934
3935 /* chipsets >= AR9280 are single-chip */
3936 if (AR_SREV_9280_10_OR_LATER(ah)) {
3937 used = snprintf(hw_name, len,
3938 "Atheros AR%s Rev:%x",
3939 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3940 ah->hw_version.macRev);
3941 }
3942 else {
3943 used = snprintf(hw_name, len,
3944 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3945 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3946 ah->hw_version.macRev,
3947 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3948 AR_RADIO_SREV_MAJOR)),
3949 ah->hw_version.phyRev);
3950 }
3951
3952 hw_name[used] = '\0';
3953}
3954EXPORT_SYMBOL(ath9k_hw_name);