blob: 7952818e630784987102a6008395c35827930eea [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. Rodriguezf078f202008-08-04 00:16:41 -070032
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040033MODULE_AUTHOR("Atheros Communications");
34MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
35MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
36MODULE_LICENSE("Dual BSD/GPL");
37
38static int __init ath9k_init(void)
39{
40 return 0;
41}
42module_init(ath9k_init);
43
44static void __exit ath9k_exit(void)
45{
46 return;
47}
48module_exit(ath9k_exit);
49
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040050/* Private hardware callbacks */
51
52static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
55}
56
57static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
58{
59 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
60}
61
62static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
63{
64 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
65
66 return priv_ops->macversion_supported(ah->hw_version.macVersion);
67}
68
Luis R. Rodriguez64773962010-04-15 17:38:17 -040069static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
70 struct ath9k_channel *chan)
71{
72 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
73}
74
Sujithf1dc5602008-10-29 10:16:30 +053075/********************/
76/* Helper Functions */
77/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070078
Sujithcbe61d82009-02-09 13:27:12 +053079static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053080{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070081 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053082
Sujith2660b812009-02-09 13:27:26 +053083 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080084 return usecs *ATH9K_CLOCK_RATE_CCK;
85 if (conf->channel->band == IEEE80211_BAND_2GHZ)
86 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
87 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053088}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070089
Sujithcbe61d82009-02-09 13:27:12 +053090static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053091{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070092 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053093
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080094 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053095 return ath9k_hw_mac_clks(ah, usecs) * 2;
96 else
97 return ath9k_hw_mac_clks(ah, usecs);
98}
99
Sujith0caa7b12009-02-16 13:23:20 +0530100bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700101{
102 int i;
103
Sujith0caa7b12009-02-16 13:23:20 +0530104 BUG_ON(timeout < AH_TIME_QUANTUM);
105
106 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700107 if ((REG_READ(ah, reg) & mask) == val)
108 return true;
109
110 udelay(AH_TIME_QUANTUM);
111 }
Sujith04bd46382008-11-28 22:18:05 +0530112
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700113 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
114 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
115 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530116
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700117 return false;
118}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400119EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700120
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700121u32 ath9k_hw_reverse_bits(u32 val, u32 n)
122{
123 u32 retval;
124 int i;
125
126 for (i = 0, retval = 0; i < n; i++) {
127 retval = (retval << 1) | (val & 1);
128 val >>= 1;
129 }
130 return retval;
131}
132
Sujithcbe61d82009-02-09 13:27:12 +0530133bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530134 u16 flags, u16 *low,
135 u16 *high)
136{
Sujith2660b812009-02-09 13:27:26 +0530137 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530138
139 if (flags & CHANNEL_5GHZ) {
140 *low = pCap->low_5ghz_chan;
141 *high = pCap->high_5ghz_chan;
142 return true;
143 }
144 if ((flags & CHANNEL_2GHZ)) {
145 *low = pCap->low_2ghz_chan;
146 *high = pCap->high_2ghz_chan;
147 return true;
148 }
149 return false;
150}
151
Sujithcbe61d82009-02-09 13:27:12 +0530152u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100153 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530154 u32 frameLen, u16 rateix,
155 bool shortPreamble)
156{
157 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530158
159 if (kbps == 0)
160 return 0;
161
Felix Fietkau545750d2009-11-23 22:21:01 +0100162 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530163 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530164 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100165 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530166 phyTime >>= 1;
167 numBits = frameLen << 3;
168 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
169 break;
Sujith46d14a52008-11-18 09:08:13 +0530170 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530171 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530172 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
173 numBits = OFDM_PLCP_BITS + (frameLen << 3);
174 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
175 txTime = OFDM_SIFS_TIME_QUARTER
176 + OFDM_PREAMBLE_TIME_QUARTER
177 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530178 } else if (ah->curchan &&
179 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530180 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
181 numBits = OFDM_PLCP_BITS + (frameLen << 3);
182 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
183 txTime = OFDM_SIFS_TIME_HALF +
184 OFDM_PREAMBLE_TIME_HALF
185 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
186 } else {
187 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
188 numBits = OFDM_PLCP_BITS + (frameLen << 3);
189 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
190 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
191 + (numSymbols * OFDM_SYMBOL_TIME);
192 }
193 break;
194 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700195 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100196 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530197 txTime = 0;
198 break;
199 }
200
201 return txTime;
202}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400203EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530204
Sujithcbe61d82009-02-09 13:27:12 +0530205void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530206 struct ath9k_channel *chan,
207 struct chan_centers *centers)
208{
209 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530210
211 if (!IS_CHAN_HT40(chan)) {
212 centers->ctl_center = centers->ext_center =
213 centers->synth_center = chan->channel;
214 return;
215 }
216
217 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
218 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
219 centers->synth_center =
220 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
221 extoff = 1;
222 } else {
223 centers->synth_center =
224 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
225 extoff = -1;
226 }
227
228 centers->ctl_center =
229 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700230 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530231 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700232 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530233}
234
235/******************/
236/* Chip Revisions */
237/******************/
238
Sujithcbe61d82009-02-09 13:27:12 +0530239static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530240{
241 u32 val;
242
243 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
244
245 if (val == 0xFF) {
246 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530247 ah->hw_version.macVersion =
248 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
249 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530250 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530251 } else {
252 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530253 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530254
Sujithd535a422009-02-09 13:27:06 +0530255 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530256
Sujithd535a422009-02-09 13:27:06 +0530257 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530258 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530259 }
260}
261
Sujithcbe61d82009-02-09 13:27:12 +0530262static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530263{
264 u32 val;
265 int i;
266
267 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
268
269 for (i = 0; i < 8; i++)
270 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
271 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
272 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
273
274 return ath9k_hw_reverse_bits(val, 8);
275}
276
277/************************************/
278/* HW Attach, Detach, Init Routines */
279/************************************/
280
Sujithcbe61d82009-02-09 13:27:12 +0530281static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530282{
Sujithfeed0292009-01-29 11:37:35 +0530283 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530284 return;
285
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
295
296 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
297}
298
Sujithcbe61d82009-02-09 13:27:12 +0530299static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530300{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700301 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530302 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
303 u32 regHold[2];
304 u32 patternData[4] = { 0x55555555,
305 0xaaaaaaaa,
306 0x66666666,
307 0x99999999 };
308 int i, j;
309
310 for (i = 0; i < 2; i++) {
311 u32 addr = regAddr[i];
312 u32 wrData, rdData;
313
314 regHold[i] = REG_READ(ah, addr);
315 for (j = 0; j < 0x100; j++) {
316 wrData = (j << 16) | j;
317 REG_WRITE(ah, addr, wrData);
318 rdData = REG_READ(ah, addr);
319 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700320 ath_print(common, ATH_DBG_FATAL,
321 "address test failed "
322 "addr: 0x%08x - wr:0x%08x != "
323 "rd:0x%08x\n",
324 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530325 return false;
326 }
327 }
328 for (j = 0; j < 4; j++) {
329 wrData = patternData[j];
330 REG_WRITE(ah, addr, wrData);
331 rdData = REG_READ(ah, addr);
332 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700333 ath_print(common, ATH_DBG_FATAL,
334 "address test failed "
335 "addr: 0x%08x - wr:0x%08x != "
336 "rd:0x%08x\n",
337 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530338 return false;
339 }
340 }
341 REG_WRITE(ah, regAddr[i], regHold[i]);
342 }
343 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530344
Sujithf1dc5602008-10-29 10:16:30 +0530345 return true;
346}
347
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700348static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700349{
350 int i;
351
Sujith2660b812009-02-09 13:27:26 +0530352 ah->config.dma_beacon_response_time = 2;
353 ah->config.sw_beacon_response_time = 10;
354 ah->config.additional_swba_backoff = 0;
355 ah->config.ack_6mb = 0x0;
356 ah->config.cwm_ignore_extcca = 0;
357 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530358 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530359 ah->config.pcie_waen = 0;
360 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530361 ah->config.ofdm_trig_low = 200;
362 ah->config.ofdm_trig_high = 500;
363 ah->config.cck_trig_high = 200;
364 ah->config.cck_trig_low = 100;
365 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700366
367 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530368 ah->config.spurchans[i][0] = AR_NO_SPUR;
369 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700370 }
371
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500372 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
373 ah->config.ht_enable = 1;
374 else
375 ah->config.ht_enable = 0;
376
Sujith0ce024c2009-12-14 14:57:00 +0530377 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400378
379 /*
380 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
381 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
382 * This means we use it for all AR5416 devices, and the few
383 * minor PCI AR9280 devices out there.
384 *
385 * Serialization is required because these devices do not handle
386 * well the case of two concurrent reads/writes due to the latency
387 * involved. During one read/write another read/write can be issued
388 * on another CPU while the previous read/write may still be working
389 * on our hardware, if we hit this case the hardware poops in a loop.
390 * We prevent this by serializing reads and writes.
391 *
392 * This issue is not present on PCI-Express devices or pre-AR5416
393 * devices (legacy, 802.11abg).
394 */
395 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700396 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700397}
398
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700399static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700401 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
402
403 regulatory->country_code = CTRY_DEFAULT;
404 regulatory->power_limit = MAX_RATE_POWER;
405 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
406
Sujithd535a422009-02-09 13:27:06 +0530407 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530408 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409
410 ah->ah_flags = 0;
Luis R. Rodriguez8df5d1b2009-08-03 12:24:37 -0700411 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
Sujithd535a422009-02-09 13:27:06 +0530412 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700413 if (!AR_SREV_9100(ah))
414 ah->ah_flags = AH_USE_EEPROM;
415
Sujith2660b812009-02-09 13:27:26 +0530416 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530417 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
418 ah->beacon_interval = 100;
419 ah->enable_32kHz_clock = DONT_USE_32KHZ;
420 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530421 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200422 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423}
424
Sujithcbe61d82009-02-09 13:27:12 +0530425static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426{
427 u32 val;
428
429 REG_WRITE(ah, AR_PHY(0), 0x00000007);
430
431 val = ath9k_hw_get_radiorev(ah);
432 switch (val & AR_RADIO_SREV_MAJOR) {
433 case 0:
434 val = AR_RAD5133_SREV_MAJOR;
435 break;
436 case AR_RAD5133_SREV_MAJOR:
437 case AR_RAD5122_SREV_MAJOR:
438 case AR_RAD2133_SREV_MAJOR:
439 case AR_RAD2122_SREV_MAJOR:
440 break;
441 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700442 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
443 "Radio Chip Rev 0x%02X not supported\n",
444 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445 return -EOPNOTSUPP;
446 }
447
Sujithd535a422009-02-09 13:27:06 +0530448 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449
450 return 0;
451}
452
Sujithcbe61d82009-02-09 13:27:12 +0530453static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700455 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530456 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530458 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700459
Sujithf1dc5602008-10-29 10:16:30 +0530460 sum = 0;
461 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530462 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530463 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700464 common->macaddr[2 * i] = eeval >> 8;
465 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466 }
Sujithd8baa932009-03-30 15:28:25 +0530467 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530468 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470 return 0;
471}
472
Sujithcbe61d82009-02-09 13:27:12 +0530473static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530474{
475 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530476
Sujithf74df6f2009-02-09 13:27:24 +0530477 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
478 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530479
480 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530481 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530482 ar9280Modes_backoff_13db_rxgain_9280_2,
483 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
484 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530485 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530486 ar9280Modes_backoff_23db_rxgain_9280_2,
487 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
488 else
Sujith2660b812009-02-09 13:27:26 +0530489 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530490 ar9280Modes_original_rxgain_9280_2,
491 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530492 } else {
Sujith2660b812009-02-09 13:27:26 +0530493 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530494 ar9280Modes_original_rxgain_9280_2,
495 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530496 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530497}
498
Sujithcbe61d82009-02-09 13:27:12 +0530499static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530500{
501 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530502
Sujithf74df6f2009-02-09 13:27:24 +0530503 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
504 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530505
506 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530507 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530508 ar9280Modes_high_power_tx_gain_9280_2,
509 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
510 else
Sujith2660b812009-02-09 13:27:26 +0530511 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530512 ar9280Modes_original_tx_gain_9280_2,
513 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530514 } else {
Sujith2660b812009-02-09 13:27:26 +0530515 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530516 ar9280Modes_original_tx_gain_9280_2,
517 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530518 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530519}
520
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700521static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700522{
523 int ecode;
524
Sujith527d4852010-03-17 14:25:16 +0530525 if (!AR_SREV_9271(ah)) {
526 if (!ath9k_hw_chip_test(ah))
527 return -ENODEV;
528 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700529
530 ecode = ath9k_hw_rf_claim(ah);
531 if (ecode != 0)
532 return ecode;
533
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700534 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700535 if (ecode != 0)
536 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530537
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700538 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
539 "Eeprom VER: %d, REV: %d\n",
540 ah->eep_ops->get_eeprom_ver(ah),
541 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530542
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400543 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
544 if (ecode) {
545 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
546 "Failed allocating banks for "
547 "external radio\n");
548 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400549 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700550
551 if (!AR_SREV_9100(ah)) {
552 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700553 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700554 }
Sujithf1dc5602008-10-29 10:16:30 +0530555
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700556 return 0;
557}
558
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400559static bool ar9002_hw_macversion_supported(u32 macversion)
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700560{
561 switch (macversion) {
562 case AR_SREV_VERSION_5416_PCI:
563 case AR_SREV_VERSION_5416_PCIE:
564 case AR_SREV_VERSION_9160:
565 case AR_SREV_VERSION_9100:
566 case AR_SREV_VERSION_9280:
567 case AR_SREV_VERSION_9285:
568 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400569 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400570 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700571 default:
572 break;
573 }
574 return false;
575}
576
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400577static void ar9002_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700579 if (AR_SREV_9160_10_OR_LATER(ah)) {
580 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530581 ah->iq_caldata.calData = &iq_cal_single_sample;
582 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700583 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530584 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700585 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530586 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587 &adc_init_dc_cal;
588 } else {
Sujith2660b812009-02-09 13:27:26 +0530589 ah->iq_caldata.calData = &iq_cal_multi_sample;
590 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700591 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530592 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530594 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595 &adc_init_dc_cal;
596 }
Sujith2660b812009-02-09 13:27:26 +0530597 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700598 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700600
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400601static void ar9002_hw_init_mode_regs(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700602{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400603 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400604 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
605 ARRAY_SIZE(ar9271Modes_9271), 6);
606 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
607 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530608 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
609 ar9271Common_normal_cck_fir_coeff_9271,
610 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
611 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
612 ar9271Common_japan_2484_cck_fir_coeff_9271,
613 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400614 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
615 ar9271Modes_9271_1_0_only,
616 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530617 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
618 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
619 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
620 ar9271Modes_high_power_tx_gain_9271,
621 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
622 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
623 ar9271Modes_normal_power_tx_gain_9271,
624 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400625 return;
626 }
627
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530628 if (AR_SREV_9287_11_OR_LATER(ah)) {
629 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
630 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
631 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
632 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
633 if (ah->config.pcie_clock_req)
634 INIT_INI_ARRAY(&ah->iniPcieSerdes,
635 ar9287PciePhy_clkreq_off_L1_9287_1_1,
636 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
637 else
638 INIT_INI_ARRAY(&ah->iniPcieSerdes,
639 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
640 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
641 2);
642 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
643 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
644 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
645 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
646 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530648 if (ah->config.pcie_clock_req)
649 INIT_INI_ARRAY(&ah->iniPcieSerdes,
650 ar9287PciePhy_clkreq_off_L1_9287_1_0,
651 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
652 else
653 INIT_INI_ARRAY(&ah->iniPcieSerdes,
654 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
655 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
656 2);
657 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
658
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530659
Sujith2660b812009-02-09 13:27:26 +0530660 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530661 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530662 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530663 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
664
Sujith2660b812009-02-09 13:27:26 +0530665 if (ah->config.pcie_clock_req) {
666 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530667 ar9285PciePhy_clkreq_off_L1_9285_1_2,
668 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
669 } else {
Sujith2660b812009-02-09 13:27:26 +0530670 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530671 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
672 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
673 2);
674 }
675 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530676 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530677 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530678 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530679 ARRAY_SIZE(ar9285Common_9285), 2);
680
Sujith2660b812009-02-09 13:27:26 +0530681 if (ah->config.pcie_clock_req) {
682 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530683 ar9285PciePhy_clkreq_off_L1_9285,
684 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
685 } else {
Sujith2660b812009-02-09 13:27:26 +0530686 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530687 ar9285PciePhy_clkreq_always_on_L1_9285,
688 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
689 }
690 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530691 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700694 ARRAY_SIZE(ar9280Common_9280_2), 2);
695
Sujith2660b812009-02-09 13:27:26 +0530696 if (ah->config.pcie_clock_req) {
697 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530698 ar9280PciePhy_clkreq_off_L1_9280,
699 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700700 } else {
Sujith2660b812009-02-09 13:27:26 +0530701 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530702 ar9280PciePhy_clkreq_always_on_L1_9280,
703 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700704 }
Sujith2660b812009-02-09 13:27:26 +0530705 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700706 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530707 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530709 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700710 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530711 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700712 ARRAY_SIZE(ar9280Common_9280), 2);
713 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530714 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530716 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530718 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700719 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530720 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530722 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530724 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530726 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530728 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530730 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 ARRAY_SIZE(ar5416Bank7_9160), 2);
734 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530735 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 ar5416Addac_91601_1,
737 ARRAY_SIZE(ar5416Addac_91601_1), 2);
738 } else {
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Addac_9160), 2);
741 }
742 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530749 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530751 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530753 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700754 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530755 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530757 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700758 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530759 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar5416Addac_9100), 2);
765 } else {
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530780 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530782 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Addac), 2);
788 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700789}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700791static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
792{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530793 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530794 INIT_INI_ARRAY(&ah->iniModesRxGain,
795 ar9287Modes_rx_gain_9287_1_1,
796 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
797 else if (AR_SREV_9287_10(ah))
798 INIT_INI_ARRAY(&ah->iniModesRxGain,
799 ar9287Modes_rx_gain_9287_1_0,
800 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
801 else if (AR_SREV_9280_20(ah))
802 ath9k_hw_init_rxgain_ini(ah);
803
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530804 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530805 INIT_INI_ARRAY(&ah->iniModesTxGain,
806 ar9287Modes_tx_gain_9287_1_1,
807 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
808 } else if (AR_SREV_9287_10(ah)) {
809 INIT_INI_ARRAY(&ah->iniModesTxGain,
810 ar9287Modes_tx_gain_9287_1_0,
811 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
812 } else if (AR_SREV_9280_20(ah)) {
813 ath9k_hw_init_txgain_ini(ah);
814 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530815 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
816
817 /* txgain table */
818 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530819 if (AR_SREV_9285E_20(ah)) {
820 INIT_INI_ARRAY(&ah->iniModesTxGain,
821 ar9285Modes_XE2_0_high_power,
822 ARRAY_SIZE(
823 ar9285Modes_XE2_0_high_power), 6);
824 } else {
825 INIT_INI_ARRAY(&ah->iniModesTxGain,
826 ar9285Modes_high_power_tx_gain_9285_1_2,
827 ARRAY_SIZE(
828 ar9285Modes_high_power_tx_gain_9285_1_2), 6);
829 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530830 } else {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530831 if (AR_SREV_9285E_20(ah)) {
832 INIT_INI_ARRAY(&ah->iniModesTxGain,
833 ar9285Modes_XE2_0_normal_power,
834 ARRAY_SIZE(
835 ar9285Modes_XE2_0_normal_power), 6);
836 } else {
837 INIT_INI_ARRAY(&ah->iniModesTxGain,
838 ar9285Modes_original_tx_gain_9285_1_2,
839 ARRAY_SIZE(
840 ar9285Modes_original_tx_gain_9285_1_2), 6);
841 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530842 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530843 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700844}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530845
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100846static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700847{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400848 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
849 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530850
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400851 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
852 (ah->eep_map != EEP_MAP_4KBITS) &&
853 ((pBase->version & 0xff) > 0x0a) &&
854 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530855
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400856 if (ah->need_an_top2_fixup)
857 ath_print(common, ATH_DBG_EEPROM,
858 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700859}
860
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400861/* Called for all hardware families */
862static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700863{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700864 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700865 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700866
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700867 ath9k_hw_init_defaults(ah);
868 ath9k_hw_init_config(ah);
869
870 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700871 ath_print(common, ATH_DBG_FATAL,
872 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700873 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700874 }
875
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400876 ar9002_hw_attach_ops(ah);
877
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700878 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700879 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700880 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700881 }
882
883 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
884 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
885 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
886 ah->config.serialize_regmode =
887 SER_REG_MODE_ON;
888 } else {
889 ah->config.serialize_regmode =
890 SER_REG_MODE_OFF;
891 }
892 }
893
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700894 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700895 ah->config.serialize_regmode);
896
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500897 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
898 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
899 else
900 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
901
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400902 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700903 ath_print(common, ATH_DBG_FATAL,
904 "Mac Chip Rev 0x%02x.%x is not supported by "
905 "this driver\n", ah->hw_version.macVersion,
906 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700907 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700908 }
909
910 if (AR_SREV_9100(ah)) {
911 ah->iq_caldata.calData = &iq_cal_multi_sample;
912 ah->supp_cals = IQ_MISMATCH_CAL;
913 ah->is_pciexpress = false;
914 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400915
916 if (AR_SREV_9271(ah))
917 ah->is_pciexpress = false;
918
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700919 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700920 ath9k_hw_init_cal_settings(ah);
921
922 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400923 if (AR_SREV_9280_10_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700924 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
925
926 ath9k_hw_init_mode_regs(ah);
927
928 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530929 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700930 else
931 ath9k_hw_disablepcie(ah);
932
Sujith193cd452009-09-18 15:04:07 +0530933 /* Support for Japan ch.14 (2484) spread */
934 if (AR_SREV_9287_11_OR_LATER(ah)) {
935 INIT_INI_ARRAY(&ah->iniCckfirNormal,
936 ar9287Common_normal_cck_fir_coeff_92871_1,
937 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
938 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
939 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
940 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
941 }
942
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700943 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700944 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700945 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700946
947 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100948 r = ath9k_hw_fill_cap_info(ah);
949 if (r)
950 return r;
951
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100952 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530953
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700954 r = ath9k_hw_init_macaddr(ah);
955 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700956 ath_print(common, ATH_DBG_FATAL,
957 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700958 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700959 }
960
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400961 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530962 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700963 else
Sujith2660b812009-02-09 13:27:26 +0530964 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700965
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700966 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700967
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400968 common->state = ATH_HW_INITIALIZED;
969
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700970 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700971}
972
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400973int ath9k_hw_init(struct ath_hw *ah)
974{
975 int ret;
976 struct ath_common *common = ath9k_hw_common(ah);
977
978 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
979 switch (ah->hw_version.devid) {
980 case AR5416_DEVID_PCI:
981 case AR5416_DEVID_PCIE:
982 case AR5416_AR9100_DEVID:
983 case AR9160_DEVID_PCI:
984 case AR9280_DEVID_PCI:
985 case AR9280_DEVID_PCIE:
986 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400987 case AR9287_DEVID_PCI:
988 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400989 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400990 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400991 break;
992 default:
993 if (common->bus_ops->ath_bus_type == ATH_USB)
994 break;
995 ath_print(common, ATH_DBG_FATAL,
996 "Hardware device ID 0x%04x not supported\n",
997 ah->hw_version.devid);
998 return -EOPNOTSUPP;
999 }
1000
1001 ret = __ath9k_hw_init(ah);
1002 if (ret) {
1003 ath_print(common, ATH_DBG_FATAL,
1004 "Unable to initialize hardware; "
1005 "initialization status: %d\n", ret);
1006 return ret;
1007 }
1008
1009 return 0;
1010}
1011EXPORT_SYMBOL(ath9k_hw_init);
1012
Sujithcbe61d82009-02-09 13:27:12 +05301013static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301014{
1015 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1016 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1017
1018 REG_WRITE(ah, AR_QOS_NO_ACK,
1019 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1020 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1021 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1022
1023 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1024 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1025 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1026 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1027 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1028}
1029
Sujithcbe61d82009-02-09 13:27:12 +05301030static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301031 struct ath9k_channel *chan)
1032{
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001033 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301034
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001035 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301036
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001037 /* Switch the core clock for ar9271 to 117Mhz */
1038 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301039 udelay(500);
1040 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001041 }
1042
Sujithf1dc5602008-10-29 10:16:30 +05301043 udelay(RTC_PLL_SETTLE_DELAY);
1044
1045 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1046}
1047
Sujithcbe61d82009-02-09 13:27:12 +05301048static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001049 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301050{
Pavel Roskin152d5302010-03-31 18:05:37 -04001051 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301052 AR_IMR_TXURN |
1053 AR_IMR_RXERR |
1054 AR_IMR_RXORN |
1055 AR_IMR_BCNMISC;
1056
Sujith0ce024c2009-12-14 14:57:00 +05301057 if (ah->config.rx_intr_mitigation)
Pavel Roskin152d5302010-03-31 18:05:37 -04001058 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301059 else
Pavel Roskin152d5302010-03-31 18:05:37 -04001060 imr_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301061
Pavel Roskin152d5302010-03-31 18:05:37 -04001062 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301063
Colin McCabed97809d2008-12-01 13:38:55 -08001064 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -04001065 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301066
Pavel Roskin152d5302010-03-31 18:05:37 -04001067 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001068 ah->imrs2_reg |= AR_IMR_S2_GTT;
1069 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301070
1071 if (!AR_SREV_9100(ah)) {
1072 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1073 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1074 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1075 }
1076}
1077
Felix Fietkau0005baf2010-01-15 02:33:40 +01001078static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301079{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001080 u32 val = ath9k_hw_mac_to_clks(ah, us);
1081 val = min(val, (u32) 0xFFFF);
1082 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301083}
1084
Felix Fietkau0005baf2010-01-15 02:33:40 +01001085static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301086{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001087 u32 val = ath9k_hw_mac_to_clks(ah, us);
1088 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1089 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1090}
1091
1092static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1093{
1094 u32 val = ath9k_hw_mac_to_clks(ah, us);
1095 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1096 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301097}
1098
Sujithcbe61d82009-02-09 13:27:12 +05301099static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301100{
Sujithf1dc5602008-10-29 10:16:30 +05301101 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001102 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1103 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301104 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301105 return false;
1106 } else {
1107 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301108 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301109 return true;
1110 }
1111}
1112
Felix Fietkau0005baf2010-01-15 02:33:40 +01001113void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301114{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001115 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1116 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001117 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001118 int sifstime;
1119
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001120 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1121 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301122
Sujith2660b812009-02-09 13:27:26 +05301123 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301124 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301125 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001126
1127 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1128 sifstime = 16;
1129 else
1130 sifstime = 10;
1131
Felix Fietkaue239d852010-01-15 02:34:58 +01001132 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1133 slottime = ah->slottime + 3 * ah->coverage_class;
1134 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001135
1136 /*
1137 * Workaround for early ACK timeouts, add an offset to match the
1138 * initval's 64us ack timeout value.
1139 * This was initially only meant to work around an issue with delayed
1140 * BA frames in some implementations, but it has been found to fix ACK
1141 * timeout issues in other cases as well.
1142 */
1143 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1144 acktimeout += 64 - sifstime - ah->slottime;
1145
Felix Fietkaue239d852010-01-15 02:34:58 +01001146 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001147 ath9k_hw_set_ack_timeout(ah, acktimeout);
1148 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301149 if (ah->globaltxtimeout != (u32) -1)
1150 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301151}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001152EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301153
Sujith285f2dd2010-01-08 10:36:07 +05301154void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001155{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001156 struct ath_common *common = ath9k_hw_common(ah);
1157
Sujith736b3a22010-03-17 14:25:24 +05301158 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001159 goto free_hw;
1160
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001161 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001162 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001163
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001164 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001165
1166free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001167 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001168}
Sujith285f2dd2010-01-08 10:36:07 +05301169EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001170
Sujithf1dc5602008-10-29 10:16:30 +05301171/*******/
1172/* INI */
1173/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001174
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001175u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001176{
1177 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1178
1179 if (IS_CHAN_B(chan))
1180 ctl |= CTL_11B;
1181 else if (IS_CHAN_G(chan))
1182 ctl |= CTL_11G;
1183 else
1184 ctl |= CTL_11A;
1185
1186 return ctl;
1187}
1188
Sujithf1dc5602008-10-29 10:16:30 +05301189/****************************************/
1190/* Reset and Channel Switching Routines */
1191/****************************************/
1192
Sujithcbe61d82009-02-09 13:27:12 +05301193static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301194{
1195 u32 regval;
1196
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001197 /*
1198 * set AHB_MODE not to do cacheline prefetches
1199 */
Sujithf1dc5602008-10-29 10:16:30 +05301200 regval = REG_READ(ah, AR_AHB_MODE);
1201 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1202
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001203 /*
1204 * let mac dma reads be in 128 byte chunks
1205 */
Sujithf1dc5602008-10-29 10:16:30 +05301206 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1207 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1208
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001209 /*
1210 * Restore TX Trigger Level to its pre-reset value.
1211 * The initial value depends on whether aggregation is enabled, and is
1212 * adjusted whenever underruns are detected.
1213 */
Sujith2660b812009-02-09 13:27:26 +05301214 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301215
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001216 /*
1217 * let mac dma writes be in 128 byte chunks
1218 */
Sujithf1dc5602008-10-29 10:16:30 +05301219 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1220 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1221
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001222 /*
1223 * Setup receive FIFO threshold to hold off TX activities
1224 */
Sujithf1dc5602008-10-29 10:16:30 +05301225 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1226
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001227 /*
1228 * reduce the number of usable entries in PCU TXBUF to avoid
1229 * wrap around issues.
1230 */
Sujithf1dc5602008-10-29 10:16:30 +05301231 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001232 /* For AR9285 the number of Fifos are reduced to half.
1233 * So set the usable tx buf size also to half to
1234 * avoid data/delimiter underruns
1235 */
Sujithf1dc5602008-10-29 10:16:30 +05301236 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1237 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001238 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301239 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1240 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1241 }
1242}
1243
Sujithcbe61d82009-02-09 13:27:12 +05301244static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301245{
1246 u32 val;
1247
1248 val = REG_READ(ah, AR_STA_ID1);
1249 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1250 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001251 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301252 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1253 | AR_STA_ID1_KSRCH_MODE);
1254 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1255 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001256 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001257 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301258 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1259 | AR_STA_ID1_KSRCH_MODE);
1260 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1261 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001262 case NL80211_IFTYPE_STATION:
1263 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301264 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1265 break;
1266 }
1267}
1268
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001269void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1270 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001271{
1272 u32 coef_exp, coef_man;
1273
1274 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1275 if ((coef_scaled >> coef_exp) & 0x1)
1276 break;
1277
1278 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1279
1280 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1281
1282 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1283 *coef_exponent = coef_exp - 16;
1284}
1285
Sujithcbe61d82009-02-09 13:27:12 +05301286static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301287{
1288 u32 rst_flags;
1289 u32 tmpReg;
1290
Sujith70768492009-02-16 13:23:12 +05301291 if (AR_SREV_9100(ah)) {
1292 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1293 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1294 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1295 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1296 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1297 }
1298
Sujithf1dc5602008-10-29 10:16:30 +05301299 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1300 AR_RTC_FORCE_WAKE_ON_INT);
1301
1302 if (AR_SREV_9100(ah)) {
1303 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1304 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1305 } else {
1306 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1307 if (tmpReg &
1308 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1309 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001310 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301311 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001312
1313 val = AR_RC_HOSTIF;
1314 if (!AR_SREV_9300_20_OR_LATER(ah))
1315 val |= AR_RC_AHB;
1316 REG_WRITE(ah, AR_RC, val);
1317
1318 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301319 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301320
1321 rst_flags = AR_RTC_RC_MAC_WARM;
1322 if (type == ATH9K_RESET_COLD)
1323 rst_flags |= AR_RTC_RC_MAC_COLD;
1324 }
1325
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001326 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301327 udelay(50);
1328
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001329 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301330 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001331 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1332 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301333 return false;
1334 }
1335
1336 if (!AR_SREV_9100(ah))
1337 REG_WRITE(ah, AR_RC, 0);
1338
Sujithf1dc5602008-10-29 10:16:30 +05301339 if (AR_SREV_9100(ah))
1340 udelay(50);
1341
1342 return true;
1343}
1344
Sujithcbe61d82009-02-09 13:27:12 +05301345static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301346{
1347 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1348 AR_RTC_FORCE_WAKE_ON_INT);
1349
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001350 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301351 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1352
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001353 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301354 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301355
1356 if (!AR_SREV_9100(ah))
1357 REG_WRITE(ah, AR_RC, 0);
1358
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001359 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301360
1361 if (!ath9k_hw_wait(ah,
1362 AR_RTC_STATUS,
1363 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301364 AR_RTC_STATUS_ON,
1365 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001366 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1367 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301368 return false;
1369 }
1370
1371 ath9k_hw_read_revisions(ah);
1372
1373 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1374}
1375
Sujithcbe61d82009-02-09 13:27:12 +05301376static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301377{
1378 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1379 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1380
1381 switch (type) {
1382 case ATH9K_RESET_POWER_ON:
1383 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301384 case ATH9K_RESET_WARM:
1385 case ATH9K_RESET_COLD:
1386 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301387 default:
1388 return false;
1389 }
1390}
1391
Sujithcbe61d82009-02-09 13:27:12 +05301392static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301393 struct ath9k_channel *chan)
1394{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301395 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301396 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1397 return false;
1398 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301399 return false;
1400
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001401 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301402 return false;
1403
Sujith2660b812009-02-09 13:27:26 +05301404 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301405 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301406 ath9k_hw_set_rfmode(ah, chan);
1407
1408 return true;
1409}
1410
Sujithcbe61d82009-02-09 13:27:12 +05301411static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001412 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301413{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001414 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001415 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001416 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001417 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001418 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301419
1420 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1421 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001422 ath_print(common, ATH_DBG_QUEUE,
1423 "Transmit frames pending on "
1424 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301425 return false;
1426 }
1427 }
1428
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001429 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001430 ath_print(common, ATH_DBG_FATAL,
1431 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301432 return false;
1433 }
1434
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001435 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301436
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001437 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001438 if (r) {
1439 ath_print(common, ATH_DBG_FATAL,
1440 "Failed to set channel\n");
1441 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301442 }
1443
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001444 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001445 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301446 channel->max_antenna_gain * 2,
1447 channel->max_power * 2,
1448 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001449 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301450
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001451 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301452
1453 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1454 ath9k_hw_set_delta_slope(ah, chan);
1455
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001456 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301457
1458 if (!chan->oneTimeCalsDone)
1459 chan->oneTimeCalsDone = true;
1460
1461 return true;
1462}
1463
Sujithcbe61d82009-02-09 13:27:12 +05301464int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001465 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001466{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001467 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301469 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001470 u32 saveDefAntenna;
1471 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301472 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001473 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001474
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001475 ah->txchainmask = common->tx_chainmask;
1476 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001477
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001478 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001479 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001480
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301481 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482 ath9k_hw_getnf(ah, curchan);
1483
1484 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301485 (ah->chip_fullsleep != true) &&
1486 (ah->curchan != NULL) &&
1487 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001488 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301489 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301490 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1491 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001493 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301494 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001495 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001496 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497 }
1498 }
1499
1500 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1501 if (saveDefAntenna == 0)
1502 saveDefAntenna = 1;
1503
1504 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1505
Sujith46fe7822009-09-17 09:25:25 +05301506 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1507 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1508 tsf = ath9k_hw_gettsf64(ah);
1509
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510 saveLedState = REG_READ(ah, AR_CFG_LED) &
1511 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1512 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1513
1514 ath9k_hw_mark_phy_inactive(ah);
1515
Sujith05020d22010-03-17 14:25:23 +05301516 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001517 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1518 REG_WRITE(ah,
1519 AR9271_RESET_POWER_DOWN_CONTROL,
1520 AR9271_RADIO_RF_RST);
1521 udelay(50);
1522 }
1523
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001524 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001525 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001526 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001527 }
1528
Sujith05020d22010-03-17 14:25:23 +05301529 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001530 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1531 ah->htc_reset_init = false;
1532 REG_WRITE(ah,
1533 AR9271_RESET_POWER_DOWN_CONTROL,
1534 AR9271_GATE_MAC_CTL);
1535 udelay(50);
1536 }
1537
Sujith46fe7822009-09-17 09:25:25 +05301538 /* Restore TSF */
1539 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1540 ath9k_hw_settsf64(ah, tsf);
1541
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301542 if (AR_SREV_9280_10_OR_LATER(ah))
1543 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001544
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001545 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001546 if (r)
1547 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001548
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001549 /* Setup MFP options for CCMP */
1550 if (AR_SREV_9280_20_OR_LATER(ah)) {
1551 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1552 * frames when constructing CCMP AAD. */
1553 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1554 0xc7ff);
1555 ah->sw_mgmt_crypto = false;
1556 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1557 /* Disable hardware crypto for management frames */
1558 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1559 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1560 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1561 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1562 ah->sw_mgmt_crypto = true;
1563 } else
1564 ah->sw_mgmt_crypto = true;
1565
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001566 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1567 ath9k_hw_set_delta_slope(ah, chan);
1568
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001569 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301570 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001571
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001572 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1573 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001574 | macStaId1
1575 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301576 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301577 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301578 | ah->sta_id1_defaults);
1579 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001580
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001581 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001582
1583 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1584
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001585 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001586
1587 REG_WRITE(ah, AR_ISR, ~0);
1588
1589 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1590
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001591 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001592 if (r)
1593 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001594
1595 for (i = 0; i < AR_NUM_DCU; i++)
1596 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1597
Sujith2660b812009-02-09 13:27:26 +05301598 ah->intr_txqs = 0;
1599 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001600 ath9k_hw_resettxqueue(ah, i);
1601
Sujith2660b812009-02-09 13:27:26 +05301602 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001603 ath9k_hw_init_qos(ah);
1604
Sujith2660b812009-02-09 13:27:26 +05301605 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301606 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301607
Felix Fietkau0005baf2010-01-15 02:33:40 +01001608 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301610 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301611 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
1612 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
1613 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
1614 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
1615 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
1616 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
1617
1618 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
1619 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
1620
1621 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1622 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1623 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1624 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1625 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301626 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301627 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1628 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
1629 }
1630
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001631 REG_WRITE(ah, AR_STA_ID1,
1632 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1633
1634 ath9k_hw_set_dma(ah);
1635
1636 REG_WRITE(ah, AR_OBS, 8);
1637
Sujith0ce024c2009-12-14 14:57:00 +05301638 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1640 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1641 }
1642
1643 ath9k_hw_init_bb(ah, chan);
1644
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001645 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001646 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001647
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001648 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1650
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001651 /*
1652 * For big endian systems turn on swapping for descriptors
1653 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001654 if (AR_SREV_9100(ah)) {
1655 u32 mask;
1656 mask = REG_READ(ah, AR_CFG);
1657 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001658 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301659 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001660 } else {
1661 mask =
1662 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1663 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001664 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301665 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001666 }
1667 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001668 /* Configure AR9271 target WLAN */
1669 if (AR_SREV_9271(ah))
1670 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001671#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001672 else
1673 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001674#endif
1675 }
1676
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001677 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301678 ath9k_hw_btcoex_enable(ah);
1679
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001680 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001681}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001682EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001683
Sujithf1dc5602008-10-29 10:16:30 +05301684/************************/
1685/* Key Cache Management */
1686/************************/
1687
Sujithcbe61d82009-02-09 13:27:12 +05301688bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001689{
Sujithf1dc5602008-10-29 10:16:30 +05301690 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001691
Sujith2660b812009-02-09 13:27:26 +05301692 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001693 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1694 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001695 return false;
1696 }
1697
Sujithf1dc5602008-10-29 10:16:30 +05301698 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001699
Sujithf1dc5602008-10-29 10:16:30 +05301700 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1701 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1702 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1703 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1704 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1705 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1706 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1707 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1708
1709 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1710 u16 micentry = entry + 64;
1711
1712 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1713 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1714 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1715 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1716
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001717 }
1718
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001719 return true;
1720}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001721EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001722
Sujithcbe61d82009-02-09 13:27:12 +05301723bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001724{
Sujithf1dc5602008-10-29 10:16:30 +05301725 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726
Sujith2660b812009-02-09 13:27:26 +05301727 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001728 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1729 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001730 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001731 }
1732
Sujithf1dc5602008-10-29 10:16:30 +05301733 if (mac != NULL) {
1734 macHi = (mac[5] << 8) | mac[4];
1735 macLo = (mac[3] << 24) |
1736 (mac[2] << 16) |
1737 (mac[1] << 8) |
1738 mac[0];
1739 macLo >>= 1;
1740 macLo |= (macHi & 1) << 31;
1741 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301743 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001744 }
Sujithf1dc5602008-10-29 10:16:30 +05301745 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1746 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747
1748 return true;
1749}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001750EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001751
Sujithcbe61d82009-02-09 13:27:12 +05301752bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301753 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001754 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001755{
Sujith2660b812009-02-09 13:27:26 +05301756 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001757 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301758 u32 key0, key1, key2, key3, key4;
1759 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001760
Sujithf1dc5602008-10-29 10:16:30 +05301761 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001762 ath_print(common, ATH_DBG_FATAL,
1763 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301764 return false;
1765 }
1766
1767 switch (k->kv_type) {
1768 case ATH9K_CIPHER_AES_OCB:
1769 keyType = AR_KEYTABLE_TYPE_AES;
1770 break;
1771 case ATH9K_CIPHER_AES_CCM:
1772 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001773 ath_print(common, ATH_DBG_ANY,
1774 "AES-CCM not supported by mac rev 0x%x\n",
1775 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001776 return false;
1777 }
Sujithf1dc5602008-10-29 10:16:30 +05301778 keyType = AR_KEYTABLE_TYPE_CCM;
1779 break;
1780 case ATH9K_CIPHER_TKIP:
1781 keyType = AR_KEYTABLE_TYPE_TKIP;
1782 if (ATH9K_IS_MIC_ENABLED(ah)
1783 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001784 ath_print(common, ATH_DBG_ANY,
1785 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001786 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787 }
Sujithf1dc5602008-10-29 10:16:30 +05301788 break;
1789 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001790 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001791 ath_print(common, ATH_DBG_ANY,
1792 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301793 return false;
1794 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001795 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301796 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001797 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301798 keyType = AR_KEYTABLE_TYPE_104;
1799 else
1800 keyType = AR_KEYTABLE_TYPE_128;
1801 break;
1802 case ATH9K_CIPHER_CLR:
1803 keyType = AR_KEYTABLE_TYPE_CLR;
1804 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001805 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001806 ath_print(common, ATH_DBG_FATAL,
1807 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808 return false;
1809 }
Sujithf1dc5602008-10-29 10:16:30 +05301810
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001811 key0 = get_unaligned_le32(k->kv_val + 0);
1812 key1 = get_unaligned_le16(k->kv_val + 4);
1813 key2 = get_unaligned_le32(k->kv_val + 6);
1814 key3 = get_unaligned_le16(k->kv_val + 10);
1815 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001816 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301817 key4 &= 0xff;
1818
Jouni Malinen672903b2009-03-02 15:06:31 +02001819 /*
1820 * Note: Key cache registers access special memory area that requires
1821 * two 32-bit writes to actually update the values in the internal
1822 * memory. Consequently, the exact order and pairs used here must be
1823 * maintained.
1824 */
1825
Sujithf1dc5602008-10-29 10:16:30 +05301826 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1827 u16 micentry = entry + 64;
1828
Jouni Malinen672903b2009-03-02 15:06:31 +02001829 /*
1830 * Write inverted key[47:0] first to avoid Michael MIC errors
1831 * on frames that could be sent or received at the same time.
1832 * The correct key will be written in the end once everything
1833 * else is ready.
1834 */
Sujithf1dc5602008-10-29 10:16:30 +05301835 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1836 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001837
1838 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301839 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1840 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001841
1842 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301843 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1844 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001845
1846 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301847 (void) ath9k_hw_keysetmac(ah, entry, mac);
1848
Sujith2660b812009-02-09 13:27:26 +05301849 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001850 /*
1851 * TKIP uses two key cache entries:
1852 * Michael MIC TX/RX keys in the same key cache entry
1853 * (idx = main index + 64):
1854 * key0 [31:0] = RX key [31:0]
1855 * key1 [15:0] = TX key [31:16]
1856 * key1 [31:16] = reserved
1857 * key2 [31:0] = RX key [63:32]
1858 * key3 [15:0] = TX key [15:0]
1859 * key3 [31:16] = reserved
1860 * key4 [31:0] = TX key [63:32]
1861 */
Sujithf1dc5602008-10-29 10:16:30 +05301862 u32 mic0, mic1, mic2, mic3, mic4;
1863
1864 mic0 = get_unaligned_le32(k->kv_mic + 0);
1865 mic2 = get_unaligned_le32(k->kv_mic + 4);
1866 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1867 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1868 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001869
1870 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301871 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1872 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001873
1874 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301875 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1876 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001877
1878 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301879 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1880 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1881 AR_KEYTABLE_TYPE_CLR);
1882
1883 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001884 /*
1885 * TKIP uses four key cache entries (two for group
1886 * keys):
1887 * Michael MIC TX/RX keys are in different key cache
1888 * entries (idx = main index + 64 for TX and
1889 * main index + 32 + 96 for RX):
1890 * key0 [31:0] = TX/RX MIC key [31:0]
1891 * key1 [31:0] = reserved
1892 * key2 [31:0] = TX/RX MIC key [63:32]
1893 * key3 [31:0] = reserved
1894 * key4 [31:0] = reserved
1895 *
1896 * Upper layer code will call this function separately
1897 * for TX and RX keys when these registers offsets are
1898 * used.
1899 */
Sujithf1dc5602008-10-29 10:16:30 +05301900 u32 mic0, mic2;
1901
1902 mic0 = get_unaligned_le32(k->kv_mic + 0);
1903 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001904
1905 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301906 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1907 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001908
1909 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301910 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1911 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001912
1913 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301914 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1915 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1916 AR_KEYTABLE_TYPE_CLR);
1917 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001918
1919 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301920 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1921 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001922
1923 /*
1924 * Write the correct (un-inverted) key[47:0] last to enable
1925 * TKIP now that all other registers are set with correct
1926 * values.
1927 */
Sujithf1dc5602008-10-29 10:16:30 +05301928 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1929 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1930 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001931 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301932 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1933 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001934
1935 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301936 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1937 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001938
1939 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301940 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1941 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1942
Jouni Malinen672903b2009-03-02 15:06:31 +02001943 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301944 (void) ath9k_hw_keysetmac(ah, entry, mac);
1945 }
1946
Sujithf1dc5602008-10-29 10:16:30 +05301947 return true;
1948}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001949EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301950
Sujithcbe61d82009-02-09 13:27:12 +05301951bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301952{
Sujith2660b812009-02-09 13:27:26 +05301953 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301954 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1955 if (val & AR_KEYTABLE_VALID)
1956 return true;
1957 }
1958 return false;
1959}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001960EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301961
1962/******************************/
1963/* Power Management (Chipset) */
1964/******************************/
1965
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001966/*
1967 * Notify Power Mgt is disabled in self-generated frames.
1968 * If requested, force chip to sleep.
1969 */
Sujithcbe61d82009-02-09 13:27:12 +05301970static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301971{
1972 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1973 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001974 /*
1975 * Clear the RTC force wake bit to allow the
1976 * mac to go to sleep.
1977 */
Sujithf1dc5602008-10-29 10:16:30 +05301978 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1979 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001980 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301981 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1982
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001983 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301984 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301985 REG_CLR_BIT(ah, (AR_RTC_RESET),
1986 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301987 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001988}
1989
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001990/*
1991 * Notify Power Management is enabled in self-generating
1992 * frames. If request, set power mode of chip to
1993 * auto/normal. Duration in units of 128us (1/8 TU).
1994 */
Sujithcbe61d82009-02-09 13:27:12 +05301995static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001996{
Sujithf1dc5602008-10-29 10:16:30 +05301997 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1998 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301999 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002000
Sujithf1dc5602008-10-29 10:16:30 +05302001 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002002 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05302003 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2004 AR_RTC_FORCE_WAKE_ON_INT);
2005 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002006 /*
2007 * Clear the RTC force wake bit to allow the
2008 * mac to go to sleep.
2009 */
Sujithf1dc5602008-10-29 10:16:30 +05302010 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2011 AR_RTC_FORCE_WAKE_EN);
2012 }
2013 }
2014}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002015
Sujithcbe61d82009-02-09 13:27:12 +05302016static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302017{
2018 u32 val;
2019 int i;
2020
2021 if (setChip) {
2022 if ((REG_READ(ah, AR_RTC_STATUS) &
2023 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2024 if (ath9k_hw_set_reset_reg(ah,
2025 ATH9K_RESET_POWER_ON) != true) {
2026 return false;
2027 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04002028 if (!AR_SREV_9300_20_OR_LATER(ah))
2029 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302030 }
2031 if (AR_SREV_9100(ah))
2032 REG_SET_BIT(ah, AR_RTC_RESET,
2033 AR_RTC_RESET_EN);
2034
2035 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2036 AR_RTC_FORCE_WAKE_EN);
2037 udelay(50);
2038
2039 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2040 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2041 if (val == AR_RTC_STATUS_ON)
2042 break;
2043 udelay(50);
2044 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2045 AR_RTC_FORCE_WAKE_EN);
2046 }
2047 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002048 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2049 "Failed to wakeup in %uus\n",
2050 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302051 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002052 }
2053 }
2054
Sujithf1dc5602008-10-29 10:16:30 +05302055 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2056
2057 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002058}
2059
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002060bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302061{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002062 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302063 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302064 static const char *modes[] = {
2065 "AWAKE",
2066 "FULL-SLEEP",
2067 "NETWORK SLEEP",
2068 "UNDEFINED"
2069 };
Sujithf1dc5602008-10-29 10:16:30 +05302070
Gabor Juhoscbdec972009-07-24 17:27:22 +02002071 if (ah->power_mode == mode)
2072 return status;
2073
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002074 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2075 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302076
2077 switch (mode) {
2078 case ATH9K_PM_AWAKE:
2079 status = ath9k_hw_set_power_awake(ah, setChip);
2080 break;
2081 case ATH9K_PM_FULL_SLEEP:
2082 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302083 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302084 break;
2085 case ATH9K_PM_NETWORK_SLEEP:
2086 ath9k_set_power_network_sleep(ah, setChip);
2087 break;
2088 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002089 ath_print(common, ATH_DBG_FATAL,
2090 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302091 return false;
2092 }
Sujith2660b812009-02-09 13:27:26 +05302093 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302094
2095 return status;
2096}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002097EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302098
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002099/*
2100 * Helper for ASPM support.
2101 *
2102 * Disable PLL when in L0s as well as receiver clock when in L1.
2103 * This power saving option must be enabled through the SerDes.
2104 *
2105 * Programming the SerDes must go through the same 288 bit serial shift
2106 * register as the other analog registers. Hence the 9 writes.
2107 */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002108static void ar9002_hw_configpcipowersave(struct ath_hw *ah,
2109 int restore,
2110 int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302111{
Sujithf1dc5602008-10-29 10:16:30 +05302112 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302113 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302114
Sujith2660b812009-02-09 13:27:26 +05302115 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302116 return;
2117
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002118 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302119 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302120 return;
2121
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002122 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302123 if (!restore) {
2124 if (AR_SREV_9280_20_OR_LATER(ah)) {
2125 /*
2126 * AR9280 2.0 or later chips use SerDes values from the
2127 * initvals.h initialized depending on chipset during
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002128 * __ath9k_hw_init()
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302129 */
2130 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2131 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2132 INI_RA(&ah->iniPcieSerdes, i, 1));
2133 }
2134 } else if (AR_SREV_9280(ah) &&
2135 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2136 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2137 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302138
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302139 /* RX shut off when elecidle is asserted */
2140 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2141 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2142 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2143
2144 /* Shut off CLKREQ active in L1 */
2145 if (ah->config.pcie_clock_req)
2146 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2147 else
2148 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2149
2150 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2151 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2152 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2153
2154 /* Load the new settings */
2155 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2156
2157 } else {
2158 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2159 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2160
2161 /* RX shut off when elecidle is asserted */
2162 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2163 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2164 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2165
2166 /*
2167 * Ignore ah->ah_config.pcie_clock_req setting for
2168 * pre-AR9280 11n
2169 */
2170 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2171
2172 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2173 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2174 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2175
2176 /* Load the new settings */
2177 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302178 }
Sujithf1dc5602008-10-29 10:16:30 +05302179
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302180 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302181
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302182 /* set bit 19 to allow forcing of pcie core into L1 state */
2183 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302184
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302185 /* Several PCIe massages to ensure proper behaviour */
2186 if (ah->config.pcie_waen) {
2187 val = ah->config.pcie_waen;
2188 if (!power_off)
2189 val &= (~AR_WA_D3_L1_DISABLE);
2190 } else {
2191 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2192 AR_SREV_9287(ah)) {
2193 val = AR9285_WA_DEFAULT;
2194 if (!power_off)
2195 val &= (~AR_WA_D3_L1_DISABLE);
2196 } else if (AR_SREV_9280(ah)) {
2197 /*
2198 * On AR9280 chips bit 22 of 0x4004 needs to be
2199 * set otherwise card may disappear.
2200 */
2201 val = AR9280_WA_DEFAULT;
2202 if (!power_off)
2203 val &= (~AR_WA_D3_L1_DISABLE);
2204 } else
2205 val = AR_WA_DEFAULT;
2206 }
Sujithf1dc5602008-10-29 10:16:30 +05302207
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302208 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302209 }
2210
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302211 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002212 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302213 * Set PCIe workaround bits
2214 * bit 14 in WA register (disable L1) should only
2215 * be set when device enters D3 and be cleared
2216 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002217 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302218 if (ah->config.pcie_waen) {
2219 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2220 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2221 } else {
2222 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2223 AR_SREV_9287(ah)) &&
2224 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2225 (AR_SREV_9280(ah) &&
2226 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2227 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2228 }
2229 }
Sujithf1dc5602008-10-29 10:16:30 +05302230 }
2231}
2232
2233/**********************/
2234/* Interrupt Handling */
2235/**********************/
2236
Sujithcbe61d82009-02-09 13:27:12 +05302237bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238{
2239 u32 host_isr;
2240
2241 if (AR_SREV_9100(ah))
2242 return true;
2243
2244 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2245 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2246 return true;
2247
2248 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2249 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2250 && (host_isr != AR_INTR_SPURIOUS))
2251 return true;
2252
2253 return false;
2254}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002255EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256
Sujithcbe61d82009-02-09 13:27:12 +05302257bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002258{
2259 u32 isr = 0;
2260 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302261 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002262 u32 sync_cause = 0;
2263 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002264 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002265
2266 if (!AR_SREV_9100(ah)) {
2267 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2268 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2269 == AR_RTC_STATUS_ON) {
2270 isr = REG_READ(ah, AR_ISR);
2271 }
2272 }
2273
Sujithf1dc5602008-10-29 10:16:30 +05302274 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2275 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002276
2277 *masked = 0;
2278
2279 if (!isr && !sync_cause)
2280 return false;
2281 } else {
2282 *masked = 0;
2283 isr = REG_READ(ah, AR_ISR);
2284 }
2285
2286 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287 if (isr & AR_ISR_BCNMISC) {
2288 u32 isr2;
2289 isr2 = REG_READ(ah, AR_ISR_S2);
2290 if (isr2 & AR_ISR_S2_TIM)
2291 mask2 |= ATH9K_INT_TIM;
2292 if (isr2 & AR_ISR_S2_DTIM)
2293 mask2 |= ATH9K_INT_DTIM;
2294 if (isr2 & AR_ISR_S2_DTIMSYNC)
2295 mask2 |= ATH9K_INT_DTIMSYNC;
2296 if (isr2 & (AR_ISR_S2_CABEND))
2297 mask2 |= ATH9K_INT_CABEND;
2298 if (isr2 & AR_ISR_S2_GTT)
2299 mask2 |= ATH9K_INT_GTT;
2300 if (isr2 & AR_ISR_S2_CST)
2301 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302302 if (isr2 & AR_ISR_S2_TSFOOR)
2303 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002304 }
2305
2306 isr = REG_READ(ah, AR_ISR_RAC);
2307 if (isr == 0xffffffff) {
2308 *masked = 0;
2309 return false;
2310 }
2311
2312 *masked = isr & ATH9K_INT_COMMON;
2313
Sujith0ce024c2009-12-14 14:57:00 +05302314 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002315 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2316 *masked |= ATH9K_INT_RX;
2317 }
2318
2319 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2320 *masked |= ATH9K_INT_RX;
2321 if (isr &
2322 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2323 AR_ISR_TXEOL)) {
2324 u32 s0_s, s1_s;
2325
2326 *masked |= ATH9K_INT_TX;
2327
2328 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302329 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2330 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331
2332 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302333 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2334 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002335 }
2336
2337 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002338 ath_print(common, ATH_DBG_INTERRUPT,
2339 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002340 }
2341
2342 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302343 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002344 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2345 if (isr5 & AR_ISR_S5_TIM_TIMER)
2346 *masked |= ATH9K_INT_TIM_TIMER;
2347 }
2348 }
2349
2350 *masked |= mask2;
2351 }
Sujithf1dc5602008-10-29 10:16:30 +05302352
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353 if (AR_SREV_9100(ah))
2354 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302355
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302356 if (isr & AR_ISR_GENTMR) {
2357 u32 s5_s;
2358
2359 s5_s = REG_READ(ah, AR_ISR_S5_S);
2360 if (isr & AR_ISR_GENTMR) {
2361 ah->intr_gen_timer_trigger =
2362 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2363
2364 ah->intr_gen_timer_thresh =
2365 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2366
2367 if (ah->intr_gen_timer_trigger)
2368 *masked |= ATH9K_INT_GENTIMER;
2369
2370 }
2371 }
2372
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002373 if (sync_cause) {
2374 fatal_int =
2375 (sync_cause &
2376 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2377 ? true : false;
2378
2379 if (fatal_int) {
2380 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002381 ath_print(common, ATH_DBG_ANY,
2382 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002383 }
2384 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002385 ath_print(common, ATH_DBG_ANY,
2386 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002387 }
Steven Luoa89bff92009-04-12 02:57:54 -07002388 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 }
2390 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002391 ath_print(common, ATH_DBG_INTERRUPT,
2392 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2394 REG_WRITE(ah, AR_RC, 0);
2395 *masked |= ATH9K_INT_FATAL;
2396 }
2397 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002398 ath_print(common, ATH_DBG_INTERRUPT,
2399 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002400 }
2401
2402 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2403 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2404 }
Sujithf1dc5602008-10-29 10:16:30 +05302405
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002406 return true;
2407}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002408EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409
Sujithcbe61d82009-02-09 13:27:12 +05302410enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411{
Pavel Roskin152d5302010-03-31 18:05:37 -04002412 enum ath9k_int omask = ah->imask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002413 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302414 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002415 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002416
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002417 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002418
2419 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002420 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002421 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2422 (void) REG_READ(ah, AR_IER);
2423 if (!AR_SREV_9100(ah)) {
2424 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2425 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2426
2427 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2428 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2429 }
2430 }
2431
2432 mask = ints & ATH9K_INT_COMMON;
2433 mask2 = 0;
2434
2435 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302436 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002437 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302438 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002439 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302440 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002441 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302442 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443 mask |= AR_IMR_TXEOL;
2444 }
2445 if (ints & ATH9K_INT_RX) {
2446 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302447 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002448 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2449 else
2450 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302451 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002452 mask |= AR_IMR_GENTMR;
2453 }
2454
2455 if (ints & (ATH9K_INT_BMISC)) {
2456 mask |= AR_IMR_BCNMISC;
2457 if (ints & ATH9K_INT_TIM)
2458 mask2 |= AR_IMR_S2_TIM;
2459 if (ints & ATH9K_INT_DTIM)
2460 mask2 |= AR_IMR_S2_DTIM;
2461 if (ints & ATH9K_INT_DTIMSYNC)
2462 mask2 |= AR_IMR_S2_DTIMSYNC;
2463 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302464 mask2 |= AR_IMR_S2_CABEND;
2465 if (ints & ATH9K_INT_TSFOOR)
2466 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002467 }
2468
2469 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2470 mask |= AR_IMR_BCNMISC;
2471 if (ints & ATH9K_INT_GTT)
2472 mask2 |= AR_IMR_S2_GTT;
2473 if (ints & ATH9K_INT_CST)
2474 mask2 |= AR_IMR_S2_CST;
2475 }
2476
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002477 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002478 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002479 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2480 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2481 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2482 ah->imrs2_reg |= mask2;
2483 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484
Sujith60b67f52008-08-07 10:52:38 +05302485 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002486 if (ints & ATH9K_INT_TIM_TIMER)
2487 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2488 else
2489 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2490 }
2491
2492 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002493 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002494 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2495 if (!AR_SREV_9100(ah)) {
2496 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2497 AR_INTR_MAC_IRQ);
2498 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2499
2500
2501 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2502 AR_INTR_SYNC_DEFAULT);
2503 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2504 AR_INTR_SYNC_DEFAULT);
2505 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002506 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2507 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002508 }
2509
2510 return omask;
2511}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002512EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513
Sujithf1dc5602008-10-29 10:16:30 +05302514/*******************/
2515/* Beacon Handling */
2516/*******************/
2517
Sujithcbe61d82009-02-09 13:27:12 +05302518void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002519{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002520 int flags = 0;
2521
Sujith2660b812009-02-09 13:27:26 +05302522 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002523
Sujith2660b812009-02-09 13:27:26 +05302524 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002525 case NL80211_IFTYPE_STATION:
2526 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002527 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2528 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2529 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2530 flags |= AR_TBTT_TIMER_EN;
2531 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002532 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002533 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002534 REG_SET_BIT(ah, AR_TXCFG,
2535 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2536 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2537 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302538 (ah->atim_window ? ah->
2539 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002540 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002541 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002542 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2543 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2544 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302545 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302546 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002547 REG_WRITE(ah, AR_NEXT_SWBA,
2548 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302549 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302550 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002551 flags |=
2552 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2553 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002554 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002555 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
2556 "%s: unsupported opmode: %d\n",
2557 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002558 return;
2559 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002560 }
2561
2562 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2563 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2564 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
2565 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
2566
2567 beacon_period &= ~ATH9K_BEACON_ENA;
2568 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002569 ath9k_hw_reset_tsf(ah);
2570 }
2571
2572 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2573}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002574EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002575
Sujithcbe61d82009-02-09 13:27:12 +05302576void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302577 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578{
2579 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302580 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002581 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002582
2583 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2584
2585 REG_WRITE(ah, AR_BEACON_PERIOD,
2586 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2587 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
2588 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2589
2590 REG_RMW_FIELD(ah, AR_RSSI_THR,
2591 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2592
2593 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
2594
2595 if (bs->bs_sleepduration > beaconintval)
2596 beaconintval = bs->bs_sleepduration;
2597
2598 dtimperiod = bs->bs_dtimperiod;
2599 if (bs->bs_sleepduration > dtimperiod)
2600 dtimperiod = bs->bs_sleepduration;
2601
2602 if (beaconintval == dtimperiod)
2603 nextTbtt = bs->bs_nextdtim;
2604 else
2605 nextTbtt = bs->bs_nexttbtt;
2606
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002607 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2608 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
2609 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
2610 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002611
2612 REG_WRITE(ah, AR_NEXT_DTIM,
2613 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2614 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2615
2616 REG_WRITE(ah, AR_SLEEP1,
2617 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2618 | AR_SLEEP1_ASSUME_DTIM);
2619
Sujith60b67f52008-08-07 10:52:38 +05302620 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002621 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2622 else
2623 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2624
2625 REG_WRITE(ah, AR_SLEEP2,
2626 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2627
2628 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2629 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2630
2631 REG_SET_BIT(ah, AR_TIMER_MODE,
2632 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2633 AR_DTIM_TIMER_EN);
2634
Sujith4af9cf42009-02-12 10:06:47 +05302635 /* TSF Out of Range Threshold */
2636 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002637}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002638EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002639
Sujithf1dc5602008-10-29 10:16:30 +05302640/*******************/
2641/* HW Capabilities */
2642/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002643
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002644int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002645{
Sujith2660b812009-02-09 13:27:26 +05302646 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002647 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002648 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002649 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002650
Sujithf1dc5602008-10-29 10:16:30 +05302651 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002652
Sujithf74df6f2009-02-09 13:27:24 +05302653 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002654 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302655
Sujithf74df6f2009-02-09 13:27:24 +05302656 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302657 if (AR_SREV_9285_10_OR_LATER(ah))
2658 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002659 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302660
Sujithf74df6f2009-02-09 13:27:24 +05302661 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302662
Sujith2660b812009-02-09 13:27:26 +05302663 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302664 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002665 if (regulatory->current_rd == 0x64 ||
2666 regulatory->current_rd == 0x65)
2667 regulatory->current_rd += 5;
2668 else if (regulatory->current_rd == 0x41)
2669 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002670 ath_print(common, ATH_DBG_REGULATORY,
2671 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002672 }
Sujithdc2222a2008-08-14 13:26:55 +05302673
Sujithf74df6f2009-02-09 13:27:24 +05302674 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002675 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2676 ath_print(common, ATH_DBG_FATAL,
2677 "no band has been marked as supported in EEPROM.\n");
2678 return -EINVAL;
2679 }
2680
Sujithf1dc5602008-10-29 10:16:30 +05302681 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002682
Sujithf1dc5602008-10-29 10:16:30 +05302683 if (eeval & AR5416_OPFLAGS_11A) {
2684 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302685 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302686 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2687 set_bit(ATH9K_MODE_11NA_HT20,
2688 pCap->wireless_modes);
2689 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2690 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2691 pCap->wireless_modes);
2692 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2693 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002694 }
2695 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002696 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002697
Sujithf1dc5602008-10-29 10:16:30 +05302698 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302699 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302700 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302701 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2702 set_bit(ATH9K_MODE_11NG_HT20,
2703 pCap->wireless_modes);
2704 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2705 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2706 pCap->wireless_modes);
2707 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2708 pCap->wireless_modes);
2709 }
2710 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002711 }
Sujithf1dc5602008-10-29 10:16:30 +05302712
Sujithf74df6f2009-02-09 13:27:24 +05302713 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002714 /*
2715 * For AR9271 we will temporarilly uses the rx chainmax as read from
2716 * the EEPROM.
2717 */
Sujith8147f5d2009-02-20 15:13:23 +05302718 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002719 !(eeval & AR5416_OPFLAGS_11A) &&
2720 !(AR_SREV_9271(ah)))
2721 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302722 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2723 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002724 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302725 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302726
Sujithd535a422009-02-09 13:27:06 +05302727 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302728 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302729
2730 pCap->low_2ghz_chan = 2312;
2731 pCap->high_2ghz_chan = 2732;
2732
2733 pCap->low_5ghz_chan = 4920;
2734 pCap->high_5ghz_chan = 6100;
2735
2736 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2737 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2738 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2739
2740 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2741 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2742 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2743
Sujith2660b812009-02-09 13:27:26 +05302744 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302745 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2746 else
2747 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2748
2749 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2750 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2751 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2752 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2753
2754 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2755 pCap->total_queues =
2756 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2757 else
2758 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2759
2760 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2761 pCap->keycache_size =
2762 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2763 else
2764 pCap->keycache_size = AR_KEYTABLE_SIZE;
2765
2766 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002767
2768 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2769 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2770 else
2771 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302772
Sujith5b5fa352010-03-17 14:25:15 +05302773 if (AR_SREV_9271(ah))
2774 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2775 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302776 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2777 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302778 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2779 else
2780 pCap->num_gpio_pins = AR_NUM_GPIO;
2781
Sujithf1dc5602008-10-29 10:16:30 +05302782 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2783 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2784 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2785 } else {
2786 pCap->rts_aggr_limit = (8 * 1024);
2787 }
2788
2789 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2790
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302791#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302792 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2793 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2794 ah->rfkill_gpio =
2795 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2796 ah->rfkill_polarity =
2797 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302798
2799 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2800 }
2801#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302802 if (AR_SREV_9271(ah))
2803 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2804 else
2805 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302806
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302807 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302808 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2809 else
2810 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2811
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002812 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302813 pCap->reg_cap =
2814 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2815 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2816 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2817 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2818 } else {
2819 pCap->reg_cap =
2820 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2821 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2822 }
2823
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302824 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2825 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2826 AR_SREV_5416(ah))
2827 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302828
2829 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302830 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302831 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302832 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302833
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302834 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002835 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002836 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2837 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302838
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302839 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002840 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2841 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302842 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002843 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302844 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302845 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002846 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302847 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002848
2849 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002850}
2851
Sujithcbe61d82009-02-09 13:27:12 +05302852bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302853 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002854{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002855 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302856 switch (type) {
2857 case ATH9K_CAP_CIPHER:
2858 switch (capability) {
2859 case ATH9K_CIPHER_AES_CCM:
2860 case ATH9K_CIPHER_AES_OCB:
2861 case ATH9K_CIPHER_TKIP:
2862 case ATH9K_CIPHER_WEP:
2863 case ATH9K_CIPHER_MIC:
2864 case ATH9K_CIPHER_CLR:
2865 return true;
2866 default:
2867 return false;
2868 }
2869 case ATH9K_CAP_TKIP_MIC:
2870 switch (capability) {
2871 case 0:
2872 return true;
2873 case 1:
Sujith2660b812009-02-09 13:27:26 +05302874 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302875 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2876 false;
2877 }
2878 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302879 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302880 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302881 case ATH9K_CAP_MCAST_KEYSRCH:
2882 switch (capability) {
2883 case 0:
2884 return true;
2885 case 1:
2886 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2887 return false;
2888 } else {
Sujith2660b812009-02-09 13:27:26 +05302889 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302890 AR_STA_ID1_MCAST_KSRCH) ? true :
2891 false;
2892 }
2893 }
2894 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302895 case ATH9K_CAP_TXPOW:
2896 switch (capability) {
2897 case 0:
2898 return 0;
2899 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002900 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302901 return 0;
2902 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002903 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302904 return 0;
2905 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002906 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302907 return 0;
2908 }
2909 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302910 case ATH9K_CAP_DS:
2911 return (AR_SREV_9280_20_OR_LATER(ah) &&
2912 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2913 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302914 default:
2915 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002916 }
Sujithf1dc5602008-10-29 10:16:30 +05302917}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002918EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002919
Sujithcbe61d82009-02-09 13:27:12 +05302920bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302921 u32 capability, u32 setting, int *status)
2922{
Sujithf1dc5602008-10-29 10:16:30 +05302923 switch (type) {
2924 case ATH9K_CAP_TKIP_MIC:
2925 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302926 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302927 AR_STA_ID1_CRPT_MIC_ENABLE;
2928 else
Sujith2660b812009-02-09 13:27:26 +05302929 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302930 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2931 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302932 case ATH9K_CAP_MCAST_KEYSRCH:
2933 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302934 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302935 else
Sujith2660b812009-02-09 13:27:26 +05302936 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302937 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302938 default:
2939 return false;
2940 }
2941}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002942EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302943
2944/****************************/
2945/* GPIO / RFKILL / Antennae */
2946/****************************/
2947
Sujithcbe61d82009-02-09 13:27:12 +05302948static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302949 u32 gpio, u32 type)
2950{
2951 int addr;
2952 u32 gpio_shift, tmp;
2953
2954 if (gpio > 11)
2955 addr = AR_GPIO_OUTPUT_MUX3;
2956 else if (gpio > 5)
2957 addr = AR_GPIO_OUTPUT_MUX2;
2958 else
2959 addr = AR_GPIO_OUTPUT_MUX1;
2960
2961 gpio_shift = (gpio % 6) * 5;
2962
2963 if (AR_SREV_9280_20_OR_LATER(ah)
2964 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2965 REG_RMW(ah, addr, (type << gpio_shift),
2966 (0x1f << gpio_shift));
2967 } else {
2968 tmp = REG_READ(ah, addr);
2969 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2970 tmp &= ~(0x1f << gpio_shift);
2971 tmp |= (type << gpio_shift);
2972 REG_WRITE(ah, addr, tmp);
2973 }
2974}
2975
Sujithcbe61d82009-02-09 13:27:12 +05302976void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302977{
2978 u32 gpio_shift;
2979
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002980 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302981
2982 gpio_shift = gpio << 1;
2983
2984 REG_RMW(ah,
2985 AR_GPIO_OE_OUT,
2986 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2987 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2988}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002989EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302990
Sujithcbe61d82009-02-09 13:27:12 +05302991u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302992{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302993#define MS_REG_READ(x, y) \
2994 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2995
Sujith2660b812009-02-09 13:27:26 +05302996 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302997 return 0xffffffff;
2998
Felix Fietkau783dfca2010-04-15 17:38:11 -04002999 if (AR_SREV_9300_20_OR_LATER(ah))
3000 return MS_REG_READ(AR9300, gpio) != 0;
3001 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05303002 return MS_REG_READ(AR9271, gpio) != 0;
3003 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303004 return MS_REG_READ(AR9287, gpio) != 0;
3005 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303006 return MS_REG_READ(AR9285, gpio) != 0;
3007 else if (AR_SREV_9280_10_OR_LATER(ah))
3008 return MS_REG_READ(AR928X, gpio) != 0;
3009 else
3010 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303011}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003012EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303013
Sujithcbe61d82009-02-09 13:27:12 +05303014void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303015 u32 ah_signal_type)
3016{
3017 u32 gpio_shift;
3018
3019 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3020
3021 gpio_shift = 2 * gpio;
3022
3023 REG_RMW(ah,
3024 AR_GPIO_OE_OUT,
3025 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3026 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3027}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003028EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303029
Sujithcbe61d82009-02-09 13:27:12 +05303030void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303031{
Sujith5b5fa352010-03-17 14:25:15 +05303032 if (AR_SREV_9271(ah))
3033 val = ~val;
3034
Sujithf1dc5602008-10-29 10:16:30 +05303035 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3036 AR_GPIO_BIT(gpio));
3037}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003038EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303039
Sujithcbe61d82009-02-09 13:27:12 +05303040u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303041{
3042 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3043}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003044EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303045
Sujithcbe61d82009-02-09 13:27:12 +05303046void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303047{
3048 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3049}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003050EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303051
Sujithf1dc5602008-10-29 10:16:30 +05303052/*********************/
3053/* General Operation */
3054/*********************/
3055
Sujithcbe61d82009-02-09 13:27:12 +05303056u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303057{
3058 u32 bits = REG_READ(ah, AR_RX_FILTER);
3059 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3060
3061 if (phybits & AR_PHY_ERR_RADAR)
3062 bits |= ATH9K_RX_FILTER_PHYRADAR;
3063 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3064 bits |= ATH9K_RX_FILTER_PHYERR;
3065
3066 return bits;
3067}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003068EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303069
Sujithcbe61d82009-02-09 13:27:12 +05303070void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303071{
3072 u32 phybits;
3073
Sujith7ea310b2009-09-03 12:08:43 +05303074 REG_WRITE(ah, AR_RX_FILTER, bits);
3075
Sujithf1dc5602008-10-29 10:16:30 +05303076 phybits = 0;
3077 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3078 phybits |= AR_PHY_ERR_RADAR;
3079 if (bits & ATH9K_RX_FILTER_PHYERR)
3080 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3081 REG_WRITE(ah, AR_PHY_ERR, phybits);
3082
3083 if (phybits)
3084 REG_WRITE(ah, AR_RXCFG,
3085 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3086 else
3087 REG_WRITE(ah, AR_RXCFG,
3088 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3089}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003090EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303091
Sujithcbe61d82009-02-09 13:27:12 +05303092bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303093{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303094 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3095 return false;
3096
3097 ath9k_hw_init_pll(ah, NULL);
3098 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303099}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003100EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303101
Sujithcbe61d82009-02-09 13:27:12 +05303102bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303103{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003104 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303105 return false;
3106
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303107 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3108 return false;
3109
3110 ath9k_hw_init_pll(ah, NULL);
3111 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303112}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003113EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303114
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003115void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303116{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003117 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303118 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003119 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303120
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003121 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303122
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003123 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003124 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003125 channel->max_antenna_gain * 2,
3126 channel->max_power * 2,
3127 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003128 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303129}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003130EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303131
Sujithcbe61d82009-02-09 13:27:12 +05303132void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303133{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003134 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303135}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003136EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303137
Sujithcbe61d82009-02-09 13:27:12 +05303138void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303139{
Sujith2660b812009-02-09 13:27:26 +05303140 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303141}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003142EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303143
Sujithcbe61d82009-02-09 13:27:12 +05303144void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303145{
3146 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3147 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3148}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003149EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303150
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003151void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303152{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003153 struct ath_common *common = ath9k_hw_common(ah);
3154
3155 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3156 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3157 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303158}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003159EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303160
Sujithcbe61d82009-02-09 13:27:12 +05303161u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303162{
3163 u64 tsf;
3164
3165 tsf = REG_READ(ah, AR_TSF_U32);
3166 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3167
3168 return tsf;
3169}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003170EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303171
Sujithcbe61d82009-02-09 13:27:12 +05303172void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003173{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003174 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003175 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003176}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003177EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003178
Sujithcbe61d82009-02-09 13:27:12 +05303179void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303180{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003181 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3182 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003183 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3184 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003185
Sujithf1dc5602008-10-29 10:16:30 +05303186 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003187}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003188EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003189
Sujith54e4cec2009-08-07 09:45:09 +05303190void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003191{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003192 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303193 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003194 else
Sujith2660b812009-02-09 13:27:26 +05303195 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003196}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003197EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003198
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003199/*
3200 * Extend 15-bit time stamp from rx descriptor to
3201 * a full 64-bit TSF using the current h/w TSF.
3202*/
3203u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3204{
3205 u64 tsf;
3206
3207 tsf = ath9k_hw_gettsf64(ah);
3208 if ((tsf & 0x7fff) < rstamp)
3209 tsf -= 0x8000;
3210 return (tsf & ~0x7fff) | rstamp;
3211}
3212EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3213
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003214void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003215{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003216 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303217 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003218
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003219 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303220 macmode = AR_2040_JOINED_RX_CLEAR;
3221 else
3222 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003223
Sujithf1dc5602008-10-29 10:16:30 +05303224 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003225}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303226
3227/* HW Generic timers configuration */
3228
3229static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3230{
3231 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3232 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3233 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3234 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3235 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3236 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3237 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3238 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3239 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3240 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3241 AR_NDP2_TIMER_MODE, 0x0002},
3242 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3243 AR_NDP2_TIMER_MODE, 0x0004},
3244 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3245 AR_NDP2_TIMER_MODE, 0x0008},
3246 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3247 AR_NDP2_TIMER_MODE, 0x0010},
3248 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3249 AR_NDP2_TIMER_MODE, 0x0020},
3250 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3251 AR_NDP2_TIMER_MODE, 0x0040},
3252 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3253 AR_NDP2_TIMER_MODE, 0x0080}
3254};
3255
3256/* HW generic timer primitives */
3257
3258/* compute and clear index of rightmost 1 */
3259static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3260{
3261 u32 b;
3262
3263 b = *mask;
3264 b &= (0-b);
3265 *mask &= ~b;
3266 b *= debruijn32;
3267 b >>= 27;
3268
3269 return timer_table->gen_timer_index[b];
3270}
3271
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303272u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303273{
3274 return REG_READ(ah, AR_TSF_L32);
3275}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003276EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303277
3278struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3279 void (*trigger)(void *),
3280 void (*overflow)(void *),
3281 void *arg,
3282 u8 timer_index)
3283{
3284 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3285 struct ath_gen_timer *timer;
3286
3287 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3288
3289 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003290 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3291 "Failed to allocate memory"
3292 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303293 return NULL;
3294 }
3295
3296 /* allocate a hardware generic timer slot */
3297 timer_table->timers[timer_index] = timer;
3298 timer->index = timer_index;
3299 timer->trigger = trigger;
3300 timer->overflow = overflow;
3301 timer->arg = arg;
3302
3303 return timer;
3304}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003305EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303306
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003307void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3308 struct ath_gen_timer *timer,
3309 u32 timer_next,
3310 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303311{
3312 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3313 u32 tsf;
3314
3315 BUG_ON(!timer_period);
3316
3317 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3318
3319 tsf = ath9k_hw_gettsf32(ah);
3320
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003321 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3322 "curent tsf %x period %x"
3323 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303324
3325 /*
3326 * Pull timer_next forward if the current TSF already passed it
3327 * because of software latency
3328 */
3329 if (timer_next < tsf)
3330 timer_next = tsf + timer_period;
3331
3332 /*
3333 * Program generic timer registers
3334 */
3335 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3336 timer_next);
3337 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3338 timer_period);
3339 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3340 gen_tmr_configuration[timer->index].mode_mask);
3341
3342 /* Enable both trigger and thresh interrupt masks */
3343 REG_SET_BIT(ah, AR_IMR_S5,
3344 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3345 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303346}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003347EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303348
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003349void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303350{
3351 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3352
3353 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3354 (timer->index >= ATH_MAX_GEN_TIMER)) {
3355 return;
3356 }
3357
3358 /* Clear generic timer enable bits. */
3359 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3360 gen_tmr_configuration[timer->index].mode_mask);
3361
3362 /* Disable both trigger and thresh interrupt masks */
3363 REG_CLR_BIT(ah, AR_IMR_S5,
3364 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3365 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3366
3367 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303368}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003369EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303370
3371void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3372{
3373 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3374
3375 /* free the hardware generic timer slot */
3376 timer_table->timers[timer->index] = NULL;
3377 kfree(timer);
3378}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003379EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303380
3381/*
3382 * Generic Timer Interrupts handling
3383 */
3384void ath_gen_timer_isr(struct ath_hw *ah)
3385{
3386 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3387 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003388 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303389 u32 trigger_mask, thresh_mask, index;
3390
3391 /* get hardware generic timer interrupt status */
3392 trigger_mask = ah->intr_gen_timer_trigger;
3393 thresh_mask = ah->intr_gen_timer_thresh;
3394 trigger_mask &= timer_table->timer_mask.val;
3395 thresh_mask &= timer_table->timer_mask.val;
3396
3397 trigger_mask &= ~thresh_mask;
3398
3399 while (thresh_mask) {
3400 index = rightmost_index(timer_table, &thresh_mask);
3401 timer = timer_table->timers[index];
3402 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003403 ath_print(common, ATH_DBG_HWTIMER,
3404 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303405 timer->overflow(timer->arg);
3406 }
3407
3408 while (trigger_mask) {
3409 index = rightmost_index(timer_table, &trigger_mask);
3410 timer = timer_table->timers[index];
3411 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003412 ath_print(common, ATH_DBG_HWTIMER,
3413 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303414 timer->trigger(timer->arg);
3415 }
3416}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003417EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003418
Sujith05020d22010-03-17 14:25:23 +05303419/********/
3420/* HTC */
3421/********/
3422
3423void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3424{
3425 ah->htc_reset_init = true;
3426}
3427EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3428
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003429static struct {
3430 u32 version;
3431 const char * name;
3432} ath_mac_bb_names[] = {
3433 /* Devices with external radios */
3434 { AR_SREV_VERSION_5416_PCI, "5416" },
3435 { AR_SREV_VERSION_5416_PCIE, "5418" },
3436 { AR_SREV_VERSION_9100, "9100" },
3437 { AR_SREV_VERSION_9160, "9160" },
3438 /* Single-chip solutions */
3439 { AR_SREV_VERSION_9280, "9280" },
3440 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003441 { AR_SREV_VERSION_9287, "9287" },
3442 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003443};
3444
3445/* For devices with external radios */
3446static struct {
3447 u16 version;
3448 const char * name;
3449} ath_rf_names[] = {
3450 { 0, "5133" },
3451 { AR_RAD5133_SREV_MAJOR, "5133" },
3452 { AR_RAD5122_SREV_MAJOR, "5122" },
3453 { AR_RAD2133_SREV_MAJOR, "2133" },
3454 { AR_RAD2122_SREV_MAJOR, "2122" }
3455};
3456
3457/*
3458 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3459 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003460static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003461{
3462 int i;
3463
3464 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3465 if (ath_mac_bb_names[i].version == mac_bb_version) {
3466 return ath_mac_bb_names[i].name;
3467 }
3468 }
3469
3470 return "????";
3471}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003472
3473/*
3474 * Return the RF name. "????" is returned if the RF is unknown.
3475 * Used for devices with external radios.
3476 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003477static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003478{
3479 int i;
3480
3481 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3482 if (ath_rf_names[i].version == rf_version) {
3483 return ath_rf_names[i].name;
3484 }
3485 }
3486
3487 return "????";
3488}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003489
3490void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3491{
3492 int used;
3493
3494 /* chipsets >= AR9280 are single-chip */
3495 if (AR_SREV_9280_10_OR_LATER(ah)) {
3496 used = snprintf(hw_name, len,
3497 "Atheros AR%s Rev:%x",
3498 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3499 ah->hw_version.macRev);
3500 }
3501 else {
3502 used = snprintf(hw_name, len,
3503 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3504 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3505 ah->hw_version.macRev,
3506 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3507 AR_RADIO_SREV_MAJOR)),
3508 ah->hw_version.phyRev);
3509 }
3510
3511 hw_name[used] = '\0';
3512}
3513EXPORT_SYMBOL(ath9k_hw_name);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003514
3515/* Sets up the AR5008/AR9001/AR9002 hardware familiy callbacks */
3516static void ar9002_hw_attach_ops(struct ath_hw *ah)
3517{
3518 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3519 struct ath_hw_ops *ops = ath9k_hw_ops(ah);
3520
3521 priv_ops->init_cal_settings = ar9002_hw_init_cal_settings;
3522 priv_ops->init_mode_regs = ar9002_hw_init_mode_regs;
3523 priv_ops->macversion_supported = ar9002_hw_macversion_supported;
3524
3525 ops->config_pci_powersave = ar9002_hw_configpcipowersave;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003526
3527 if (AR_SREV_9280_10_OR_LATER(ah))
3528 ar9002_hw_attach_phy_ops(ah);
3529 else
3530 ar5008_hw_attach_phy_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003531}