blob: 6f7faf08b925f6a3b3338c6aaba7093d3948adc0 [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. Rodriguezd70357d2010-04-15 17:38:06 -040021#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070022#include "rc.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023#include "initvals.h"
24
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080025#define ATH9K_CLOCK_RATE_CCK 22
26#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
27#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040029static void ar9002_hw_attach_ops(struct ath_hw *ah);
30
Sujithcbe61d82009-02-09 13:27:12 +053031static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -070032static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan);
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
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040051/* Private hardware callbacks */
52
53static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
54{
55 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
56}
57
58static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
59{
60 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
61}
62
63static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
64{
65 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
66
67 return priv_ops->macversion_supported(ah->hw_version.macVersion);
68}
69
Sujithf1dc5602008-10-29 10:16:30 +053070/********************/
71/* Helper Functions */
72/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070073
Sujithcbe61d82009-02-09 13:27:12 +053074static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053075{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070076 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053077
Sujith2660b812009-02-09 13:27:26 +053078 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080079 return usecs *ATH9K_CLOCK_RATE_CCK;
80 if (conf->channel->band == IEEE80211_BAND_2GHZ)
81 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
82 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053083}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070084
Sujithcbe61d82009-02-09 13:27:12 +053085static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053086{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070087 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053088
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080089 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053090 return ath9k_hw_mac_clks(ah, usecs) * 2;
91 else
92 return ath9k_hw_mac_clks(ah, usecs);
93}
94
Sujith0caa7b12009-02-16 13:23:20 +053095bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070096{
97 int i;
98
Sujith0caa7b12009-02-16 13:23:20 +053099 BUG_ON(timeout < AH_TIME_QUANTUM);
100
101 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700102 if ((REG_READ(ah, reg) & mask) == val)
103 return true;
104
105 udelay(AH_TIME_QUANTUM);
106 }
Sujith04bd46382008-11-28 22:18:05 +0530107
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700108 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
109 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
110 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530111
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700112 return false;
113}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400114EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700115
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116u32 ath9k_hw_reverse_bits(u32 val, u32 n)
117{
118 u32 retval;
119 int i;
120
121 for (i = 0, retval = 0; i < n; i++) {
122 retval = (retval << 1) | (val & 1);
123 val >>= 1;
124 }
125 return retval;
126}
127
Sujithcbe61d82009-02-09 13:27:12 +0530128bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530129 u16 flags, u16 *low,
130 u16 *high)
131{
Sujith2660b812009-02-09 13:27:26 +0530132 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530133
134 if (flags & CHANNEL_5GHZ) {
135 *low = pCap->low_5ghz_chan;
136 *high = pCap->high_5ghz_chan;
137 return true;
138 }
139 if ((flags & CHANNEL_2GHZ)) {
140 *low = pCap->low_2ghz_chan;
141 *high = pCap->high_2ghz_chan;
142 return true;
143 }
144 return false;
145}
146
Sujithcbe61d82009-02-09 13:27:12 +0530147u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100148 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530149 u32 frameLen, u16 rateix,
150 bool shortPreamble)
151{
152 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530153
154 if (kbps == 0)
155 return 0;
156
Felix Fietkau545750d2009-11-23 22:21:01 +0100157 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530158 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530159 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100160 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530161 phyTime >>= 1;
162 numBits = frameLen << 3;
163 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
164 break;
Sujith46d14a52008-11-18 09:08:13 +0530165 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530166 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530167 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
168 numBits = OFDM_PLCP_BITS + (frameLen << 3);
169 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
170 txTime = OFDM_SIFS_TIME_QUARTER
171 + OFDM_PREAMBLE_TIME_QUARTER
172 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530173 } else if (ah->curchan &&
174 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530175 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
176 numBits = OFDM_PLCP_BITS + (frameLen << 3);
177 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
178 txTime = OFDM_SIFS_TIME_HALF +
179 OFDM_PREAMBLE_TIME_HALF
180 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
181 } else {
182 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
183 numBits = OFDM_PLCP_BITS + (frameLen << 3);
184 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
185 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
186 + (numSymbols * OFDM_SYMBOL_TIME);
187 }
188 break;
189 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700190 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100191 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530192 txTime = 0;
193 break;
194 }
195
196 return txTime;
197}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400198EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530199
Sujithcbe61d82009-02-09 13:27:12 +0530200void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530201 struct ath9k_channel *chan,
202 struct chan_centers *centers)
203{
204 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530205
206 if (!IS_CHAN_HT40(chan)) {
207 centers->ctl_center = centers->ext_center =
208 centers->synth_center = chan->channel;
209 return;
210 }
211
212 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
213 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
214 centers->synth_center =
215 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
216 extoff = 1;
217 } else {
218 centers->synth_center =
219 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
220 extoff = -1;
221 }
222
223 centers->ctl_center =
224 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700225 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530226 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700227 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530228}
229
230/******************/
231/* Chip Revisions */
232/******************/
233
Sujithcbe61d82009-02-09 13:27:12 +0530234static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530235{
236 u32 val;
237
238 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
239
240 if (val == 0xFF) {
241 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530242 ah->hw_version.macVersion =
243 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
244 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530245 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530246 } else {
247 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530248 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530249
Sujithd535a422009-02-09 13:27:06 +0530250 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530251
Sujithd535a422009-02-09 13:27:06 +0530252 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530253 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530254 }
255}
256
Sujithcbe61d82009-02-09 13:27:12 +0530257static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530258{
259 u32 val;
260 int i;
261
262 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
263
264 for (i = 0; i < 8; i++)
265 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
266 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
267 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
268
269 return ath9k_hw_reverse_bits(val, 8);
270}
271
272/************************************/
273/* HW Attach, Detach, Init Routines */
274/************************************/
275
Sujithcbe61d82009-02-09 13:27:12 +0530276static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530277{
Sujithfeed0292009-01-29 11:37:35 +0530278 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530279 return;
280
281 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
282 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
283 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
284 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
285 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
290
291 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
292}
293
Sujithcbe61d82009-02-09 13:27:12 +0530294static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530295{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700296 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530297 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
298 u32 regHold[2];
299 u32 patternData[4] = { 0x55555555,
300 0xaaaaaaaa,
301 0x66666666,
302 0x99999999 };
303 int i, j;
304
305 for (i = 0; i < 2; i++) {
306 u32 addr = regAddr[i];
307 u32 wrData, rdData;
308
309 regHold[i] = REG_READ(ah, addr);
310 for (j = 0; j < 0x100; j++) {
311 wrData = (j << 16) | j;
312 REG_WRITE(ah, addr, wrData);
313 rdData = REG_READ(ah, addr);
314 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700315 ath_print(common, ATH_DBG_FATAL,
316 "address test failed "
317 "addr: 0x%08x - wr:0x%08x != "
318 "rd:0x%08x\n",
319 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530320 return false;
321 }
322 }
323 for (j = 0; j < 4; j++) {
324 wrData = patternData[j];
325 REG_WRITE(ah, addr, wrData);
326 rdData = REG_READ(ah, addr);
327 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700328 ath_print(common, ATH_DBG_FATAL,
329 "address test failed "
330 "addr: 0x%08x - wr:0x%08x != "
331 "rd:0x%08x\n",
332 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530333 return false;
334 }
335 }
336 REG_WRITE(ah, regAddr[i], regHold[i]);
337 }
338 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530339
Sujithf1dc5602008-10-29 10:16:30 +0530340 return true;
341}
342
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700343static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700344{
345 int i;
346
Sujith2660b812009-02-09 13:27:26 +0530347 ah->config.dma_beacon_response_time = 2;
348 ah->config.sw_beacon_response_time = 10;
349 ah->config.additional_swba_backoff = 0;
350 ah->config.ack_6mb = 0x0;
351 ah->config.cwm_ignore_extcca = 0;
352 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530353 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530354 ah->config.pcie_waen = 0;
355 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530356 ah->config.ofdm_trig_low = 200;
357 ah->config.ofdm_trig_high = 500;
358 ah->config.cck_trig_high = 200;
359 ah->config.cck_trig_low = 100;
360 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361
362 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530363 ah->config.spurchans[i][0] = AR_NO_SPUR;
364 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700365 }
366
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500367 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
368 ah->config.ht_enable = 1;
369 else
370 ah->config.ht_enable = 0;
371
Sujith0ce024c2009-12-14 14:57:00 +0530372 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400373
374 /*
375 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
376 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
377 * This means we use it for all AR5416 devices, and the few
378 * minor PCI AR9280 devices out there.
379 *
380 * Serialization is required because these devices do not handle
381 * well the case of two concurrent reads/writes due to the latency
382 * involved. During one read/write another read/write can be issued
383 * on another CPU while the previous read/write may still be working
384 * on our hardware, if we hit this case the hardware poops in a loop.
385 * We prevent this by serializing reads and writes.
386 *
387 * This issue is not present on PCI-Express devices or pre-AR5416
388 * devices (legacy, 802.11abg).
389 */
390 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700391 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700392}
393
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700394static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700395{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700396 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
397
398 regulatory->country_code = CTRY_DEFAULT;
399 regulatory->power_limit = MAX_RATE_POWER;
400 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
401
Sujithd535a422009-02-09 13:27:06 +0530402 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530403 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404
405 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700406 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530407 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700408 if (!AR_SREV_9100(ah))
409 ah->ah_flags = AH_USE_EEPROM;
410
Sujith2660b812009-02-09 13:27:26 +0530411 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530412 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
413 ah->beacon_interval = 100;
414 ah->enable_32kHz_clock = DONT_USE_32KHZ;
415 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530416 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200417 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418}
419
Sujithcbe61d82009-02-09 13:27:12 +0530420static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700421{
422 u32 val;
423
424 REG_WRITE(ah, AR_PHY(0), 0x00000007);
425
426 val = ath9k_hw_get_radiorev(ah);
427 switch (val & AR_RADIO_SREV_MAJOR) {
428 case 0:
429 val = AR_RAD5133_SREV_MAJOR;
430 break;
431 case AR_RAD5133_SREV_MAJOR:
432 case AR_RAD5122_SREV_MAJOR:
433 case AR_RAD2133_SREV_MAJOR:
434 case AR_RAD2122_SREV_MAJOR:
435 break;
436 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700437 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
438 "Radio Chip Rev 0x%02X not supported\n",
439 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440 return -EOPNOTSUPP;
441 }
442
Sujithd535a422009-02-09 13:27:06 +0530443 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700444
445 return 0;
446}
447
Sujithcbe61d82009-02-09 13:27:12 +0530448static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700450 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530451 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530453 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454
Sujithf1dc5602008-10-29 10:16:30 +0530455 sum = 0;
456 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530457 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530458 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700459 common->macaddr[2 * i] = eeval >> 8;
460 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 }
Sujithd8baa932009-03-30 15:28:25 +0530462 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530463 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700464
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465 return 0;
466}
467
Sujithcbe61d82009-02-09 13:27:12 +0530468static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530469{
470 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530471
Sujithf74df6f2009-02-09 13:27:24 +0530472 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
473 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530474
475 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530476 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530477 ar9280Modes_backoff_13db_rxgain_9280_2,
478 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
479 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530480 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530481 ar9280Modes_backoff_23db_rxgain_9280_2,
482 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
483 else
Sujith2660b812009-02-09 13:27:26 +0530484 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530485 ar9280Modes_original_rxgain_9280_2,
486 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530487 } else {
Sujith2660b812009-02-09 13:27:26 +0530488 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530489 ar9280Modes_original_rxgain_9280_2,
490 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530491 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530492}
493
Sujithcbe61d82009-02-09 13:27:12 +0530494static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530495{
496 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530497
Sujithf74df6f2009-02-09 13:27:24 +0530498 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
499 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530500
501 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530502 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530503 ar9280Modes_high_power_tx_gain_9280_2,
504 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
505 else
Sujith2660b812009-02-09 13:27:26 +0530506 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530507 ar9280Modes_original_tx_gain_9280_2,
508 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530509 } else {
Sujith2660b812009-02-09 13:27:26 +0530510 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530511 ar9280Modes_original_tx_gain_9280_2,
512 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530513 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530514}
515
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700516static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700517{
518 int ecode;
519
Sujith527d4852010-03-17 14:25:16 +0530520 if (!AR_SREV_9271(ah)) {
521 if (!ath9k_hw_chip_test(ah))
522 return -ENODEV;
523 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700524
525 ecode = ath9k_hw_rf_claim(ah);
526 if (ecode != 0)
527 return ecode;
528
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700529 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700530 if (ecode != 0)
531 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530532
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700533 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
534 "Eeprom VER: %d, REV: %d\n",
535 ah->eep_ops->get_eeprom_ver(ah),
536 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530537
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400538 if (!AR_SREV_9280_10_OR_LATER(ah)) {
539 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
540 if (ecode) {
541 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
542 "Failed allocating banks for "
543 "external radio\n");
544 return ecode;
545 }
546 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700547
548 if (!AR_SREV_9100(ah)) {
549 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700550 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700551 }
Sujithf1dc5602008-10-29 10:16:30 +0530552
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700553 return 0;
554}
555
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400556static bool ar9002_hw_macversion_supported(u32 macversion)
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700557{
558 switch (macversion) {
559 case AR_SREV_VERSION_5416_PCI:
560 case AR_SREV_VERSION_5416_PCIE:
561 case AR_SREV_VERSION_9160:
562 case AR_SREV_VERSION_9100:
563 case AR_SREV_VERSION_9280:
564 case AR_SREV_VERSION_9285:
565 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400566 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400567 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700568 default:
569 break;
570 }
571 return false;
572}
573
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400574static void ar9002_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700575{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700576 if (AR_SREV_9160_10_OR_LATER(ah)) {
577 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530578 ah->iq_caldata.calData = &iq_cal_single_sample;
579 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700580 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530581 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700582 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530583 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700584 &adc_init_dc_cal;
585 } else {
Sujith2660b812009-02-09 13:27:26 +0530586 ah->iq_caldata.calData = &iq_cal_multi_sample;
587 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700588 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530589 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700590 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530591 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592 &adc_init_dc_cal;
593 }
Sujith2660b812009-02-09 13:27:26 +0530594 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700596}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700597
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400598static void ar9002_hw_init_mode_regs(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400600 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400601 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
602 ARRAY_SIZE(ar9271Modes_9271), 6);
603 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
604 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530605 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
606 ar9271Common_normal_cck_fir_coeff_9271,
607 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
608 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
609 ar9271Common_japan_2484_cck_fir_coeff_9271,
610 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400611 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
612 ar9271Modes_9271_1_0_only,
613 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530614 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
615 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
616 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
617 ar9271Modes_high_power_tx_gain_9271,
618 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
619 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
620 ar9271Modes_normal_power_tx_gain_9271,
621 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400622 return;
623 }
624
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530625 if (AR_SREV_9287_11_OR_LATER(ah)) {
626 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
627 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
628 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
629 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
630 if (ah->config.pcie_clock_req)
631 INIT_INI_ARRAY(&ah->iniPcieSerdes,
632 ar9287PciePhy_clkreq_off_L1_9287_1_1,
633 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
634 else
635 INIT_INI_ARRAY(&ah->iniPcieSerdes,
636 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
637 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
638 2);
639 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
640 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
641 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
642 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
643 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530645 if (ah->config.pcie_clock_req)
646 INIT_INI_ARRAY(&ah->iniPcieSerdes,
647 ar9287PciePhy_clkreq_off_L1_9287_1_0,
648 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
649 else
650 INIT_INI_ARRAY(&ah->iniPcieSerdes,
651 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
652 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
653 2);
654 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
655
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530656
Sujith2660b812009-02-09 13:27:26 +0530657 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530658 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530659 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530660 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
661
Sujith2660b812009-02-09 13:27:26 +0530662 if (ah->config.pcie_clock_req) {
663 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530664 ar9285PciePhy_clkreq_off_L1_9285_1_2,
665 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
666 } else {
Sujith2660b812009-02-09 13:27:26 +0530667 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530668 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
669 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
670 2);
671 }
672 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530673 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530674 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530675 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530676 ARRAY_SIZE(ar9285Common_9285), 2);
677
Sujith2660b812009-02-09 13:27:26 +0530678 if (ah->config.pcie_clock_req) {
679 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530680 ar9285PciePhy_clkreq_off_L1_9285,
681 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
682 } else {
Sujith2660b812009-02-09 13:27:26 +0530683 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530684 ar9285PciePhy_clkreq_always_on_L1_9285,
685 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
686 }
687 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530688 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700689 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530690 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700691 ARRAY_SIZE(ar9280Common_9280_2), 2);
692
Sujith2660b812009-02-09 13:27:26 +0530693 if (ah->config.pcie_clock_req) {
694 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530695 ar9280PciePhy_clkreq_off_L1_9280,
696 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700697 } else {
Sujith2660b812009-02-09 13:27:26 +0530698 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530699 ar9280PciePhy_clkreq_always_on_L1_9280,
700 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700701 }
Sujith2660b812009-02-09 13:27:26 +0530702 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530704 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700705 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530706 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700707 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530708 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709 ARRAY_SIZE(ar9280Common_9280), 2);
710 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530711 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700712 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530713 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700714 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530715 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700716 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530717 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700718 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530719 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530721 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530723 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700724 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530725 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530727 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530729 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700730 ARRAY_SIZE(ar5416Bank7_9160), 2);
731 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 ar5416Addac_91601_1,
734 ARRAY_SIZE(ar5416Addac_91601_1), 2);
735 } else {
Sujith2660b812009-02-09 13:27:26 +0530736 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737 ARRAY_SIZE(ar5416Addac_9160), 2);
738 }
739 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530740 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700741 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530742 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530744 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530748 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530750 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530752 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530754 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530756 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530760 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 ARRAY_SIZE(ar5416Addac_9100), 2);
762 } else {
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530765 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530767 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700768 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530773 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530777 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530781 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700782 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530783 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 ARRAY_SIZE(ar5416Addac), 2);
785 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700786}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700788static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
789{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530790 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530791 INIT_INI_ARRAY(&ah->iniModesRxGain,
792 ar9287Modes_rx_gain_9287_1_1,
793 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
794 else if (AR_SREV_9287_10(ah))
795 INIT_INI_ARRAY(&ah->iniModesRxGain,
796 ar9287Modes_rx_gain_9287_1_0,
797 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
798 else if (AR_SREV_9280_20(ah))
799 ath9k_hw_init_rxgain_ini(ah);
800
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530801 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530802 INIT_INI_ARRAY(&ah->iniModesTxGain,
803 ar9287Modes_tx_gain_9287_1_1,
804 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
805 } else if (AR_SREV_9287_10(ah)) {
806 INIT_INI_ARRAY(&ah->iniModesTxGain,
807 ar9287Modes_tx_gain_9287_1_0,
808 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
809 } else if (AR_SREV_9280_20(ah)) {
810 ath9k_hw_init_txgain_ini(ah);
811 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530812 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
813
814 /* txgain table */
815 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530816 if (AR_SREV_9285E_20(ah)) {
817 INIT_INI_ARRAY(&ah->iniModesTxGain,
818 ar9285Modes_XE2_0_high_power,
819 ARRAY_SIZE(
820 ar9285Modes_XE2_0_high_power), 6);
821 } else {
822 INIT_INI_ARRAY(&ah->iniModesTxGain,
823 ar9285Modes_high_power_tx_gain_9285_1_2,
824 ARRAY_SIZE(
825 ar9285Modes_high_power_tx_gain_9285_1_2), 6);
826 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530827 } else {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530828 if (AR_SREV_9285E_20(ah)) {
829 INIT_INI_ARRAY(&ah->iniModesTxGain,
830 ar9285Modes_XE2_0_normal_power,
831 ARRAY_SIZE(
832 ar9285Modes_XE2_0_normal_power), 6);
833 } else {
834 INIT_INI_ARRAY(&ah->iniModesTxGain,
835 ar9285Modes_original_tx_gain_9285_1_2,
836 ARRAY_SIZE(
837 ar9285Modes_original_tx_gain_9285_1_2), 6);
838 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530839 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530840 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700841}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530842
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100843static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700844{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400845 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
846 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530847
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400848 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
849 (ah->eep_map != EEP_MAP_4KBITS) &&
850 ((pBase->version & 0xff) > 0x0a) &&
851 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530852
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400853 if (ah->need_an_top2_fixup)
854 ath_print(common, ATH_DBG_EEPROM,
855 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700856}
857
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400858/* Called for all hardware families */
859static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700860{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700861 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700862 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700863
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700864 ath9k_hw_init_defaults(ah);
865 ath9k_hw_init_config(ah);
866
867 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700868 ath_print(common, ATH_DBG_FATAL,
869 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700870 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700871 }
872
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400873 ar9002_hw_attach_ops(ah);
874
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700875 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700876 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700877 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700878 }
879
880 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
881 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
882 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
883 ah->config.serialize_regmode =
884 SER_REG_MODE_ON;
885 } else {
886 ah->config.serialize_regmode =
887 SER_REG_MODE_OFF;
888 }
889 }
890
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700891 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700892 ah->config.serialize_regmode);
893
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500894 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
895 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
896 else
897 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
898
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400899 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700900 ath_print(common, ATH_DBG_FATAL,
901 "Mac Chip Rev 0x%02x.%x is not supported by "
902 "this driver\n", ah->hw_version.macVersion,
903 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700904 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700905 }
906
907 if (AR_SREV_9100(ah)) {
908 ah->iq_caldata.calData = &iq_cal_multi_sample;
909 ah->supp_cals = IQ_MISMATCH_CAL;
910 ah->is_pciexpress = false;
911 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400912
913 if (AR_SREV_9271(ah))
914 ah->is_pciexpress = false;
915
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400916 /* XXX: move this to its own hw op */
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700917 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
918
919 ath9k_hw_init_cal_settings(ah);
920
921 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400922 if (AR_SREV_9280_10_OR_LATER(ah)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700923 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400924 ah->ath9k_hw_rf_set_freq = &ath9k_hw_ar9280_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400925 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_9280_spur_mitigate;
926 } else {
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -0400927 ah->ath9k_hw_rf_set_freq = &ath9k_hw_set_channel;
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -0400928 ah->ath9k_hw_spur_mitigate_freq = &ath9k_hw_spur_mitigate;
929 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700930
931 ath9k_hw_init_mode_regs(ah);
932
933 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530934 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700935 else
936 ath9k_hw_disablepcie(ah);
937
Sujith193cd452009-09-18 15:04:07 +0530938 /* Support for Japan ch.14 (2484) spread */
939 if (AR_SREV_9287_11_OR_LATER(ah)) {
940 INIT_INI_ARRAY(&ah->iniCckfirNormal,
941 ar9287Common_normal_cck_fir_coeff_92871_1,
942 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
943 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
944 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
945 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
946 }
947
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700948 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700949 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700950 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700951
952 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100953 r = ath9k_hw_fill_cap_info(ah);
954 if (r)
955 return r;
956
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100957 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530958
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700959 r = ath9k_hw_init_macaddr(ah);
960 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700961 ath_print(common, ATH_DBG_FATAL,
962 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700963 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700964 }
965
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400966 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530967 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700968 else
Sujith2660b812009-02-09 13:27:26 +0530969 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700970
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700971 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700972
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400973 common->state = ATH_HW_INITIALIZED;
974
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700975 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700976}
977
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400978int ath9k_hw_init(struct ath_hw *ah)
979{
980 int ret;
981 struct ath_common *common = ath9k_hw_common(ah);
982
983 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
984 switch (ah->hw_version.devid) {
985 case AR5416_DEVID_PCI:
986 case AR5416_DEVID_PCIE:
987 case AR5416_AR9100_DEVID:
988 case AR9160_DEVID_PCI:
989 case AR9280_DEVID_PCI:
990 case AR9280_DEVID_PCIE:
991 case AR9285_DEVID_PCIE:
992 case AR5416_DEVID_AR9287_PCI:
993 case AR5416_DEVID_AR9287_PCIE:
994 case AR2427_DEVID_PCIE:
995 break;
996 default:
997 if (common->bus_ops->ath_bus_type == ATH_USB)
998 break;
999 ath_print(common, ATH_DBG_FATAL,
1000 "Hardware device ID 0x%04x not supported\n",
1001 ah->hw_version.devid);
1002 return -EOPNOTSUPP;
1003 }
1004
1005 ret = __ath9k_hw_init(ah);
1006 if (ret) {
1007 ath_print(common, ATH_DBG_FATAL,
1008 "Unable to initialize hardware; "
1009 "initialization status: %d\n", ret);
1010 return ret;
1011 }
1012
1013 return 0;
1014}
1015EXPORT_SYMBOL(ath9k_hw_init);
1016
Sujithcbe61d82009-02-09 13:27:12 +05301017static void ath9k_hw_init_bb(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301018 struct ath9k_channel *chan)
1019{
1020 u32 synthDelay;
1021
1022 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301023 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301024 synthDelay = (4 * synthDelay) / 22;
1025 else
1026 synthDelay /= 10;
1027
1028 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1029
1030 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1031}
1032
Sujithcbe61d82009-02-09 13:27:12 +05301033static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301034{
1035 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1036 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1037
1038 REG_WRITE(ah, AR_QOS_NO_ACK,
1039 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1040 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1041 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1042
1043 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1044 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1045 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1046 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1047 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1048}
1049
Sujithcbe61d82009-02-09 13:27:12 +05301050static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301051 struct ath9k_channel *chan)
1052{
1053 u32 pll;
1054
1055 if (AR_SREV_9100(ah)) {
1056 if (chan && IS_CHAN_5GHZ(chan))
1057 pll = 0x1450;
1058 else
1059 pll = 0x1458;
1060 } else {
1061 if (AR_SREV_9280_10_OR_LATER(ah)) {
1062 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1063
1064 if (chan && IS_CHAN_HALF_RATE(chan))
1065 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1066 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1067 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1068
1069 if (chan && IS_CHAN_5GHZ(chan)) {
1070 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1071
1072
1073 if (AR_SREV_9280_20(ah)) {
1074 if (((chan->channel % 20) == 0)
1075 || ((chan->channel % 10) == 0))
1076 pll = 0x2850;
1077 else
1078 pll = 0x142c;
1079 }
1080 } else {
1081 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1082 }
1083
1084 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1085
1086 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1087
1088 if (chan && IS_CHAN_HALF_RATE(chan))
1089 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1090 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1091 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1092
1093 if (chan && IS_CHAN_5GHZ(chan))
1094 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1095 else
1096 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1097 } else {
1098 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1099
1100 if (chan && IS_CHAN_HALF_RATE(chan))
1101 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1102 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1103 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1104
1105 if (chan && IS_CHAN_5GHZ(chan))
1106 pll |= SM(0xa, AR_RTC_PLL_DIV);
1107 else
1108 pll |= SM(0xb, AR_RTC_PLL_DIV);
1109 }
1110 }
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001111 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301112
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001113 /* Switch the core clock for ar9271 to 117Mhz */
1114 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301115 udelay(500);
1116 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001117 }
1118
Sujithf1dc5602008-10-29 10:16:30 +05301119 udelay(RTC_PLL_SETTLE_DELAY);
1120
1121 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1122}
1123
Sujithcbe61d82009-02-09 13:27:12 +05301124static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301125{
Sujithf1dc5602008-10-29 10:16:30 +05301126 int rx_chainmask, tx_chainmask;
1127
Sujith2660b812009-02-09 13:27:26 +05301128 rx_chainmask = ah->rxchainmask;
1129 tx_chainmask = ah->txchainmask;
Sujithf1dc5602008-10-29 10:16:30 +05301130
1131 switch (rx_chainmask) {
1132 case 0x5:
1133 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1134 AR_PHY_SWAP_ALT_CHAIN);
1135 case 0x3:
Sujithcb53a152009-11-16 11:40:57 +05301136 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
Sujithf1dc5602008-10-29 10:16:30 +05301137 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1138 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1139 break;
1140 }
1141 case 0x1:
1142 case 0x2:
Sujithf1dc5602008-10-29 10:16:30 +05301143 case 0x7:
1144 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1145 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1146 break;
1147 default:
1148 break;
1149 }
1150
1151 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1152 if (tx_chainmask == 0x5) {
1153 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1154 AR_PHY_SWAP_ALT_CHAIN);
1155 }
1156 if (AR_SREV_9100(ah))
1157 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1158 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1159}
1160
Sujithcbe61d82009-02-09 13:27:12 +05301161static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001162 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301163{
Pavel Roskin152d5302010-03-31 18:05:37 -04001164 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301165 AR_IMR_TXURN |
1166 AR_IMR_RXERR |
1167 AR_IMR_RXORN |
1168 AR_IMR_BCNMISC;
1169
Sujith0ce024c2009-12-14 14:57:00 +05301170 if (ah->config.rx_intr_mitigation)
Pavel Roskin152d5302010-03-31 18:05:37 -04001171 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301172 else
Pavel Roskin152d5302010-03-31 18:05:37 -04001173 imr_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301174
Pavel Roskin152d5302010-03-31 18:05:37 -04001175 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301176
Colin McCabed97809d2008-12-01 13:38:55 -08001177 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -04001178 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301179
Pavel Roskin152d5302010-03-31 18:05:37 -04001180 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001181 ah->imrs2_reg |= AR_IMR_S2_GTT;
1182 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301183
1184 if (!AR_SREV_9100(ah)) {
1185 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1186 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1187 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1188 }
1189}
1190
Felix Fietkau0005baf2010-01-15 02:33:40 +01001191static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301192{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001193 u32 val = ath9k_hw_mac_to_clks(ah, us);
1194 val = min(val, (u32) 0xFFFF);
1195 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301196}
1197
Felix Fietkau0005baf2010-01-15 02:33:40 +01001198static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301199{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001200 u32 val = ath9k_hw_mac_to_clks(ah, us);
1201 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1202 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1203}
1204
1205static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1206{
1207 u32 val = ath9k_hw_mac_to_clks(ah, us);
1208 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1209 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301210}
1211
Sujithcbe61d82009-02-09 13:27:12 +05301212static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301213{
Sujithf1dc5602008-10-29 10:16:30 +05301214 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001215 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1216 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301217 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301218 return false;
1219 } else {
1220 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301221 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301222 return true;
1223 }
1224}
1225
Felix Fietkau0005baf2010-01-15 02:33:40 +01001226void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301227{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001228 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1229 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001230 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001231 int sifstime;
1232
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001233 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1234 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301235
Sujith2660b812009-02-09 13:27:26 +05301236 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301237 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301238 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001239
1240 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1241 sifstime = 16;
1242 else
1243 sifstime = 10;
1244
Felix Fietkaue239d852010-01-15 02:34:58 +01001245 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1246 slottime = ah->slottime + 3 * ah->coverage_class;
1247 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001248
1249 /*
1250 * Workaround for early ACK timeouts, add an offset to match the
1251 * initval's 64us ack timeout value.
1252 * This was initially only meant to work around an issue with delayed
1253 * BA frames in some implementations, but it has been found to fix ACK
1254 * timeout issues in other cases as well.
1255 */
1256 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1257 acktimeout += 64 - sifstime - ah->slottime;
1258
Felix Fietkaue239d852010-01-15 02:34:58 +01001259 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001260 ath9k_hw_set_ack_timeout(ah, acktimeout);
1261 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301262 if (ah->globaltxtimeout != (u32) -1)
1263 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301264}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001265EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301266
Sujith285f2dd2010-01-08 10:36:07 +05301267void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001268{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001269 struct ath_common *common = ath9k_hw_common(ah);
1270
Sujith736b3a22010-03-17 14:25:24 +05301271 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001272 goto free_hw;
1273
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001274 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001275 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001276
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001277 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001278
1279free_hw:
Luis R. Rodriguezdc51dd52009-10-19 02:33:39 -04001280 if (!AR_SREV_9280_10_OR_LATER(ah))
1281 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001282}
Sujith285f2dd2010-01-08 10:36:07 +05301283EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001284
Sujithf1dc5602008-10-29 10:16:30 +05301285/*******/
1286/* INI */
1287/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001288
Sujithcbe61d82009-02-09 13:27:12 +05301289static void ath9k_hw_override_ini(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301290 struct ath9k_channel *chan)
1291{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001292 u32 val;
1293
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301294 /*
1295 * Set the RX_ABORT and RX_DIS and clear if off only after
1296 * RXE is set for MAC. This prevents frames with corrupted
1297 * descriptor status.
1298 */
1299 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1300
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301301 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith70807e92010-03-17 14:25:14 +05301302 val = REG_READ(ah, AR_PCU_MISC_MODE2);
1303
1304 if (!AR_SREV_9271(ah))
1305 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
Vasanthakumar Thiagarajan204d7942009-09-17 09:26:14 +05301306
1307 if (AR_SREV_9287_10_OR_LATER(ah))
1308 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
1309
1310 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
1311 }
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +05301312
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001313 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Sujithf1dc5602008-10-29 10:16:30 +05301314 AR_SREV_9280_10_OR_LATER(ah))
1315 return;
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001316 /*
1317 * Disable BB clock gating
1318 * Necessary to avoid issues on AR5416 2.0
1319 */
Sujithf1dc5602008-10-29 10:16:30 +05301320 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
Felix Fietkau7bfbae12010-02-24 04:43:05 +01001321
1322 /*
1323 * Disable RIFS search on some chips to avoid baseband
1324 * hang issues.
1325 */
1326 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
1327 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
1328 val &= ~AR_PHY_RIFS_INIT_DELAY;
1329 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
1330 }
Sujithf1dc5602008-10-29 10:16:30 +05301331}
1332
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301333static void ath9k_olc_init(struct ath_hw *ah)
1334{
1335 u32 i;
1336
Vivek Natarajandb91f2e2009-08-14 11:27:16 +05301337 if (OLC_FOR_AR9287_10_LATER) {
1338 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1339 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1340 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1341 AR9287_AN_TXPC0_TXPCMODE,
1342 AR9287_AN_TXPC0_TXPCMODE_S,
1343 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1344 udelay(100);
1345 } else {
1346 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1347 ah->originalGain[i] =
1348 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1349 AR_PHY_TX_GAIN);
1350 ah->PDADCdelta = 0;
1351 }
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301352}
1353
Bob Copeland3a702e42009-03-30 22:30:29 -04001354static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1355 struct ath9k_channel *chan)
1356{
1357 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1358
1359 if (IS_CHAN_B(chan))
1360 ctl |= CTL_11B;
1361 else if (IS_CHAN_G(chan))
1362 ctl |= CTL_11G;
1363 else
1364 ctl |= CTL_11A;
1365
1366 return ctl;
1367}
1368
Sujithcbe61d82009-02-09 13:27:12 +05301369static int ath9k_hw_process_ini(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001370 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301371{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001372 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301373 int i, regWrites = 0;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001374 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301375 u32 modesIndex, freqIndex;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001376
Sujithf1dc5602008-10-29 10:16:30 +05301377 switch (chan->chanmode) {
1378 case CHANNEL_A:
1379 case CHANNEL_A_HT20:
1380 modesIndex = 1;
1381 freqIndex = 1;
1382 break;
1383 case CHANNEL_A_HT40PLUS:
1384 case CHANNEL_A_HT40MINUS:
1385 modesIndex = 2;
1386 freqIndex = 1;
1387 break;
1388 case CHANNEL_G:
1389 case CHANNEL_G_HT20:
1390 case CHANNEL_B:
1391 modesIndex = 4;
1392 freqIndex = 2;
1393 break;
1394 case CHANNEL_G_HT40PLUS:
1395 case CHANNEL_G_HT40MINUS:
1396 modesIndex = 3;
1397 freqIndex = 2;
1398 break;
1399
1400 default:
1401 return -EINVAL;
1402 }
1403
Sujith70807e92010-03-17 14:25:14 +05301404 /* Set correct baseband to analog shift setting to access analog chips */
Sujithf1dc5602008-10-29 10:16:30 +05301405 REG_WRITE(ah, AR_PHY(0), 0x00000007);
Sujith70807e92010-03-17 14:25:14 +05301406
1407 /* Write ADDAC shifts */
Sujithf1dc5602008-10-29 10:16:30 +05301408 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Sujithf74df6f2009-02-09 13:27:24 +05301409 ah->eep_ops->set_addac(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301410
Gabor Juhosa8c96d32009-03-06 09:08:51 +01001411 if (AR_SREV_5416_22_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +05301412 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Sujithf1dc5602008-10-29 10:16:30 +05301413 } else {
1414 struct ar5416IniArray temp;
1415 u32 addacSize =
Sujith2660b812009-02-09 13:27:26 +05301416 sizeof(u32) * ah->iniAddac.ia_rows *
1417 ah->iniAddac.ia_columns;
Sujithf1dc5602008-10-29 10:16:30 +05301418
Sujith70807e92010-03-17 14:25:14 +05301419 /* For AR5416 2.0/2.1 */
Sujith2660b812009-02-09 13:27:26 +05301420 memcpy(ah->addac5416_21,
1421 ah->iniAddac.ia_array, addacSize);
Sujithf1dc5602008-10-29 10:16:30 +05301422
Sujith70807e92010-03-17 14:25:14 +05301423 /* override CLKDRV value at [row, column] = [31, 1] */
Sujith2660b812009-02-09 13:27:26 +05301424 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301425
Sujith2660b812009-02-09 13:27:26 +05301426 temp.ia_array = ah->addac5416_21;
1427 temp.ia_columns = ah->iniAddac.ia_columns;
1428 temp.ia_rows = ah->iniAddac.ia_rows;
Sujithf1dc5602008-10-29 10:16:30 +05301429 REG_WRITE_ARRAY(&temp, 1, regWrites);
1430 }
1431
1432 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1433
Sujith2660b812009-02-09 13:27:26 +05301434 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1435 u32 reg = INI_RA(&ah->iniModes, i, 0);
1436 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
Sujithf1dc5602008-10-29 10:16:30 +05301437
Pavel Roskin2eb46d92010-04-07 01:33:33 -04001438 if (reg == AR_AN_TOP2 && ah->need_an_top2_fixup)
1439 val &= ~AR_AN_TOP2_PWDCLKIND;
1440
Sujithf1dc5602008-10-29 10:16:30 +05301441 REG_WRITE(ah, reg, val);
1442
1443 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301444 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301445 udelay(100);
1446 }
1447
1448 DO_DELAY(regWrites);
1449 }
1450
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301451 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301452 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301453
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301454 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1455 AR_SREV_9287_10_OR_LATER(ah))
Sujith2660b812009-02-09 13:27:26 +05301456 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +05301457
Sujith70807e92010-03-17 14:25:14 +05301458 if (AR_SREV_9271_10(ah))
1459 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
1460 modesIndex, regWrites);
1461
1462 /* Write common array parameters */
Sujith2660b812009-02-09 13:27:26 +05301463 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1464 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1465 u32 val = INI_RA(&ah->iniCommon, i, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301466
1467 REG_WRITE(ah, reg, val);
1468
1469 if (reg >= 0x7800 && reg < 0x78a0
Sujith2660b812009-02-09 13:27:26 +05301470 && ah->config.analog_shiftreg) {
Sujithf1dc5602008-10-29 10:16:30 +05301471 udelay(100);
1472 }
1473
1474 DO_DELAY(regWrites);
1475 }
1476
Sujith70807e92010-03-17 14:25:14 +05301477 if (AR_SREV_9271(ah)) {
1478 if (ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE) == 1)
1479 REG_WRITE_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
1480 modesIndex, regWrites);
1481 else
1482 REG_WRITE_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
1483 modesIndex, regWrites);
1484 }
Sujithf1dc5602008-10-29 10:16:30 +05301485
Sujith70807e92010-03-17 14:25:14 +05301486 ath9k_hw_write_regs(ah, freqIndex, regWrites);
Luis R. Rodriguez85643282009-10-19 02:33:33 -04001487
Sujithf1dc5602008-10-29 10:16:30 +05301488 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
Sujith2660b812009-02-09 13:27:26 +05301489 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
Sujithf1dc5602008-10-29 10:16:30 +05301490 regWrites);
1491 }
1492
1493 ath9k_hw_override_ini(ah, chan);
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001494 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301495 ath9k_hw_init_chain_masks(ah);
1496
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301497 if (OLC_FOR_AR9280_20_LATER)
1498 ath9k_olc_init(ah);
1499
Sujith70807e92010-03-17 14:25:14 +05301500 /* Set TX power */
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001501 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001502 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001503 channel->max_antenna_gain * 2,
1504 channel->max_power * 2,
1505 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001506 (u32) regulatory->power_limit));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001507
Sujith70807e92010-03-17 14:25:14 +05301508 /* Write analog registers */
Sujithf1dc5602008-10-29 10:16:30 +05301509 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001510 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1511 "ar5416SetRfRegs failed\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512 return -EIO;
1513 }
1514
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001515 return 0;
1516}
1517
Sujithf1dc5602008-10-29 10:16:30 +05301518/****************************************/
1519/* Reset and Channel Switching Routines */
1520/****************************************/
1521
Sujithcbe61d82009-02-09 13:27:12 +05301522static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301523{
1524 u32 rfMode = 0;
1525
1526 if (chan == NULL)
1527 return;
1528
1529 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1530 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1531
1532 if (!AR_SREV_9280_10_OR_LATER(ah))
1533 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1534 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1535
1536 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1537 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1538
1539 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1540}
1541
Sujithcbe61d82009-02-09 13:27:12 +05301542static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301543{
1544 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1545}
1546
Sujithcbe61d82009-02-09 13:27:12 +05301547static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301548{
1549 u32 regval;
1550
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001551 /*
1552 * set AHB_MODE not to do cacheline prefetches
1553 */
Sujithf1dc5602008-10-29 10:16:30 +05301554 regval = REG_READ(ah, AR_AHB_MODE);
1555 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1556
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001557 /*
1558 * let mac dma reads be in 128 byte chunks
1559 */
Sujithf1dc5602008-10-29 10:16:30 +05301560 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1561 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1562
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001563 /*
1564 * Restore TX Trigger Level to its pre-reset value.
1565 * The initial value depends on whether aggregation is enabled, and is
1566 * adjusted whenever underruns are detected.
1567 */
Sujith2660b812009-02-09 13:27:26 +05301568 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301569
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001570 /*
1571 * let mac dma writes be in 128 byte chunks
1572 */
Sujithf1dc5602008-10-29 10:16:30 +05301573 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1574 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1575
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001576 /*
1577 * Setup receive FIFO threshold to hold off TX activities
1578 */
Sujithf1dc5602008-10-29 10:16:30 +05301579 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1580
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001581 /*
1582 * reduce the number of usable entries in PCU TXBUF to avoid
1583 * wrap around issues.
1584 */
Sujithf1dc5602008-10-29 10:16:30 +05301585 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001586 /* For AR9285 the number of Fifos are reduced to half.
1587 * So set the usable tx buf size also to half to
1588 * avoid data/delimiter underruns
1589 */
Sujithf1dc5602008-10-29 10:16:30 +05301590 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1591 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001592 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301593 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1594 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1595 }
1596}
1597
Sujithcbe61d82009-02-09 13:27:12 +05301598static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301599{
1600 u32 val;
1601
1602 val = REG_READ(ah, AR_STA_ID1);
1603 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1604 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001605 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301606 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1607 | AR_STA_ID1_KSRCH_MODE);
1608 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1609 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001610 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001611 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301612 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1613 | AR_STA_ID1_KSRCH_MODE);
1614 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1615 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001616 case NL80211_IFTYPE_STATION:
1617 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301618 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1619 break;
1620 }
1621}
1622
Sujithcbe61d82009-02-09 13:27:12 +05301623static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001624 u32 coef_scaled,
1625 u32 *coef_mantissa,
1626 u32 *coef_exponent)
1627{
1628 u32 coef_exp, coef_man;
1629
1630 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1631 if ((coef_scaled >> coef_exp) & 0x1)
1632 break;
1633
1634 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1635
1636 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1637
1638 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1639 *coef_exponent = coef_exp - 16;
1640}
1641
Sujithcbe61d82009-02-09 13:27:12 +05301642static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301643 struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001644{
1645 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1646 u32 clockMhzScaled = 0x64000000;
1647 struct chan_centers centers;
1648
1649 if (IS_CHAN_HALF_RATE(chan))
1650 clockMhzScaled = clockMhzScaled >> 1;
1651 else if (IS_CHAN_QUARTER_RATE(chan))
1652 clockMhzScaled = clockMhzScaled >> 2;
1653
1654 ath9k_hw_get_channel_centers(ah, chan, &centers);
1655 coef_scaled = clockMhzScaled / centers.synth_center;
1656
1657 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1658 &ds_coef_exp);
1659
1660 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1661 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1662 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1663 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1664
1665 coef_scaled = (9 * coef_scaled) / 10;
1666
1667 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1668 &ds_coef_exp);
1669
1670 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1671 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1672 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1673 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1674}
1675
Sujithcbe61d82009-02-09 13:27:12 +05301676static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301677{
1678 u32 rst_flags;
1679 u32 tmpReg;
1680
Sujith70768492009-02-16 13:23:12 +05301681 if (AR_SREV_9100(ah)) {
1682 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1683 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1684 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1685 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1686 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1687 }
1688
Sujithf1dc5602008-10-29 10:16:30 +05301689 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1690 AR_RTC_FORCE_WAKE_ON_INT);
1691
1692 if (AR_SREV_9100(ah)) {
1693 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1694 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1695 } else {
1696 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1697 if (tmpReg &
1698 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1699 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1700 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1701 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1702 } else {
1703 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1704 }
1705
1706 rst_flags = AR_RTC_RC_MAC_WARM;
1707 if (type == ATH9K_RESET_COLD)
1708 rst_flags |= AR_RTC_RC_MAC_COLD;
1709 }
1710
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001711 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301712 udelay(50);
1713
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001714 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301715 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001716 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1717 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301718 return false;
1719 }
1720
1721 if (!AR_SREV_9100(ah))
1722 REG_WRITE(ah, AR_RC, 0);
1723
Sujithf1dc5602008-10-29 10:16:30 +05301724 if (AR_SREV_9100(ah))
1725 udelay(50);
1726
1727 return true;
1728}
1729
Sujithcbe61d82009-02-09 13:27:12 +05301730static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301731{
1732 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1733 AR_RTC_FORCE_WAKE_ON_INT);
1734
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301735 if (!AR_SREV_9100(ah))
1736 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1737
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001738 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301739 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301740
1741 if (!AR_SREV_9100(ah))
1742 REG_WRITE(ah, AR_RC, 0);
1743
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001744 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301745
1746 if (!ath9k_hw_wait(ah,
1747 AR_RTC_STATUS,
1748 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301749 AR_RTC_STATUS_ON,
1750 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001751 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1752 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301753 return false;
1754 }
1755
1756 ath9k_hw_read_revisions(ah);
1757
1758 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1759}
1760
Sujithcbe61d82009-02-09 13:27:12 +05301761static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301762{
1763 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1764 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1765
1766 switch (type) {
1767 case ATH9K_RESET_POWER_ON:
1768 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301769 case ATH9K_RESET_WARM:
1770 case ATH9K_RESET_COLD:
1771 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301772 default:
1773 return false;
1774 }
1775}
1776
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001777static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301778{
1779 u32 phymode;
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301780 u32 enableDacFifo = 0;
Sujithf1dc5602008-10-29 10:16:30 +05301781
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301782 if (AR_SREV_9285_10_OR_LATER(ah))
1783 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1784 AR_PHY_FC_ENABLE_DAC_FIFO);
1785
Sujithf1dc5602008-10-29 10:16:30 +05301786 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301787 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
Sujithf1dc5602008-10-29 10:16:30 +05301788
1789 if (IS_CHAN_HT40(chan)) {
1790 phymode |= AR_PHY_FC_DYN2040_EN;
1791
1792 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1793 (chan->chanmode == CHANNEL_G_HT40PLUS))
1794 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1795
Sujithf1dc5602008-10-29 10:16:30 +05301796 }
1797 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1798
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001799 ath9k_hw_set11nmac2040(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301800
1801 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1802 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1803}
1804
Sujithcbe61d82009-02-09 13:27:12 +05301805static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301806 struct ath9k_channel *chan)
1807{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301808 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301809 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1810 return false;
1811 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301812 return false;
1813
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001814 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301815 return false;
1816
Sujith2660b812009-02-09 13:27:26 +05301817 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301818 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301819 ath9k_hw_set_rfmode(ah, chan);
1820
1821 return true;
1822}
1823
Sujithcbe61d82009-02-09 13:27:12 +05301824static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001825 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301826{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001827 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001828 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001829 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05301830 u32 synthDelay, qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001831 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301832
1833 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1834 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001835 ath_print(common, ATH_DBG_QUEUE,
1836 "Transmit frames pending on "
1837 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301838 return false;
1839 }
1840 }
1841
1842 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1843 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
Sujith0caa7b12009-02-16 13:23:20 +05301844 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001845 ath_print(common, ATH_DBG_FATAL,
1846 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301847 return false;
1848 }
1849
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001850 ath9k_hw_set_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301851
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04001852 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001853 if (r) {
1854 ath_print(common, ATH_DBG_FATAL,
1855 "Failed to set channel\n");
1856 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301857 }
1858
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001859 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001860 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301861 channel->max_antenna_gain * 2,
1862 channel->max_power * 2,
1863 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001864 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301865
1866 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Sujith788a3d62008-11-18 09:09:54 +05301867 if (IS_CHAN_B(chan))
Sujithf1dc5602008-10-29 10:16:30 +05301868 synthDelay = (4 * synthDelay) / 22;
1869 else
1870 synthDelay /= 10;
1871
1872 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1873
1874 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1875
1876 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1877 ath9k_hw_set_delta_slope(ah, chan);
1878
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04001879 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301880
1881 if (!chan->oneTimeCalsDone)
1882 chan->oneTimeCalsDone = true;
1883
1884 return true;
1885}
1886
Johannes Berg3b319aa2009-06-13 14:50:26 +05301887static void ath9k_enable_rfkill(struct ath_hw *ah)
1888{
1889 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
1890 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
1891
1892 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
1893 AR_GPIO_INPUT_MUX2_RFSILENT);
1894
1895 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
1896 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
1897}
1898
Sujithcbe61d82009-02-09 13:27:12 +05301899int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001900 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001901{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001902 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001903 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301904 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001905 u32 saveDefAntenna;
1906 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301907 u64 tsf = 0;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001908 int i, rx_chainmask, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001910 ah->txchainmask = common->tx_chainmask;
1911 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001912
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001913 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001914 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301916 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001917 ath9k_hw_getnf(ah, curchan);
1918
1919 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301920 (ah->chip_fullsleep != true) &&
1921 (ah->curchan != NULL) &&
1922 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001923 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301924 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301925 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1926 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001928 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301929 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001930 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001931 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001932 }
1933 }
1934
1935 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1936 if (saveDefAntenna == 0)
1937 saveDefAntenna = 1;
1938
1939 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1940
Sujith46fe7822009-09-17 09:25:25 +05301941 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1942 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1943 tsf = ath9k_hw_gettsf64(ah);
1944
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001945 saveLedState = REG_READ(ah, AR_CFG_LED) &
1946 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1947 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1948
1949 ath9k_hw_mark_phy_inactive(ah);
1950
Sujith05020d22010-03-17 14:25:23 +05301951 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001952 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1953 REG_WRITE(ah,
1954 AR9271_RESET_POWER_DOWN_CONTROL,
1955 AR9271_RADIO_RF_RST);
1956 udelay(50);
1957 }
1958
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001959 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001960 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001961 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001962 }
1963
Sujith05020d22010-03-17 14:25:23 +05301964 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001965 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1966 ah->htc_reset_init = false;
1967 REG_WRITE(ah,
1968 AR9271_RESET_POWER_DOWN_CONTROL,
1969 AR9271_GATE_MAC_CTL);
1970 udelay(50);
1971 }
1972
Sujith46fe7822009-09-17 09:25:25 +05301973 /* Restore TSF */
1974 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1975 ath9k_hw_settsf64(ah, tsf);
1976
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301977 if (AR_SREV_9280_10_OR_LATER(ah))
1978 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001979
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301980 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301981 /* Enable ASYNC FIFO */
1982 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1983 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
1984 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
1985 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1986 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
1987 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
1988 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
1989 }
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001990 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001991 if (r)
1992 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001993
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001994 /* Setup MFP options for CCMP */
1995 if (AR_SREV_9280_20_OR_LATER(ah)) {
1996 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1997 * frames when constructing CCMP AAD. */
1998 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1999 0xc7ff);
2000 ah->sw_mgmt_crypto = false;
2001 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2002 /* Disable hardware crypto for management frames */
2003 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2004 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2005 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2006 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2007 ah->sw_mgmt_crypto = true;
2008 } else
2009 ah->sw_mgmt_crypto = true;
2010
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002011 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2012 ath9k_hw_set_delta_slope(ah, chan);
2013
Luis R. Rodriguezae478cf2009-10-19 02:33:43 -04002014 ah->ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05302015 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04002016
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002017 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
2018 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002019 | macStaId1
2020 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05302021 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302022 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05302023 | ah->sta_id1_defaults);
2024 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002025
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07002026 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002027
2028 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2029
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07002030 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002031
2032 REG_WRITE(ah, AR_ISR, ~0);
2033
2034 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2035
Luis R. Rodrigueze68a0602009-10-19 02:33:41 -04002036 r = ah->ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04002037 if (r)
2038 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002039
2040 for (i = 0; i < AR_NUM_DCU; i++)
2041 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2042
Sujith2660b812009-02-09 13:27:26 +05302043 ah->intr_txqs = 0;
2044 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002045 ath9k_hw_resettxqueue(ah, i);
2046
Sujith2660b812009-02-09 13:27:26 +05302047 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002048 ath9k_hw_init_qos(ah);
2049
Sujith2660b812009-02-09 13:27:26 +05302050 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05302051 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05302052
Felix Fietkau0005baf2010-01-15 02:33:40 +01002053 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002054
Vivek Natarajan326bebb2009-08-14 11:33:36 +05302055 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302056 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2057 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2058 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2059 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2060 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2061 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2062
2063 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2064 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2065
2066 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2067 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2068 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2069 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2070 }
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_SET_BIT(ah, AR_PCU_MISC_MODE2,
2073 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2074 }
2075
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002076 REG_WRITE(ah, AR_STA_ID1,
2077 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2078
2079 ath9k_hw_set_dma(ah);
2080
2081 REG_WRITE(ah, AR_OBS, 8);
2082
Sujith0ce024c2009-12-14 14:57:00 +05302083 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2085 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2086 }
2087
2088 ath9k_hw_init_bb(ah, chan);
2089
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002090 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002091 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092
Sujith2660b812009-02-09 13:27:26 +05302093 rx_chainmask = ah->rxchainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002094 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2095 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2096 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2097 }
2098
2099 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2100
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002101 /*
2102 * For big endian systems turn on swapping for descriptors
2103 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002104 if (AR_SREV_9100(ah)) {
2105 u32 mask;
2106 mask = REG_READ(ah, AR_CFG);
2107 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002108 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302109 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002110 } else {
2111 mask =
2112 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2113 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002114 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05302115 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002116 }
2117 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002118 /* Configure AR9271 target WLAN */
2119 if (AR_SREV_9271(ah))
2120 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002122 else
2123 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002124#endif
2125 }
2126
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002127 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302128 ath9k_hw_btcoex_enable(ah);
2129
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002130 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002131}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002132EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002133
Sujithf1dc5602008-10-29 10:16:30 +05302134/************************/
2135/* Key Cache Management */
2136/************************/
2137
Sujithcbe61d82009-02-09 13:27:12 +05302138bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002139{
Sujithf1dc5602008-10-29 10:16:30 +05302140 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141
Sujith2660b812009-02-09 13:27:26 +05302142 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002143 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2144 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002145 return false;
2146 }
2147
Sujithf1dc5602008-10-29 10:16:30 +05302148 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002149
Sujithf1dc5602008-10-29 10:16:30 +05302150 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2151 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2152 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2153 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2154 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2155 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2156 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2157 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2158
2159 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2160 u16 micentry = entry + 64;
2161
2162 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2163 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2164 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2165 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2166
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002167 }
2168
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169 return true;
2170}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002171EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002172
Sujithcbe61d82009-02-09 13:27:12 +05302173bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002174{
Sujithf1dc5602008-10-29 10:16:30 +05302175 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002176
Sujith2660b812009-02-09 13:27:26 +05302177 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002178 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2179 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002180 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002181 }
2182
Sujithf1dc5602008-10-29 10:16:30 +05302183 if (mac != NULL) {
2184 macHi = (mac[5] << 8) | mac[4];
2185 macLo = (mac[3] << 24) |
2186 (mac[2] << 16) |
2187 (mac[1] << 8) |
2188 mac[0];
2189 macLo >>= 1;
2190 macLo |= (macHi & 1) << 31;
2191 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192 } else {
Sujithf1dc5602008-10-29 10:16:30 +05302193 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002194 }
Sujithf1dc5602008-10-29 10:16:30 +05302195 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2196 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197
2198 return true;
2199}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002200EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002201
Sujithcbe61d82009-02-09 13:27:12 +05302202bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05302203 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002204 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002205{
Sujith2660b812009-02-09 13:27:26 +05302206 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002207 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302208 u32 key0, key1, key2, key3, key4;
2209 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002210
Sujithf1dc5602008-10-29 10:16:30 +05302211 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002212 ath_print(common, ATH_DBG_FATAL,
2213 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05302214 return false;
2215 }
2216
2217 switch (k->kv_type) {
2218 case ATH9K_CIPHER_AES_OCB:
2219 keyType = AR_KEYTABLE_TYPE_AES;
2220 break;
2221 case ATH9K_CIPHER_AES_CCM:
2222 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002223 ath_print(common, ATH_DBG_ANY,
2224 "AES-CCM not supported by mac rev 0x%x\n",
2225 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226 return false;
2227 }
Sujithf1dc5602008-10-29 10:16:30 +05302228 keyType = AR_KEYTABLE_TYPE_CCM;
2229 break;
2230 case ATH9K_CIPHER_TKIP:
2231 keyType = AR_KEYTABLE_TYPE_TKIP;
2232 if (ATH9K_IS_MIC_ENABLED(ah)
2233 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002234 ath_print(common, ATH_DBG_ANY,
2235 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002236 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002237 }
Sujithf1dc5602008-10-29 10:16:30 +05302238 break;
2239 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08002240 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002241 ath_print(common, ATH_DBG_ANY,
2242 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05302243 return false;
2244 }
Zhu Yie31a16d2009-05-21 21:47:03 +08002245 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05302246 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08002247 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302248 keyType = AR_KEYTABLE_TYPE_104;
2249 else
2250 keyType = AR_KEYTABLE_TYPE_128;
2251 break;
2252 case ATH9K_CIPHER_CLR:
2253 keyType = AR_KEYTABLE_TYPE_CLR;
2254 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002255 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002256 ath_print(common, ATH_DBG_FATAL,
2257 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002258 return false;
2259 }
Sujithf1dc5602008-10-29 10:16:30 +05302260
Jouni Malinene0caf9e2009-03-02 18:15:53 +02002261 key0 = get_unaligned_le32(k->kv_val + 0);
2262 key1 = get_unaligned_le16(k->kv_val + 4);
2263 key2 = get_unaligned_le32(k->kv_val + 6);
2264 key3 = get_unaligned_le16(k->kv_val + 10);
2265 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08002266 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05302267 key4 &= 0xff;
2268
Jouni Malinen672903b2009-03-02 15:06:31 +02002269 /*
2270 * Note: Key cache registers access special memory area that requires
2271 * two 32-bit writes to actually update the values in the internal
2272 * memory. Consequently, the exact order and pairs used here must be
2273 * maintained.
2274 */
2275
Sujithf1dc5602008-10-29 10:16:30 +05302276 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2277 u16 micentry = entry + 64;
2278
Jouni Malinen672903b2009-03-02 15:06:31 +02002279 /*
2280 * Write inverted key[47:0] first to avoid Michael MIC errors
2281 * on frames that could be sent or received at the same time.
2282 * The correct key will be written in the end once everything
2283 * else is ready.
2284 */
Sujithf1dc5602008-10-29 10:16:30 +05302285 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2286 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002287
2288 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302289 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2290 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002291
2292 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302293 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2294 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02002295
2296 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302297 (void) ath9k_hw_keysetmac(ah, entry, mac);
2298
Sujith2660b812009-02-09 13:27:26 +05302299 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02002300 /*
2301 * TKIP uses two key cache entries:
2302 * Michael MIC TX/RX keys in the same key cache entry
2303 * (idx = main index + 64):
2304 * key0 [31:0] = RX key [31:0]
2305 * key1 [15:0] = TX key [31:16]
2306 * key1 [31:16] = reserved
2307 * key2 [31:0] = RX key [63:32]
2308 * key3 [15:0] = TX key [15:0]
2309 * key3 [31:16] = reserved
2310 * key4 [31:0] = TX key [63:32]
2311 */
Sujithf1dc5602008-10-29 10:16:30 +05302312 u32 mic0, mic1, mic2, mic3, mic4;
2313
2314 mic0 = get_unaligned_le32(k->kv_mic + 0);
2315 mic2 = get_unaligned_le32(k->kv_mic + 4);
2316 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2317 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2318 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002319
2320 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05302321 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2322 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002323
2324 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302325 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2326 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002327
2328 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302329 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2330 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2331 AR_KEYTABLE_TYPE_CLR);
2332
2333 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002334 /*
2335 * TKIP uses four key cache entries (two for group
2336 * keys):
2337 * Michael MIC TX/RX keys are in different key cache
2338 * entries (idx = main index + 64 for TX and
2339 * main index + 32 + 96 for RX):
2340 * key0 [31:0] = TX/RX MIC key [31:0]
2341 * key1 [31:0] = reserved
2342 * key2 [31:0] = TX/RX MIC key [63:32]
2343 * key3 [31:0] = reserved
2344 * key4 [31:0] = reserved
2345 *
2346 * Upper layer code will call this function separately
2347 * for TX and RX keys when these registers offsets are
2348 * used.
2349 */
Sujithf1dc5602008-10-29 10:16:30 +05302350 u32 mic0, mic2;
2351
2352 mic0 = get_unaligned_le32(k->kv_mic + 0);
2353 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02002354
2355 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302356 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2357 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002358
2359 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05302360 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2361 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002362
2363 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05302364 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2365 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2366 AR_KEYTABLE_TYPE_CLR);
2367 }
Jouni Malinen672903b2009-03-02 15:06:31 +02002368
2369 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05302370 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2371 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02002372
2373 /*
2374 * Write the correct (un-inverted) key[47:0] last to enable
2375 * TKIP now that all other registers are set with correct
2376 * values.
2377 */
Sujithf1dc5602008-10-29 10:16:30 +05302378 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2379 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2380 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02002381 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05302382 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2383 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02002384
2385 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05302386 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2387 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02002388
2389 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05302390 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2391 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2392
Jouni Malinen672903b2009-03-02 15:06:31 +02002393 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05302394 (void) ath9k_hw_keysetmac(ah, entry, mac);
2395 }
2396
Sujithf1dc5602008-10-29 10:16:30 +05302397 return true;
2398}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002399EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05302400
Sujithcbe61d82009-02-09 13:27:12 +05302401bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05302402{
Sujith2660b812009-02-09 13:27:26 +05302403 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05302404 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2405 if (val & AR_KEYTABLE_VALID)
2406 return true;
2407 }
2408 return false;
2409}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002410EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05302411
2412/******************************/
2413/* Power Management (Chipset) */
2414/******************************/
2415
Sujithcbe61d82009-02-09 13:27:12 +05302416static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302417{
2418 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2419 if (setChip) {
2420 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2421 AR_RTC_FORCE_WAKE_EN);
2422 if (!AR_SREV_9100(ah))
2423 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2424
Sujith14b3af32010-03-17 14:25:18 +05302425 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05302426 REG_CLR_BIT(ah, (AR_RTC_RESET),
2427 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302428 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429}
2430
Sujithcbe61d82009-02-09 13:27:12 +05302431static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002432{
Sujithf1dc5602008-10-29 10:16:30 +05302433 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2434 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302435 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436
Sujithf1dc5602008-10-29 10:16:30 +05302437 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2438 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2439 AR_RTC_FORCE_WAKE_ON_INT);
2440 } else {
2441 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2442 AR_RTC_FORCE_WAKE_EN);
2443 }
2444 }
2445}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002446
Sujithcbe61d82009-02-09 13:27:12 +05302447static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302448{
2449 u32 val;
2450 int i;
2451
2452 if (setChip) {
2453 if ((REG_READ(ah, AR_RTC_STATUS) &
2454 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2455 if (ath9k_hw_set_reset_reg(ah,
2456 ATH9K_RESET_POWER_ON) != true) {
2457 return false;
2458 }
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302459 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302460 }
2461 if (AR_SREV_9100(ah))
2462 REG_SET_BIT(ah, AR_RTC_RESET,
2463 AR_RTC_RESET_EN);
2464
2465 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2466 AR_RTC_FORCE_WAKE_EN);
2467 udelay(50);
2468
2469 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2470 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2471 if (val == AR_RTC_STATUS_ON)
2472 break;
2473 udelay(50);
2474 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2475 AR_RTC_FORCE_WAKE_EN);
2476 }
2477 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002478 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2479 "Failed to wakeup in %uus\n",
2480 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302481 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482 }
2483 }
2484
Sujithf1dc5602008-10-29 10:16:30 +05302485 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2486
2487 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488}
2489
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002490bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302491{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002492 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302493 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302494 static const char *modes[] = {
2495 "AWAKE",
2496 "FULL-SLEEP",
2497 "NETWORK SLEEP",
2498 "UNDEFINED"
2499 };
Sujithf1dc5602008-10-29 10:16:30 +05302500
Gabor Juhoscbdec972009-07-24 17:27:22 +02002501 if (ah->power_mode == mode)
2502 return status;
2503
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002504 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2505 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302506
2507 switch (mode) {
2508 case ATH9K_PM_AWAKE:
2509 status = ath9k_hw_set_power_awake(ah, setChip);
2510 break;
2511 case ATH9K_PM_FULL_SLEEP:
2512 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302513 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302514 break;
2515 case ATH9K_PM_NETWORK_SLEEP:
2516 ath9k_set_power_network_sleep(ah, setChip);
2517 break;
2518 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002519 ath_print(common, ATH_DBG_FATAL,
2520 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302521 return false;
2522 }
Sujith2660b812009-02-09 13:27:26 +05302523 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302524
2525 return status;
2526}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002527EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302528
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002529/*
2530 * Helper for ASPM support.
2531 *
2532 * Disable PLL when in L0s as well as receiver clock when in L1.
2533 * This power saving option must be enabled through the SerDes.
2534 *
2535 * Programming the SerDes must go through the same 288 bit serial shift
2536 * register as the other analog registers. Hence the 9 writes.
2537 */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002538static void ar9002_hw_configpcipowersave(struct ath_hw *ah,
2539 int restore,
2540 int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302541{
Sujithf1dc5602008-10-29 10:16:30 +05302542 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302543 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302544
Sujith2660b812009-02-09 13:27:26 +05302545 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302546 return;
2547
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002548 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302549 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302550 return;
2551
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002552 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302553 if (!restore) {
2554 if (AR_SREV_9280_20_OR_LATER(ah)) {
2555 /*
2556 * AR9280 2.0 or later chips use SerDes values from the
2557 * initvals.h initialized depending on chipset during
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002558 * __ath9k_hw_init()
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302559 */
2560 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2561 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2562 INI_RA(&ah->iniPcieSerdes, i, 1));
2563 }
2564 } else if (AR_SREV_9280(ah) &&
2565 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2566 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2567 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302568
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302569 /* RX shut off when elecidle is asserted */
2570 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2571 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2572 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2573
2574 /* Shut off CLKREQ active in L1 */
2575 if (ah->config.pcie_clock_req)
2576 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2577 else
2578 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2579
2580 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2581 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2582 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2583
2584 /* Load the new settings */
2585 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2586
2587 } else {
2588 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2589 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2590
2591 /* RX shut off when elecidle is asserted */
2592 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2593 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2594 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2595
2596 /*
2597 * Ignore ah->ah_config.pcie_clock_req setting for
2598 * pre-AR9280 11n
2599 */
2600 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2601
2602 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2603 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2604 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2605
2606 /* Load the new settings */
2607 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302608 }
Sujithf1dc5602008-10-29 10:16:30 +05302609
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302610 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302611
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302612 /* set bit 19 to allow forcing of pcie core into L1 state */
2613 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302614
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302615 /* Several PCIe massages to ensure proper behaviour */
2616 if (ah->config.pcie_waen) {
2617 val = ah->config.pcie_waen;
2618 if (!power_off)
2619 val &= (~AR_WA_D3_L1_DISABLE);
2620 } else {
2621 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2622 AR_SREV_9287(ah)) {
2623 val = AR9285_WA_DEFAULT;
2624 if (!power_off)
2625 val &= (~AR_WA_D3_L1_DISABLE);
2626 } else if (AR_SREV_9280(ah)) {
2627 /*
2628 * On AR9280 chips bit 22 of 0x4004 needs to be
2629 * set otherwise card may disappear.
2630 */
2631 val = AR9280_WA_DEFAULT;
2632 if (!power_off)
2633 val &= (~AR_WA_D3_L1_DISABLE);
2634 } else
2635 val = AR_WA_DEFAULT;
2636 }
Sujithf1dc5602008-10-29 10:16:30 +05302637
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302638 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302639 }
2640
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302641 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002642 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302643 * Set PCIe workaround bits
2644 * bit 14 in WA register (disable L1) should only
2645 * be set when device enters D3 and be cleared
2646 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002647 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302648 if (ah->config.pcie_waen) {
2649 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2650 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2651 } else {
2652 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2653 AR_SREV_9287(ah)) &&
2654 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2655 (AR_SREV_9280(ah) &&
2656 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2657 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2658 }
2659 }
Sujithf1dc5602008-10-29 10:16:30 +05302660 }
2661}
2662
2663/**********************/
2664/* Interrupt Handling */
2665/**********************/
2666
Sujithcbe61d82009-02-09 13:27:12 +05302667bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002668{
2669 u32 host_isr;
2670
2671 if (AR_SREV_9100(ah))
2672 return true;
2673
2674 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2675 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2676 return true;
2677
2678 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2679 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2680 && (host_isr != AR_INTR_SPURIOUS))
2681 return true;
2682
2683 return false;
2684}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002685EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002686
Sujithcbe61d82009-02-09 13:27:12 +05302687bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688{
2689 u32 isr = 0;
2690 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302691 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002692 u32 sync_cause = 0;
2693 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002694 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002695
2696 if (!AR_SREV_9100(ah)) {
2697 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2698 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2699 == AR_RTC_STATUS_ON) {
2700 isr = REG_READ(ah, AR_ISR);
2701 }
2702 }
2703
Sujithf1dc5602008-10-29 10:16:30 +05302704 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2705 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002706
2707 *masked = 0;
2708
2709 if (!isr && !sync_cause)
2710 return false;
2711 } else {
2712 *masked = 0;
2713 isr = REG_READ(ah, AR_ISR);
2714 }
2715
2716 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002717 if (isr & AR_ISR_BCNMISC) {
2718 u32 isr2;
2719 isr2 = REG_READ(ah, AR_ISR_S2);
2720 if (isr2 & AR_ISR_S2_TIM)
2721 mask2 |= ATH9K_INT_TIM;
2722 if (isr2 & AR_ISR_S2_DTIM)
2723 mask2 |= ATH9K_INT_DTIM;
2724 if (isr2 & AR_ISR_S2_DTIMSYNC)
2725 mask2 |= ATH9K_INT_DTIMSYNC;
2726 if (isr2 & (AR_ISR_S2_CABEND))
2727 mask2 |= ATH9K_INT_CABEND;
2728 if (isr2 & AR_ISR_S2_GTT)
2729 mask2 |= ATH9K_INT_GTT;
2730 if (isr2 & AR_ISR_S2_CST)
2731 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302732 if (isr2 & AR_ISR_S2_TSFOOR)
2733 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002734 }
2735
2736 isr = REG_READ(ah, AR_ISR_RAC);
2737 if (isr == 0xffffffff) {
2738 *masked = 0;
2739 return false;
2740 }
2741
2742 *masked = isr & ATH9K_INT_COMMON;
2743
Sujith0ce024c2009-12-14 14:57:00 +05302744 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002745 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2746 *masked |= ATH9K_INT_RX;
2747 }
2748
2749 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2750 *masked |= ATH9K_INT_RX;
2751 if (isr &
2752 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2753 AR_ISR_TXEOL)) {
2754 u32 s0_s, s1_s;
2755
2756 *masked |= ATH9K_INT_TX;
2757
2758 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302759 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2760 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002761
2762 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302763 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2764 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002765 }
2766
2767 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002768 ath_print(common, ATH_DBG_INTERRUPT,
2769 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002770 }
2771
2772 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302773 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002774 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2775 if (isr5 & AR_ISR_S5_TIM_TIMER)
2776 *masked |= ATH9K_INT_TIM_TIMER;
2777 }
2778 }
2779
2780 *masked |= mask2;
2781 }
Sujithf1dc5602008-10-29 10:16:30 +05302782
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002783 if (AR_SREV_9100(ah))
2784 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302785
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302786 if (isr & AR_ISR_GENTMR) {
2787 u32 s5_s;
2788
2789 s5_s = REG_READ(ah, AR_ISR_S5_S);
2790 if (isr & AR_ISR_GENTMR) {
2791 ah->intr_gen_timer_trigger =
2792 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2793
2794 ah->intr_gen_timer_thresh =
2795 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2796
2797 if (ah->intr_gen_timer_trigger)
2798 *masked |= ATH9K_INT_GENTIMER;
2799
2800 }
2801 }
2802
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002803 if (sync_cause) {
2804 fatal_int =
2805 (sync_cause &
2806 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2807 ? true : false;
2808
2809 if (fatal_int) {
2810 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002811 ath_print(common, ATH_DBG_ANY,
2812 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813 }
2814 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002815 ath_print(common, ATH_DBG_ANY,
2816 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002817 }
Steven Luoa89bff92009-04-12 02:57:54 -07002818 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002819 }
2820 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002821 ath_print(common, ATH_DBG_INTERRUPT,
2822 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002823 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2824 REG_WRITE(ah, AR_RC, 0);
2825 *masked |= ATH9K_INT_FATAL;
2826 }
2827 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002828 ath_print(common, ATH_DBG_INTERRUPT,
2829 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002830 }
2831
2832 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2833 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2834 }
Sujithf1dc5602008-10-29 10:16:30 +05302835
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002836 return true;
2837}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002838EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002839
Sujithcbe61d82009-02-09 13:27:12 +05302840enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002841{
Pavel Roskin152d5302010-03-31 18:05:37 -04002842 enum ath9k_int omask = ah->imask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002843 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302844 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002845 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002846
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002847 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002848
2849 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002850 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002851 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2852 (void) REG_READ(ah, AR_IER);
2853 if (!AR_SREV_9100(ah)) {
2854 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2855 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2856
2857 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2858 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2859 }
2860 }
2861
2862 mask = ints & ATH9K_INT_COMMON;
2863 mask2 = 0;
2864
2865 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302866 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002867 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302868 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002869 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302870 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002871 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302872 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002873 mask |= AR_IMR_TXEOL;
2874 }
2875 if (ints & ATH9K_INT_RX) {
2876 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302877 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002878 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2879 else
2880 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302881 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002882 mask |= AR_IMR_GENTMR;
2883 }
2884
2885 if (ints & (ATH9K_INT_BMISC)) {
2886 mask |= AR_IMR_BCNMISC;
2887 if (ints & ATH9K_INT_TIM)
2888 mask2 |= AR_IMR_S2_TIM;
2889 if (ints & ATH9K_INT_DTIM)
2890 mask2 |= AR_IMR_S2_DTIM;
2891 if (ints & ATH9K_INT_DTIMSYNC)
2892 mask2 |= AR_IMR_S2_DTIMSYNC;
2893 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302894 mask2 |= AR_IMR_S2_CABEND;
2895 if (ints & ATH9K_INT_TSFOOR)
2896 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002897 }
2898
2899 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2900 mask |= AR_IMR_BCNMISC;
2901 if (ints & ATH9K_INT_GTT)
2902 mask2 |= AR_IMR_S2_GTT;
2903 if (ints & ATH9K_INT_CST)
2904 mask2 |= AR_IMR_S2_CST;
2905 }
2906
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002907 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002908 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002909 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2910 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2911 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2912 ah->imrs2_reg |= mask2;
2913 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002914
Sujith60b67f52008-08-07 10:52:38 +05302915 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002916 if (ints & ATH9K_INT_TIM_TIMER)
2917 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2918 else
2919 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2920 }
2921
2922 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002923 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002924 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2925 if (!AR_SREV_9100(ah)) {
2926 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2927 AR_INTR_MAC_IRQ);
2928 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2929
2930
2931 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2932 AR_INTR_SYNC_DEFAULT);
2933 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2934 AR_INTR_SYNC_DEFAULT);
2935 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002936 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2937 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002938 }
2939
2940 return omask;
2941}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002942EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002943
Sujithf1dc5602008-10-29 10:16:30 +05302944/*******************/
2945/* Beacon Handling */
2946/*******************/
2947
Sujithcbe61d82009-02-09 13:27:12 +05302948void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002949{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002950 int flags = 0;
2951
Sujith2660b812009-02-09 13:27:26 +05302952 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002953
Sujith2660b812009-02-09 13:27:26 +05302954 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002955 case NL80211_IFTYPE_STATION:
2956 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002957 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2958 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2959 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2960 flags |= AR_TBTT_TIMER_EN;
2961 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002962 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002963 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002964 REG_SET_BIT(ah, AR_TXCFG,
2965 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2966 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2967 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302968 (ah->atim_window ? ah->
2969 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002970 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002971 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002972 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2973 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2974 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302975 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302976 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002977 REG_WRITE(ah, AR_NEXT_SWBA,
2978 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302979 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302980 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002981 flags |=
2982 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2983 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002984 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002985 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
2986 "%s: unsupported opmode: %d\n",
2987 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002988 return;
2989 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002990 }
2991
2992 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2993 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2994 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
2995 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
2996
2997 beacon_period &= ~ATH9K_BEACON_ENA;
2998 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002999 ath9k_hw_reset_tsf(ah);
3000 }
3001
3002 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3003}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003004EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003005
Sujithcbe61d82009-02-09 13:27:12 +05303006void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303007 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003008{
3009 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05303010 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003011 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003012
3013 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3014
3015 REG_WRITE(ah, AR_BEACON_PERIOD,
3016 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3017 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3018 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3019
3020 REG_RMW_FIELD(ah, AR_RSSI_THR,
3021 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3022
3023 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3024
3025 if (bs->bs_sleepduration > beaconintval)
3026 beaconintval = bs->bs_sleepduration;
3027
3028 dtimperiod = bs->bs_dtimperiod;
3029 if (bs->bs_sleepduration > dtimperiod)
3030 dtimperiod = bs->bs_sleepduration;
3031
3032 if (beaconintval == dtimperiod)
3033 nextTbtt = bs->bs_nextdtim;
3034 else
3035 nextTbtt = bs->bs_nexttbtt;
3036
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003037 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3038 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3039 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3040 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003041
3042 REG_WRITE(ah, AR_NEXT_DTIM,
3043 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3044 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3045
3046 REG_WRITE(ah, AR_SLEEP1,
3047 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3048 | AR_SLEEP1_ASSUME_DTIM);
3049
Sujith60b67f52008-08-07 10:52:38 +05303050 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003051 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3052 else
3053 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3054
3055 REG_WRITE(ah, AR_SLEEP2,
3056 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3057
3058 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3059 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3060
3061 REG_SET_BIT(ah, AR_TIMER_MODE,
3062 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3063 AR_DTIM_TIMER_EN);
3064
Sujith4af9cf42009-02-12 10:06:47 +05303065 /* TSF Out of Range Threshold */
3066 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003067}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003068EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003069
Sujithf1dc5602008-10-29 10:16:30 +05303070/*******************/
3071/* HW Capabilities */
3072/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003073
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003074int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003075{
Sujith2660b812009-02-09 13:27:26 +05303076 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003077 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003078 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003079 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003080
Sujithf1dc5602008-10-29 10:16:30 +05303081 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003082
Sujithf74df6f2009-02-09 13:27:24 +05303083 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003084 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303085
Sujithf74df6f2009-02-09 13:27:24 +05303086 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05303087 if (AR_SREV_9285_10_OR_LATER(ah))
3088 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003089 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05303090
Sujithf74df6f2009-02-09 13:27:24 +05303091 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05303092
Sujith2660b812009-02-09 13:27:26 +05303093 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05303094 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003095 if (regulatory->current_rd == 0x64 ||
3096 regulatory->current_rd == 0x65)
3097 regulatory->current_rd += 5;
3098 else if (regulatory->current_rd == 0x41)
3099 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003100 ath_print(common, ATH_DBG_REGULATORY,
3101 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003102 }
Sujithdc2222a2008-08-14 13:26:55 +05303103
Sujithf74df6f2009-02-09 13:27:24 +05303104 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003105 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
3106 ath_print(common, ATH_DBG_FATAL,
3107 "no band has been marked as supported in EEPROM.\n");
3108 return -EINVAL;
3109 }
3110
Sujithf1dc5602008-10-29 10:16:30 +05303111 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003112
Sujithf1dc5602008-10-29 10:16:30 +05303113 if (eeval & AR5416_OPFLAGS_11A) {
3114 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303115 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303116 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3117 set_bit(ATH9K_MODE_11NA_HT20,
3118 pCap->wireless_modes);
3119 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3120 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3121 pCap->wireless_modes);
3122 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3123 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003124 }
3125 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003126 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003127
Sujithf1dc5602008-10-29 10:16:30 +05303128 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05303129 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05303130 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05303131 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3132 set_bit(ATH9K_MODE_11NG_HT20,
3133 pCap->wireless_modes);
3134 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3135 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3136 pCap->wireless_modes);
3137 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3138 pCap->wireless_modes);
3139 }
3140 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003141 }
Sujithf1dc5602008-10-29 10:16:30 +05303142
Sujithf74df6f2009-02-09 13:27:24 +05303143 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003144 /*
3145 * For AR9271 we will temporarilly uses the rx chainmax as read from
3146 * the EEPROM.
3147 */
Sujith8147f5d2009-02-20 15:13:23 +05303148 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003149 !(eeval & AR5416_OPFLAGS_11A) &&
3150 !(AR_SREV_9271(ah)))
3151 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05303152 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3153 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04003154 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05303155 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05303156
Sujithd535a422009-02-09 13:27:06 +05303157 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05303158 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05303159
3160 pCap->low_2ghz_chan = 2312;
3161 pCap->high_2ghz_chan = 2732;
3162
3163 pCap->low_5ghz_chan = 4920;
3164 pCap->high_5ghz_chan = 6100;
3165
3166 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3167 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3168 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3169
3170 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3171 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3172 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3173
Sujith2660b812009-02-09 13:27:26 +05303174 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05303175 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3176 else
3177 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3178
3179 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3180 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3181 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3182 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3183
3184 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3185 pCap->total_queues =
3186 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3187 else
3188 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3189
3190 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3191 pCap->keycache_size =
3192 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3193 else
3194 pCap->keycache_size = AR_KEYTABLE_SIZE;
3195
3196 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05003197
3198 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
3199 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
3200 else
3201 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05303202
Sujith5b5fa352010-03-17 14:25:15 +05303203 if (AR_SREV_9271(ah))
3204 pCap->num_gpio_pins = AR9271_NUM_GPIO;
3205 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303206 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3207 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303208 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3209 else
3210 pCap->num_gpio_pins = AR_NUM_GPIO;
3211
Sujithf1dc5602008-10-29 10:16:30 +05303212 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3213 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3214 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3215 } else {
3216 pCap->rts_aggr_limit = (8 * 1024);
3217 }
3218
3219 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3220
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05303221#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05303222 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3223 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3224 ah->rfkill_gpio =
3225 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3226 ah->rfkill_polarity =
3227 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05303228
3229 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3230 }
3231#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05303232 if (AR_SREV_9271(ah))
3233 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3234 else
3235 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05303236
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05303237 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05303238 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3239 else
3240 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3241
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003242 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05303243 pCap->reg_cap =
3244 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3245 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3246 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3247 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3248 } else {
3249 pCap->reg_cap =
3250 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3251 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3252 }
3253
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05303254 /* Advertise midband for AR5416 with FCC midband set in eeprom */
3255 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
3256 AR_SREV_5416(ah))
3257 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05303258
3259 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303260 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303261 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05303262 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05303263
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05303264 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07003265 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003266 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
3267 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303268
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303269 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003270 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
3271 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303272 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003273 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05303274 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05303275 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07003276 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05303277 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01003278
3279 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003280}
3281
Sujithcbe61d82009-02-09 13:27:12 +05303282bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303283 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003284{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003285 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05303286 switch (type) {
3287 case ATH9K_CAP_CIPHER:
3288 switch (capability) {
3289 case ATH9K_CIPHER_AES_CCM:
3290 case ATH9K_CIPHER_AES_OCB:
3291 case ATH9K_CIPHER_TKIP:
3292 case ATH9K_CIPHER_WEP:
3293 case ATH9K_CIPHER_MIC:
3294 case ATH9K_CIPHER_CLR:
3295 return true;
3296 default:
3297 return false;
3298 }
3299 case ATH9K_CAP_TKIP_MIC:
3300 switch (capability) {
3301 case 0:
3302 return true;
3303 case 1:
Sujith2660b812009-02-09 13:27:26 +05303304 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303305 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3306 false;
3307 }
3308 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05303309 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05303310 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303311 case ATH9K_CAP_DIVERSITY:
3312 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3313 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3314 true : false;
Sujithf1dc5602008-10-29 10:16:30 +05303315 case ATH9K_CAP_MCAST_KEYSRCH:
3316 switch (capability) {
3317 case 0:
3318 return true;
3319 case 1:
3320 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3321 return false;
3322 } else {
Sujith2660b812009-02-09 13:27:26 +05303323 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05303324 AR_STA_ID1_MCAST_KSRCH) ? true :
3325 false;
3326 }
3327 }
3328 return false;
Sujithf1dc5602008-10-29 10:16:30 +05303329 case ATH9K_CAP_TXPOW:
3330 switch (capability) {
3331 case 0:
3332 return 0;
3333 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003334 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05303335 return 0;
3336 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003337 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05303338 return 0;
3339 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003340 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05303341 return 0;
3342 }
3343 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05303344 case ATH9K_CAP_DS:
3345 return (AR_SREV_9280_20_OR_LATER(ah) &&
3346 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3347 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05303348 default:
3349 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003350 }
Sujithf1dc5602008-10-29 10:16:30 +05303351}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003352EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003353
Sujithcbe61d82009-02-09 13:27:12 +05303354bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05303355 u32 capability, u32 setting, int *status)
3356{
Sujithf1dc5602008-10-29 10:16:30 +05303357 u32 v;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07003358
Sujithf1dc5602008-10-29 10:16:30 +05303359 switch (type) {
3360 case ATH9K_CAP_TKIP_MIC:
3361 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303362 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05303363 AR_STA_ID1_CRPT_MIC_ENABLE;
3364 else
Sujith2660b812009-02-09 13:27:26 +05303365 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05303366 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3367 return true;
3368 case ATH9K_CAP_DIVERSITY:
3369 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3370 if (setting)
3371 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3372 else
3373 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3374 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3375 return true;
3376 case ATH9K_CAP_MCAST_KEYSRCH:
3377 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303378 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303379 else
Sujith2660b812009-02-09 13:27:26 +05303380 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05303381 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303382 default:
3383 return false;
3384 }
3385}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003386EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05303387
3388/****************************/
3389/* GPIO / RFKILL / Antennae */
3390/****************************/
3391
Sujithcbe61d82009-02-09 13:27:12 +05303392static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05303393 u32 gpio, u32 type)
3394{
3395 int addr;
3396 u32 gpio_shift, tmp;
3397
3398 if (gpio > 11)
3399 addr = AR_GPIO_OUTPUT_MUX3;
3400 else if (gpio > 5)
3401 addr = AR_GPIO_OUTPUT_MUX2;
3402 else
3403 addr = AR_GPIO_OUTPUT_MUX1;
3404
3405 gpio_shift = (gpio % 6) * 5;
3406
3407 if (AR_SREV_9280_20_OR_LATER(ah)
3408 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3409 REG_RMW(ah, addr, (type << gpio_shift),
3410 (0x1f << gpio_shift));
3411 } else {
3412 tmp = REG_READ(ah, addr);
3413 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3414 tmp &= ~(0x1f << gpio_shift);
3415 tmp |= (type << gpio_shift);
3416 REG_WRITE(ah, addr, tmp);
3417 }
3418}
3419
Sujithcbe61d82009-02-09 13:27:12 +05303420void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303421{
3422 u32 gpio_shift;
3423
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003424 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303425
3426 gpio_shift = gpio << 1;
3427
3428 REG_RMW(ah,
3429 AR_GPIO_OE_OUT,
3430 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3431 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3432}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003433EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303434
Sujithcbe61d82009-02-09 13:27:12 +05303435u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303436{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303437#define MS_REG_READ(x, y) \
3438 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3439
Sujith2660b812009-02-09 13:27:26 +05303440 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303441 return 0xffffffff;
3442
Felix Fietkau783dfca2010-04-15 17:38:11 -04003443 if (AR_SREV_9300_20_OR_LATER(ah))
3444 return MS_REG_READ(AR9300, gpio) != 0;
3445 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05303446 return MS_REG_READ(AR9271, gpio) != 0;
3447 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303448 return MS_REG_READ(AR9287, gpio) != 0;
3449 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303450 return MS_REG_READ(AR9285, gpio) != 0;
3451 else if (AR_SREV_9280_10_OR_LATER(ah))
3452 return MS_REG_READ(AR928X, gpio) != 0;
3453 else
3454 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303455}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003456EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303457
Sujithcbe61d82009-02-09 13:27:12 +05303458void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303459 u32 ah_signal_type)
3460{
3461 u32 gpio_shift;
3462
3463 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3464
3465 gpio_shift = 2 * gpio;
3466
3467 REG_RMW(ah,
3468 AR_GPIO_OE_OUT,
3469 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3470 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3471}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003472EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303473
Sujithcbe61d82009-02-09 13:27:12 +05303474void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303475{
Sujith5b5fa352010-03-17 14:25:15 +05303476 if (AR_SREV_9271(ah))
3477 val = ~val;
3478
Sujithf1dc5602008-10-29 10:16:30 +05303479 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3480 AR_GPIO_BIT(gpio));
3481}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003482EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303483
Sujithcbe61d82009-02-09 13:27:12 +05303484u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303485{
3486 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3487}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003488EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303489
Sujithcbe61d82009-02-09 13:27:12 +05303490void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303491{
3492 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3493}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003494EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303495
Sujithf1dc5602008-10-29 10:16:30 +05303496/*********************/
3497/* General Operation */
3498/*********************/
3499
Sujithcbe61d82009-02-09 13:27:12 +05303500u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303501{
3502 u32 bits = REG_READ(ah, AR_RX_FILTER);
3503 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3504
3505 if (phybits & AR_PHY_ERR_RADAR)
3506 bits |= ATH9K_RX_FILTER_PHYRADAR;
3507 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3508 bits |= ATH9K_RX_FILTER_PHYERR;
3509
3510 return bits;
3511}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003512EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303513
Sujithcbe61d82009-02-09 13:27:12 +05303514void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303515{
3516 u32 phybits;
3517
Sujith7ea310b2009-09-03 12:08:43 +05303518 REG_WRITE(ah, AR_RX_FILTER, bits);
3519
Sujithf1dc5602008-10-29 10:16:30 +05303520 phybits = 0;
3521 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3522 phybits |= AR_PHY_ERR_RADAR;
3523 if (bits & ATH9K_RX_FILTER_PHYERR)
3524 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3525 REG_WRITE(ah, AR_PHY_ERR, phybits);
3526
3527 if (phybits)
3528 REG_WRITE(ah, AR_RXCFG,
3529 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3530 else
3531 REG_WRITE(ah, AR_RXCFG,
3532 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3533}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003534EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303535
Sujithcbe61d82009-02-09 13:27:12 +05303536bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303537{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303538 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3539 return false;
3540
3541 ath9k_hw_init_pll(ah, NULL);
3542 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303543}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003544EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303545
Sujithcbe61d82009-02-09 13:27:12 +05303546bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303547{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003548 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303549 return false;
3550
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303551 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3552 return false;
3553
3554 ath9k_hw_init_pll(ah, NULL);
3555 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303556}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003557EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303558
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003559void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303560{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003561 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303562 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003563 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303564
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003565 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303566
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003567 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003568 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003569 channel->max_antenna_gain * 2,
3570 channel->max_power * 2,
3571 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003572 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303573}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003574EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303575
Sujithcbe61d82009-02-09 13:27:12 +05303576void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303577{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003578 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303579}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003580EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303581
Sujithcbe61d82009-02-09 13:27:12 +05303582void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303583{
Sujith2660b812009-02-09 13:27:26 +05303584 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303585}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003586EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303587
Sujithcbe61d82009-02-09 13:27:12 +05303588void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303589{
3590 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3591 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3592}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003593EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303594
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003595void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303596{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003597 struct ath_common *common = ath9k_hw_common(ah);
3598
3599 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3600 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3601 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303602}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003603EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303604
Sujithcbe61d82009-02-09 13:27:12 +05303605u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303606{
3607 u64 tsf;
3608
3609 tsf = REG_READ(ah, AR_TSF_U32);
3610 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3611
3612 return tsf;
3613}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003614EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303615
Sujithcbe61d82009-02-09 13:27:12 +05303616void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003617{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003618 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003619 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003620}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003621EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003622
Sujithcbe61d82009-02-09 13:27:12 +05303623void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303624{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003625 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3626 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003627 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3628 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003629
Sujithf1dc5602008-10-29 10:16:30 +05303630 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003631}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003632EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003633
Sujith54e4cec2009-08-07 09:45:09 +05303634void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003635{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003636 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303637 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003638 else
Sujith2660b812009-02-09 13:27:26 +05303639 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003640}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003641EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003642
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003643/*
3644 * Extend 15-bit time stamp from rx descriptor to
3645 * a full 64-bit TSF using the current h/w TSF.
3646*/
3647u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3648{
3649 u64 tsf;
3650
3651 tsf = ath9k_hw_gettsf64(ah);
3652 if ((tsf & 0x7fff) < rstamp)
3653 tsf -= 0x8000;
3654 return (tsf & ~0x7fff) | rstamp;
3655}
3656EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3657
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003658void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003659{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003660 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303661 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003662
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003663 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303664 macmode = AR_2040_JOINED_RX_CLEAR;
3665 else
3666 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003667
Sujithf1dc5602008-10-29 10:16:30 +05303668 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003669}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303670
3671/* HW Generic timers configuration */
3672
3673static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3674{
3675 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3676 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3677 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3678 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3679 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3680 {AR_NEXT_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_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3684 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3685 AR_NDP2_TIMER_MODE, 0x0002},
3686 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3687 AR_NDP2_TIMER_MODE, 0x0004},
3688 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3689 AR_NDP2_TIMER_MODE, 0x0008},
3690 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3691 AR_NDP2_TIMER_MODE, 0x0010},
3692 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3693 AR_NDP2_TIMER_MODE, 0x0020},
3694 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3695 AR_NDP2_TIMER_MODE, 0x0040},
3696 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3697 AR_NDP2_TIMER_MODE, 0x0080}
3698};
3699
3700/* HW generic timer primitives */
3701
3702/* compute and clear index of rightmost 1 */
3703static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3704{
3705 u32 b;
3706
3707 b = *mask;
3708 b &= (0-b);
3709 *mask &= ~b;
3710 b *= debruijn32;
3711 b >>= 27;
3712
3713 return timer_table->gen_timer_index[b];
3714}
3715
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303716u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303717{
3718 return REG_READ(ah, AR_TSF_L32);
3719}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003720EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303721
3722struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3723 void (*trigger)(void *),
3724 void (*overflow)(void *),
3725 void *arg,
3726 u8 timer_index)
3727{
3728 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3729 struct ath_gen_timer *timer;
3730
3731 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3732
3733 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003734 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3735 "Failed to allocate memory"
3736 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303737 return NULL;
3738 }
3739
3740 /* allocate a hardware generic timer slot */
3741 timer_table->timers[timer_index] = timer;
3742 timer->index = timer_index;
3743 timer->trigger = trigger;
3744 timer->overflow = overflow;
3745 timer->arg = arg;
3746
3747 return timer;
3748}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003749EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303750
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003751void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3752 struct ath_gen_timer *timer,
3753 u32 timer_next,
3754 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303755{
3756 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3757 u32 tsf;
3758
3759 BUG_ON(!timer_period);
3760
3761 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3762
3763 tsf = ath9k_hw_gettsf32(ah);
3764
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003765 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3766 "curent tsf %x period %x"
3767 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303768
3769 /*
3770 * Pull timer_next forward if the current TSF already passed it
3771 * because of software latency
3772 */
3773 if (timer_next < tsf)
3774 timer_next = tsf + timer_period;
3775
3776 /*
3777 * Program generic timer registers
3778 */
3779 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3780 timer_next);
3781 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3782 timer_period);
3783 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3784 gen_tmr_configuration[timer->index].mode_mask);
3785
3786 /* Enable both trigger and thresh interrupt masks */
3787 REG_SET_BIT(ah, AR_IMR_S5,
3788 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3789 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303790}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003791EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303792
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003793void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303794{
3795 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3796
3797 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3798 (timer->index >= ATH_MAX_GEN_TIMER)) {
3799 return;
3800 }
3801
3802 /* Clear generic timer enable bits. */
3803 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3804 gen_tmr_configuration[timer->index].mode_mask);
3805
3806 /* Disable both trigger and thresh interrupt masks */
3807 REG_CLR_BIT(ah, AR_IMR_S5,
3808 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3809 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3810
3811 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303812}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003813EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303814
3815void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3816{
3817 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3818
3819 /* free the hardware generic timer slot */
3820 timer_table->timers[timer->index] = NULL;
3821 kfree(timer);
3822}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003823EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303824
3825/*
3826 * Generic Timer Interrupts handling
3827 */
3828void ath_gen_timer_isr(struct ath_hw *ah)
3829{
3830 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3831 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003832 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303833 u32 trigger_mask, thresh_mask, index;
3834
3835 /* get hardware generic timer interrupt status */
3836 trigger_mask = ah->intr_gen_timer_trigger;
3837 thresh_mask = ah->intr_gen_timer_thresh;
3838 trigger_mask &= timer_table->timer_mask.val;
3839 thresh_mask &= timer_table->timer_mask.val;
3840
3841 trigger_mask &= ~thresh_mask;
3842
3843 while (thresh_mask) {
3844 index = rightmost_index(timer_table, &thresh_mask);
3845 timer = timer_table->timers[index];
3846 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003847 ath_print(common, ATH_DBG_HWTIMER,
3848 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303849 timer->overflow(timer->arg);
3850 }
3851
3852 while (trigger_mask) {
3853 index = rightmost_index(timer_table, &trigger_mask);
3854 timer = timer_table->timers[index];
3855 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003856 ath_print(common, ATH_DBG_HWTIMER,
3857 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303858 timer->trigger(timer->arg);
3859 }
3860}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003861EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003862
Sujith05020d22010-03-17 14:25:23 +05303863/********/
3864/* HTC */
3865/********/
3866
3867void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3868{
3869 ah->htc_reset_init = true;
3870}
3871EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3872
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003873static struct {
3874 u32 version;
3875 const char * name;
3876} ath_mac_bb_names[] = {
3877 /* Devices with external radios */
3878 { AR_SREV_VERSION_5416_PCI, "5416" },
3879 { AR_SREV_VERSION_5416_PCIE, "5418" },
3880 { AR_SREV_VERSION_9100, "9100" },
3881 { AR_SREV_VERSION_9160, "9160" },
3882 /* Single-chip solutions */
3883 { AR_SREV_VERSION_9280, "9280" },
3884 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003885 { AR_SREV_VERSION_9287, "9287" },
3886 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003887};
3888
3889/* For devices with external radios */
3890static struct {
3891 u16 version;
3892 const char * name;
3893} ath_rf_names[] = {
3894 { 0, "5133" },
3895 { AR_RAD5133_SREV_MAJOR, "5133" },
3896 { AR_RAD5122_SREV_MAJOR, "5122" },
3897 { AR_RAD2133_SREV_MAJOR, "2133" },
3898 { AR_RAD2122_SREV_MAJOR, "2122" }
3899};
3900
3901/*
3902 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3903 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003904static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003905{
3906 int i;
3907
3908 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3909 if (ath_mac_bb_names[i].version == mac_bb_version) {
3910 return ath_mac_bb_names[i].name;
3911 }
3912 }
3913
3914 return "????";
3915}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003916
3917/*
3918 * Return the RF name. "????" is returned if the RF is unknown.
3919 * Used for devices with external radios.
3920 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003921static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003922{
3923 int i;
3924
3925 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3926 if (ath_rf_names[i].version == rf_version) {
3927 return ath_rf_names[i].name;
3928 }
3929 }
3930
3931 return "????";
3932}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003933
3934void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3935{
3936 int used;
3937
3938 /* chipsets >= AR9280 are single-chip */
3939 if (AR_SREV_9280_10_OR_LATER(ah)) {
3940 used = snprintf(hw_name, len,
3941 "Atheros AR%s Rev:%x",
3942 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3943 ah->hw_version.macRev);
3944 }
3945 else {
3946 used = snprintf(hw_name, len,
3947 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3948 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3949 ah->hw_version.macRev,
3950 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3951 AR_RADIO_SREV_MAJOR)),
3952 ah->hw_version.phyRev);
3953 }
3954
3955 hw_name[used] = '\0';
3956}
3957EXPORT_SYMBOL(ath9k_hw_name);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003958
3959/* Sets up the AR5008/AR9001/AR9002 hardware familiy callbacks */
3960static void ar9002_hw_attach_ops(struct ath_hw *ah)
3961{
3962 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3963 struct ath_hw_ops *ops = ath9k_hw_ops(ah);
3964
3965 priv_ops->init_cal_settings = ar9002_hw_init_cal_settings;
3966 priv_ops->init_mode_regs = ar9002_hw_init_mode_regs;
3967 priv_ops->macversion_supported = ar9002_hw_macversion_supported;
3968
3969 ops->config_pci_powersave = ar9002_hw_configpcipowersave;
3970}