blob: c8a9dfab1fee2ea4778046b186428ba3f014e054 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040019#include <linux/module.h>
Felix Fietkau09d8e312013-11-18 20:14:43 +010020#include <linux/time.h>
Felix Fietkauc67ce332013-12-14 18:03:38 +010021#include <linux/bitops.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070022#include <asm/unaligned.h>
23
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070024#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040025#include "hw-ops.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040026#include "ar9003_mac.h"
Sujith Manoharanf4701b52012-02-22 12:41:18 +053027#include "ar9003_mci.h"
Sujith Manoharan362cd032012-09-16 08:06:36 +053028#include "ar9003_phy.h"
Ben Greear462e58f2012-04-12 10:04:00 -070029#include "debug.h"
30#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070031
Sujithcbe61d82009-02-09 13:27:12 +053032static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040034MODULE_AUTHOR("Atheros Communications");
35MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
36MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
37MODULE_LICENSE("Dual BSD/GPL");
38
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020039static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053040{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020041 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaue4744ec2013-10-11 23:31:01 +020042 struct ath9k_channel *chan = ah->curchan;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020043 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053044
Felix Fietkau087b6ff2011-07-09 11:12:49 +070045 /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
46 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
47 clockrate = 117;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020048 else if (!chan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020049 clockrate = ATH9K_CLOCK_RATE_CCK;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020050 else if (IS_CHAN_2GHZ(chan))
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020051 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
52 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
53 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040054 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020055 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
56
Michal Nazarewiczbeae4162013-11-29 18:06:46 +010057 if (chan) {
58 if (IS_CHAN_HT40(chan))
59 clockrate *= 2;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020060 if (IS_CHAN_HALF_RATE(chan))
Felix Fietkau906c7202011-07-09 11:12:48 +070061 clockrate /= 2;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020062 if (IS_CHAN_QUARTER_RATE(chan))
Felix Fietkau906c7202011-07-09 11:12:48 +070063 clockrate /= 4;
64 }
65
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020066 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +053067}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070068
Sujithcbe61d82009-02-09 13:27:12 +053069static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053070{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020071 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +053072
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020073 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +053074}
75
Sujith0caa7b12009-02-16 13:23:20 +053076bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070077{
78 int i;
79
Sujith0caa7b12009-02-16 13:23:20 +053080 BUG_ON(timeout < AH_TIME_QUANTUM);
81
82 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070083 if ((REG_READ(ah, reg) & mask) == val)
84 return true;
85
86 udelay(AH_TIME_QUANTUM);
87 }
Sujith04bd46382008-11-28 22:18:05 +053088
Joe Perchesd2182b62011-12-15 14:55:53 -080089 ath_dbg(ath9k_hw_common(ah), ANY,
Joe Perches226afe62010-12-02 19:12:37 -080090 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
91 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +053092
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070093 return false;
94}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040095EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070096
Felix Fietkau7c5adc82012-04-19 21:18:26 +020097void ath9k_hw_synth_delay(struct ath_hw *ah, struct ath9k_channel *chan,
98 int hw_delay)
99{
Felix Fietkau1a5e6322013-10-11 23:30:54 +0200100 hw_delay /= 10;
Felix Fietkau7c5adc82012-04-19 21:18:26 +0200101
102 if (IS_CHAN_HALF_RATE(chan))
103 hw_delay *= 2;
104 else if (IS_CHAN_QUARTER_RATE(chan))
105 hw_delay *= 4;
106
107 udelay(hw_delay + BASE_ACTIVATE_DELAY);
108}
109
Felix Fietkau0166b4b2013-01-20 18:51:55 +0100110void ath9k_hw_write_array(struct ath_hw *ah, const struct ar5416IniArray *array,
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100111 int column, unsigned int *writecnt)
112{
113 int r;
114
115 ENABLE_REGWRITE_BUFFER(ah);
116 for (r = 0; r < array->ia_rows; r++) {
117 REG_WRITE(ah, INI_RA(array, r, 0),
118 INI_RA(array, r, column));
119 DO_DELAY(*writecnt);
120 }
121 REGWRITE_BUFFER_FLUSH(ah);
122}
123
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124u32 ath9k_hw_reverse_bits(u32 val, u32 n)
125{
126 u32 retval;
127 int i;
128
129 for (i = 0, retval = 0; i < n; i++) {
130 retval = (retval << 1) | (val & 1);
131 val >>= 1;
132 }
133 return retval;
134}
135
Sujithcbe61d82009-02-09 13:27:12 +0530136u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100137 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530138 u32 frameLen, u16 rateix,
139 bool shortPreamble)
140{
141 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530142
143 if (kbps == 0)
144 return 0;
145
Felix Fietkau545750d2009-11-23 22:21:01 +0100146 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530147 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530148 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100149 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530150 phyTime >>= 1;
151 numBits = frameLen << 3;
152 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
153 break;
Sujith46d14a52008-11-18 09:08:13 +0530154 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530155 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530156 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
157 numBits = OFDM_PLCP_BITS + (frameLen << 3);
158 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
159 txTime = OFDM_SIFS_TIME_QUARTER
160 + OFDM_PREAMBLE_TIME_QUARTER
161 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530162 } else if (ah->curchan &&
163 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530164 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
165 numBits = OFDM_PLCP_BITS + (frameLen << 3);
166 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
167 txTime = OFDM_SIFS_TIME_HALF +
168 OFDM_PREAMBLE_TIME_HALF
169 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
170 } else {
171 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
172 numBits = OFDM_PLCP_BITS + (frameLen << 3);
173 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
174 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
175 + (numSymbols * OFDM_SYMBOL_TIME);
176 }
177 break;
178 default:
Joe Perches38002762010-12-02 19:12:36 -0800179 ath_err(ath9k_hw_common(ah),
180 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530181 txTime = 0;
182 break;
183 }
184
185 return txTime;
186}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400187EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530188
Sujithcbe61d82009-02-09 13:27:12 +0530189void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530190 struct ath9k_channel *chan,
191 struct chan_centers *centers)
192{
193 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530194
195 if (!IS_CHAN_HT40(chan)) {
196 centers->ctl_center = centers->ext_center =
197 centers->synth_center = chan->channel;
198 return;
199 }
200
Felix Fietkau88969342013-10-11 23:30:53 +0200201 if (IS_CHAN_HT40PLUS(chan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530202 centers->synth_center =
203 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
204 extoff = 1;
205 } else {
206 centers->synth_center =
207 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
208 extoff = -1;
209 }
210
211 centers->ctl_center =
212 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700213 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530214 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700215 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530216}
217
218/******************/
219/* Chip Revisions */
220/******************/
221
Sujithcbe61d82009-02-09 13:27:12 +0530222static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530223{
224 u32 val;
225
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530226 switch (ah->hw_version.devid) {
227 case AR5416_AR9100_DEVID:
228 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
229 break;
Gabor Juhos37625612011-06-21 11:23:23 +0200230 case AR9300_DEVID_AR9330:
231 ah->hw_version.macVersion = AR_SREV_VERSION_9330;
232 if (ah->get_mac_revision) {
233 ah->hw_version.macRev = ah->get_mac_revision();
234 } else {
235 val = REG_READ(ah, AR_SREV);
236 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
237 }
238 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530239 case AR9300_DEVID_AR9340:
240 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
241 val = REG_READ(ah, AR_SREV);
242 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
243 return;
Gabor Juhos813831d2012-07-03 19:13:17 +0200244 case AR9300_DEVID_QCA955X:
245 ah->hw_version.macVersion = AR_SREV_VERSION_9550;
246 return;
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530247 case AR9300_DEVID_AR953X:
248 ah->hw_version.macVersion = AR_SREV_VERSION_9531;
249 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530250 }
251
Sujithf1dc5602008-10-29 10:16:30 +0530252 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
253
254 if (val == 0xFF) {
255 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530256 ah->hw_version.macVersion =
257 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
258 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530259
Sujith Manoharan77fac462012-09-11 20:09:18 +0530260 if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530261 ah->is_pciexpress = true;
262 else
263 ah->is_pciexpress = (val &
264 AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530265 } else {
266 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530267 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530268
Sujithd535a422009-02-09 13:27:06 +0530269 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530270
Sujithd535a422009-02-09 13:27:06 +0530271 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530272 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530273 }
274}
275
Sujithf1dc5602008-10-29 10:16:30 +0530276/************************************/
277/* HW Attach, Detach, Init Routines */
278/************************************/
279
Sujithcbe61d82009-02-09 13:27:12 +0530280static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530281{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100282 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530283 return;
284
285 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
294
295 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
296}
297
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400298/* This should work for all families including legacy */
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);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400302 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530303 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800304 static const u32 patternData[4] = {
305 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
306 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400307 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530308
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400309 if (!AR_SREV_9300_20_OR_LATER(ah)) {
310 loop_max = 2;
311 regAddr[1] = AR_PHY_BASE + (8 << 2);
312 } else
313 loop_max = 1;
314
315 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530316 u32 addr = regAddr[i];
317 u32 wrData, rdData;
318
319 regHold[i] = REG_READ(ah, addr);
320 for (j = 0; j < 0x100; j++) {
321 wrData = (j << 16) | j;
322 REG_WRITE(ah, addr, wrData);
323 rdData = REG_READ(ah, addr);
324 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800325 ath_err(common,
326 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
327 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530328 return false;
329 }
330 }
331 for (j = 0; j < 4; j++) {
332 wrData = patternData[j];
333 REG_WRITE(ah, addr, wrData);
334 rdData = REG_READ(ah, addr);
335 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800336 ath_err(common,
337 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
338 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530339 return false;
340 }
341 }
342 REG_WRITE(ah, regAddr[i], regHold[i]);
343 }
344 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530345
Sujithf1dc5602008-10-29 10:16:30 +0530346 return true;
347}
348
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700349static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700350{
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530351 struct ath_common *common = ath9k_hw_common(ah);
352
Felix Fietkau689e7562012-04-12 22:35:56 +0200353 ah->config.dma_beacon_response_time = 1;
354 ah->config.sw_beacon_response_time = 6;
Sujith2660b812009-02-09 13:27:26 +0530355 ah->config.cwm_ignore_extcca = 0;
Sujith2660b812009-02-09 13:27:26 +0530356 ah->config.analog_shiftreg = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357
Sujith0ce024c2009-12-14 14:57:00 +0530358 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400359
Sujith Manoharana64e1a42014-01-23 08:20:30 +0530360 if (AR_SREV_9300_20_OR_LATER(ah)) {
361 ah->config.rimt_last = 500;
362 ah->config.rimt_first = 2000;
363 } else {
364 ah->config.rimt_last = 250;
365 ah->config.rimt_first = 700;
366 }
367
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400368 /*
369 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
370 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
371 * This means we use it for all AR5416 devices, and the few
372 * minor PCI AR9280 devices out there.
373 *
374 * Serialization is required because these devices do not handle
375 * well the case of two concurrent reads/writes due to the latency
376 * involved. During one read/write another read/write can be issued
377 * on another CPU while the previous read/write may still be working
378 * on our hardware, if we hit this case the hardware poops in a loop.
379 * We prevent this by serializing reads and writes.
380 *
381 * This issue is not present on PCI-Express devices or pre-AR5416
382 * devices (legacy, 802.11abg).
383 */
384 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700385 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530386
387 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
388 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
389 ((AR_SREV_9160(ah) || AR_SREV_9280(ah) || AR_SREV_9287(ah)) &&
390 !ah->is_pciexpress)) {
391 ah->config.serialize_regmode = SER_REG_MODE_ON;
392 } else {
393 ah->config.serialize_regmode = SER_REG_MODE_OFF;
394 }
395 }
396
397 ath_dbg(common, RESET, "serialize_regmode is %d\n",
398 ah->config.serialize_regmode);
399
400 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
401 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
402 else
403 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404}
405
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700406static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700408 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
409
410 regulatory->country_code = CTRY_DEFAULT;
411 regulatory->power_limit = MAX_RATE_POWER;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700412
Sujithd535a422009-02-09 13:27:06 +0530413 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530414 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700415
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530416 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE |
417 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100418 if (AR_SREV_9100(ah))
419 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530420
Rajkumar Manoharane3f2acc2011-08-27 11:22:59 +0530421 ah->slottime = ATH9K_SLOT_TIME_9;
Sujith2660b812009-02-09 13:27:26 +0530422 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200423 ah->power_mode = ATH9K_PM_UNDEFINED;
Felix Fietkau8efa7a82012-03-14 16:40:23 +0100424 ah->htc_reset_init = true;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530425
426 ah->ani_function = ATH9K_ANI_ALL;
427 if (!AR_SREV_9300_20_OR_LATER(ah))
428 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
429
430 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
431 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
432 else
433 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434}
435
Sujithcbe61d82009-02-09 13:27:12 +0530436static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700438 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530439 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530441 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800442 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443
Sujithf1dc5602008-10-29 10:16:30 +0530444 sum = 0;
445 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400446 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530447 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700448 common->macaddr[2 * i] = eeval >> 8;
449 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 }
Sujithd8baa932009-03-30 15:28:25 +0530451 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530452 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 return 0;
455}
456
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700457static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530459 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460 int ecode;
461
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530462 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530463 if (!ath9k_hw_chip_test(ah))
464 return -ENODEV;
465 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400467 if (!AR_SREV_9300_20_OR_LATER(ah)) {
468 ecode = ar9002_hw_rf_claim(ah);
469 if (ecode != 0)
470 return ecode;
471 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700473 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474 if (ecode != 0)
475 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530476
Joe Perchesd2182b62011-12-15 14:55:53 -0800477 ath_dbg(ath9k_hw_common(ah), CONFIG, "Eeprom VER: %d, REV: %d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800478 ah->eep_ops->get_eeprom_ver(ah),
479 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530480
Sujith Manoharane3233002013-06-03 09:19:26 +0530481 ath9k_hw_ani_init(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530482
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530483 /*
484 * EEPROM needs to be initialized before we do this.
485 * This is required for regulatory compliance.
486 */
Sujith Manoharan0c7c2bb2013-12-06 16:28:50 +0530487 if (AR_SREV_9300_20_OR_LATER(ah)) {
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530488 u16 regdmn = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
489 if ((regdmn & 0xF0) == CTL_FCC) {
Sujith Manoharan0c7c2bb2013-12-06 16:28:50 +0530490 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_FCC_2GHZ;
491 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_FCC_5GHZ;
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530492 }
493 }
494
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 return 0;
496}
497
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100498static int ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700499{
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100500 if (!AR_SREV_9300_20_OR_LATER(ah))
501 return ar9002_hw_attach_ops(ah);
502
503 ar9003_hw_attach_ops(ah);
504 return 0;
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700505}
506
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400507/* Called for all hardware families */
508static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700510 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700511 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700512
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530513 ath9k_hw_read_revisions(ah);
514
Sujith Manoharande825822013-12-28 09:47:11 +0530515 switch (ah->hw_version.macVersion) {
516 case AR_SREV_VERSION_5416_PCI:
517 case AR_SREV_VERSION_5416_PCIE:
518 case AR_SREV_VERSION_9160:
519 case AR_SREV_VERSION_9100:
520 case AR_SREV_VERSION_9280:
521 case AR_SREV_VERSION_9285:
522 case AR_SREV_VERSION_9287:
523 case AR_SREV_VERSION_9271:
524 case AR_SREV_VERSION_9300:
525 case AR_SREV_VERSION_9330:
526 case AR_SREV_VERSION_9485:
527 case AR_SREV_VERSION_9340:
528 case AR_SREV_VERSION_9462:
529 case AR_SREV_VERSION_9550:
530 case AR_SREV_VERSION_9565:
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530531 case AR_SREV_VERSION_9531:
Sujith Manoharande825822013-12-28 09:47:11 +0530532 break;
533 default:
534 ath_err(common,
535 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
536 ah->hw_version.macVersion, ah->hw_version.macRev);
537 return -EOPNOTSUPP;
538 }
539
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530540 /*
541 * Read back AR_WA into a permanent copy and set bits 14 and 17.
542 * We need to do this to avoid RMW of this register. We cannot
543 * read the reg when chip is asleep.
544 */
Sujith Manoharan27251e02013-08-27 11:34:39 +0530545 if (AR_SREV_9300_20_OR_LATER(ah)) {
546 ah->WARegVal = REG_READ(ah, AR_WA);
547 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
548 AR_WA_ASPM_TIMER_BASED_DISABLE);
549 }
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530550
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700551 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800552 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700553 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700554 }
555
Sujith Manoharana4a29542012-09-10 09:20:03 +0530556 if (AR_SREV_9565(ah)) {
557 ah->WARegVal |= AR_WA_BIT22;
558 REG_WRITE(ah, AR_WA, ah->WARegVal);
559 }
560
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400561 ath9k_hw_init_defaults(ah);
562 ath9k_hw_init_config(ah);
563
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100564 r = ath9k_hw_attach_ops(ah);
565 if (r)
566 return r;
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400567
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700568 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800569 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700570 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571 }
572
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200573 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
Gabor Juhosc95b5842012-07-03 19:13:20 +0200574 AR_SREV_9330(ah) || AR_SREV_9550(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400575 ah->is_pciexpress = false;
576
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700577 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700578 ath9k_hw_init_cal_settings(ah);
579
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200580 if (!ah->is_pciexpress)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700581 ath9k_hw_disablepcie(ah);
582
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700583 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700584 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700585 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700586
587 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100588 r = ath9k_hw_fill_cap_info(ah);
589 if (r)
590 return r;
591
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700592 r = ath9k_hw_init_macaddr(ah);
593 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800594 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700595 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596 }
597
Sujith Manoharan45987022013-12-24 10:44:18 +0530598 ath9k_hw_init_hang_checks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400600 common->state = ATH_HW_INITIALIZED;
601
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700602 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700603}
604
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400605int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530606{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400607 int ret;
608 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530609
Sujith Manoharan77fac462012-09-11 20:09:18 +0530610 /* These are all the AR5008/AR9001/AR9002/AR9003 hardware family of chipsets */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400611 switch (ah->hw_version.devid) {
612 case AR5416_DEVID_PCI:
613 case AR5416_DEVID_PCIE:
614 case AR5416_AR9100_DEVID:
615 case AR9160_DEVID_PCI:
616 case AR9280_DEVID_PCI:
617 case AR9280_DEVID_PCIE:
618 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400619 case AR9287_DEVID_PCI:
620 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400621 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400622 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800623 case AR9300_DEVID_AR9485_PCIE:
Gabor Juhos999a7a82011-06-21 11:23:52 +0200624 case AR9300_DEVID_AR9330:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530625 case AR9300_DEVID_AR9340:
Gabor Juhos2b943a32012-07-03 19:13:34 +0200626 case AR9300_DEVID_QCA955X:
Luis R. Rodriguez5a63ef02011-08-24 15:36:08 -0700627 case AR9300_DEVID_AR9580:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530628 case AR9300_DEVID_AR9462:
Mohammed Shafi Shajakhand4e59792012-08-02 11:58:50 +0530629 case AR9485_DEVID_AR1111:
Sujith Manoharan77fac462012-09-11 20:09:18 +0530630 case AR9300_DEVID_AR9565:
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530631 case AR9300_DEVID_AR953X:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400632 break;
633 default:
634 if (common->bus_ops->ath_bus_type == ATH_USB)
635 break;
Joe Perches38002762010-12-02 19:12:36 -0800636 ath_err(common, "Hardware device ID 0x%04x not supported\n",
637 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400638 return -EOPNOTSUPP;
639 }
Sujithf1dc5602008-10-29 10:16:30 +0530640
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400641 ret = __ath9k_hw_init(ah);
642 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800643 ath_err(common,
644 "Unable to initialize hardware; initialization status: %d\n",
645 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400646 return ret;
647 }
Sujithf1dc5602008-10-29 10:16:30 +0530648
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400649 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530650}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400651EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530652
Sujithcbe61d82009-02-09 13:27:12 +0530653static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530654{
Sujith7d0d0df2010-04-16 11:53:57 +0530655 ENABLE_REGWRITE_BUFFER(ah);
656
Sujithf1dc5602008-10-29 10:16:30 +0530657 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
658 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
659
660 REG_WRITE(ah, AR_QOS_NO_ACK,
661 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
662 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
663 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
664
665 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
666 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
667 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
668 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
669 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530670
671 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530672}
673
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530674u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530675{
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530676 struct ath_common *common = ath9k_hw_common(ah);
677 int i = 0;
678
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100679 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
680 udelay(100);
681 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
682
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530683 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0) {
684
Vivek Natarajanb1415812011-01-27 14:45:07 +0530685 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530686
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530687 if (WARN_ON_ONCE(i >= 100)) {
688 ath_err(common, "PLL4 meaurement not done\n");
689 break;
690 }
691
692 i++;
693 }
694
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100695 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530696}
697EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
698
Sujithcbe61d82009-02-09 13:27:12 +0530699static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530700 struct ath9k_channel *chan)
701{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800702 u32 pll;
703
Sujith Manoharana4a29542012-09-10 09:20:03 +0530704 if (AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530705 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
706 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
707 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
708 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
709 AR_CH0_DPLL2_KD, 0x40);
710 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
711 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530712
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530713 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
714 AR_CH0_BB_DPLL1_REFDIV, 0x5);
715 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
716 AR_CH0_BB_DPLL1_NINI, 0x58);
717 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
718 AR_CH0_BB_DPLL1_NFRAC, 0x0);
719
720 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
721 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
722 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
723 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
724 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
725 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
726
727 /* program BB PLL phase_shift to 0x6 */
728 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
729 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
730
731 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
732 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530733 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200734 } else if (AR_SREV_9330(ah)) {
735 u32 ddr_dpll2, pll_control2, kd;
736
737 if (ah->is_clk_25mhz) {
738 ddr_dpll2 = 0x18e82f01;
739 pll_control2 = 0xe04a3d;
740 kd = 0x1d;
741 } else {
742 ddr_dpll2 = 0x19e82f01;
743 pll_control2 = 0x886666;
744 kd = 0x3d;
745 }
746
747 /* program DDR PLL ki and kd value */
748 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
749
750 /* program DDR PLL phase_shift */
751 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
752 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
753
754 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
755 udelay(1000);
756
757 /* program refdiv, nint, frac to RTC register */
758 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
759
760 /* program BB PLL kd and ki value */
761 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
762 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
763
764 /* program BB PLL phase_shift */
765 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
766 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Sujith Manoharan2c323052013-12-31 08:12:02 +0530767 } else if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah)) {
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530768 u32 regval, pll2_divint, pll2_divfrac, refdiv;
769
770 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
771 udelay(1000);
772
773 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
774 udelay(100);
775
776 if (ah->is_clk_25mhz) {
Sujith Manoharan2c323052013-12-31 08:12:02 +0530777 if (AR_SREV_9531(ah)) {
778 pll2_divint = 0x1c;
779 pll2_divfrac = 0xa3d2;
780 refdiv = 1;
781 } else {
782 pll2_divint = 0x54;
783 pll2_divfrac = 0x1eb85;
784 refdiv = 3;
785 }
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530786 } else {
Gabor Juhosfc05a312012-07-03 19:13:31 +0200787 if (AR_SREV_9340(ah)) {
788 pll2_divint = 88;
789 pll2_divfrac = 0;
790 refdiv = 5;
791 } else {
792 pll2_divint = 0x11;
793 pll2_divfrac = 0x26666;
794 refdiv = 1;
795 }
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530796 }
797
798 regval = REG_READ(ah, AR_PHY_PLL_MODE);
Sujith Manoharan2c323052013-12-31 08:12:02 +0530799 if (AR_SREV_9531(ah))
800 regval |= (0x1 << 22);
801 else
802 regval |= (0x1 << 16);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530803 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
804 udelay(100);
805
806 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
807 (pll2_divint << 18) | pll2_divfrac);
808 udelay(100);
809
810 regval = REG_READ(ah, AR_PHY_PLL_MODE);
Gabor Juhosfc05a312012-07-03 19:13:31 +0200811 if (AR_SREV_9340(ah))
Sujith Manoharan2c323052013-12-31 08:12:02 +0530812 regval = (regval & 0x80071fff) |
813 (0x1 << 30) |
814 (0x1 << 13) |
815 (0x4 << 26) |
816 (0x18 << 19);
817 else if (AR_SREV_9531(ah))
818 regval = (regval & 0x01c00fff) |
819 (0x1 << 31) |
820 (0x2 << 29) |
821 (0xa << 25) |
822 (0x1 << 19) |
823 (0x6 << 12);
Gabor Juhosfc05a312012-07-03 19:13:31 +0200824 else
Sujith Manoharan2c323052013-12-31 08:12:02 +0530825 regval = (regval & 0x80071fff) |
826 (0x3 << 30) |
827 (0x1 << 13) |
828 (0x4 << 26) |
829 (0x60 << 19);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530830 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
Sujith Manoharan2c323052013-12-31 08:12:02 +0530831
832 if (AR_SREV_9531(ah))
833 REG_WRITE(ah, AR_PHY_PLL_MODE,
834 REG_READ(ah, AR_PHY_PLL_MODE) & 0xffbfffff);
835 else
836 REG_WRITE(ah, AR_PHY_PLL_MODE,
837 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
838
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530839 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530840 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800841
842 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujith Manoharan8565f8b2012-09-10 09:20:29 +0530843 if (AR_SREV_9565(ah))
844 pll |= 0x40000;
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100845 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530846
Gabor Juhosfc05a312012-07-03 19:13:31 +0200847 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah) ||
848 AR_SREV_9550(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530849 udelay(1000);
850
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400851 /* Switch the core clock for ar9271 to 117Mhz */
852 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530853 udelay(500);
854 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400855 }
856
Sujithf1dc5602008-10-29 10:16:30 +0530857 udelay(RTC_PLL_SETTLE_DELAY);
858
859 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530860
Gabor Juhosfc05a312012-07-03 19:13:31 +0200861 if (AR_SREV_9340(ah) || AR_SREV_9550(ah)) {
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530862 if (ah->is_clk_25mhz) {
863 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
864 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
865 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
866 } else {
867 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
868 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
869 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
870 }
871 udelay(100);
872 }
Sujithf1dc5602008-10-29 10:16:30 +0530873}
874
Sujithcbe61d82009-02-09 13:27:12 +0530875static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800876 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530877{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530878 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400879 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530880 AR_IMR_TXURN |
881 AR_IMR_RXERR |
882 AR_IMR_RXORN |
883 AR_IMR_BCNMISC;
884
Sujith Manoharanc90d4f72014-03-17 15:02:47 +0530885 if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah))
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530886 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
887
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400888 if (AR_SREV_9300_20_OR_LATER(ah)) {
889 imr_reg |= AR_IMR_RXOK_HP;
890 if (ah->config.rx_intr_mitigation)
891 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
892 else
893 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530894
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400895 } else {
896 if (ah->config.rx_intr_mitigation)
897 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
898 else
899 imr_reg |= AR_IMR_RXOK;
900 }
901
902 if (ah->config.tx_intr_mitigation)
903 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
904 else
905 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530906
Sujith7d0d0df2010-04-16 11:53:57 +0530907 ENABLE_REGWRITE_BUFFER(ah);
908
Pavel Roskin152d5302010-03-31 18:05:37 -0400909 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500910 ah->imrs2_reg |= AR_IMR_S2_GTT;
911 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530912
913 if (!AR_SREV_9100(ah)) {
914 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530915 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530916 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
917 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400918
Sujith7d0d0df2010-04-16 11:53:57 +0530919 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530920
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400921 if (AR_SREV_9300_20_OR_LATER(ah)) {
922 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
923 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
924 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
925 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
926 }
Sujithf1dc5602008-10-29 10:16:30 +0530927}
928
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700929static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
930{
931 u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
932 val = min(val, (u32) 0xFFFF);
933 REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
934}
935
Felix Fietkau0005baf2010-01-15 02:33:40 +0100936static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530937{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100938 u32 val = ath9k_hw_mac_to_clks(ah, us);
939 val = min(val, (u32) 0xFFFF);
940 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530941}
942
Felix Fietkau0005baf2010-01-15 02:33:40 +0100943static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530944{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100945 u32 val = ath9k_hw_mac_to_clks(ah, us);
946 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
947 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
948}
949
950static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
951{
952 u32 val = ath9k_hw_mac_to_clks(ah, us);
953 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
954 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530955}
956
Sujithcbe61d82009-02-09 13:27:12 +0530957static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530958{
Sujithf1dc5602008-10-29 10:16:30 +0530959 if (tu > 0xFFFF) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800960 ath_dbg(ath9k_hw_common(ah), XMIT, "bad global tx timeout %u\n",
961 tu);
Sujith2660b812009-02-09 13:27:26 +0530962 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530963 return false;
964 } else {
965 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530966 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530967 return true;
968 }
969}
970
Felix Fietkau0005baf2010-01-15 02:33:40 +0100971void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530972{
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700973 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700974 const struct ath9k_channel *chan = ah->curchan;
Felix Fietkaue115b7e2012-04-19 21:18:23 +0200975 int acktimeout, ctstimeout, ack_offset = 0;
Felix Fietkaue239d852010-01-15 02:34:58 +0100976 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100977 int sifstime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700978 int rx_lat = 0, tx_lat = 0, eifs = 0;
979 u32 reg;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100980
Joe Perchesd2182b62011-12-15 14:55:53 -0800981 ath_dbg(ath9k_hw_common(ah), RESET, "ah->misc_mode 0x%x\n",
Joe Perches226afe62010-12-02 19:12:37 -0800982 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530983
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700984 if (!chan)
985 return;
986
Sujith2660b812009-02-09 13:27:26 +0530987 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100988 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100989
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +0530990 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
991 rx_lat = 41;
992 else
993 rx_lat = 37;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700994 tx_lat = 54;
995
Felix Fietkaue88e4862012-04-19 21:18:22 +0200996 if (IS_CHAN_5GHZ(chan))
997 sifstime = 16;
998 else
999 sifstime = 10;
1000
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001001 if (IS_CHAN_HALF_RATE(chan)) {
1002 eifs = 175;
1003 rx_lat *= 2;
1004 tx_lat *= 2;
1005 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1006 tx_lat += 11;
1007
Simon Wunderlich92367fe72013-08-14 08:01:30 +02001008 sifstime = 32;
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001009 ack_offset = 16;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001010 slottime = 13;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001011 } else if (IS_CHAN_QUARTER_RATE(chan)) {
1012 eifs = 340;
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301013 rx_lat = (rx_lat * 4) - 1;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001014 tx_lat *= 4;
1015 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1016 tx_lat += 22;
1017
Simon Wunderlich92367fe72013-08-14 08:01:30 +02001018 sifstime = 64;
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001019 ack_offset = 32;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001020 slottime = 21;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001021 } else {
Rajkumar Manoharana7be0392011-08-27 12:13:21 +05301022 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1023 eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
1024 reg = AR_USEC_ASYNC_FIFO;
1025 } else {
1026 eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
1027 common->clockrate;
1028 reg = REG_READ(ah, AR_USEC);
1029 }
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001030 rx_lat = MS(reg, AR_USEC_RX_LAT);
1031 tx_lat = MS(reg, AR_USEC_TX_LAT);
1032
1033 slottime = ah->slottime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001034 }
Felix Fietkau0005baf2010-01-15 02:33:40 +01001035
Felix Fietkaue239d852010-01-15 02:34:58 +01001036 /* As defined by IEEE 802.11-2007 17.3.8.6 */
Mathias Kretschmerf77f8232013-04-22 22:34:41 +02001037 slottime += 3 * ah->coverage_class;
1038 acktimeout = slottime + sifstime + ack_offset;
Felix Fietkauadb50662011-08-28 01:52:10 +02001039 ctstimeout = acktimeout;
Felix Fietkau42c45682010-02-11 18:07:19 +01001040
1041 /*
1042 * Workaround for early ACK timeouts, add an offset to match the
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001043 * initval's 64us ack timeout value. Use 48us for the CTS timeout.
Felix Fietkau42c45682010-02-11 18:07:19 +01001044 * This was initially only meant to work around an issue with delayed
1045 * BA frames in some implementations, but it has been found to fix ACK
1046 * timeout issues in other cases as well.
1047 */
Felix Fietkaue4744ec2013-10-11 23:31:01 +02001048 if (IS_CHAN_2GHZ(chan) &&
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001049 !IS_CHAN_HALF_RATE(chan) && !IS_CHAN_QUARTER_RATE(chan)) {
Felix Fietkau42c45682010-02-11 18:07:19 +01001050 acktimeout += 64 - sifstime - ah->slottime;
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001051 ctstimeout += 48 - sifstime - ah->slottime;
1052 }
1053
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001054 ath9k_hw_set_sifs_time(ah, sifstime);
1055 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001056 ath9k_hw_set_ack_timeout(ah, acktimeout);
Felix Fietkauadb50662011-08-28 01:52:10 +02001057 ath9k_hw_set_cts_timeout(ah, ctstimeout);
Sujith2660b812009-02-09 13:27:26 +05301058 if (ah->globaltxtimeout != (u32) -1)
1059 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001060
1061 REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
1062 REG_RMW(ah, AR_USEC,
1063 (common->clockrate - 1) |
1064 SM(rx_lat, AR_USEC_RX_LAT) |
1065 SM(tx_lat, AR_USEC_TX_LAT),
1066 AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
1067
Sujithf1dc5602008-10-29 10:16:30 +05301068}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001069EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301070
Sujith285f2dd2010-01-08 10:36:07 +05301071void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001072{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001073 struct ath_common *common = ath9k_hw_common(ah);
1074
Sujith736b3a22010-03-17 14:25:24 +05301075 if (common->state < ATH_HW_INITIALIZED)
Felix Fietkauc1b976d2012-12-12 13:14:23 +01001076 return;
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001077
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001078 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001079}
Sujith285f2dd2010-01-08 10:36:07 +05301080EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001081
Sujithf1dc5602008-10-29 10:16:30 +05301082/*******/
1083/* INI */
1084/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001085
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001086u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001087{
1088 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1089
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001090 if (IS_CHAN_2GHZ(chan))
Bob Copeland3a702e42009-03-30 22:30:29 -04001091 ctl |= CTL_11G;
1092 else
1093 ctl |= CTL_11A;
1094
1095 return ctl;
1096}
1097
Sujithf1dc5602008-10-29 10:16:30 +05301098/****************************************/
1099/* Reset and Channel Switching Routines */
1100/****************************************/
1101
Sujithcbe61d82009-02-09 13:27:12 +05301102static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301103{
Felix Fietkau57b32222010-04-15 17:39:22 -04001104 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau86c157b2013-05-23 12:20:56 +02001105 int txbuf_size;
Sujithf1dc5602008-10-29 10:16:30 +05301106
Sujith7d0d0df2010-04-16 11:53:57 +05301107 ENABLE_REGWRITE_BUFFER(ah);
1108
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001109 /*
1110 * set AHB_MODE not to do cacheline prefetches
1111 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001112 if (!AR_SREV_9300_20_OR_LATER(ah))
1113 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301114
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001115 /*
1116 * let mac dma reads be in 128 byte chunks
1117 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001118 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301119
Sujith7d0d0df2010-04-16 11:53:57 +05301120 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301121
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001122 /*
1123 * Restore TX Trigger Level to its pre-reset value.
1124 * The initial value depends on whether aggregation is enabled, and is
1125 * adjusted whenever underruns are detected.
1126 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001127 if (!AR_SREV_9300_20_OR_LATER(ah))
1128 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301129
Sujith7d0d0df2010-04-16 11:53:57 +05301130 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301131
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001132 /*
1133 * let mac dma writes be in 128 byte chunks
1134 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001135 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301136
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001137 /*
1138 * Setup receive FIFO threshold to hold off TX activities
1139 */
Sujithf1dc5602008-10-29 10:16:30 +05301140 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1141
Felix Fietkau57b32222010-04-15 17:39:22 -04001142 if (AR_SREV_9300_20_OR_LATER(ah)) {
1143 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1144 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1145
1146 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1147 ah->caps.rx_status_len);
1148 }
1149
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001150 /*
1151 * reduce the number of usable entries in PCU TXBUF to avoid
1152 * wrap around issues.
1153 */
Sujithf1dc5602008-10-29 10:16:30 +05301154 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001155 /* For AR9285 the number of Fifos are reduced to half.
1156 * So set the usable tx buf size also to half to
1157 * avoid data/delimiter underruns
1158 */
Felix Fietkau86c157b2013-05-23 12:20:56 +02001159 txbuf_size = AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE;
1160 } else if (AR_SREV_9340_13_OR_LATER(ah)) {
1161 /* Uses fewer entries for AR934x v1.3+ to prevent rx overruns */
1162 txbuf_size = AR_9340_PCU_TXBUF_CTRL_USABLE_SIZE;
1163 } else {
1164 txbuf_size = AR_PCU_TXBUF_CTRL_USABLE_SIZE;
Sujithf1dc5602008-10-29 10:16:30 +05301165 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001166
Felix Fietkau86c157b2013-05-23 12:20:56 +02001167 if (!AR_SREV_9271(ah))
1168 REG_WRITE(ah, AR_PCU_TXBUF_CTRL, txbuf_size);
1169
Sujith7d0d0df2010-04-16 11:53:57 +05301170 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301171
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001172 if (AR_SREV_9300_20_OR_LATER(ah))
1173 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301174}
1175
Sujithcbe61d82009-02-09 13:27:12 +05301176static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301177{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001178 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1179 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301180
Sujithf1dc5602008-10-29 10:16:30 +05301181 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001182 case NL80211_IFTYPE_ADHOC:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001183 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301184 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1185 break;
Thomas Pedersen2664d662013-05-08 10:16:48 -07001186 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001187 case NL80211_IFTYPE_AP:
1188 set |= AR_STA_ID1_STA_AP;
1189 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001190 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001191 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301192 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301193 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001194 if (!ah->is_monitoring)
1195 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301196 break;
Sujithf1dc5602008-10-29 10:16:30 +05301197 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001198 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301199}
1200
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001201void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1202 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203{
1204 u32 coef_exp, coef_man;
1205
1206 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1207 if ((coef_scaled >> coef_exp) & 0x1)
1208 break;
1209
1210 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1211
1212 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1213
1214 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1215 *coef_exponent = coef_exp - 16;
1216}
1217
Sujith Manoharand7df7a52013-12-18 09:53:27 +05301218/* AR9330 WAR:
1219 * call external reset function to reset WMAC if:
1220 * - doing a cold reset
1221 * - we have pending frames in the TX queues.
1222 */
1223static bool ath9k_hw_ar9330_reset_war(struct ath_hw *ah, int type)
1224{
1225 int i, npend = 0;
1226
1227 for (i = 0; i < AR_NUM_QCU; i++) {
1228 npend = ath9k_hw_numtxpending(ah, i);
1229 if (npend)
1230 break;
1231 }
1232
1233 if (ah->external_reset &&
1234 (npend || type == ATH9K_RESET_COLD)) {
1235 int reset_err = 0;
1236
1237 ath_dbg(ath9k_hw_common(ah), RESET,
1238 "reset MAC via external reset\n");
1239
1240 reset_err = ah->external_reset();
1241 if (reset_err) {
1242 ath_err(ath9k_hw_common(ah),
1243 "External reset failed, err=%d\n",
1244 reset_err);
1245 return false;
1246 }
1247
1248 REG_WRITE(ah, AR_RTC_RESET, 1);
1249 }
1250
1251 return true;
1252}
1253
Sujithcbe61d82009-02-09 13:27:12 +05301254static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301255{
1256 u32 rst_flags;
1257 u32 tmpReg;
1258
Sujith70768492009-02-16 13:23:12 +05301259 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001260 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1261 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301262 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1263 }
1264
Sujith7d0d0df2010-04-16 11:53:57 +05301265 ENABLE_REGWRITE_BUFFER(ah);
1266
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001267 if (AR_SREV_9300_20_OR_LATER(ah)) {
1268 REG_WRITE(ah, AR_WA, ah->WARegVal);
1269 udelay(10);
1270 }
1271
Sujithf1dc5602008-10-29 10:16:30 +05301272 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1273 AR_RTC_FORCE_WAKE_ON_INT);
1274
1275 if (AR_SREV_9100(ah)) {
1276 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1277 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1278 } else {
1279 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
Felix Fietkaua37a9912013-05-23 12:20:55 +02001280 if (AR_SREV_9340(ah))
1281 tmpReg &= AR9340_INTR_SYNC_LOCAL_TIMEOUT;
1282 else
1283 tmpReg &= AR_INTR_SYNC_LOCAL_TIMEOUT |
1284 AR_INTR_SYNC_RADM_CPL_TIMEOUT;
1285
1286 if (tmpReg) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001287 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301288 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001289
1290 val = AR_RC_HOSTIF;
1291 if (!AR_SREV_9300_20_OR_LATER(ah))
1292 val |= AR_RC_AHB;
1293 REG_WRITE(ah, AR_RC, val);
1294
1295 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301296 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301297
1298 rst_flags = AR_RTC_RC_MAC_WARM;
1299 if (type == ATH9K_RESET_COLD)
1300 rst_flags |= AR_RTC_RC_MAC_COLD;
1301 }
1302
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001303 if (AR_SREV_9330(ah)) {
Sujith Manoharand7df7a52013-12-18 09:53:27 +05301304 if (!ath9k_hw_ar9330_reset_war(ah, type))
1305 return false;
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001306 }
1307
Rajkumar Manoharan38634952012-06-11 12:19:32 +05301308 if (ath9k_hw_mci_is_enabled(ah))
Rajkumar Manoharan506847a2012-06-12 20:18:16 +05301309 ar9003_mci_check_gpm_offset(ah);
Rajkumar Manoharan38634952012-06-11 12:19:32 +05301310
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001311 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301312
1313 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301314
Sujith Manoharan4dc78c432013-12-18 09:53:26 +05301315 if (AR_SREV_9300_20_OR_LATER(ah))
1316 udelay(50);
1317 else if (AR_SREV_9100(ah))
Sujith Manoharan3683a072014-02-04 08:37:52 +05301318 mdelay(10);
Sujith Manoharan4dc78c432013-12-18 09:53:26 +05301319 else
1320 udelay(100);
Sujithf1dc5602008-10-29 10:16:30 +05301321
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001322 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301323 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001324 ath_dbg(ath9k_hw_common(ah), RESET, "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301325 return false;
1326 }
1327
1328 if (!AR_SREV_9100(ah))
1329 REG_WRITE(ah, AR_RC, 0);
1330
Sujithf1dc5602008-10-29 10:16:30 +05301331 if (AR_SREV_9100(ah))
1332 udelay(50);
1333
1334 return true;
1335}
1336
Sujithcbe61d82009-02-09 13:27:12 +05301337static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301338{
Sujith7d0d0df2010-04-16 11:53:57 +05301339 ENABLE_REGWRITE_BUFFER(ah);
1340
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001341 if (AR_SREV_9300_20_OR_LATER(ah)) {
1342 REG_WRITE(ah, AR_WA, ah->WARegVal);
1343 udelay(10);
1344 }
1345
Sujithf1dc5602008-10-29 10:16:30 +05301346 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1347 AR_RTC_FORCE_WAKE_ON_INT);
1348
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001349 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301350 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1351
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001352 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301353
Sujith7d0d0df2010-04-16 11:53:57 +05301354 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301355
Sujith Manoharanafe36532013-12-18 09:53:25 +05301356 udelay(2);
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001357
1358 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301359 REG_WRITE(ah, AR_RC, 0);
1360
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001361 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301362
1363 if (!ath9k_hw_wait(ah,
1364 AR_RTC_STATUS,
1365 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301366 AR_RTC_STATUS_ON,
1367 AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001368 ath_dbg(ath9k_hw_common(ah), RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301369 return false;
1370 }
1371
Sujithf1dc5602008-10-29 10:16:30 +05301372 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1373}
1374
Sujithcbe61d82009-02-09 13:27:12 +05301375static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301376{
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301377 bool ret = false;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301378
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001379 if (AR_SREV_9300_20_OR_LATER(ah)) {
1380 REG_WRITE(ah, AR_WA, ah->WARegVal);
1381 udelay(10);
1382 }
1383
Sujithf1dc5602008-10-29 10:16:30 +05301384 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1385 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1386
Felix Fietkauceb26a62012-10-03 21:07:51 +02001387 if (!ah->reset_power_on)
1388 type = ATH9K_RESET_POWER_ON;
1389
Sujithf1dc5602008-10-29 10:16:30 +05301390 switch (type) {
1391 case ATH9K_RESET_POWER_ON:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301392 ret = ath9k_hw_set_reset_power_on(ah);
Sujith Manoharanda8fb122012-11-17 21:20:50 +05301393 if (ret)
Felix Fietkauceb26a62012-10-03 21:07:51 +02001394 ah->reset_power_on = true;
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301395 break;
Sujithf1dc5602008-10-29 10:16:30 +05301396 case ATH9K_RESET_WARM:
1397 case ATH9K_RESET_COLD:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301398 ret = ath9k_hw_set_reset(ah, type);
1399 break;
Sujithf1dc5602008-10-29 10:16:30 +05301400 default:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301401 break;
Sujithf1dc5602008-10-29 10:16:30 +05301402 }
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301403
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301404 return ret;
Sujithf1dc5602008-10-29 10:16:30 +05301405}
1406
Sujithcbe61d82009-02-09 13:27:12 +05301407static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301408 struct ath9k_channel *chan)
1409{
Felix Fietkau9c083af2012-03-03 15:17:02 +01001410 int reset_type = ATH9K_RESET_WARM;
1411
1412 if (AR_SREV_9280(ah)) {
1413 if (ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1414 reset_type = ATH9K_RESET_POWER_ON;
1415 else
1416 reset_type = ATH9K_RESET_COLD;
Felix Fietkau3412f2f02013-02-25 20:51:07 +01001417 } else if (ah->chip_fullsleep || REG_READ(ah, AR_Q_TXE) ||
1418 (REG_READ(ah, AR_CR) & AR_CR_RXE))
1419 reset_type = ATH9K_RESET_COLD;
Felix Fietkau9c083af2012-03-03 15:17:02 +01001420
1421 if (!ath9k_hw_set_reset_reg(ah, reset_type))
Sujithf1dc5602008-10-29 10:16:30 +05301422 return false;
1423
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001424 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301425 return false;
1426
Sujith2660b812009-02-09 13:27:26 +05301427 ah->chip_fullsleep = false;
Felix Fietkaubfc441a2012-05-24 14:32:22 +02001428
1429 if (AR_SREV_9330(ah))
1430 ar9003_hw_internal_regulator_apply(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301431 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301432
1433 return true;
1434}
1435
Sujithcbe61d82009-02-09 13:27:12 +05301436static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001437 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301438{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001439 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301440 struct ath9k_hw_capabilities *pCap = &ah->caps;
1441 bool band_switch = false, mode_diff = false;
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301442 u8 ini_reloaded = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001443 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001444 int r;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301445
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301446 if (pCap->hw_caps & ATH9K_HW_CAP_FCC_BAND_SWITCH) {
Felix Fietkauaf02efb2013-11-18 20:14:44 +01001447 u32 flags_diff = chan->channelFlags ^ ah->curchan->channelFlags;
1448 band_switch = !!(flags_diff & CHANNEL_5GHZ);
1449 mode_diff = !!(flags_diff & ~CHANNEL_HT);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301450 }
Sujithf1dc5602008-10-29 10:16:30 +05301451
1452 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1453 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001454 ath_dbg(common, QUEUE,
Joe Perches226afe62010-12-02 19:12:37 -08001455 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301456 return false;
1457 }
1458 }
1459
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001460 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001461 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301462 return false;
1463 }
1464
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301465 if (band_switch || mode_diff) {
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301466 ath9k_hw_mark_phy_inactive(ah);
1467 udelay(5);
1468
Sujith Manoharan5f35c0f2013-07-16 12:03:20 +05301469 if (band_switch)
1470 ath9k_hw_init_pll(ah, chan);
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301471
1472 if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
1473 ath_err(common, "Failed to do fast channel change\n");
1474 return false;
1475 }
1476 }
1477
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001478 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301479
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001480 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001481 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001482 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001483 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301484 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001485 ath9k_hw_set_clockrate(ah);
Gabor Juhos64ea57d2012-04-15 20:38:05 +02001486 ath9k_hw_apply_txpower(ah, chan, false);
Sujithf1dc5602008-10-29 10:16:30 +05301487
Felix Fietkau81c507a2013-10-11 23:30:55 +02001488 ath9k_hw_set_delta_slope(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001489 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301490
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301491 if (band_switch || ini_reloaded)
1492 ah->eep_ops->set_board_values(ah, chan);
1493
1494 ath9k_hw_init_bb(ah, chan);
1495 ath9k_hw_rfbus_done(ah);
1496
1497 if (band_switch || ini_reloaded) {
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301498 ah->ah_flags |= AH_FASTCC;
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301499 ath9k_hw_init_cal(ah, chan);
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301500 ah->ah_flags &= ~AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301501 }
1502
Sujithf1dc5602008-10-29 10:16:30 +05301503 return true;
1504}
1505
Felix Fietkau691680b2011-03-19 13:55:38 +01001506static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1507{
1508 u32 gpio_mask = ah->gpio_mask;
1509 int i;
1510
1511 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1512 if (!(gpio_mask & 1))
1513 continue;
1514
1515 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1516 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1517 }
1518}
1519
Sujith Manoharan1e516ca2013-09-11 21:30:27 +05301520void ath9k_hw_check_nav(struct ath_hw *ah)
1521{
1522 struct ath_common *common = ath9k_hw_common(ah);
1523 u32 val;
1524
1525 val = REG_READ(ah, AR_NAV);
1526 if (val != 0xdeadbeef && val > 0x7fff) {
1527 ath_dbg(common, BSTUCK, "Abnormal NAV: 0x%x\n", val);
1528 REG_WRITE(ah, AR_NAV, 0);
1529 }
1530}
1531EXPORT_SYMBOL(ath9k_hw_check_nav);
1532
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001533bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301534{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001535 int count = 50;
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001536 u32 reg, last_val;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301537
Rajkumar Manoharan01e18912012-03-15 05:34:27 +05301538 if (AR_SREV_9300(ah))
1539 return !ath9k_hw_detect_mac_hang(ah);
1540
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001541 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001542 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301543
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001544 last_val = REG_READ(ah, AR_OBS_BUS_1);
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001545 do {
1546 reg = REG_READ(ah, AR_OBS_BUS_1);
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001547 if (reg != last_val)
1548 return true;
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001549
Felix Fietkau105ff412014-03-09 09:51:16 +01001550 udelay(1);
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001551 last_val = reg;
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001552 if ((reg & 0x7E7FFFEF) == 0x00702400)
1553 continue;
1554
1555 switch (reg & 0x7E000B00) {
1556 case 0x1E000000:
1557 case 0x52000B00:
1558 case 0x18000B00:
1559 continue;
1560 default:
1561 return true;
1562 }
1563 } while (count-- > 0);
1564
1565 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301566}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001567EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301568
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301569static void ath9k_hw_init_mfp(struct ath_hw *ah)
1570{
1571 /* Setup MFP options for CCMP */
1572 if (AR_SREV_9280_20_OR_LATER(ah)) {
1573 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1574 * frames when constructing CCMP AAD. */
1575 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1576 0xc7ff);
1577 ah->sw_mgmt_crypto = false;
1578 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1579 /* Disable hardware crypto for management frames */
1580 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1581 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1582 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1583 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1584 ah->sw_mgmt_crypto = true;
1585 } else {
1586 ah->sw_mgmt_crypto = true;
1587 }
1588}
1589
1590static void ath9k_hw_reset_opmode(struct ath_hw *ah,
1591 u32 macStaId1, u32 saveDefAntenna)
1592{
1593 struct ath_common *common = ath9k_hw_common(ah);
1594
1595 ENABLE_REGWRITE_BUFFER(ah);
1596
Felix Fietkauecbbed32013-04-16 12:51:56 +02001597 REG_RMW(ah, AR_STA_ID1, macStaId1
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301598 | AR_STA_ID1_RTS_USE_DEF
Felix Fietkauecbbed32013-04-16 12:51:56 +02001599 | ah->sta_id1_defaults,
1600 ~AR_STA_ID1_SADH_MASK);
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301601 ath_hw_setbssidmask(common);
1602 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1603 ath9k_hw_write_associd(ah);
1604 REG_WRITE(ah, AR_ISR, ~0);
1605 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1606
1607 REGWRITE_BUFFER_FLUSH(ah);
1608
1609 ath9k_hw_set_operating_mode(ah, ah->opmode);
1610}
1611
1612static void ath9k_hw_init_queues(struct ath_hw *ah)
1613{
1614 int i;
1615
1616 ENABLE_REGWRITE_BUFFER(ah);
1617
1618 for (i = 0; i < AR_NUM_DCU; i++)
1619 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1620
1621 REGWRITE_BUFFER_FLUSH(ah);
1622
1623 ah->intr_txqs = 0;
1624 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1625 ath9k_hw_resettxqueue(ah, i);
1626}
1627
1628/*
1629 * For big endian systems turn on swapping for descriptors
1630 */
1631static void ath9k_hw_init_desc(struct ath_hw *ah)
1632{
1633 struct ath_common *common = ath9k_hw_common(ah);
1634
1635 if (AR_SREV_9100(ah)) {
1636 u32 mask;
1637 mask = REG_READ(ah, AR_CFG);
1638 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
1639 ath_dbg(common, RESET, "CFG Byte Swap Set 0x%x\n",
1640 mask);
1641 } else {
1642 mask = INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1643 REG_WRITE(ah, AR_CFG, mask);
1644 ath_dbg(common, RESET, "Setting CFG 0x%x\n",
1645 REG_READ(ah, AR_CFG));
1646 }
1647 } else {
1648 if (common->bus_ops->ath_bus_type == ATH_USB) {
1649 /* Configure AR9271 target WLAN */
1650 if (AR_SREV_9271(ah))
1651 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1652 else
1653 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1654 }
1655#ifdef __BIG_ENDIAN
1656 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah) ||
Sujith Manoharan2c323052013-12-31 08:12:02 +05301657 AR_SREV_9550(ah) || AR_SREV_9531(ah))
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301658 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1659 else
1660 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1661#endif
1662 }
1663}
1664
Sujith Manoharancaed6572012-03-14 14:40:46 +05301665/*
1666 * Fast channel change:
1667 * (Change synthesizer based on channel freq without resetting chip)
Sujith Manoharancaed6572012-03-14 14:40:46 +05301668 */
1669static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan)
1670{
1671 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301672 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301673 int ret;
1674
1675 if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
1676 goto fail;
1677
1678 if (ah->chip_fullsleep)
1679 goto fail;
1680
1681 if (!ah->curchan)
1682 goto fail;
1683
1684 if (chan->channel == ah->curchan->channel)
1685 goto fail;
1686
Felix Fietkaufeb7bc92012-04-19 21:18:28 +02001687 if ((ah->curchan->channelFlags | chan->channelFlags) &
1688 (CHANNEL_HALF | CHANNEL_QUARTER))
1689 goto fail;
1690
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301691 /*
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001692 * If cross-band fcc is not supoprted, bail out if channelFlags differ.
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301693 */
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001694 if (!(pCap->hw_caps & ATH9K_HW_CAP_FCC_BAND_SWITCH) &&
Felix Fietkauaf02efb2013-11-18 20:14:44 +01001695 ((chan->channelFlags ^ ah->curchan->channelFlags) & ~CHANNEL_HT))
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001696 goto fail;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301697
1698 if (!ath9k_hw_check_alive(ah))
1699 goto fail;
1700
1701 /*
1702 * For AR9462, make sure that calibration data for
1703 * re-using are present.
1704 */
Sujith Manoharan8a905552012-05-04 13:23:59 +05301705 if (AR_SREV_9462(ah) && (ah->caldata &&
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301706 (!test_bit(TXIQCAL_DONE, &ah->caldata->cal_flags) ||
1707 !test_bit(TXCLCAL_DONE, &ah->caldata->cal_flags) ||
1708 !test_bit(RTT_DONE, &ah->caldata->cal_flags))))
Sujith Manoharancaed6572012-03-14 14:40:46 +05301709 goto fail;
1710
1711 ath_dbg(common, RESET, "FastChannelChange for %d -> %d\n",
1712 ah->curchan->channel, chan->channel);
1713
1714 ret = ath9k_hw_channel_change(ah, chan);
1715 if (!ret)
1716 goto fail;
1717
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301718 if (ath9k_hw_mci_is_enabled(ah))
Rajkumar Manoharan1bde95fa2012-06-11 12:19:33 +05301719 ar9003_mci_2g5g_switch(ah, false);
Sujith Manoharancaed6572012-03-14 14:40:46 +05301720
Rajkumar Manoharan88033312012-09-12 18:59:19 +05301721 ath9k_hw_loadnf(ah, ah->curchan);
1722 ath9k_hw_start_nfcal(ah, true);
1723
Sujith Manoharancaed6572012-03-14 14:40:46 +05301724 if (AR_SREV_9271(ah))
1725 ar9002_hw_load_ani_reg(ah, chan);
1726
1727 return 0;
1728fail:
1729 return -EINVAL;
1730}
1731
Sujithcbe61d82009-02-09 13:27:12 +05301732int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Sujith Manoharancaed6572012-03-14 14:40:46 +05301733 struct ath9k_hw_cal_data *caldata, bool fastcc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001734{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001735 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau09d8e312013-11-18 20:14:43 +01001736 struct timespec ts;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001737 u32 saveLedState;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738 u32 saveDefAntenna;
1739 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301740 u64 tsf = 0;
Felix Fietkau09d8e312013-11-18 20:14:43 +01001741 s64 usec = 0;
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301742 int r;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301743 bool start_mci_reset = false;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301744 bool save_fullsleep = ah->chip_fullsleep;
1745
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301746 if (ath9k_hw_mci_is_enabled(ah)) {
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301747 start_mci_reset = ar9003_mci_start_reset(ah, chan);
1748 if (start_mci_reset)
1749 return 0;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301750 }
1751
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001752 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001753 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001754
Sujith Manoharancaed6572012-03-14 14:40:46 +05301755 if (ah->curchan && !ah->chip_fullsleep)
1756 ath9k_hw_getnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001757
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001758 ah->caldata = caldata;
Sujith Manoharanfcb9a3d2013-03-04 12:42:52 +05301759 if (caldata && (chan->channel != caldata->channel ||
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001760 chan->channelFlags != caldata->channelFlags)) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001761 /* Operating channel changed, reset channel calibration data */
1762 memset(caldata, 0, sizeof(*caldata));
1763 ath9k_init_nfcal_hist_buffer(ah, chan);
Felix Fietkau51dea9b2012-08-27 17:00:07 +02001764 } else if (caldata) {
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301765 clear_bit(PAPRD_PACKET_SENT, &caldata->cal_flags);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001766 }
Lorenzo Bianconi5bc225a2013-10-11 14:09:54 +02001767 ah->noise = ath9k_hw_getchan_noise(ah, chan, chan->noisefloor);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001768
Sujith Manoharancaed6572012-03-14 14:40:46 +05301769 if (fastcc) {
1770 r = ath9k_hw_do_fastcc(ah, chan);
1771 if (!r)
1772 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001773 }
1774
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301775 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301776 ar9003_mci_stop_bt(ah, save_fullsleep);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301777
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001778 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1779 if (saveDefAntenna == 0)
1780 saveDefAntenna = 1;
1781
1782 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1783
Felix Fietkau09d8e312013-11-18 20:14:43 +01001784 /* Save TSF before chip reset, a cold reset clears it */
1785 tsf = ath9k_hw_gettsf64(ah);
1786 getrawmonotonic(&ts);
Felix Fietkaucca213f2013-12-20 17:02:24 +01001787 usec = ts.tv_sec * 1000000ULL + ts.tv_nsec / 1000;
Sujith46fe7822009-09-17 09:25:25 +05301788
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001789 saveLedState = REG_READ(ah, AR_CFG_LED) &
1790 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1791 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1792
1793 ath9k_hw_mark_phy_inactive(ah);
1794
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001795 ah->paprd_table_write_done = false;
1796
Sujith05020d22010-03-17 14:25:23 +05301797 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001798 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1799 REG_WRITE(ah,
1800 AR9271_RESET_POWER_DOWN_CONTROL,
1801 AR9271_RADIO_RF_RST);
1802 udelay(50);
1803 }
1804
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001805 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001806 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001807 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808 }
1809
Sujith05020d22010-03-17 14:25:23 +05301810 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001811 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1812 ah->htc_reset_init = false;
1813 REG_WRITE(ah,
1814 AR9271_RESET_POWER_DOWN_CONTROL,
1815 AR9271_GATE_MAC_CTL);
1816 udelay(50);
1817 }
1818
Sujith46fe7822009-09-17 09:25:25 +05301819 /* Restore TSF */
Felix Fietkau09d8e312013-11-18 20:14:43 +01001820 getrawmonotonic(&ts);
Felix Fietkaucca213f2013-12-20 17:02:24 +01001821 usec = ts.tv_sec * 1000000ULL + ts.tv_nsec / 1000 - usec;
Felix Fietkau09d8e312013-11-18 20:14:43 +01001822 ath9k_hw_settsf64(ah, tsf + usec);
Sujith46fe7822009-09-17 09:25:25 +05301823
Felix Fietkau7a370812010-09-22 12:34:52 +02001824 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301825 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001826
Sujithe9141f72010-06-01 15:14:10 +05301827 if (!AR_SREV_9300_20_OR_LATER(ah))
1828 ar9002_hw_enable_async_fifo(ah);
1829
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001830 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001831 if (r)
1832 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833
Lorenzo Bianconi935d00c2013-12-12 18:10:16 +01001834 ath9k_hw_set_rfmode(ah, chan);
1835
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301836 if (ath9k_hw_mci_is_enabled(ah))
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301837 ar9003_mci_reset(ah, false, IS_CHAN_2GHZ(chan), save_fullsleep);
1838
Felix Fietkauf860d522010-06-30 02:07:48 +02001839 /*
1840 * Some AR91xx SoC devices frequently fail to accept TSF writes
1841 * right after the chip reset. When that happens, write a new
1842 * value after the initvals have been applied, with an offset
1843 * based on measured time difference
1844 */
1845 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1846 tsf += 1500;
1847 ath9k_hw_settsf64(ah, tsf);
1848 }
1849
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301850 ath9k_hw_init_mfp(ah);
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001851
Felix Fietkau81c507a2013-10-11 23:30:55 +02001852 ath9k_hw_set_delta_slope(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001853 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301854 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001855
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301856 ath9k_hw_reset_opmode(ah, macStaId1, saveDefAntenna);
Sujith Manoharan00e00032011-01-26 21:59:05 +05301857
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001858 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001859 if (r)
1860 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001861
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001862 ath9k_hw_set_clockrate(ah);
1863
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301864 ath9k_hw_init_queues(ah);
Sujith2660b812009-02-09 13:27:26 +05301865 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001866 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001867 ath9k_hw_init_qos(ah);
1868
Sujith2660b812009-02-09 13:27:26 +05301869 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001870 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301871
Felix Fietkau0005baf2010-01-15 02:33:40 +01001872 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873
Felix Fietkaufe2b6af2011-07-09 11:12:51 +07001874 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1875 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1876 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1877 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1878 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1879 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1880 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301881 }
1882
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001883 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884
1885 ath9k_hw_set_dma(ah);
1886
Rajkumar Manoharaned6ebd82012-06-11 12:19:34 +05301887 if (!ath9k_hw_mci_is_enabled(ah))
1888 REG_WRITE(ah, AR_OBS, 8);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889
Sujith0ce024c2009-12-14 14:57:00 +05301890 if (ah->config.rx_intr_mitigation) {
Sujith Manoharana64e1a42014-01-23 08:20:30 +05301891 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, ah->config.rimt_last);
1892 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, ah->config.rimt_first);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001893 }
1894
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001895 if (ah->config.tx_intr_mitigation) {
1896 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1897 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1898 }
1899
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900 ath9k_hw_init_bb(ah, chan);
1901
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301902 if (caldata) {
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301903 clear_bit(TXIQCAL_DONE, &caldata->cal_flags);
1904 clear_bit(TXCLCAL_DONE, &caldata->cal_flags);
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301905 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001906 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001907 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001908
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301909 if (ath9k_hw_mci_is_enabled(ah) && ar9003_mci_end_reset(ah, chan, caldata))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301910 return -EIO;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301911
Sujith7d0d0df2010-04-16 11:53:57 +05301912 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001913
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001914 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1916
Sujith7d0d0df2010-04-16 11:53:57 +05301917 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301918
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301919 ath9k_hw_init_desc(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001920
Sujith Manoharandbccdd12012-02-22 17:55:47 +05301921 if (ath9k_hw_btcoex_is_enabled(ah))
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301922 ath9k_hw_btcoex_enable(ah);
1923
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301924 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301925 ar9003_mci_check_bt(ah);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301926
Rajkumar Manoharan1fe860e2012-07-01 19:53:51 +05301927 ath9k_hw_loadnf(ah, chan);
1928 ath9k_hw_start_nfcal(ah, true);
1929
Sujith Manoharana7abaf72013-12-24 10:44:21 +05301930 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001931 ar9003_hw_bb_watchdog_config(ah);
Sujith Manoharana7abaf72013-12-24 10:44:21 +05301932
1933 if (ah->config.hw_hang_checks & HW_PHYRESTART_CLC_WAR)
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301934 ar9003_hw_disable_phy_restart(ah);
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301935
Felix Fietkau691680b2011-03-19 13:55:38 +01001936 ath9k_hw_apply_gpio_override(ah);
1937
Sujith Manoharan7bdea962013-08-04 14:22:00 +05301938 if (AR_SREV_9565(ah) && common->bt_ant_diversity)
Sujith Manoharan362cd032012-09-16 08:06:36 +05301939 REG_SET_BIT(ah, AR_BTCOEX_WL_LNADIV, AR_BTCOEX_WL_LNADIV_FORCE_ON);
1940
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001941 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001942}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001943EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001944
Sujithf1dc5602008-10-29 10:16:30 +05301945/******************************/
1946/* Power Management (Chipset) */
1947/******************************/
1948
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001949/*
1950 * Notify Power Mgt is disabled in self-generated frames.
1951 * If requested, force chip to sleep.
1952 */
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301953static void ath9k_set_power_sleep(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301954{
1955 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301956
Sujith Manoharana4a29542012-09-10 09:20:03 +05301957 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05301958 REG_CLR_BIT(ah, AR_TIMER_MODE, 0xff);
1959 REG_CLR_BIT(ah, AR_NDP2_TIMER_MODE, 0xff);
1960 REG_CLR_BIT(ah, AR_SLP32_INC, 0xfffff);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301961 /* xxx Required for WLAN only case ? */
1962 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
1963 udelay(100);
1964 }
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301965
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301966 /*
1967 * Clear the RTC force wake bit to allow the
1968 * mac to go to sleep.
1969 */
1970 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301971
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05301972 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301973 udelay(100);
Sujithf1dc5602008-10-29 10:16:30 +05301974
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301975 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
1976 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1977
1978 /* Shutdown chip. Active low */
1979 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) {
1980 REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
1981 udelay(2);
Sujithf1dc5602008-10-29 10:16:30 +05301982 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001983
1984 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
Rafael J. Wysockia7322812011-11-26 23:37:43 +01001985 if (AR_SREV_9300_20_OR_LATER(ah))
1986 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987}
1988
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001989/*
1990 * Notify Power Management is enabled in self-generating
1991 * frames. If request, set power mode of chip to
1992 * auto/normal. Duration in units of 128us (1/8 TU).
1993 */
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301994static void ath9k_set_power_network_sleep(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995{
Sujith Manoharan31604cf2012-06-04 16:27:36 +05301996 struct ath9k_hw_capabilities *pCap = &ah->caps;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301997
Sujithf1dc5602008-10-29 10:16:30 +05301998 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001999
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302000 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2001 /* Set WakeOnInterrupt bit; clear ForceWake bit */
2002 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2003 AR_RTC_FORCE_WAKE_ON_INT);
2004 } else {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302005
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302006 /* When chip goes into network sleep, it could be waken
2007 * up by MCI_INT interrupt caused by BT's HW messages
2008 * (LNA_xxx, CONT_xxx) which chould be in a very fast
2009 * rate (~100us). This will cause chip to leave and
2010 * re-enter network sleep mode frequently, which in
2011 * consequence will have WLAN MCI HW to generate lots of
2012 * SYS_WAKING and SYS_SLEEPING messages which will make
2013 * BT CPU to busy to process.
2014 */
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302015 if (ath9k_hw_mci_is_enabled(ah))
2016 REG_CLR_BIT(ah, AR_MCI_INTERRUPT_RX_MSG_EN,
2017 AR_MCI_INTERRUPT_RX_HW_MSG_MASK);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302018 /*
2019 * Clear the RTC force wake bit to allow the
2020 * mac to go to sleep.
2021 */
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302022 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302023
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302024 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302025 udelay(30);
Sujithf1dc5602008-10-29 10:16:30 +05302026 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002027
2028 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
2029 if (AR_SREV_9300_20_OR_LATER(ah))
2030 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05302031}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302033static bool ath9k_hw_set_power_awake(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302034{
2035 u32 val;
2036 int i;
2037
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002038 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
2039 if (AR_SREV_9300_20_OR_LATER(ah)) {
2040 REG_WRITE(ah, AR_WA, ah->WARegVal);
2041 udelay(10);
2042 }
2043
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302044 if ((REG_READ(ah, AR_RTC_STATUS) &
2045 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2046 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithf1dc5602008-10-29 10:16:30 +05302047 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002048 }
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302049 if (!AR_SREV_9300_20_OR_LATER(ah))
2050 ath9k_hw_init_pll(ah, NULL);
2051 }
2052 if (AR_SREV_9100(ah))
2053 REG_SET_BIT(ah, AR_RTC_RESET,
2054 AR_RTC_RESET_EN);
2055
2056 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2057 AR_RTC_FORCE_WAKE_EN);
Sujith Manoharan04575f22013-12-28 09:47:13 +05302058 if (AR_SREV_9100(ah))
Sujith Manoharan3683a072014-02-04 08:37:52 +05302059 mdelay(10);
Sujith Manoharan04575f22013-12-28 09:47:13 +05302060 else
2061 udelay(50);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302062
2063 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2064 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2065 if (val == AR_RTC_STATUS_ON)
2066 break;
2067 udelay(50);
2068 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2069 AR_RTC_FORCE_WAKE_EN);
2070 }
2071 if (i == 0) {
2072 ath_err(ath9k_hw_common(ah),
2073 "Failed to wakeup in %uus\n",
2074 POWER_UP_TIME / 20);
2075 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002076 }
2077
Rajkumar Manoharancdbe4082012-10-25 17:16:53 +05302078 if (ath9k_hw_mci_is_enabled(ah))
2079 ar9003_mci_set_power_awake(ah);
2080
Sujithf1dc5602008-10-29 10:16:30 +05302081 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2082
2083 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084}
2085
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002086bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302087{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002088 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302089 int status = true;
Sujithf1dc5602008-10-29 10:16:30 +05302090 static const char *modes[] = {
2091 "AWAKE",
2092 "FULL-SLEEP",
2093 "NETWORK SLEEP",
2094 "UNDEFINED"
2095 };
Sujithf1dc5602008-10-29 10:16:30 +05302096
Gabor Juhoscbdec972009-07-24 17:27:22 +02002097 if (ah->power_mode == mode)
2098 return status;
2099
Joe Perchesd2182b62011-12-15 14:55:53 -08002100 ath_dbg(common, RESET, "%s -> %s\n",
Joe Perches226afe62010-12-02 19:12:37 -08002101 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302102
2103 switch (mode) {
2104 case ATH9K_PM_AWAKE:
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302105 status = ath9k_hw_set_power_awake(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302106 break;
2107 case ATH9K_PM_FULL_SLEEP:
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05302108 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharand1ca8b82012-02-22 12:41:01 +05302109 ar9003_mci_set_full_sleep(ah);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302110
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302111 ath9k_set_power_sleep(ah);
Sujith2660b812009-02-09 13:27:26 +05302112 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302113 break;
2114 case ATH9K_PM_NETWORK_SLEEP:
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302115 ath9k_set_power_network_sleep(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302116 break;
2117 default:
Joe Perches38002762010-12-02 19:12:36 -08002118 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302119 return false;
2120 }
Sujith2660b812009-02-09 13:27:26 +05302121 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302122
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002123 /*
2124 * XXX: If this warning never comes up after a while then
2125 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
2126 * ath9k_hw_setpower() return type void.
2127 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05302128
2129 if (!(ah->ah_flags & AH_UNPLUGGED))
2130 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002131
Sujithf1dc5602008-10-29 10:16:30 +05302132 return status;
2133}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002134EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302135
Sujithf1dc5602008-10-29 10:16:30 +05302136/*******************/
2137/* Beacon Handling */
2138/*******************/
2139
Sujithcbe61d82009-02-09 13:27:12 +05302140void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002141{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142 int flags = 0;
2143
Sujith7d0d0df2010-04-16 11:53:57 +05302144 ENABLE_REGWRITE_BUFFER(ah);
2145
Sujith2660b812009-02-09 13:27:26 +05302146 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002147 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002148 REG_SET_BIT(ah, AR_TXCFG,
2149 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Thomas Pedersen2664d662013-05-08 10:16:48 -07002150 case NL80211_IFTYPE_MESH_POINT:
Colin McCabed97809d2008-12-01 13:38:55 -08002151 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01002152 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
2153 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
2154 TU_TO_USEC(ah->config.dma_beacon_response_time));
2155 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
2156 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002157 flags |=
2158 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2159 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002160 default:
Joe Perchesd2182b62011-12-15 14:55:53 -08002161 ath_dbg(ath9k_hw_common(ah), BEACON,
2162 "%s: unsupported opmode: %d\n", __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002163 return;
2164 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002165 }
2166
Felix Fietkaudd347f22011-03-22 21:54:17 +01002167 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
2168 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
2169 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002170
Sujith7d0d0df2010-04-16 11:53:57 +05302171 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302172
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002173 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2174}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002175EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002176
Sujithcbe61d82009-02-09 13:27:12 +05302177void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302178 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002179{
2180 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302181 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002182 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183
Sujith7d0d0df2010-04-16 11:53:57 +05302184 ENABLE_REGWRITE_BUFFER(ah);
2185
Felix Fietkau4ed15762013-12-14 18:03:44 +01002186 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, bs->bs_nexttbtt);
2187 REG_WRITE(ah, AR_BEACON_PERIOD, bs->bs_intval);
2188 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, bs->bs_intval);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189
Sujith7d0d0df2010-04-16 11:53:57 +05302190 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302191
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192 REG_RMW_FIELD(ah, AR_RSSI_THR,
2193 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2194
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302195 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002196
2197 if (bs->bs_sleepduration > beaconintval)
2198 beaconintval = bs->bs_sleepduration;
2199
2200 dtimperiod = bs->bs_dtimperiod;
2201 if (bs->bs_sleepduration > dtimperiod)
2202 dtimperiod = bs->bs_sleepduration;
2203
2204 if (beaconintval == dtimperiod)
2205 nextTbtt = bs->bs_nextdtim;
2206 else
2207 nextTbtt = bs->bs_nexttbtt;
2208
Joe Perchesd2182b62011-12-15 14:55:53 -08002209 ath_dbg(common, BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2210 ath_dbg(common, BEACON, "next beacon %d\n", nextTbtt);
2211 ath_dbg(common, BEACON, "beacon period %d\n", beaconintval);
2212 ath_dbg(common, BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002213
Sujith7d0d0df2010-04-16 11:53:57 +05302214 ENABLE_REGWRITE_BUFFER(ah);
2215
Felix Fietkau4ed15762013-12-14 18:03:44 +01002216 REG_WRITE(ah, AR_NEXT_DTIM, bs->bs_nextdtim - SLEEP_SLOP);
2217 REG_WRITE(ah, AR_NEXT_TIM, nextTbtt - SLEEP_SLOP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002218
2219 REG_WRITE(ah, AR_SLEEP1,
2220 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2221 | AR_SLEEP1_ASSUME_DTIM);
2222
Sujith60b67f52008-08-07 10:52:38 +05302223 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002224 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2225 else
2226 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2227
2228 REG_WRITE(ah, AR_SLEEP2,
2229 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2230
Felix Fietkau4ed15762013-12-14 18:03:44 +01002231 REG_WRITE(ah, AR_TIM_PERIOD, beaconintval);
2232 REG_WRITE(ah, AR_DTIM_PERIOD, dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002233
Sujith7d0d0df2010-04-16 11:53:57 +05302234 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302235
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002236 REG_SET_BIT(ah, AR_TIMER_MODE,
2237 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2238 AR_DTIM_TIMER_EN);
2239
Sujith4af9cf42009-02-12 10:06:47 +05302240 /* TSF Out of Range Threshold */
2241 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002242}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002243EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002244
Sujithf1dc5602008-10-29 10:16:30 +05302245/*******************/
2246/* HW Capabilities */
2247/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002248
Felix Fietkau60540692011-07-19 08:46:44 +02002249static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
2250{
2251 eeprom_chainmask &= chip_chainmask;
2252 if (eeprom_chainmask)
2253 return eeprom_chainmask;
2254 else
2255 return chip_chainmask;
2256}
2257
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002258/**
2259 * ath9k_hw_dfs_tested - checks if DFS has been tested with used chipset
2260 * @ah: the atheros hardware data structure
2261 *
2262 * We enable DFS support upstream on chipsets which have passed a series
2263 * of tests. The testing requirements are going to be documented. Desired
2264 * test requirements are documented at:
2265 *
2266 * http://wireless.kernel.org/en/users/Drivers/ath9k/dfs
2267 *
2268 * Once a new chipset gets properly tested an individual commit can be used
2269 * to document the testing for DFS for that chipset.
2270 */
2271static bool ath9k_hw_dfs_tested(struct ath_hw *ah)
2272{
2273
2274 switch (ah->hw_version.macVersion) {
Zefir Kurtisi73e49372013-04-03 18:31:31 +02002275 /* for temporary testing DFS with 9280 */
2276 case AR_SREV_VERSION_9280:
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002277 /* AR9580 will likely be our first target to get testing on */
2278 case AR_SREV_VERSION_9580:
Zefir Kurtisi73e49372013-04-03 18:31:31 +02002279 return true;
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002280 default:
2281 return false;
2282 }
2283}
2284
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002285int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002286{
Sujith2660b812009-02-09 13:27:26 +05302287 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002288 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002289 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau60540692011-07-19 08:46:44 +02002290 unsigned int chip_chainmask;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002291
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05302292 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002293 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294
Sujithf74df6f2009-02-09 13:27:24 +05302295 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002296 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302297
Sujith2660b812009-02-09 13:27:26 +05302298 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302299 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002300 if (regulatory->current_rd == 0x64 ||
2301 regulatory->current_rd == 0x65)
2302 regulatory->current_rd += 5;
2303 else if (regulatory->current_rd == 0x41)
2304 regulatory->current_rd = 0x43;
Joe Perchesd2182b62011-12-15 14:55:53 -08002305 ath_dbg(common, REGULATORY, "regdomain mapped to 0x%x\n",
2306 regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002307 }
Sujithdc2222a2008-08-14 13:26:55 +05302308
Sujithf74df6f2009-02-09 13:27:24 +05302309 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002310 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002311 ath_err(common,
2312 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002313 return -EINVAL;
2314 }
2315
Felix Fietkaud4659912010-10-14 16:02:39 +02002316 if (eeval & AR5416_OPFLAGS_11A)
2317 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318
Felix Fietkaud4659912010-10-14 16:02:39 +02002319 if (eeval & AR5416_OPFLAGS_11G)
2320 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05302321
Sujith Manoharane41db612012-09-10 09:20:12 +05302322 if (AR_SREV_9485(ah) ||
2323 AR_SREV_9285(ah) ||
2324 AR_SREV_9330(ah) ||
2325 AR_SREV_9565(ah))
Felix Fietkau60540692011-07-19 08:46:44 +02002326 chip_chainmask = 1;
Mohammed Shafi Shajakhanba5736a2011-11-30 21:10:52 +05302327 else if (AR_SREV_9462(ah))
2328 chip_chainmask = 3;
Felix Fietkau60540692011-07-19 08:46:44 +02002329 else if (!AR_SREV_9280_20_OR_LATER(ah))
2330 chip_chainmask = 7;
2331 else if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9340(ah))
2332 chip_chainmask = 3;
2333 else
2334 chip_chainmask = 7;
2335
Sujithf74df6f2009-02-09 13:27:24 +05302336 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002337 /*
2338 * For AR9271 we will temporarilly uses the rx chainmax as read from
2339 * the EEPROM.
2340 */
Sujith8147f5d2009-02-20 15:13:23 +05302341 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002342 !(eeval & AR5416_OPFLAGS_11A) &&
2343 !(AR_SREV_9271(ah)))
2344 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302345 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01002346 else if (AR_SREV_9100(ah))
2347 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05302348 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002349 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302350 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302351
Felix Fietkau60540692011-07-19 08:46:44 +02002352 pCap->tx_chainmask = fixup_chainmask(chip_chainmask, pCap->tx_chainmask);
2353 pCap->rx_chainmask = fixup_chainmask(chip_chainmask, pCap->rx_chainmask);
Felix Fietkau82b2d332011-09-03 01:40:23 +02002354 ah->txchainmask = pCap->tx_chainmask;
2355 ah->rxchainmask = pCap->rx_chainmask;
Felix Fietkau60540692011-07-19 08:46:44 +02002356
Felix Fietkau7a370812010-09-22 12:34:52 +02002357 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302358
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01002359 /* enable key search for every frame in an aggregate */
2360 if (AR_SREV_9300_20_OR_LATER(ah))
2361 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
2362
Bruno Randolfce2220d2010-09-17 11:36:25 +09002363 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
2364
Felix Fietkau0db156e2011-03-23 20:57:29 +01002365 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302366 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2367 else
2368 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2369
Sujith5b5fa352010-03-17 14:25:15 +05302370 if (AR_SREV_9271(ah))
2371 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302372 else if (AR_DEVID_7010(ah))
2373 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Mohammed Shafi Shajakhan6321eb02011-09-30 11:31:27 +05302374 else if (AR_SREV_9300_20_OR_LATER(ah))
2375 pCap->num_gpio_pins = AR9300_NUM_GPIO;
2376 else if (AR_SREV_9287_11_OR_LATER(ah))
2377 pCap->num_gpio_pins = AR9287_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002378 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302379 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02002380 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302381 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2382 else
2383 pCap->num_gpio_pins = AR_NUM_GPIO;
2384
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302385 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302386 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302387 else
Sujithf1dc5602008-10-29 10:16:30 +05302388 pCap->rts_aggr_limit = (8 * 1024);
Sujithf1dc5602008-10-29 10:16:30 +05302389
Johannes Berg74e13062013-07-03 20:55:38 +02002390#ifdef CONFIG_ATH9K_RFKILL
Sujith2660b812009-02-09 13:27:26 +05302391 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2392 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2393 ah->rfkill_gpio =
2394 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2395 ah->rfkill_polarity =
2396 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302397
2398 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2399 }
2400#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002401 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302402 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2403 else
2404 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302405
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302406 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302407 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2408 else
2409 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2410
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002411 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002412 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Sujith Manoharana4a29542012-09-10 09:20:03 +05302413 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah) && !AR_SREV_9565(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002414 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2415
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002416 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2417 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2418 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002419 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002420 pCap->txs_len = sizeof(struct ar9003_txs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002421 } else {
2422 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkaua949b172011-07-09 11:12:47 +07002423 if (AR_SREV_9280_20(ah))
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002424 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002425 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002426
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002427 if (AR_SREV_9300_20_OR_LATER(ah))
2428 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2429
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002430 if (AR_SREV_9300_20_OR_LATER(ah))
2431 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2432
Felix Fietkaua42acef2010-09-22 12:34:54 +02002433 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002434 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2435
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302436 if (AR_SREV_9285(ah)) {
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002437 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2438 ant_div_ctl1 =
2439 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302440 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1)) {
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002441 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302442 ath_info(common, "Enable LNA combining\n");
2443 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002444 }
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302445 }
2446
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302447 if (AR_SREV_9300_20_OR_LATER(ah)) {
2448 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2449 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2450 }
2451
Sujith Manoharan06236e52012-09-16 08:07:12 +05302452 if (AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302453 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302454 if ((ant_div_ctl1 >> 0x6) == 0x3) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302455 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302456 ath_info(common, "Enable LNA combining\n");
2457 }
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302458 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002459
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002460 if (ath9k_hw_dfs_tested(ah))
2461 pCap->hw_caps |= ATH9K_HW_CAP_DFS;
2462
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002463 tx_chainmask = pCap->tx_chainmask;
2464 rx_chainmask = pCap->rx_chainmask;
2465 while (tx_chainmask || rx_chainmask) {
2466 if (tx_chainmask & BIT(0))
2467 pCap->max_txchains++;
2468 if (rx_chainmask & BIT(0))
2469 pCap->max_rxchains++;
2470
2471 tx_chainmask >>= 1;
2472 rx_chainmask >>= 1;
2473 }
2474
Sujith Manoharana4a29542012-09-10 09:20:03 +05302475 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302476 if (!(ah->ent_mode & AR_ENT_OTP_49GHZ_DISABLE))
2477 pCap->hw_caps |= ATH9K_HW_CAP_MCI;
2478
Sujith Manoharan2b5e54e2013-06-24 18:18:46 +05302479 if (AR_SREV_9462_20_OR_LATER(ah))
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302480 pCap->hw_caps |= ATH9K_HW_CAP_RTT;
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302481 }
2482
Sujith Manoharan846e4382013-06-03 09:19:24 +05302483 if (AR_SREV_9462(ah))
2484 pCap->hw_caps |= ATH9K_HW_WOW_DEVICE_CAPABLE;
Mohammed Shafi Shajakhand6878092012-07-10 14:55:17 +05302485
Sujith Manoharan0f21ee82012-12-10 07:22:37 +05302486 if (AR_SREV_9300_20_OR_LATER(ah) &&
2487 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
2488 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
2489
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002490 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002491}
2492
Sujithf1dc5602008-10-29 10:16:30 +05302493/****************************/
2494/* GPIO / RFKILL / Antennae */
2495/****************************/
2496
Sujithcbe61d82009-02-09 13:27:12 +05302497static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302498 u32 gpio, u32 type)
2499{
2500 int addr;
2501 u32 gpio_shift, tmp;
2502
2503 if (gpio > 11)
2504 addr = AR_GPIO_OUTPUT_MUX3;
2505 else if (gpio > 5)
2506 addr = AR_GPIO_OUTPUT_MUX2;
2507 else
2508 addr = AR_GPIO_OUTPUT_MUX1;
2509
2510 gpio_shift = (gpio % 6) * 5;
2511
2512 if (AR_SREV_9280_20_OR_LATER(ah)
2513 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2514 REG_RMW(ah, addr, (type << gpio_shift),
2515 (0x1f << gpio_shift));
2516 } else {
2517 tmp = REG_READ(ah, addr);
2518 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2519 tmp &= ~(0x1f << gpio_shift);
2520 tmp |= (type << gpio_shift);
2521 REG_WRITE(ah, addr, tmp);
2522 }
2523}
2524
Sujithcbe61d82009-02-09 13:27:12 +05302525void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302526{
2527 u32 gpio_shift;
2528
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002529 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302530
Sujith88c1f4f2010-06-30 14:46:31 +05302531 if (AR_DEVID_7010(ah)) {
2532 gpio_shift = gpio;
2533 REG_RMW(ah, AR7010_GPIO_OE,
2534 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2535 (AR7010_GPIO_OE_MASK << gpio_shift));
2536 return;
2537 }
Sujithf1dc5602008-10-29 10:16:30 +05302538
Sujith88c1f4f2010-06-30 14:46:31 +05302539 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302540 REG_RMW(ah,
2541 AR_GPIO_OE_OUT,
2542 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2543 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2544}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002545EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302546
Sujithcbe61d82009-02-09 13:27:12 +05302547u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302548{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302549#define MS_REG_READ(x, y) \
2550 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2551
Sujith2660b812009-02-09 13:27:26 +05302552 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302553 return 0xffffffff;
2554
Sujith88c1f4f2010-06-30 14:46:31 +05302555 if (AR_DEVID_7010(ah)) {
2556 u32 val;
2557 val = REG_READ(ah, AR7010_GPIO_IN);
2558 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2559 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002560 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2561 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002562 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302563 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002564 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302565 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002566 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302567 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002568 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302569 return MS_REG_READ(AR928X, gpio) != 0;
2570 else
2571 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302572}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002573EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302574
Sujithcbe61d82009-02-09 13:27:12 +05302575void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302576 u32 ah_signal_type)
2577{
2578 u32 gpio_shift;
2579
Sujith88c1f4f2010-06-30 14:46:31 +05302580 if (AR_DEVID_7010(ah)) {
2581 gpio_shift = gpio;
2582 REG_RMW(ah, AR7010_GPIO_OE,
2583 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2584 (AR7010_GPIO_OE_MASK << gpio_shift));
2585 return;
2586 }
2587
Sujithf1dc5602008-10-29 10:16:30 +05302588 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302589 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302590 REG_RMW(ah,
2591 AR_GPIO_OE_OUT,
2592 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2593 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2594}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002595EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302596
Sujithcbe61d82009-02-09 13:27:12 +05302597void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302598{
Sujith88c1f4f2010-06-30 14:46:31 +05302599 if (AR_DEVID_7010(ah)) {
2600 val = val ? 0 : 1;
2601 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2602 AR_GPIO_BIT(gpio));
2603 return;
2604 }
2605
Sujith5b5fa352010-03-17 14:25:15 +05302606 if (AR_SREV_9271(ah))
2607 val = ~val;
2608
Sujithf1dc5602008-10-29 10:16:30 +05302609 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2610 AR_GPIO_BIT(gpio));
2611}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002612EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302613
Sujithcbe61d82009-02-09 13:27:12 +05302614void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302615{
2616 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2617}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002618EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302619
Sujithf1dc5602008-10-29 10:16:30 +05302620/*********************/
2621/* General Operation */
2622/*********************/
2623
Sujithcbe61d82009-02-09 13:27:12 +05302624u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302625{
2626 u32 bits = REG_READ(ah, AR_RX_FILTER);
2627 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2628
2629 if (phybits & AR_PHY_ERR_RADAR)
2630 bits |= ATH9K_RX_FILTER_PHYRADAR;
2631 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2632 bits |= ATH9K_RX_FILTER_PHYERR;
2633
2634 return bits;
2635}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002636EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302637
Sujithcbe61d82009-02-09 13:27:12 +05302638void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302639{
2640 u32 phybits;
2641
Sujith7d0d0df2010-04-16 11:53:57 +05302642 ENABLE_REGWRITE_BUFFER(ah);
2643
Sujith Manoharana4a29542012-09-10 09:20:03 +05302644 if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302645 bits |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
2646
Sujith7ea310b2009-09-03 12:08:43 +05302647 REG_WRITE(ah, AR_RX_FILTER, bits);
2648
Sujithf1dc5602008-10-29 10:16:30 +05302649 phybits = 0;
2650 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2651 phybits |= AR_PHY_ERR_RADAR;
2652 if (bits & ATH9K_RX_FILTER_PHYERR)
2653 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2654 REG_WRITE(ah, AR_PHY_ERR, phybits);
2655
2656 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002657 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302658 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002659 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302660
2661 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302662}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002663EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302664
Sujithcbe61d82009-02-09 13:27:12 +05302665bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302666{
Rajkumar Manoharan99922a42012-06-04 16:28:31 +05302667 if (ath9k_hw_mci_is_enabled(ah))
2668 ar9003_mci_bt_gain_ctrl(ah);
2669
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302670 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2671 return false;
2672
2673 ath9k_hw_init_pll(ah, NULL);
Felix Fietkau8efa7a82012-03-14 16:40:23 +01002674 ah->htc_reset_init = true;
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302675 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302676}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002677EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302678
Sujithcbe61d82009-02-09 13:27:12 +05302679bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302680{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002681 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302682 return false;
2683
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302684 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2685 return false;
2686
2687 ath9k_hw_init_pll(ah, NULL);
2688 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302689}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002690EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302691
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002692static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05302693{
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002694 enum eeprom_param gain_param;
Felix Fietkau9c204b42011-07-27 15:01:05 +02002695
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002696 if (IS_CHAN_2GHZ(chan))
2697 gain_param = EEP_ANTENNA_GAIN_2G;
2698 else
2699 gain_param = EEP_ANTENNA_GAIN_5G;
Sujithf1dc5602008-10-29 10:16:30 +05302700
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002701 return ah->eep_ops->get_eeprom(ah, gain_param);
2702}
2703
Gabor Juhos64ea57d2012-04-15 20:38:05 +02002704void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan,
2705 bool test)
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002706{
2707 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2708 struct ieee80211_channel *channel;
2709 int chan_pwr, new_pwr, max_gain;
2710 int ant_gain, ant_reduction = 0;
2711
2712 if (!chan)
2713 return;
2714
2715 channel = chan->chan;
2716 chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
2717 new_pwr = min_t(int, chan_pwr, reg->power_limit);
2718 max_gain = chan_pwr - new_pwr + channel->max_antenna_gain * 2;
2719
2720 ant_gain = get_antenna_gain(ah, chan);
2721 if (ant_gain > max_gain)
2722 ant_reduction = ant_gain - max_gain;
Sujithf1dc5602008-10-29 10:16:30 +05302723
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002724 ah->eep_ops->set_txpower(ah, chan,
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002725 ath9k_regd_get_ctl(reg, chan),
Gabor Juhos64ea57d2012-04-15 20:38:05 +02002726 ant_reduction, new_pwr, test);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002727}
2728
2729void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2730{
2731 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2732 struct ath9k_channel *chan = ah->curchan;
2733 struct ieee80211_channel *channel = chan->chan;
2734
Dan Carpenter48ef5c42011-10-17 10:28:23 +03002735 reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002736 if (test)
2737 channel->max_power = MAX_RATE_POWER / 2;
2738
Gabor Juhos64ea57d2012-04-15 20:38:05 +02002739 ath9k_hw_apply_txpower(ah, chan, test);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002740
2741 if (test)
2742 channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
Sujithf1dc5602008-10-29 10:16:30 +05302743}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002744EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302745
Sujithcbe61d82009-02-09 13:27:12 +05302746void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302747{
Sujith2660b812009-02-09 13:27:26 +05302748 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302749}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002750EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302751
Sujithcbe61d82009-02-09 13:27:12 +05302752void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302753{
2754 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2755 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2756}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002757EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302758
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002759void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302760{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002761 struct ath_common *common = ath9k_hw_common(ah);
2762
2763 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2764 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2765 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302766}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002767EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302768
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002769#define ATH9K_MAX_TSF_READ 10
2770
Sujithcbe61d82009-02-09 13:27:12 +05302771u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302772{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002773 u32 tsf_lower, tsf_upper1, tsf_upper2;
2774 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302775
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002776 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2777 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2778 tsf_lower = REG_READ(ah, AR_TSF_L32);
2779 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2780 if (tsf_upper2 == tsf_upper1)
2781 break;
2782 tsf_upper1 = tsf_upper2;
2783 }
Sujithf1dc5602008-10-29 10:16:30 +05302784
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002785 WARN_ON( i == ATH9K_MAX_TSF_READ );
2786
2787 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302788}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002789EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302790
Sujithcbe61d82009-02-09 13:27:12 +05302791void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002792{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002793 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002794 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002795}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002796EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002797
Sujithcbe61d82009-02-09 13:27:12 +05302798void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302799{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002800 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2801 AH_TSF_WRITE_TIMEOUT))
Joe Perchesd2182b62011-12-15 14:55:53 -08002802 ath_dbg(ath9k_hw_common(ah), RESET,
Joe Perches226afe62010-12-02 19:12:37 -08002803 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002804
Sujithf1dc5602008-10-29 10:16:30 +05302805 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002806}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002807EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002808
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05302809void ath9k_hw_set_tsfadjust(struct ath_hw *ah, bool set)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002810{
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05302811 if (set)
Sujith2660b812009-02-09 13:27:26 +05302812 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002813 else
Sujith2660b812009-02-09 13:27:26 +05302814 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002815}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002816EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002817
Felix Fietkaue4744ec2013-10-11 23:31:01 +02002818void ath9k_hw_set11nmac2040(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002819{
Sujithf1dc5602008-10-29 10:16:30 +05302820 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002821
Felix Fietkaue4744ec2013-10-11 23:31:01 +02002822 if (IS_CHAN_HT40(chan) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302823 macmode = AR_2040_JOINED_RX_CLEAR;
2824 else
2825 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002826
Sujithf1dc5602008-10-29 10:16:30 +05302827 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002828}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302829
2830/* HW Generic timers configuration */
2831
2832static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2833{
2834 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2835 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2836 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2837 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2838 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2839 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2840 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2841 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2842 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2843 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2844 AR_NDP2_TIMER_MODE, 0x0002},
2845 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2846 AR_NDP2_TIMER_MODE, 0x0004},
2847 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2848 AR_NDP2_TIMER_MODE, 0x0008},
2849 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2850 AR_NDP2_TIMER_MODE, 0x0010},
2851 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2852 AR_NDP2_TIMER_MODE, 0x0020},
2853 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2854 AR_NDP2_TIMER_MODE, 0x0040},
2855 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2856 AR_NDP2_TIMER_MODE, 0x0080}
2857};
2858
2859/* HW generic timer primitives */
2860
Felix Fietkaudd347f22011-03-22 21:54:17 +01002861u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302862{
2863 return REG_READ(ah, AR_TSF_L32);
2864}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002865EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302866
2867struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2868 void (*trigger)(void *),
2869 void (*overflow)(void *),
2870 void *arg,
2871 u8 timer_index)
2872{
2873 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2874 struct ath_gen_timer *timer;
2875
Felix Fietkauc67ce332013-12-14 18:03:38 +01002876 if ((timer_index < AR_FIRST_NDP_TIMER) ||
2877 (timer_index >= ATH_MAX_GEN_TIMER))
2878 return NULL;
2879
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302880 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
Joe Perches14f8dc42013-02-07 11:46:27 +00002881 if (timer == NULL)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302882 return NULL;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302883
2884 /* allocate a hardware generic timer slot */
2885 timer_table->timers[timer_index] = timer;
2886 timer->index = timer_index;
2887 timer->trigger = trigger;
2888 timer->overflow = overflow;
2889 timer->arg = arg;
2890
2891 return timer;
2892}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002893EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302894
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002895void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2896 struct ath_gen_timer *timer,
Felix Fietkauc67ce332013-12-14 18:03:38 +01002897 u32 timer_next,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002898 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302899{
2900 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Felix Fietkauc67ce332013-12-14 18:03:38 +01002901 u32 mask = 0;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302902
Felix Fietkauc67ce332013-12-14 18:03:38 +01002903 timer_table->timer_mask |= BIT(timer->index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302904
2905 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302906 * Program generic timer registers
2907 */
2908 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2909 timer_next);
2910 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2911 timer_period);
2912 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2913 gen_tmr_configuration[timer->index].mode_mask);
2914
Sujith Manoharana4a29542012-09-10 09:20:03 +05302915 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302916 /*
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302917 * Starting from AR9462, each generic timer can select which tsf
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302918 * to use. But we still follow the old rule, 0 - 7 use tsf and
2919 * 8 - 15 use tsf2.
2920 */
2921 if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
2922 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2923 (1 << timer->index));
2924 else
2925 REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2926 (1 << timer->index));
2927 }
2928
Felix Fietkauc67ce332013-12-14 18:03:38 +01002929 if (timer->trigger)
2930 mask |= SM(AR_GENTMR_BIT(timer->index),
2931 AR_IMR_S5_GENTIMER_TRIG);
2932 if (timer->overflow)
2933 mask |= SM(AR_GENTMR_BIT(timer->index),
2934 AR_IMR_S5_GENTIMER_THRESH);
2935
2936 REG_SET_BIT(ah, AR_IMR_S5, mask);
2937
2938 if ((ah->imask & ATH9K_INT_GENTIMER) == 0) {
2939 ah->imask |= ATH9K_INT_GENTIMER;
2940 ath9k_hw_set_interrupts(ah);
2941 }
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302942}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002943EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302944
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002945void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302946{
2947 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2948
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302949 /* Clear generic timer enable bits. */
2950 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2951 gen_tmr_configuration[timer->index].mode_mask);
2952
Sujith Manoharanb7f59762012-09-11 10:46:24 +05302953 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
2954 /*
2955 * Need to switch back to TSF if it was using TSF2.
2956 */
2957 if ((timer->index >= AR_GEN_TIMER_BANK_1_LEN)) {
2958 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2959 (1 << timer->index));
2960 }
2961 }
2962
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302963 /* Disable both trigger and thresh interrupt masks */
2964 REG_CLR_BIT(ah, AR_IMR_S5,
2965 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2966 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2967
Felix Fietkauc67ce332013-12-14 18:03:38 +01002968 timer_table->timer_mask &= ~BIT(timer->index);
2969
2970 if (timer_table->timer_mask == 0) {
2971 ah->imask &= ~ATH9K_INT_GENTIMER;
2972 ath9k_hw_set_interrupts(ah);
2973 }
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302974}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002975EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302976
2977void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2978{
2979 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2980
2981 /* free the hardware generic timer slot */
2982 timer_table->timers[timer->index] = NULL;
2983 kfree(timer);
2984}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002985EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302986
2987/*
2988 * Generic Timer Interrupts handling
2989 */
2990void ath_gen_timer_isr(struct ath_hw *ah)
2991{
2992 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2993 struct ath_gen_timer *timer;
Felix Fietkauc67ce332013-12-14 18:03:38 +01002994 unsigned long trigger_mask, thresh_mask;
2995 unsigned int index;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302996
2997 /* get hardware generic timer interrupt status */
2998 trigger_mask = ah->intr_gen_timer_trigger;
2999 thresh_mask = ah->intr_gen_timer_thresh;
Felix Fietkauc67ce332013-12-14 18:03:38 +01003000 trigger_mask &= timer_table->timer_mask;
3001 thresh_mask &= timer_table->timer_mask;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303002
Felix Fietkauc67ce332013-12-14 18:03:38 +01003003 for_each_set_bit(index, &thresh_mask, ARRAY_SIZE(timer_table->timers)) {
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303004 timer = timer_table->timers[index];
Felix Fietkauc67ce332013-12-14 18:03:38 +01003005 if (!timer)
3006 continue;
3007 if (!timer->overflow)
3008 continue;
Felix Fietkaua6a172b2013-12-20 16:18:45 +01003009
3010 trigger_mask &= ~BIT(index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303011 timer->overflow(timer->arg);
3012 }
3013
Felix Fietkauc67ce332013-12-14 18:03:38 +01003014 for_each_set_bit(index, &trigger_mask, ARRAY_SIZE(timer_table->timers)) {
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303015 timer = timer_table->timers[index];
Felix Fietkauc67ce332013-12-14 18:03:38 +01003016 if (!timer)
3017 continue;
3018 if (!timer->trigger)
3019 continue;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303020 timer->trigger(timer->arg);
3021 }
3022}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003023EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003024
Sujith05020d22010-03-17 14:25:23 +05303025/********/
3026/* HTC */
3027/********/
3028
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003029static struct {
3030 u32 version;
3031 const char * name;
3032} ath_mac_bb_names[] = {
3033 /* Devices with external radios */
3034 { AR_SREV_VERSION_5416_PCI, "5416" },
3035 { AR_SREV_VERSION_5416_PCIE, "5418" },
3036 { AR_SREV_VERSION_9100, "9100" },
3037 { AR_SREV_VERSION_9160, "9160" },
3038 /* Single-chip solutions */
3039 { AR_SREV_VERSION_9280, "9280" },
3040 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003041 { AR_SREV_VERSION_9287, "9287" },
3042 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04003043 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02003044 { AR_SREV_VERSION_9330, "9330" },
Florian Fainelli397e5d52011-08-25 21:33:48 +02003045 { AR_SREV_VERSION_9340, "9340" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05303046 { AR_SREV_VERSION_9485, "9485" },
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05303047 { AR_SREV_VERSION_9462, "9462" },
Gabor Juhos485124c2012-07-03 19:13:19 +02003048 { AR_SREV_VERSION_9550, "9550" },
Sujith Manoharan77fac462012-09-11 20:09:18 +05303049 { AR_SREV_VERSION_9565, "9565" },
Sujith Manoharanc08148b2014-03-17 15:02:46 +05303050 { AR_SREV_VERSION_9531, "9531" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003051};
3052
3053/* For devices with external radios */
3054static struct {
3055 u16 version;
3056 const char * name;
3057} ath_rf_names[] = {
3058 { 0, "5133" },
3059 { AR_RAD5133_SREV_MAJOR, "5133" },
3060 { AR_RAD5122_SREV_MAJOR, "5122" },
3061 { AR_RAD2133_SREV_MAJOR, "2133" },
3062 { AR_RAD2122_SREV_MAJOR, "2122" }
3063};
3064
3065/*
3066 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3067 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003068static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003069{
3070 int i;
3071
3072 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3073 if (ath_mac_bb_names[i].version == mac_bb_version) {
3074 return ath_mac_bb_names[i].name;
3075 }
3076 }
3077
3078 return "????";
3079}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003080
3081/*
3082 * Return the RF name. "????" is returned if the RF is unknown.
3083 * Used for devices with external radios.
3084 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003085static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003086{
3087 int i;
3088
3089 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3090 if (ath_rf_names[i].version == rf_version) {
3091 return ath_rf_names[i].name;
3092 }
3093 }
3094
3095 return "????";
3096}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003097
3098void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3099{
3100 int used;
3101
3102 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02003103 if (AR_SREV_9280_20_OR_LATER(ah)) {
Zefir Kurtisi5e88ba62013-09-05 14:11:57 +02003104 used = scnprintf(hw_name, len,
3105 "Atheros AR%s Rev:%x",
3106 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3107 ah->hw_version.macRev);
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003108 }
3109 else {
Zefir Kurtisi5e88ba62013-09-05 14:11:57 +02003110 used = scnprintf(hw_name, len,
3111 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3112 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3113 ah->hw_version.macRev,
3114 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev
3115 & AR_RADIO_SREV_MAJOR)),
3116 ah->hw_version.phyRev);
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003117 }
3118
3119 hw_name[used] = '\0';
3120}
3121EXPORT_SYMBOL(ath9k_hw_name);