blob: 1fb14edfcb2a18c3c7761c0b1c5cfa6b3ec3e7c1 [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
Sujithd8baa932009-03-30 15:28:25 +0530502 if (!ath9k_hw_chip_test(ah))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503 return -ENODEV;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504
505 ecode = ath9k_hw_rf_claim(ah);
506 if (ecode != 0)
507 return ecode;
508
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700509 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510 if (ecode != 0)
511 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530512
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700513 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
514 "Eeprom VER: %d, REV: %d\n",
515 ah->eep_ops->get_eeprom_ver(ah),
516 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530517
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400518 if (!AR_SREV_9280_10_OR_LATER(ah)) {
519 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
520 if (ecode) {
521 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
522 "Failed allocating banks for "
523 "external radio\n");
524 return ecode;
525 }
526 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700527
528 if (!AR_SREV_9100(ah)) {
529 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700530 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700531 }
Sujithf1dc5602008-10-29 10:16:30 +0530532
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700533 return 0;
534}
535
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700536static bool ath9k_hw_devid_supported(u16 devid)
537{
538 switch (devid) {
539 case AR5416_DEVID_PCI:
540 case AR5416_DEVID_PCIE:
541 case AR5416_AR9100_DEVID:
542 case AR9160_DEVID_PCI:
543 case AR9280_DEVID_PCI:
544 case AR9280_DEVID_PCIE:
545 case AR9285_DEVID_PCIE:
546 case AR5416_DEVID_AR9287_PCI:
547 case AR5416_DEVID_AR9287_PCIE:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400548 case AR9271_USB:
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500549 case AR2427_DEVID_PCIE:
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700550 return true;
551 default:
552 break;
553 }
554 return false;
555}
556
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700557static bool ath9k_hw_macversion_supported(u32 macversion)
558{
559 switch (macversion) {
560 case AR_SREV_VERSION_5416_PCI:
561 case AR_SREV_VERSION_5416_PCIE:
562 case AR_SREV_VERSION_9160:
563 case AR_SREV_VERSION_9100:
564 case AR_SREV_VERSION_9280:
565 case AR_SREV_VERSION_9285:
566 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400567 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400568 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700569 default:
570 break;
571 }
572 return false;
573}
574
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700575static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700576{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700577 if (AR_SREV_9160_10_OR_LATER(ah)) {
578 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530579 ah->iq_caldata.calData = &iq_cal_single_sample;
580 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700581 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530582 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700583 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530584 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700585 &adc_init_dc_cal;
586 } else {
Sujith2660b812009-02-09 13:27:26 +0530587 ah->iq_caldata.calData = &iq_cal_multi_sample;
588 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700589 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530590 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530592 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 &adc_init_dc_cal;
594 }
Sujith2660b812009-02-09 13:27:26 +0530595 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700597}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
600{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400601 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400602 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
603 ARRAY_SIZE(ar9271Modes_9271), 6);
604 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
605 ARRAY_SIZE(ar9271Common_9271), 2);
606 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
607 ar9271Modes_9271_1_0_only,
608 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400609 return;
610 }
611
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530612 if (AR_SREV_9287_11_OR_LATER(ah)) {
613 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
614 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
615 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
616 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
617 if (ah->config.pcie_clock_req)
618 INIT_INI_ARRAY(&ah->iniPcieSerdes,
619 ar9287PciePhy_clkreq_off_L1_9287_1_1,
620 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
621 else
622 INIT_INI_ARRAY(&ah->iniPcieSerdes,
623 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
624 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
625 2);
626 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
627 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
628 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
629 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
630 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530632 if (ah->config.pcie_clock_req)
633 INIT_INI_ARRAY(&ah->iniPcieSerdes,
634 ar9287PciePhy_clkreq_off_L1_9287_1_0,
635 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
636 else
637 INIT_INI_ARRAY(&ah->iniPcieSerdes,
638 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
639 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
640 2);
641 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
642
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530643
Sujith2660b812009-02-09 13:27:26 +0530644 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530645 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530646 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530647 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
648
Sujith2660b812009-02-09 13:27:26 +0530649 if (ah->config.pcie_clock_req) {
650 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530651 ar9285PciePhy_clkreq_off_L1_9285_1_2,
652 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
653 } else {
Sujith2660b812009-02-09 13:27:26 +0530654 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530655 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
656 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
657 2);
658 }
659 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530660 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530661 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530662 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530663 ARRAY_SIZE(ar9285Common_9285), 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,
668 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 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,
672 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
673 }
674 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530675 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700676 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530677 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678 ARRAY_SIZE(ar9280Common_9280_2), 2);
679
Sujith2660b812009-02-09 13:27:26 +0530680 if (ah->config.pcie_clock_req) {
681 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530682 ar9280PciePhy_clkreq_off_L1_9280,
683 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684 } else {
Sujith2660b812009-02-09 13:27:26 +0530685 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530686 ar9280PciePhy_clkreq_always_on_L1_9280,
687 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700688 }
Sujith2660b812009-02-09 13:27:26 +0530689 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700690 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530691 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700694 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530695 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700696 ARRAY_SIZE(ar9280Common_9280), 2);
697 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530698 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700699 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530700 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700701 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530702 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530704 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700705 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530706 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530708 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530710 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530712 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700713 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530714 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530716 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717 ARRAY_SIZE(ar5416Bank7_9160), 2);
718 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530719 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 ar5416Addac_91601_1,
721 ARRAY_SIZE(ar5416Addac_91601_1), 2);
722 } else {
Sujith2660b812009-02-09 13:27:26 +0530723 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700724 ARRAY_SIZE(ar5416Addac_9160), 2);
725 }
726 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530727 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700730 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530731 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700732 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530733 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700734 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530735 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530737 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700738 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530741 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Addac_9100), 2);
749 } else {
Sujith2660b812009-02-09 13:27:26 +0530750 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530752 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530754 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530764 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Addac), 2);
772 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700773}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700775static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
776{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530777 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530778 INIT_INI_ARRAY(&ah->iniModesRxGain,
779 ar9287Modes_rx_gain_9287_1_1,
780 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
781 else if (AR_SREV_9287_10(ah))
782 INIT_INI_ARRAY(&ah->iniModesRxGain,
783 ar9287Modes_rx_gain_9287_1_0,
784 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
785 else if (AR_SREV_9280_20(ah))
786 ath9k_hw_init_rxgain_ini(ah);
787
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530788 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530789 INIT_INI_ARRAY(&ah->iniModesTxGain,
790 ar9287Modes_tx_gain_9287_1_1,
791 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
792 } else if (AR_SREV_9287_10(ah)) {
793 INIT_INI_ARRAY(&ah->iniModesTxGain,
794 ar9287Modes_tx_gain_9287_1_0,
795 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
796 } else if (AR_SREV_9280_20(ah)) {
797 ath9k_hw_init_txgain_ini(ah);
798 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530799 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
800
801 /* txgain table */
802 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
803 INIT_INI_ARRAY(&ah->iniModesTxGain,
804 ar9285Modes_high_power_tx_gain_9285_1_2,
805 ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
806 } else {
807 INIT_INI_ARRAY(&ah->iniModesTxGain,
808 ar9285Modes_original_tx_gain_9285_1_2,
809 ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
810 }
811
812 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700813}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530814
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100815static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700816{
817 u32 i, j;
Sujith06d0f062009-02-12 10:06:45 +0530818
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100819 if (ah->hw_version.devid == AR9280_DEVID_PCI) {
Sujith06d0f062009-02-12 10:06:45 +0530820
821 /* EEPROM Fixup */
Sujith2660b812009-02-09 13:27:26 +0530822 for (i = 0; i < ah->iniModes.ia_rows; i++) {
823 u32 reg = INI_RA(&ah->iniModes, i, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700824
Sujith2660b812009-02-09 13:27:26 +0530825 for (j = 1; j < ah->iniModes.ia_columns; j++) {
826 u32 val = INI_RA(&ah->iniModes, i, j);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700827
Sujith2660b812009-02-09 13:27:26 +0530828 INI_RA(&ah->iniModes, i, j) =
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530829 ath9k_hw_ini_fixup(ah,
Sujith2660b812009-02-09 13:27:26 +0530830 &ah->eeprom.def,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831 reg, val);
832 }
833 }
834 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700835}
836
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700837int ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700838{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700839 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700840 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700841
Luis R. Rodriguez3ca34032009-09-23 23:07:01 -0400842 if (!ath9k_hw_devid_supported(ah->hw_version.devid)) {
843 ath_print(common, ATH_DBG_FATAL,
844 "Unsupported device ID: 0x%0x\n",
845 ah->hw_version.devid);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700846 return -EOPNOTSUPP;
Luis R. Rodriguez3ca34032009-09-23 23:07:01 -0400847 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700848
849 ath9k_hw_init_defaults(ah);
850 ath9k_hw_init_config(ah);
851
852 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700853 ath_print(common, ATH_DBG_FATAL,
854 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700855 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700856 }
857
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700858 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700859 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700860 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700861 }
862
863 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
864 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
865 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
866 ah->config.serialize_regmode =
867 SER_REG_MODE_ON;
868 } else {
869 ah->config.serialize_regmode =
870 SER_REG_MODE_OFF;
871 }
872 }
873
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700874 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700875 ah->config.serialize_regmode);
876
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500877 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
878 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
879 else
880 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
881
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700882 if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700883 ath_print(common, ATH_DBG_FATAL,
884 "Mac Chip Rev 0x%02x.%x is not supported by "
885 "this driver\n", ah->hw_version.macVersion,
886 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700887 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700888 }
889
890 if (AR_SREV_9100(ah)) {
891 ah->iq_caldata.calData = &iq_cal_multi_sample;
892 ah->supp_cals = IQ_MISMATCH_CAL;
893 ah->is_pciexpress = false;
894 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400895
896 if (AR_SREV_9271(ah))
897 ah->is_pciexpress = false;
898
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700899 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
900
901 ath9k_hw_init_cal_settings(ah);
902
903 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400904 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700905 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400906 ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400907 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_9280_spur_mitigate;
908 } else {
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400909 ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400910 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_spur_mitigate;
911 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700912
913 ath9k_hw_init_mode_regs(ah);
914
915 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530916 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700917 else
918 ath9k_hw_disablepcie(ah);
919
Sujith193cd452009-09-18 15:04:07 +0530920 /* Support for Japan ch.14 (2484) spread */
921 if (AR_SREV_9287_11_OR_LATER(ah)) {
922 INIT_INI_ARRAY(&ah->iniCckfirNormal,
923 ar9287Common_normal_cck_fir_coeff_92871_1,
924 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
925 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
926 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
927 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
928 }
929
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700930 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700931 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700932 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700933
934 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100935 r = ath9k_hw_fill_cap_info(ah);
936 if (r)
937 return r;
938
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100939 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530940
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700941 r = ath9k_hw_init_macaddr(ah);
942 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700943 ath_print(common, ATH_DBG_FATAL,
944 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700945 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700946 }
947
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400948 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530949 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700950 else
Sujith2660b812009-02-09 13:27:26 +0530951 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700952
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700953 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700954
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400955 common->state = ATH_HW_INITIALIZED;
956
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700957 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700958}
959
Sujithcbe61d82009-02-09 13:27:12 +0530960static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530961 struct ath9k_channel *chan)
962{
963 u32 synthDelay;
964
965 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +0530966 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +0530967 synthDelay = (4 * synthDelay) / 22;
968 else
969 synthDelay /= 10;
970
971 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
972
973 udelay(synthDelay + BASE_ACTIVATE_DELAY);
974}
975
Sujithcbe61d82009-02-09 13:27:12 +0530976static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530977{
978 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
979 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
980
981 REG_WRITE(ah, AR_QOS_NO_ACK,
982 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
983 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
984 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
985
986 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
987 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
988 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
989 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
990 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
991}
992
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400993static void ath9k_hw_change_target_baud(struct ath_hw *ah, u32 freq, u32 baud)
994{
995 u32 lcr;
996 u32 baud_divider = freq * 1000 * 1000 / 16 / baud;
997
998 lcr = REG_READ(ah , 0x5100c);
999 lcr |= 0x80;
1000
1001 REG_WRITE(ah, 0x5100c, lcr);
1002 REG_WRITE(ah, 0x51004, (baud_divider >> 8));
1003 REG_WRITE(ah, 0x51000, (baud_divider & 0xff));
1004
1005 lcr &= ~0x80;
1006 REG_WRITE(ah, 0x5100c, lcr);
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)) {
1074 if ((pll == 0x142c) || (pll == 0x2850) ) {
1075 udelay(500);
1076 /* set CLKOBS to output AHB clock */
1077 REG_WRITE(ah, 0x7020, 0xe);
1078 /*
1079 * 0x304: 117Mhz, ahb_ratio: 1x1
1080 * 0x306: 40Mhz, ahb_ratio: 1x1
1081 */
1082 REG_WRITE(ah, 0x50040, 0x304);
1083 /*
1084 * makes adjustments for the baud dividor to keep the
1085 * targetted baud rate based on the used core clock.
1086 */
1087 ath9k_hw_change_target_baud(ah, AR9271_CORE_CLOCK,
1088 AR9271_TARGET_BAUD_RATE);
1089 }
1090 }
1091
Sujithf1dc5602008-10-29 10:16:30 +05301092 udelay(RTC_PLL_SETTLE_DELAY);
1093
1094 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1095}
1096
Sujithcbe61d82009-02-09 13:27:12 +05301097static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301098{
Sujithf1dc5602008-10-29 10:16:30 +05301099 int rx_chainmask, tx_chainmask;
1100
Sujith2660b812009-02-09 13:27:26 +05301101 rx_chainmask = ah->rxchainmask;
1102 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301103
1104 switch (rx_chainmask) {
1105 case 0x5:
1106 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1107 AR_PHY_SWAP_ALT_CHAIN);
1108 case 0x3:
Sujithcb53a152009-11-16 11:40:57 +05301109 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
Sujithf1dc5602008-10-29 10:16:30 +05301110 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1111 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1112 break;
1113 }
1114 case 0x1:
1115 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301116 case 0x7:
1117 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1118 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1119 break;
1120 default:
1121 break;
1122 }
1123
1124 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1125 if (tx_chainmask == 0x5) {
1126 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1127 AR_PHY_SWAP_ALT_CHAIN);
1128 }
1129 if (AR_SREV_9100(ah))
1130 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1131 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1132}
1133
Sujithcbe61d82009-02-09 13:27:12 +05301134static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001135 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301136{
Sujith2660b812009-02-09 13:27:26 +05301137 ah->mask_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301138 AR_IMR_TXURN |
1139 AR_IMR_RXERR |
1140 AR_IMR_RXORN |
1141 AR_IMR_BCNMISC;
1142
Sujith0ce024c2009-12-14 14:57:00 +05301143 if (ah->config.rx_intr_mitigation)
Sujith2660b812009-02-09 13:27:26 +05301144 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301145 else
Sujith2660b812009-02-09 13:27:26 +05301146 ah->mask_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301147
Sujith2660b812009-02-09 13:27:26 +05301148 ah->mask_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301149
Colin McCabed97809d2008-12-01 13:38:55 -08001150 if (opmode == NL80211_IFTYPE_AP)
Sujith2660b812009-02-09 13:27:26 +05301151 ah->mask_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301152
Sujith2660b812009-02-09 13:27:26 +05301153 REG_WRITE(ah, AR_IMR, ah->mask_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001154 ah->imrs2_reg |= AR_IMR_S2_GTT;
1155 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301156
1157 if (!AR_SREV_9100(ah)) {
1158 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1159 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1160 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1161 }
1162}
1163
Felix Fietkau0005baf2010-01-15 02:33:40 +01001164static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301165{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001166 u32 val = ath9k_hw_mac_to_clks(ah, us);
1167 val = min(val, (u32) 0xFFFF);
1168 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301169}
1170
Felix Fietkau0005baf2010-01-15 02:33:40 +01001171static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301172{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001173 u32 val = ath9k_hw_mac_to_clks(ah, us);
1174 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1175 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1176}
1177
1178static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1179{
1180 u32 val = ath9k_hw_mac_to_clks(ah, us);
1181 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1182 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301183}
1184
Sujithcbe61d82009-02-09 13:27:12 +05301185static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301186{
Sujithf1dc5602008-10-29 10:16:30 +05301187 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001188 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1189 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301190 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301191 return false;
1192 } else {
1193 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301194 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301195 return true;
1196 }
1197}
1198
Felix Fietkau0005baf2010-01-15 02:33:40 +01001199void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301200{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001201 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1202 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001203 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001204 int sifstime;
1205
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001206 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1207 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301208
Sujith2660b812009-02-09 13:27:26 +05301209 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301210 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301211 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001212
1213 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1214 sifstime = 16;
1215 else
1216 sifstime = 10;
1217
Felix Fietkaue239d852010-01-15 02:34:58 +01001218 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1219 slottime = ah->slottime + 3 * ah->coverage_class;
1220 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001221
1222 /*
1223 * Workaround for early ACK timeouts, add an offset to match the
1224 * initval's 64us ack timeout value.
1225 * This was initially only meant to work around an issue with delayed
1226 * BA frames in some implementations, but it has been found to fix ACK
1227 * timeout issues in other cases as well.
1228 */
1229 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1230 acktimeout += 64 - sifstime - ah->slottime;
1231
Felix Fietkaue239d852010-01-15 02:34:58 +01001232 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001233 ath9k_hw_set_ack_timeout(ah, acktimeout);
1234 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301235 if (ah->globaltxtimeout != (u32) -1)
1236 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301237}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001238EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301239
Sujith285f2dd2010-01-08 10:36:07 +05301240void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001241{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001242 struct ath_common *common = ath9k_hw_common(ah);
1243
1244 if (common->state <= ATH_HW_INITIALIZED)
1245 goto free_hw;
1246
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001248 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001250 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001251
1252free_hw:
Luis R. Rodriguezdc51dd52009-10-19 02:33:39 -04001253 if (!AR_SREV_9280_10_OR_LATER(ah))
1254 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001255 kfree(ah);
Luis R. Rodriguez9db6b6a2009-08-03 12:24:52 -07001256 ah = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001257}
Sujith285f2dd2010-01-08 10:36:07 +05301258EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259
Sujithf1dc5602008-10-29 10:16:30 +05301260/*******/
1261/* INI */
1262/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001263
Sujithcbe61d82009-02-09 13:27:12 +05301264static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301265 struct ath9k_channel *chan)
1266{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001267 u32 val;
1268
1269 if (AR_SREV_9271(ah)) {
1270 /*
1271 * Enable spectral scan to solution for issues with stuck
1272 * beacons on AR9271 1.0. The beacon stuck issue is not seeon on
1273 * AR9271 1.1
1274 */
1275 if (AR_SREV_9271_10(ah)) {
Luis R. Rodriguezec11bb82009-10-27 12:59:36 -04001276 val = REG_READ(ah, AR_PHY_SPECTRAL_SCAN) |
1277 AR_PHY_SPECTRAL_SCAN_ENABLE;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001278 REG_WRITE(ah, AR_PHY_SPECTRAL_SCAN, val);
1279 }
1280 else if (AR_SREV_9271_11(ah))
1281 /*
1282 * change AR_PHY_RF_CTL3 setting to fix MAC issue
1283 * present on AR9271 1.1
1284 */
1285 REG_WRITE(ah, AR_PHY_RF_CTL3, 0x3a020001);
1286 return;
1287 }
1288
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301289 /*
1290 * Set the RX_ABORT and RX_DIS and clear if off only after
1291 * RXE is set for MAC. This prevents frames with corrupted
1292 * descriptor status.
1293 */
1294 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1295
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301296 if (AR_SREV_9280_10_OR_LATER(ah)) {
1297 val = REG_READ(ah, AR_PCU_MISC_MODE2) &
1298 (~AR_PCU_MISC_MODE2_HWWAR1);
1299
1300 if (AR_SREV_9287_10_OR_LATER(ah))
1301 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
1302
1303 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
1304 }
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301305
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001306 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301307 AR_SREV_9280_10_OR_LATER(ah))
1308 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001309 /*
1310 * Disable BB clock gating
1311 * Necessary to avoid issues on AR5416 2.0
1312 */
Sujithf1dc5602008-10-29 10:16:30 +05301313 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
Felix Fietkau7bfbae12010-02-24 04:43:05 +01001314
1315 /*
1316 * Disable RIFS search on some chips to avoid baseband
1317 * hang issues.
1318 */
1319 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
1320 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
1321 val &= ~AR_PHY_RIFS_INIT_DELAY;
1322 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
1323 }
Sujithf1dc5602008-10-29 10:16:30 +05301324}
1325
Sujithcbe61d82009-02-09 13:27:12 +05301326static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301327 struct ar5416_eeprom_def *pEepData,
Sujithf1dc5602008-10-29 10:16:30 +05301328 u32 reg, u32 value)
1329{
1330 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001331 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301332
Sujithd535a422009-02-09 13:27:06 +05301333 switch (ah->hw_version.devid) {
Sujithf1dc5602008-10-29 10:16:30 +05301334 case AR9280_DEVID_PCI:
1335 if (reg == 0x7894) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001336 ath_print(common, ATH_DBG_EEPROM,
Sujithf1dc5602008-10-29 10:16:30 +05301337 "ini VAL: %x EEPROM: %x\n", value,
1338 (pBase->version & 0xff));
1339
1340 if ((pBase->version & 0xff) > 0x0a) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001341 ath_print(common, ATH_DBG_EEPROM,
1342 "PWDCLKIND: %d\n",
1343 pBase->pwdclkind);
Sujithf1dc5602008-10-29 10:16:30 +05301344 value &= ~AR_AN_TOP2_PWDCLKIND;
1345 value |= AR_AN_TOP2_PWDCLKIND &
1346 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1347 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001348 ath_print(common, ATH_DBG_EEPROM,
1349 "PWDCLKIND Earlier Rev\n");
Sujithf1dc5602008-10-29 10:16:30 +05301350 }
1351
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001352 ath_print(common, ATH_DBG_EEPROM,
1353 "final ini VAL: %x\n", value);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 }
Sujithf1dc5602008-10-29 10:16:30 +05301355 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356 }
1357
Sujithf1dc5602008-10-29 10:16:30 +05301358 return value;
1359}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001360
Sujithcbe61d82009-02-09 13:27:12 +05301361static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301362 struct ar5416_eeprom_def *pEepData,
1363 u32 reg, u32 value)
1364{
Sujith2660b812009-02-09 13:27:26 +05301365 if (ah->eep_map == EEP_MAP_4KBITS)
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301366 return value;
1367 else
1368 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1369}
1370
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301371static void ath9k_olc_init(struct ath_hw *ah)
1372{
1373 u32 i;
1374
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301375 if (OLC_FOR_AR9287_10_LATER) {
1376 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1377 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1378 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1379 AR9287_AN_TXPC0_TXPCMODE,
1380 AR9287_AN_TXPC0_TXPCMODE_S,
1381 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1382 udelay(100);
1383 } else {
1384 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1385 ah->originalGain[i] =
1386 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1387 AR_PHY_TX_GAIN);
1388 ah->PDADCdelta = 0;
1389 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301390}
1391
Bob Copeland3a702e42009-03-30 22:30:29 -04001392static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1393 struct ath9k_channel *chan)
1394{
1395 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1396
1397 if (IS_CHAN_B(chan))
1398 ctl |= CTL_11B;
1399 else if (IS_CHAN_G(chan))
1400 ctl |= CTL_11G;
1401 else
1402 ctl |= CTL_11A;
1403
1404 return ctl;
1405}
1406
Sujithcbe61d82009-02-09 13:27:12 +05301407static int ath9k_hw_process_ini(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001408 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301409{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001410 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301411 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001412 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301413 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414
Sujithf1dc5602008-10-29 10:16:30 +05301415 switch (chan->chanmode) {
1416 case CHANNEL_A:
1417 case CHANNEL_A_HT20:
1418 modesIndex = 1;
1419 freqIndex = 1;
1420 break;
1421 case CHANNEL_A_HT40PLUS:
1422 case CHANNEL_A_HT40MINUS:
1423 modesIndex = 2;
1424 freqIndex = 1;
1425 break;
1426 case CHANNEL_G:
1427 case CHANNEL_G_HT20:
1428 case CHANNEL_B:
1429 modesIndex = 4;
1430 freqIndex = 2;
1431 break;
1432 case CHANNEL_G_HT40PLUS:
1433 case CHANNEL_G_HT40MINUS:
1434 modesIndex = 3;
1435 freqIndex = 2;
1436 break;
1437
1438 default:
1439 return -EINVAL;
1440 }
1441
1442 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujithf1dc5602008-10-29 10:16:30 +05301443 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301444 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301445
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001446 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301447 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301448 } else {
1449 struct ar5416IniArray temp;
1450 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301451 sizeof(u32) * ah->iniAddac.ia_rows *
1452 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301453
Sujith2660b812009-02-09 13:27:26 +05301454 memcpy(ah->addac5416_21,
1455 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301456
Sujith2660b812009-02-09 13:27:26 +05301457 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301458
Sujith2660b812009-02-09 13:27:26 +05301459 temp.ia_array = ah->addac5416_21;
1460 temp.ia_columns = ah->iniAddac.ia_columns;
1461 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301462 REG_WRITE_ARRAY(&temp, 1, regWrites);
1463 }
1464
1465 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1466
Sujith2660b812009-02-09 13:27:26 +05301467 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1468 u32 reg = INI_RA(&ah->iniModes, i, 0);
1469 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301470
Sujithf1dc5602008-10-29 10:16:30 +05301471 REG_WRITE(ah, reg, val);
1472
1473 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301474 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301475 udelay(100);
1476 }
1477
1478 DO_DELAY(regWrites);
1479 }
1480
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301481 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301482 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301483
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301484 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1485 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301486 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301487
Sujith2660b812009-02-09 13:27:26 +05301488 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1489 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1490 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301491
1492 REG_WRITE(ah, reg, val);
1493
1494 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301495 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301496 udelay(100);
1497 }
1498
1499 DO_DELAY(regWrites);
1500 }
1501
Luis R. Rodriguez896ff262009-10-19 02:33:44 -04001502 ath9k_hw_write_regs(ah, freqIndex, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301503
Luis R. Rodriguez85643282009-10-19 02:33:33 -04001504 if (AR_SREV_9271_10(ah))
1505 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
1506 modesIndex, regWrites);
1507
Sujithf1dc5602008-10-29 10:16:30 +05301508 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301509 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301510 regWrites);
1511 }
1512
1513 ath9k_hw_override_ini(ah, chan);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001514 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301515 ath9k_hw_init_chain_masks(ah);
1516
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301517 if (OLC_FOR_AR9280_20_LATER)
1518 ath9k_olc_init(ah);
1519
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001520 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001521 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001522 channel->max_antenna_gain * 2,
1523 channel->max_power * 2,
1524 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001525 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001526
Sujithf1dc5602008-10-29 10:16:30 +05301527 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001528 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1529 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001530 return -EIO;
1531 }
1532
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001533 return 0;
1534}
1535
Sujithf1dc5602008-10-29 10:16:30 +05301536/****************************************/
1537/* Reset and Channel Switching Routines */
1538/****************************************/
1539
Sujithcbe61d82009-02-09 13:27:12 +05301540static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301541{
1542 u32 rfMode = 0;
1543
1544 if (chan == NULL)
1545 return;
1546
1547 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1548 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1549
1550 if (!AR_SREV_9280_10_OR_LATER(ah))
1551 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1552 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1553
1554 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1555 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1556
1557 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1558}
1559
Sujithcbe61d82009-02-09 13:27:12 +05301560static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301561{
1562 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1563}
1564
Sujithcbe61d82009-02-09 13:27:12 +05301565static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301566{
1567 u32 regval;
1568
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001569 /*
1570 * set AHB_MODE not to do cacheline prefetches
1571 */
Sujithf1dc5602008-10-29 10:16:30 +05301572 regval = REG_READ(ah, AR_AHB_MODE);
1573 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1574
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001575 /*
1576 * let mac dma reads be in 128 byte chunks
1577 */
Sujithf1dc5602008-10-29 10:16:30 +05301578 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1579 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1580
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001581 /*
1582 * Restore TX Trigger Level to its pre-reset value.
1583 * The initial value depends on whether aggregation is enabled, and is
1584 * adjusted whenever underruns are detected.
1585 */
Sujith2660b812009-02-09 13:27:26 +05301586 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301587
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001588 /*
1589 * let mac dma writes be in 128 byte chunks
1590 */
Sujithf1dc5602008-10-29 10:16:30 +05301591 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1592 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1593
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001594 /*
1595 * Setup receive FIFO threshold to hold off TX activities
1596 */
Sujithf1dc5602008-10-29 10:16:30 +05301597 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1598
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001599 /*
1600 * reduce the number of usable entries in PCU TXBUF to avoid
1601 * wrap around issues.
1602 */
Sujithf1dc5602008-10-29 10:16:30 +05301603 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001604 /* For AR9285 the number of Fifos are reduced to half.
1605 * So set the usable tx buf size also to half to
1606 * avoid data/delimiter underruns
1607 */
Sujithf1dc5602008-10-29 10:16:30 +05301608 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1609 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001610 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301611 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1612 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1613 }
1614}
1615
Sujithcbe61d82009-02-09 13:27:12 +05301616static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301617{
1618 u32 val;
1619
1620 val = REG_READ(ah, AR_STA_ID1);
1621 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1622 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001623 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301624 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1625 | AR_STA_ID1_KSRCH_MODE);
1626 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1627 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001628 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001629 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301630 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1631 | AR_STA_ID1_KSRCH_MODE);
1632 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1633 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001634 case NL80211_IFTYPE_STATION:
1635 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301636 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1637 break;
1638 }
1639}
1640
Sujithcbe61d82009-02-09 13:27:12 +05301641static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001642 u32 coef_scaled,
1643 u32 *coef_mantissa,
1644 u32 *coef_exponent)
1645{
1646 u32 coef_exp, coef_man;
1647
1648 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1649 if ((coef_scaled >> coef_exp) & 0x1)
1650 break;
1651
1652 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1653
1654 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1655
1656 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1657 *coef_exponent = coef_exp - 16;
1658}
1659
Sujithcbe61d82009-02-09 13:27:12 +05301660static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301661 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001662{
1663 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1664 u32 clockMhzScaled = 0x64000000;
1665 struct chan_centers centers;
1666
1667 if (IS_CHAN_HALF_RATE(chan))
1668 clockMhzScaled = clockMhzScaled >> 1;
1669 else if (IS_CHAN_QUARTER_RATE(chan))
1670 clockMhzScaled = clockMhzScaled >> 2;
1671
1672 ath9k_hw_get_channel_centers(ah, chan, &centers);
1673 coef_scaled = clockMhzScaled / centers.synth_center;
1674
1675 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1676 &ds_coef_exp);
1677
1678 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1679 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1680 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1681 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1682
1683 coef_scaled = (9 * coef_scaled) / 10;
1684
1685 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1686 &ds_coef_exp);
1687
1688 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1689 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1690 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1691 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1692}
1693
Sujithcbe61d82009-02-09 13:27:12 +05301694static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301695{
1696 u32 rst_flags;
1697 u32 tmpReg;
1698
Sujith70768492009-02-16 13:23:12 +05301699 if (AR_SREV_9100(ah)) {
1700 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1701 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1702 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1703 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1704 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1705 }
1706
Sujithf1dc5602008-10-29 10:16:30 +05301707 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1708 AR_RTC_FORCE_WAKE_ON_INT);
1709
1710 if (AR_SREV_9100(ah)) {
1711 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1712 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1713 } else {
1714 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1715 if (tmpReg &
1716 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1717 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1718 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1719 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1720 } else {
1721 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1722 }
1723
1724 rst_flags = AR_RTC_RC_MAC_WARM;
1725 if (type == ATH9K_RESET_COLD)
1726 rst_flags |= AR_RTC_RC_MAC_COLD;
1727 }
1728
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001729 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301730 udelay(50);
1731
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001732 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301733 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001734 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1735 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301736 return false;
1737 }
1738
1739 if (!AR_SREV_9100(ah))
1740 REG_WRITE(ah, AR_RC, 0);
1741
Sujithf1dc5602008-10-29 10:16:30 +05301742 if (AR_SREV_9100(ah))
1743 udelay(50);
1744
1745 return true;
1746}
1747
Sujithcbe61d82009-02-09 13:27:12 +05301748static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301749{
1750 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1751 AR_RTC_FORCE_WAKE_ON_INT);
1752
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301753 if (!AR_SREV_9100(ah))
1754 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1755
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001756 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301757 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301758
1759 if (!AR_SREV_9100(ah))
1760 REG_WRITE(ah, AR_RC, 0);
1761
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001762 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301763
1764 if (!ath9k_hw_wait(ah,
1765 AR_RTC_STATUS,
1766 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301767 AR_RTC_STATUS_ON,
1768 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001769 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1770 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301771 return false;
1772 }
1773
1774 ath9k_hw_read_revisions(ah);
1775
1776 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1777}
1778
Sujithcbe61d82009-02-09 13:27:12 +05301779static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301780{
1781 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1782 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1783
1784 switch (type) {
1785 case ATH9K_RESET_POWER_ON:
1786 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301787 case ATH9K_RESET_WARM:
1788 case ATH9K_RESET_COLD:
1789 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301790 default:
1791 return false;
1792 }
1793}
1794
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001795static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301796{
1797 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301798 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301799
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301800 if (AR_SREV_9285_10_OR_LATER(ah))
1801 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1802 AR_PHY_FC_ENABLE_DAC_FIFO);
1803
Sujithf1dc5602008-10-29 10:16:30 +05301804 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301805 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301806
1807 if (IS_CHAN_HT40(chan)) {
1808 phymode |= AR_PHY_FC_DYN2040_EN;
1809
1810 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1811 (chan->chanmode == CHANNEL_G_HT40PLUS))
1812 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1813
Sujithf1dc5602008-10-29 10:16:30 +05301814 }
1815 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1816
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001817 ath9k_hw_set11nmac2040(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301818
1819 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1820 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1821}
1822
Sujithcbe61d82009-02-09 13:27:12 +05301823static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301824 struct ath9k_channel *chan)
1825{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301826 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301827 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1828 return false;
1829 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301830 return false;
1831
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001832 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301833 return false;
1834
Sujith2660b812009-02-09 13:27:26 +05301835 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301836 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301837 ath9k_hw_set_rfmode(ah, chan);
1838
1839 return true;
1840}
1841
Sujithcbe61d82009-02-09 13:27:12 +05301842static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001843 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301844{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001845 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001846 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001847 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301848 u32 synthDelay, qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001849 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301850
1851 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1852 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001853 ath_print(common, ATH_DBG_QUEUE,
1854 "Transmit frames pending on "
1855 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301856 return false;
1857 }
1858 }
1859
1860 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1861 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301862 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001863 ath_print(common, ATH_DBG_FATAL,
1864 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301865 return false;
1866 }
1867
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001868 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301869
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04001870 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001871 if (r) {
1872 ath_print(common, ATH_DBG_FATAL,
1873 "Failed to set channel\n");
1874 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301875 }
1876
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001877 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001878 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301879 channel->max_antenna_gain * 2,
1880 channel->max_power * 2,
1881 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001882 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301883
1884 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301885 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301886 synthDelay = (4 * synthDelay) / 22;
1887 else
1888 synthDelay /= 10;
1889
1890 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1891
1892 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1893
1894 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1895 ath9k_hw_set_delta_slope(ah, chan);
1896
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04001897 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301898
1899 if (!chan->oneTimeCalsDone)
1900 chan->oneTimeCalsDone = true;
1901
1902 return true;
1903}
1904
Johannes Berg3b319aa2009-06-13 14:50:26 +05301905static void ath9k_enable_rfkill(struct ath_hw *ah)
1906{
1907 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
1908 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
1909
1910 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
1911 AR_GPIO_INPUT_MUX2_RFSILENT);
1912
1913 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
1914 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
1915}
1916
Sujithcbe61d82009-02-09 13:27:12 +05301917int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001918 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001920 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001921 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301922 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001923 u32 saveDefAntenna;
1924 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301925 u64 tsf = 0;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001926 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001928 ah->txchainmask = common->tx_chainmask;
1929 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001930
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001931 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001932 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001933
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301934 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001935 ath9k_hw_getnf(ah, curchan);
1936
1937 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301938 (ah->chip_fullsleep != true) &&
1939 (ah->curchan != NULL) &&
1940 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001941 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301942 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301943 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1944 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001945
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001946 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301947 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001948 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001949 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001950 }
1951 }
1952
1953 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1954 if (saveDefAntenna == 0)
1955 saveDefAntenna = 1;
1956
1957 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1958
Sujith46fe7822009-09-17 09:25:25 +05301959 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1960 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1961 tsf = ath9k_hw_gettsf64(ah);
1962
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963 saveLedState = REG_READ(ah, AR_CFG_LED) &
1964 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1965 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1966
1967 ath9k_hw_mark_phy_inactive(ah);
1968
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001969 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1970 REG_WRITE(ah,
1971 AR9271_RESET_POWER_DOWN_CONTROL,
1972 AR9271_RADIO_RF_RST);
1973 udelay(50);
1974 }
1975
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001976 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001977 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001978 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001979 }
1980
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001981 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1982 ah->htc_reset_init = false;
1983 REG_WRITE(ah,
1984 AR9271_RESET_POWER_DOWN_CONTROL,
1985 AR9271_GATE_MAC_CTL);
1986 udelay(50);
1987 }
1988
Sujith46fe7822009-09-17 09:25:25 +05301989 /* Restore TSF */
1990 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1991 ath9k_hw_settsf64(ah, tsf);
1992
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301993 if (AR_SREV_9280_10_OR_LATER(ah))
1994 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301996 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301997 /* Enable ASYNC FIFO */
1998 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1999 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2000 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2001 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2002 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2003 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2004 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2005 }
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002006 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002007 if (r)
2008 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009
Jouni Malinen0ced0e12009-01-08 13:32:13 +02002010 /* Setup MFP options for CCMP */
2011 if (AR_SREV_9280_20_OR_LATER(ah)) {
2012 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2013 * frames when constructing CCMP AAD. */
2014 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2015 0xc7ff);
2016 ah->sw_mgmt_crypto = false;
2017 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2018 /* Disable hardware crypto for management frames */
2019 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2020 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2021 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2022 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2023 ah->sw_mgmt_crypto = true;
2024 } else
2025 ah->sw_mgmt_crypto = true;
2026
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002027 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2028 ath9k_hw_set_delta_slope(ah, chan);
2029
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04002030 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05302031 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04002032
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002033 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
2034 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002035 | macStaId1
2036 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302037 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302038 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302039 | ah->sta_id1_defaults);
2040 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002041
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07002042 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002043
2044 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2045
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07002046 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002047
2048 REG_WRITE(ah, AR_ISR, ~0);
2049
2050 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2051
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04002052 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04002053 if (r)
2054 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002055
2056 for (i = 0; i < AR_NUM_DCU; i++)
2057 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2058
Sujith2660b812009-02-09 13:27:26 +05302059 ah->intr_txqs = 0;
2060 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002061 ath9k_hw_resettxqueue(ah, i);
2062
Sujith2660b812009-02-09 13:27:26 +05302063 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064 ath9k_hw_init_qos(ah);
2065
Sujith2660b812009-02-09 13:27:26 +05302066 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302067 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302068
Felix Fietkau0005baf2010-01-15 02:33:40 +01002069 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002070
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302071 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302072 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2073 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2074 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2075 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2076 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2077 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2078
2079 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2080 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2081
2082 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2083 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2084 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2085 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2086 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302087 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302088 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2089 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2090 }
2091
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092 REG_WRITE(ah, AR_STA_ID1,
2093 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2094
2095 ath9k_hw_set_dma(ah);
2096
2097 REG_WRITE(ah, AR_OBS, 8);
2098
Sujith0ce024c2009-12-14 14:57:00 +05302099 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2101 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2102 }
2103
2104 ath9k_hw_init_bb(ah, chan);
2105
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002106 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002107 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002108
Sujith2660b812009-02-09 13:27:26 +05302109 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002110 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2111 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2112 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2113 }
2114
2115 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2116
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002117 /*
2118 * For big endian systems turn on swapping for descriptors
2119 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002120 if (AR_SREV_9100(ah)) {
2121 u32 mask;
2122 mask = REG_READ(ah, AR_CFG);
2123 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002124 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302125 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002126 } else {
2127 mask =
2128 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2129 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002130 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302131 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002132 }
2133 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002134 /* Configure AR9271 target WLAN */
2135 if (AR_SREV_9271(ah))
2136 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002137#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002138 else
2139 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002140#endif
2141 }
2142
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002143 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302144 ath9k_hw_btcoex_enable(ah);
2145
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002146 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002147}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002148EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002149
Sujithf1dc5602008-10-29 10:16:30 +05302150/************************/
2151/* Key Cache Management */
2152/************************/
2153
Sujithcbe61d82009-02-09 13:27:12 +05302154bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002155{
Sujithf1dc5602008-10-29 10:16:30 +05302156 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002157
Sujith2660b812009-02-09 13:27:26 +05302158 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002159 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2160 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002161 return false;
2162 }
2163
Sujithf1dc5602008-10-29 10:16:30 +05302164 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002165
Sujithf1dc5602008-10-29 10:16:30 +05302166 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2167 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2168 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2169 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2170 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2171 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2172 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2173 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2174
2175 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2176 u16 micentry = entry + 64;
2177
2178 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2179 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2180 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2181 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2182
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183 }
2184
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002185 return true;
2186}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002187EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002188
Sujithcbe61d82009-02-09 13:27:12 +05302189bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002190{
Sujithf1dc5602008-10-29 10:16:30 +05302191 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192
Sujith2660b812009-02-09 13:27:26 +05302193 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002194 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2195 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002196 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 }
2198
Sujithf1dc5602008-10-29 10:16:30 +05302199 if (mac != NULL) {
2200 macHi = (mac[5] << 8) | mac[4];
2201 macLo = (mac[3] << 24) |
2202 (mac[2] << 16) |
2203 (mac[1] << 8) |
2204 mac[0];
2205 macLo >>= 1;
2206 macLo |= (macHi & 1) << 31;
2207 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002208 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302209 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002210 }
Sujithf1dc5602008-10-29 10:16:30 +05302211 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2212 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002213
2214 return true;
2215}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002216EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217
Sujithcbe61d82009-02-09 13:27:12 +05302218bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302219 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002220 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002221{
Sujith2660b812009-02-09 13:27:26 +05302222 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002223 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302224 u32 key0, key1, key2, key3, key4;
2225 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226
Sujithf1dc5602008-10-29 10:16:30 +05302227 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002228 ath_print(common, ATH_DBG_FATAL,
2229 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302230 return false;
2231 }
2232
2233 switch (k->kv_type) {
2234 case ATH9K_CIPHER_AES_OCB:
2235 keyType = AR_KEYTABLE_TYPE_AES;
2236 break;
2237 case ATH9K_CIPHER_AES_CCM:
2238 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002239 ath_print(common, ATH_DBG_ANY,
2240 "AES-CCM not supported by mac rev 0x%x\n",
2241 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242 return false;
2243 }
Sujithf1dc5602008-10-29 10:16:30 +05302244 keyType = AR_KEYTABLE_TYPE_CCM;
2245 break;
2246 case ATH9K_CIPHER_TKIP:
2247 keyType = AR_KEYTABLE_TYPE_TKIP;
2248 if (ATH9K_IS_MIC_ENABLED(ah)
2249 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002250 ath_print(common, ATH_DBG_ANY,
2251 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002252 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253 }
Sujithf1dc5602008-10-29 10:16:30 +05302254 break;
2255 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002256 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002257 ath_print(common, ATH_DBG_ANY,
2258 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302259 return false;
2260 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002261 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302262 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002263 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302264 keyType = AR_KEYTABLE_TYPE_104;
2265 else
2266 keyType = AR_KEYTABLE_TYPE_128;
2267 break;
2268 case ATH9K_CIPHER_CLR:
2269 keyType = AR_KEYTABLE_TYPE_CLR;
2270 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002272 ath_print(common, ATH_DBG_FATAL,
2273 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274 return false;
2275 }
Sujithf1dc5602008-10-29 10:16:30 +05302276
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002277 key0 = get_unaligned_le32(k->kv_val + 0);
2278 key1 = get_unaligned_le16(k->kv_val + 4);
2279 key2 = get_unaligned_le32(k->kv_val + 6);
2280 key3 = get_unaligned_le16(k->kv_val + 10);
2281 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002282 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302283 key4 &= 0xff;
2284
Jouni Malinen672903b2009-03-02 15:06:31 +02002285 /*
2286 * Note: Key cache registers access special memory area that requires
2287 * two 32-bit writes to actually update the values in the internal
2288 * memory. Consequently, the exact order and pairs used here must be
2289 * maintained.
2290 */
2291
Sujithf1dc5602008-10-29 10:16:30 +05302292 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2293 u16 micentry = entry + 64;
2294
Jouni Malinen672903b2009-03-02 15:06:31 +02002295 /*
2296 * Write inverted key[47:0] first to avoid Michael MIC errors
2297 * on frames that could be sent or received at the same time.
2298 * The correct key will be written in the end once everything
2299 * else is ready.
2300 */
Sujithf1dc5602008-10-29 10:16:30 +05302301 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2302 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002303
2304 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302305 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2306 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002307
2308 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302309 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2310 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002311
2312 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302313 (void) ath9k_hw_keysetmac(ah, entry, mac);
2314
Sujith2660b812009-02-09 13:27:26 +05302315 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002316 /*
2317 * TKIP uses two key cache entries:
2318 * Michael MIC TX/RX keys in the same key cache entry
2319 * (idx = main index + 64):
2320 * key0 [31:0] = RX key [31:0]
2321 * key1 [15:0] = TX key [31:16]
2322 * key1 [31:16] = reserved
2323 * key2 [31:0] = RX key [63:32]
2324 * key3 [15:0] = TX key [15:0]
2325 * key3 [31:16] = reserved
2326 * key4 [31:0] = TX key [63:32]
2327 */
Sujithf1dc5602008-10-29 10:16:30 +05302328 u32 mic0, mic1, mic2, mic3, mic4;
2329
2330 mic0 = get_unaligned_le32(k->kv_mic + 0);
2331 mic2 = get_unaligned_le32(k->kv_mic + 4);
2332 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2333 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2334 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002335
2336 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302337 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2338 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002339
2340 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302341 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2342 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002343
2344 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302345 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2346 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2347 AR_KEYTABLE_TYPE_CLR);
2348
2349 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002350 /*
2351 * TKIP uses four key cache entries (two for group
2352 * keys):
2353 * Michael MIC TX/RX keys are in different key cache
2354 * entries (idx = main index + 64 for TX and
2355 * main index + 32 + 96 for RX):
2356 * key0 [31:0] = TX/RX MIC key [31:0]
2357 * key1 [31:0] = reserved
2358 * key2 [31:0] = TX/RX MIC key [63:32]
2359 * key3 [31:0] = reserved
2360 * key4 [31:0] = reserved
2361 *
2362 * Upper layer code will call this function separately
2363 * for TX and RX keys when these registers offsets are
2364 * used.
2365 */
Sujithf1dc5602008-10-29 10:16:30 +05302366 u32 mic0, mic2;
2367
2368 mic0 = get_unaligned_le32(k->kv_mic + 0);
2369 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002370
2371 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302372 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2373 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002374
2375 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302376 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2377 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002378
2379 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302380 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2381 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2382 AR_KEYTABLE_TYPE_CLR);
2383 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002384
2385 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302386 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2387 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002388
2389 /*
2390 * Write the correct (un-inverted) key[47:0] last to enable
2391 * TKIP now that all other registers are set with correct
2392 * values.
2393 */
Sujithf1dc5602008-10-29 10:16:30 +05302394 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2395 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2396 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002397 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302398 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2399 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002400
2401 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302402 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2403 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002404
2405 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302406 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2407 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2408
Jouni Malinen672903b2009-03-02 15:06:31 +02002409 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302410 (void) ath9k_hw_keysetmac(ah, entry, mac);
2411 }
2412
Sujithf1dc5602008-10-29 10:16:30 +05302413 return true;
2414}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002415EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05302416
Sujithcbe61d82009-02-09 13:27:12 +05302417bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302418{
Sujith2660b812009-02-09 13:27:26 +05302419 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302420 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2421 if (val & AR_KEYTABLE_VALID)
2422 return true;
2423 }
2424 return false;
2425}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002426EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05302427
2428/******************************/
2429/* Power Management (Chipset) */
2430/******************************/
2431
Sujithcbe61d82009-02-09 13:27:12 +05302432static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302433{
2434 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2435 if (setChip) {
2436 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2437 AR_RTC_FORCE_WAKE_EN);
2438 if (!AR_SREV_9100(ah))
2439 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2440
Sujith4921be82009-09-18 15:04:27 +05302441 if(!AR_SREV_5416(ah))
2442 REG_CLR_BIT(ah, (AR_RTC_RESET),
2443 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302444 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445}
2446
Sujithcbe61d82009-02-09 13:27:12 +05302447static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002448{
Sujithf1dc5602008-10-29 10:16:30 +05302449 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2450 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302451 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002452
Sujithf1dc5602008-10-29 10:16:30 +05302453 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2454 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2455 AR_RTC_FORCE_WAKE_ON_INT);
2456 } else {
2457 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2458 AR_RTC_FORCE_WAKE_EN);
2459 }
2460 }
2461}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002462
Sujithcbe61d82009-02-09 13:27:12 +05302463static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302464{
2465 u32 val;
2466 int i;
2467
2468 if (setChip) {
2469 if ((REG_READ(ah, AR_RTC_STATUS) &
2470 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2471 if (ath9k_hw_set_reset_reg(ah,
2472 ATH9K_RESET_POWER_ON) != true) {
2473 return false;
2474 }
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302475 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302476 }
2477 if (AR_SREV_9100(ah))
2478 REG_SET_BIT(ah, AR_RTC_RESET,
2479 AR_RTC_RESET_EN);
2480
2481 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2482 AR_RTC_FORCE_WAKE_EN);
2483 udelay(50);
2484
2485 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2486 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2487 if (val == AR_RTC_STATUS_ON)
2488 break;
2489 udelay(50);
2490 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2491 AR_RTC_FORCE_WAKE_EN);
2492 }
2493 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002494 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2495 "Failed to wakeup in %uus\n",
2496 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302497 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002498 }
2499 }
2500
Sujithf1dc5602008-10-29 10:16:30 +05302501 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2502
2503 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504}
2505
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002506bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302507{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002508 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302509 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302510 static const char *modes[] = {
2511 "AWAKE",
2512 "FULL-SLEEP",
2513 "NETWORK SLEEP",
2514 "UNDEFINED"
2515 };
Sujithf1dc5602008-10-29 10:16:30 +05302516
Gabor Juhoscbdec972009-07-24 17:27:22 +02002517 if (ah->power_mode == mode)
2518 return status;
2519
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002520 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2521 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302522
2523 switch (mode) {
2524 case ATH9K_PM_AWAKE:
2525 status = ath9k_hw_set_power_awake(ah, setChip);
2526 break;
2527 case ATH9K_PM_FULL_SLEEP:
2528 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302529 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302530 break;
2531 case ATH9K_PM_NETWORK_SLEEP:
2532 ath9k_set_power_network_sleep(ah, setChip);
2533 break;
2534 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002535 ath_print(common, ATH_DBG_FATAL,
2536 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302537 return false;
2538 }
Sujith2660b812009-02-09 13:27:26 +05302539 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302540
2541 return status;
2542}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002543EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302544
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002545/*
2546 * Helper for ASPM support.
2547 *
2548 * Disable PLL when in L0s as well as receiver clock when in L1.
2549 * This power saving option must be enabled through the SerDes.
2550 *
2551 * Programming the SerDes must go through the same 288 bit serial shift
2552 * register as the other analog registers. Hence the 9 writes.
2553 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302554void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore, int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302555{
Sujithf1dc5602008-10-29 10:16:30 +05302556 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302557 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302558
Sujith2660b812009-02-09 13:27:26 +05302559 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302560 return;
2561
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002562 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302563 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302564 return;
2565
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002566 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302567 if (!restore) {
2568 if (AR_SREV_9280_20_OR_LATER(ah)) {
2569 /*
2570 * AR9280 2.0 or later chips use SerDes values from the
2571 * initvals.h initialized depending on chipset during
2572 * ath9k_hw_init()
2573 */
2574 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2575 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2576 INI_RA(&ah->iniPcieSerdes, i, 1));
2577 }
2578 } else if (AR_SREV_9280(ah) &&
2579 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2580 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2581 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302582
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302583 /* RX shut off when elecidle is asserted */
2584 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2585 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2586 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2587
2588 /* Shut off CLKREQ active in L1 */
2589 if (ah->config.pcie_clock_req)
2590 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2591 else
2592 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2593
2594 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2595 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2596 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2597
2598 /* Load the new settings */
2599 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2600
2601 } else {
2602 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2603 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2604
2605 /* RX shut off when elecidle is asserted */
2606 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2607 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2608 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2609
2610 /*
2611 * Ignore ah->ah_config.pcie_clock_req setting for
2612 * pre-AR9280 11n
2613 */
2614 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2615
2616 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2617 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2618 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2619
2620 /* Load the new settings */
2621 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302622 }
Sujithf1dc5602008-10-29 10:16:30 +05302623
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302624 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302625
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302626 /* set bit 19 to allow forcing of pcie core into L1 state */
2627 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302628
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302629 /* Several PCIe massages to ensure proper behaviour */
2630 if (ah->config.pcie_waen) {
2631 val = ah->config.pcie_waen;
2632 if (!power_off)
2633 val &= (~AR_WA_D3_L1_DISABLE);
2634 } else {
2635 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2636 AR_SREV_9287(ah)) {
2637 val = AR9285_WA_DEFAULT;
2638 if (!power_off)
2639 val &= (~AR_WA_D3_L1_DISABLE);
2640 } else if (AR_SREV_9280(ah)) {
2641 /*
2642 * On AR9280 chips bit 22 of 0x4004 needs to be
2643 * set otherwise card may disappear.
2644 */
2645 val = AR9280_WA_DEFAULT;
2646 if (!power_off)
2647 val &= (~AR_WA_D3_L1_DISABLE);
2648 } else
2649 val = AR_WA_DEFAULT;
2650 }
Sujithf1dc5602008-10-29 10:16:30 +05302651
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302652 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302653 }
2654
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302655 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002656 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302657 * Set PCIe workaround bits
2658 * bit 14 in WA register (disable L1) should only
2659 * be set when device enters D3 and be cleared
2660 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002661 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302662 if (ah->config.pcie_waen) {
2663 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2664 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2665 } else {
2666 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2667 AR_SREV_9287(ah)) &&
2668 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2669 (AR_SREV_9280(ah) &&
2670 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2671 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2672 }
2673 }
Sujithf1dc5602008-10-29 10:16:30 +05302674 }
2675}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002676EXPORT_SYMBOL(ath9k_hw_configpcipowersave);
Sujithf1dc5602008-10-29 10:16:30 +05302677
2678/**********************/
2679/* Interrupt Handling */
2680/**********************/
2681
Sujithcbe61d82009-02-09 13:27:12 +05302682bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002683{
2684 u32 host_isr;
2685
2686 if (AR_SREV_9100(ah))
2687 return true;
2688
2689 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2690 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2691 return true;
2692
2693 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2694 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2695 && (host_isr != AR_INTR_SPURIOUS))
2696 return true;
2697
2698 return false;
2699}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002700EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002701
Sujithcbe61d82009-02-09 13:27:12 +05302702bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002703{
2704 u32 isr = 0;
2705 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302706 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002707 u32 sync_cause = 0;
2708 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002709 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002710
2711 if (!AR_SREV_9100(ah)) {
2712 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2713 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2714 == AR_RTC_STATUS_ON) {
2715 isr = REG_READ(ah, AR_ISR);
2716 }
2717 }
2718
Sujithf1dc5602008-10-29 10:16:30 +05302719 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2720 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002721
2722 *masked = 0;
2723
2724 if (!isr && !sync_cause)
2725 return false;
2726 } else {
2727 *masked = 0;
2728 isr = REG_READ(ah, AR_ISR);
2729 }
2730
2731 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002732 if (isr & AR_ISR_BCNMISC) {
2733 u32 isr2;
2734 isr2 = REG_READ(ah, AR_ISR_S2);
2735 if (isr2 & AR_ISR_S2_TIM)
2736 mask2 |= ATH9K_INT_TIM;
2737 if (isr2 & AR_ISR_S2_DTIM)
2738 mask2 |= ATH9K_INT_DTIM;
2739 if (isr2 & AR_ISR_S2_DTIMSYNC)
2740 mask2 |= ATH9K_INT_DTIMSYNC;
2741 if (isr2 & (AR_ISR_S2_CABEND))
2742 mask2 |= ATH9K_INT_CABEND;
2743 if (isr2 & AR_ISR_S2_GTT)
2744 mask2 |= ATH9K_INT_GTT;
2745 if (isr2 & AR_ISR_S2_CST)
2746 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302747 if (isr2 & AR_ISR_S2_TSFOOR)
2748 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002749 }
2750
2751 isr = REG_READ(ah, AR_ISR_RAC);
2752 if (isr == 0xffffffff) {
2753 *masked = 0;
2754 return false;
2755 }
2756
2757 *masked = isr & ATH9K_INT_COMMON;
2758
Sujith0ce024c2009-12-14 14:57:00 +05302759 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002760 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2761 *masked |= ATH9K_INT_RX;
2762 }
2763
2764 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2765 *masked |= ATH9K_INT_RX;
2766 if (isr &
2767 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2768 AR_ISR_TXEOL)) {
2769 u32 s0_s, s1_s;
2770
2771 *masked |= ATH9K_INT_TX;
2772
2773 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302774 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2775 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002776
2777 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302778 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2779 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002780 }
2781
2782 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002783 ath_print(common, ATH_DBG_INTERRUPT,
2784 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002785 }
2786
2787 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302788 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002789 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2790 if (isr5 & AR_ISR_S5_TIM_TIMER)
2791 *masked |= ATH9K_INT_TIM_TIMER;
2792 }
2793 }
2794
2795 *masked |= mask2;
2796 }
Sujithf1dc5602008-10-29 10:16:30 +05302797
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002798 if (AR_SREV_9100(ah))
2799 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302800
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302801 if (isr & AR_ISR_GENTMR) {
2802 u32 s5_s;
2803
2804 s5_s = REG_READ(ah, AR_ISR_S5_S);
2805 if (isr & AR_ISR_GENTMR) {
2806 ah->intr_gen_timer_trigger =
2807 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2808
2809 ah->intr_gen_timer_thresh =
2810 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2811
2812 if (ah->intr_gen_timer_trigger)
2813 *masked |= ATH9K_INT_GENTIMER;
2814
2815 }
2816 }
2817
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002818 if (sync_cause) {
2819 fatal_int =
2820 (sync_cause &
2821 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2822 ? true : false;
2823
2824 if (fatal_int) {
2825 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002826 ath_print(common, ATH_DBG_ANY,
2827 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002828 }
2829 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002830 ath_print(common, ATH_DBG_ANY,
2831 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002832 }
Steven Luoa89bff92009-04-12 02:57:54 -07002833 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002834 }
2835 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002836 ath_print(common, ATH_DBG_INTERRUPT,
2837 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002838 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2839 REG_WRITE(ah, AR_RC, 0);
2840 *masked |= ATH9K_INT_FATAL;
2841 }
2842 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002843 ath_print(common, ATH_DBG_INTERRUPT,
2844 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002845 }
2846
2847 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2848 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2849 }
Sujithf1dc5602008-10-29 10:16:30 +05302850
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002851 return true;
2852}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002853EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002854
Sujithcbe61d82009-02-09 13:27:12 +05302855enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002856{
Sujith2660b812009-02-09 13:27:26 +05302857 u32 omask = ah->mask_reg;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002858 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302859 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002860 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002861
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002862 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002863
2864 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002865 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002866 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2867 (void) REG_READ(ah, AR_IER);
2868 if (!AR_SREV_9100(ah)) {
2869 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2870 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2871
2872 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2873 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2874 }
2875 }
2876
2877 mask = ints & ATH9K_INT_COMMON;
2878 mask2 = 0;
2879
2880 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302881 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002882 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302883 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002884 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302885 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002886 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302887 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002888 mask |= AR_IMR_TXEOL;
2889 }
2890 if (ints & ATH9K_INT_RX) {
2891 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302892 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002893 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2894 else
2895 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302896 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002897 mask |= AR_IMR_GENTMR;
2898 }
2899
2900 if (ints & (ATH9K_INT_BMISC)) {
2901 mask |= AR_IMR_BCNMISC;
2902 if (ints & ATH9K_INT_TIM)
2903 mask2 |= AR_IMR_S2_TIM;
2904 if (ints & ATH9K_INT_DTIM)
2905 mask2 |= AR_IMR_S2_DTIM;
2906 if (ints & ATH9K_INT_DTIMSYNC)
2907 mask2 |= AR_IMR_S2_DTIMSYNC;
2908 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302909 mask2 |= AR_IMR_S2_CABEND;
2910 if (ints & ATH9K_INT_TSFOOR)
2911 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002912 }
2913
2914 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2915 mask |= AR_IMR_BCNMISC;
2916 if (ints & ATH9K_INT_GTT)
2917 mask2 |= AR_IMR_S2_GTT;
2918 if (ints & ATH9K_INT_CST)
2919 mask2 |= AR_IMR_S2_CST;
2920 }
2921
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002922 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002923 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002924 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2925 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2926 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2927 ah->imrs2_reg |= mask2;
2928 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujith2660b812009-02-09 13:27:26 +05302929 ah->mask_reg = ints;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002930
Sujith60b67f52008-08-07 10:52:38 +05302931 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002932 if (ints & ATH9K_INT_TIM_TIMER)
2933 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2934 else
2935 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2936 }
2937
2938 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002939 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002940 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2941 if (!AR_SREV_9100(ah)) {
2942 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2943 AR_INTR_MAC_IRQ);
2944 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2945
2946
2947 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2948 AR_INTR_SYNC_DEFAULT);
2949 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2950 AR_INTR_SYNC_DEFAULT);
2951 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002952 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2953 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002954 }
2955
2956 return omask;
2957}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002958EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002959
Sujithf1dc5602008-10-29 10:16:30 +05302960/*******************/
2961/* Beacon Handling */
2962/*******************/
2963
Sujithcbe61d82009-02-09 13:27:12 +05302964void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002965{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002966 int flags = 0;
2967
Sujith2660b812009-02-09 13:27:26 +05302968 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002969
Sujith2660b812009-02-09 13:27:26 +05302970 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002971 case NL80211_IFTYPE_STATION:
2972 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002973 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2974 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2975 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2976 flags |= AR_TBTT_TIMER_EN;
2977 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002978 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002979 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002980 REG_SET_BIT(ah, AR_TXCFG,
2981 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2982 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2983 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302984 (ah->atim_window ? ah->
2985 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002986 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002987 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002988 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2989 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2990 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302991 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302992 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002993 REG_WRITE(ah, AR_NEXT_SWBA,
2994 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302995 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302996 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002997 flags |=
2998 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2999 break;
Colin McCabed97809d2008-12-01 13:38:55 -08003000 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003001 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
3002 "%s: unsupported opmode: %d\n",
3003 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08003004 return;
3005 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003006 }
3007
3008 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3009 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3010 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3011 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3012
3013 beacon_period &= ~ATH9K_BEACON_ENA;
3014 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003015 ath9k_hw_reset_tsf(ah);
3016 }
3017
3018 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3019}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003020EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003021
Sujithcbe61d82009-02-09 13:27:12 +05303022void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303023 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003024{
3025 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303026 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003027 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003028
3029 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3030
3031 REG_WRITE(ah, AR_BEACON_PERIOD,
3032 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3033 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3034 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3035
3036 REG_RMW_FIELD(ah, AR_RSSI_THR,
3037 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3038
3039 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3040
3041 if (bs->bs_sleepduration > beaconintval)
3042 beaconintval = bs->bs_sleepduration;
3043
3044 dtimperiod = bs->bs_dtimperiod;
3045 if (bs->bs_sleepduration > dtimperiod)
3046 dtimperiod = bs->bs_sleepduration;
3047
3048 if (beaconintval == dtimperiod)
3049 nextTbtt = bs->bs_nextdtim;
3050 else
3051 nextTbtt = bs->bs_nexttbtt;
3052
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003053 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3054 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3055 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3056 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003057
3058 REG_WRITE(ah, AR_NEXT_DTIM,
3059 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3060 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3061
3062 REG_WRITE(ah, AR_SLEEP1,
3063 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3064 | AR_SLEEP1_ASSUME_DTIM);
3065
Sujith60b67f52008-08-07 10:52:38 +05303066 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003067 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3068 else
3069 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3070
3071 REG_WRITE(ah, AR_SLEEP2,
3072 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3073
3074 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3075 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3076
3077 REG_SET_BIT(ah, AR_TIMER_MODE,
3078 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3079 AR_DTIM_TIMER_EN);
3080
Sujith4af9cf42009-02-12 10:06:47 +05303081 /* TSF Out of Range Threshold */
3082 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003083}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003084EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003085
Sujithf1dc5602008-10-29 10:16:30 +05303086/*******************/
3087/* HW Capabilities */
3088/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003089
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003090int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003091{
Sujith2660b812009-02-09 13:27:26 +05303092 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003093 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003094 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003095 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003096
Sujithf1dc5602008-10-29 10:16:30 +05303097 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003098
Sujithf74df6f2009-02-09 13:27:24 +05303099 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003100 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303101
Sujithf74df6f2009-02-09 13:27:24 +05303102 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303103 if (AR_SREV_9285_10_OR_LATER(ah))
3104 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003105 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303106
Sujithf74df6f2009-02-09 13:27:24 +05303107 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303108
Sujith2660b812009-02-09 13:27:26 +05303109 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303110 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003111 if (regulatory->current_rd == 0x64 ||
3112 regulatory->current_rd == 0x65)
3113 regulatory->current_rd += 5;
3114 else if (regulatory->current_rd == 0x41)
3115 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003116 ath_print(common, ATH_DBG_REGULATORY,
3117 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003118 }
Sujithdc2222a2008-08-14 13:26:55 +05303119
Sujithf74df6f2009-02-09 13:27:24 +05303120 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003121 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
3122 ath_print(common, ATH_DBG_FATAL,
3123 "no band has been marked as supported in EEPROM.\n");
3124 return -EINVAL;
3125 }
3126
Sujithf1dc5602008-10-29 10:16:30 +05303127 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003128
Sujithf1dc5602008-10-29 10:16:30 +05303129 if (eeval & AR5416_OPFLAGS_11A) {
3130 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303131 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303132 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3133 set_bit(ATH9K_MODE_11NA_HT20,
3134 pCap->wireless_modes);
3135 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3136 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3137 pCap->wireless_modes);
3138 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3139 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003140 }
3141 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003142 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003143
Sujithf1dc5602008-10-29 10:16:30 +05303144 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303145 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303146 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303147 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3148 set_bit(ATH9K_MODE_11NG_HT20,
3149 pCap->wireless_modes);
3150 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3151 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3152 pCap->wireless_modes);
3153 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3154 pCap->wireless_modes);
3155 }
3156 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003157 }
Sujithf1dc5602008-10-29 10:16:30 +05303158
Sujithf74df6f2009-02-09 13:27:24 +05303159 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003160 /*
3161 * For AR9271 we will temporarilly uses the rx chainmax as read from
3162 * the EEPROM.
3163 */
Sujith8147f5d2009-02-20 15:13:23 +05303164 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003165 !(eeval & AR5416_OPFLAGS_11A) &&
3166 !(AR_SREV_9271(ah)))
3167 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303168 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3169 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003170 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303171 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303172
Sujithd535a422009-02-09 13:27:06 +05303173 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303174 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303175
3176 pCap->low_2ghz_chan = 2312;
3177 pCap->high_2ghz_chan = 2732;
3178
3179 pCap->low_5ghz_chan = 4920;
3180 pCap->high_5ghz_chan = 6100;
3181
3182 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3183 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3184 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3185
3186 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3187 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3188 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3189
Sujith2660b812009-02-09 13:27:26 +05303190 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303191 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3192 else
3193 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3194
3195 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3196 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3197 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3198 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3199
3200 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3201 pCap->total_queues =
3202 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3203 else
3204 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3205
3206 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3207 pCap->keycache_size =
3208 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3209 else
3210 pCap->keycache_size = AR_KEYTABLE_SIZE;
3211
3212 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05003213
3214 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
3215 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
3216 else
3217 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05303218
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303219 if (AR_SREV_9285_10_OR_LATER(ah))
3220 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3221 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303222 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3223 else
3224 pCap->num_gpio_pins = AR_NUM_GPIO;
3225
Sujithf1dc5602008-10-29 10:16:30 +05303226 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3227 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3228 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3229 } else {
3230 pCap->rts_aggr_limit = (8 * 1024);
3231 }
3232
3233 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3234
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303235#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303236 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3237 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3238 ah->rfkill_gpio =
3239 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3240 ah->rfkill_polarity =
3241 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303242
3243 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3244 }
3245#endif
3246
Vivek Natarajana3ca95fb2009-09-17 09:29:07 +05303247 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05303248
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303249 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303250 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3251 else
3252 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3253
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003254 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303255 pCap->reg_cap =
3256 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3257 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3258 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3259 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3260 } else {
3261 pCap->reg_cap =
3262 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3263 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3264 }
3265
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05303266 /* Advertise midband for AR5416 with FCC midband set in eeprom */
3267 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
3268 AR_SREV_5416(ah))
3269 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05303270
3271 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303272 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303273 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303274 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303275
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05303276 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07003277 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003278 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
3279 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303280
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303281 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003282 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
3283 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303284 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003285 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303286 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303287 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003288 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303289 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003290
3291 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003292}
3293
Sujithcbe61d82009-02-09 13:27:12 +05303294bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303295 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003296{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003297 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303298 switch (type) {
3299 case ATH9K_CAP_CIPHER:
3300 switch (capability) {
3301 case ATH9K_CIPHER_AES_CCM:
3302 case ATH9K_CIPHER_AES_OCB:
3303 case ATH9K_CIPHER_TKIP:
3304 case ATH9K_CIPHER_WEP:
3305 case ATH9K_CIPHER_MIC:
3306 case ATH9K_CIPHER_CLR:
3307 return true;
3308 default:
3309 return false;
3310 }
3311 case ATH9K_CAP_TKIP_MIC:
3312 switch (capability) {
3313 case 0:
3314 return true;
3315 case 1:
Sujith2660b812009-02-09 13:27:26 +05303316 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303317 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3318 false;
3319 }
3320 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303321 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303322 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303323 case ATH9K_CAP_DIVERSITY:
3324 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3325 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3326 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303327 case ATH9K_CAP_MCAST_KEYSRCH:
3328 switch (capability) {
3329 case 0:
3330 return true;
3331 case 1:
3332 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3333 return false;
3334 } else {
Sujith2660b812009-02-09 13:27:26 +05303335 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303336 AR_STA_ID1_MCAST_KSRCH) ? true :
3337 false;
3338 }
3339 }
3340 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303341 case ATH9K_CAP_TXPOW:
3342 switch (capability) {
3343 case 0:
3344 return 0;
3345 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003346 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303347 return 0;
3348 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003349 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303350 return 0;
3351 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003352 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303353 return 0;
3354 }
3355 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303356 case ATH9K_CAP_DS:
3357 return (AR_SREV_9280_20_OR_LATER(ah) &&
3358 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3359 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303360 default:
3361 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003362 }
Sujithf1dc5602008-10-29 10:16:30 +05303363}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003364EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003365
Sujithcbe61d82009-02-09 13:27:12 +05303366bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303367 u32 capability, u32 setting, int *status)
3368{
Sujithf1dc5602008-10-29 10:16:30 +05303369 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003370
Sujithf1dc5602008-10-29 10:16:30 +05303371 switch (type) {
3372 case ATH9K_CAP_TKIP_MIC:
3373 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303374 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303375 AR_STA_ID1_CRPT_MIC_ENABLE;
3376 else
Sujith2660b812009-02-09 13:27:26 +05303377 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303378 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3379 return true;
3380 case ATH9K_CAP_DIVERSITY:
3381 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3382 if (setting)
3383 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3384 else
3385 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3386 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3387 return true;
3388 case ATH9K_CAP_MCAST_KEYSRCH:
3389 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303390 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303391 else
Sujith2660b812009-02-09 13:27:26 +05303392 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303393 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303394 default:
3395 return false;
3396 }
3397}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003398EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05303399
3400/****************************/
3401/* GPIO / RFKILL / Antennae */
3402/****************************/
3403
Sujithcbe61d82009-02-09 13:27:12 +05303404static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303405 u32 gpio, u32 type)
3406{
3407 int addr;
3408 u32 gpio_shift, tmp;
3409
3410 if (gpio > 11)
3411 addr = AR_GPIO_OUTPUT_MUX3;
3412 else if (gpio > 5)
3413 addr = AR_GPIO_OUTPUT_MUX2;
3414 else
3415 addr = AR_GPIO_OUTPUT_MUX1;
3416
3417 gpio_shift = (gpio % 6) * 5;
3418
3419 if (AR_SREV_9280_20_OR_LATER(ah)
3420 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3421 REG_RMW(ah, addr, (type << gpio_shift),
3422 (0x1f << gpio_shift));
3423 } else {
3424 tmp = REG_READ(ah, addr);
3425 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3426 tmp &= ~(0x1f << gpio_shift);
3427 tmp |= (type << gpio_shift);
3428 REG_WRITE(ah, addr, tmp);
3429 }
3430}
3431
Sujithcbe61d82009-02-09 13:27:12 +05303432void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303433{
3434 u32 gpio_shift;
3435
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003436 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303437
3438 gpio_shift = gpio << 1;
3439
3440 REG_RMW(ah,
3441 AR_GPIO_OE_OUT,
3442 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3443 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3444}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003445EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303446
Sujithcbe61d82009-02-09 13:27:12 +05303447u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303448{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303449#define MS_REG_READ(x, y) \
3450 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3451
Sujith2660b812009-02-09 13:27:26 +05303452 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303453 return 0xffffffff;
3454
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303455 if (AR_SREV_9287_10_OR_LATER(ah))
3456 return MS_REG_READ(AR9287, gpio) != 0;
3457 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303458 return MS_REG_READ(AR9285, gpio) != 0;
3459 else if (AR_SREV_9280_10_OR_LATER(ah))
3460 return MS_REG_READ(AR928X, gpio) != 0;
3461 else
3462 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303463}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003464EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303465
Sujithcbe61d82009-02-09 13:27:12 +05303466void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303467 u32 ah_signal_type)
3468{
3469 u32 gpio_shift;
3470
3471 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3472
3473 gpio_shift = 2 * gpio;
3474
3475 REG_RMW(ah,
3476 AR_GPIO_OE_OUT,
3477 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3478 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3479}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003480EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303481
Sujithcbe61d82009-02-09 13:27:12 +05303482void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303483{
3484 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3485 AR_GPIO_BIT(gpio));
3486}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003487EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303488
Sujithcbe61d82009-02-09 13:27:12 +05303489u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303490{
3491 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3492}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003493EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303494
Sujithcbe61d82009-02-09 13:27:12 +05303495void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303496{
3497 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3498}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003499EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303500
Sujithf1dc5602008-10-29 10:16:30 +05303501/*********************/
3502/* General Operation */
3503/*********************/
3504
Sujithcbe61d82009-02-09 13:27:12 +05303505u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303506{
3507 u32 bits = REG_READ(ah, AR_RX_FILTER);
3508 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3509
3510 if (phybits & AR_PHY_ERR_RADAR)
3511 bits |= ATH9K_RX_FILTER_PHYRADAR;
3512 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3513 bits |= ATH9K_RX_FILTER_PHYERR;
3514
3515 return bits;
3516}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003517EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303518
Sujithcbe61d82009-02-09 13:27:12 +05303519void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303520{
3521 u32 phybits;
3522
Sujith7ea310b2009-09-03 12:08:43 +05303523 REG_WRITE(ah, AR_RX_FILTER, bits);
3524
Sujithf1dc5602008-10-29 10:16:30 +05303525 phybits = 0;
3526 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3527 phybits |= AR_PHY_ERR_RADAR;
3528 if (bits & ATH9K_RX_FILTER_PHYERR)
3529 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3530 REG_WRITE(ah, AR_PHY_ERR, phybits);
3531
3532 if (phybits)
3533 REG_WRITE(ah, AR_RXCFG,
3534 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3535 else
3536 REG_WRITE(ah, AR_RXCFG,
3537 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3538}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003539EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303540
Sujithcbe61d82009-02-09 13:27:12 +05303541bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303542{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303543 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3544 return false;
3545
3546 ath9k_hw_init_pll(ah, NULL);
3547 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303548}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003549EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303550
Sujithcbe61d82009-02-09 13:27:12 +05303551bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303552{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003553 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303554 return false;
3555
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303556 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3557 return false;
3558
3559 ath9k_hw_init_pll(ah, NULL);
3560 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303561}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003562EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303563
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003564void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303565{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003566 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303567 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003568 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303569
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003570 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303571
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003572 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003573 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003574 channel->max_antenna_gain * 2,
3575 channel->max_power * 2,
3576 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003577 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303578}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003579EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303580
Sujithcbe61d82009-02-09 13:27:12 +05303581void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303582{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003583 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303584}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003585EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303586
Sujithcbe61d82009-02-09 13:27:12 +05303587void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303588{
Sujith2660b812009-02-09 13:27:26 +05303589 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303590}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003591EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303592
Sujithcbe61d82009-02-09 13:27:12 +05303593void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303594{
3595 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3596 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3597}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003598EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303599
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003600void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303601{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003602 struct ath_common *common = ath9k_hw_common(ah);
3603
3604 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3605 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3606 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303607}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003608EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303609
Sujithcbe61d82009-02-09 13:27:12 +05303610u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303611{
3612 u64 tsf;
3613
3614 tsf = REG_READ(ah, AR_TSF_U32);
3615 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3616
3617 return tsf;
3618}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003619EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303620
Sujithcbe61d82009-02-09 13:27:12 +05303621void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003622{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003623 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003624 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003625}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003626EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003627
Sujithcbe61d82009-02-09 13:27:12 +05303628void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303629{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003630 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3631 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003632 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3633 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003634
Sujithf1dc5602008-10-29 10:16:30 +05303635 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003636}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003637EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003638
Sujith54e4cec2009-08-07 09:45:09 +05303639void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003640{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003641 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303642 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003643 else
Sujith2660b812009-02-09 13:27:26 +05303644 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003645}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003646EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003647
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003648/*
3649 * Extend 15-bit time stamp from rx descriptor to
3650 * a full 64-bit TSF using the current h/w TSF.
3651*/
3652u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3653{
3654 u64 tsf;
3655
3656 tsf = ath9k_hw_gettsf64(ah);
3657 if ((tsf & 0x7fff) < rstamp)
3658 tsf -= 0x8000;
3659 return (tsf & ~0x7fff) | rstamp;
3660}
3661EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3662
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003663void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003664{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003665 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303666 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003667
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003668 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303669 macmode = AR_2040_JOINED_RX_CLEAR;
3670 else
3671 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003672
Sujithf1dc5602008-10-29 10:16:30 +05303673 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003674}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303675
3676/* HW Generic timers configuration */
3677
3678static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3679{
3680 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3681 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3682 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3683 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3684 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3685 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3686 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3687 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3688 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3689 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3690 AR_NDP2_TIMER_MODE, 0x0002},
3691 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3692 AR_NDP2_TIMER_MODE, 0x0004},
3693 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3694 AR_NDP2_TIMER_MODE, 0x0008},
3695 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3696 AR_NDP2_TIMER_MODE, 0x0010},
3697 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3698 AR_NDP2_TIMER_MODE, 0x0020},
3699 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3700 AR_NDP2_TIMER_MODE, 0x0040},
3701 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3702 AR_NDP2_TIMER_MODE, 0x0080}
3703};
3704
3705/* HW generic timer primitives */
3706
3707/* compute and clear index of rightmost 1 */
3708static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3709{
3710 u32 b;
3711
3712 b = *mask;
3713 b &= (0-b);
3714 *mask &= ~b;
3715 b *= debruijn32;
3716 b >>= 27;
3717
3718 return timer_table->gen_timer_index[b];
3719}
3720
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303721u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303722{
3723 return REG_READ(ah, AR_TSF_L32);
3724}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003725EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303726
3727struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3728 void (*trigger)(void *),
3729 void (*overflow)(void *),
3730 void *arg,
3731 u8 timer_index)
3732{
3733 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3734 struct ath_gen_timer *timer;
3735
3736 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3737
3738 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003739 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3740 "Failed to allocate memory"
3741 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303742 return NULL;
3743 }
3744
3745 /* allocate a hardware generic timer slot */
3746 timer_table->timers[timer_index] = timer;
3747 timer->index = timer_index;
3748 timer->trigger = trigger;
3749 timer->overflow = overflow;
3750 timer->arg = arg;
3751
3752 return timer;
3753}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003754EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303755
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003756void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3757 struct ath_gen_timer *timer,
3758 u32 timer_next,
3759 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303760{
3761 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3762 u32 tsf;
3763
3764 BUG_ON(!timer_period);
3765
3766 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3767
3768 tsf = ath9k_hw_gettsf32(ah);
3769
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003770 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3771 "curent tsf %x period %x"
3772 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303773
3774 /*
3775 * Pull timer_next forward if the current TSF already passed it
3776 * because of software latency
3777 */
3778 if (timer_next < tsf)
3779 timer_next = tsf + timer_period;
3780
3781 /*
3782 * Program generic timer registers
3783 */
3784 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3785 timer_next);
3786 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3787 timer_period);
3788 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3789 gen_tmr_configuration[timer->index].mode_mask);
3790
3791 /* Enable both trigger and thresh interrupt masks */
3792 REG_SET_BIT(ah, AR_IMR_S5,
3793 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3794 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303795}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003796EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303797
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003798void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303799{
3800 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3801
3802 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3803 (timer->index >= ATH_MAX_GEN_TIMER)) {
3804 return;
3805 }
3806
3807 /* Clear generic timer enable bits. */
3808 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3809 gen_tmr_configuration[timer->index].mode_mask);
3810
3811 /* Disable both trigger and thresh interrupt masks */
3812 REG_CLR_BIT(ah, AR_IMR_S5,
3813 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3814 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3815
3816 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303817}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003818EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303819
3820void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3821{
3822 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3823
3824 /* free the hardware generic timer slot */
3825 timer_table->timers[timer->index] = NULL;
3826 kfree(timer);
3827}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003828EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303829
3830/*
3831 * Generic Timer Interrupts handling
3832 */
3833void ath_gen_timer_isr(struct ath_hw *ah)
3834{
3835 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3836 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003837 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303838 u32 trigger_mask, thresh_mask, index;
3839
3840 /* get hardware generic timer interrupt status */
3841 trigger_mask = ah->intr_gen_timer_trigger;
3842 thresh_mask = ah->intr_gen_timer_thresh;
3843 trigger_mask &= timer_table->timer_mask.val;
3844 thresh_mask &= timer_table->timer_mask.val;
3845
3846 trigger_mask &= ~thresh_mask;
3847
3848 while (thresh_mask) {
3849 index = rightmost_index(timer_table, &thresh_mask);
3850 timer = timer_table->timers[index];
3851 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003852 ath_print(common, ATH_DBG_HWTIMER,
3853 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303854 timer->overflow(timer->arg);
3855 }
3856
3857 while (trigger_mask) {
3858 index = rightmost_index(timer_table, &trigger_mask);
3859 timer = timer_table->timers[index];
3860 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003861 ath_print(common, ATH_DBG_HWTIMER,
3862 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303863 timer->trigger(timer->arg);
3864 }
3865}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003866EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003867
3868static struct {
3869 u32 version;
3870 const char * name;
3871} ath_mac_bb_names[] = {
3872 /* Devices with external radios */
3873 { AR_SREV_VERSION_5416_PCI, "5416" },
3874 { AR_SREV_VERSION_5416_PCIE, "5418" },
3875 { AR_SREV_VERSION_9100, "9100" },
3876 { AR_SREV_VERSION_9160, "9160" },
3877 /* Single-chip solutions */
3878 { AR_SREV_VERSION_9280, "9280" },
3879 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003880 { AR_SREV_VERSION_9287, "9287" },
3881 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003882};
3883
3884/* For devices with external radios */
3885static struct {
3886 u16 version;
3887 const char * name;
3888} ath_rf_names[] = {
3889 { 0, "5133" },
3890 { AR_RAD5133_SREV_MAJOR, "5133" },
3891 { AR_RAD5122_SREV_MAJOR, "5122" },
3892 { AR_RAD2133_SREV_MAJOR, "2133" },
3893 { AR_RAD2122_SREV_MAJOR, "2122" }
3894};
3895
3896/*
3897 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3898 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003899static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003900{
3901 int i;
3902
3903 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3904 if (ath_mac_bb_names[i].version == mac_bb_version) {
3905 return ath_mac_bb_names[i].name;
3906 }
3907 }
3908
3909 return "????";
3910}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003911
3912/*
3913 * Return the RF name. "????" is returned if the RF is unknown.
3914 * Used for devices with external radios.
3915 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003916static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003917{
3918 int i;
3919
3920 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3921 if (ath_rf_names[i].version == rf_version) {
3922 return ath_rf_names[i].name;
3923 }
3924 }
3925
3926 return "????";
3927}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003928
3929void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3930{
3931 int used;
3932
3933 /* chipsets >= AR9280 are single-chip */
3934 if (AR_SREV_9280_10_OR_LATER(ah)) {
3935 used = snprintf(hw_name, len,
3936 "Atheros AR%s Rev:%x",
3937 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3938 ah->hw_version.macRev);
3939 }
3940 else {
3941 used = snprintf(hw_name, len,
3942 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3943 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3944 ah->hw_version.macRev,
3945 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3946 AR_RADIO_SREV_MAJOR)),
3947 ah->hw_version.phyRev);
3948 }
3949
3950 hw_name[used] = '\0';
3951}
3952EXPORT_SYMBOL(ath9k_hw_name);