blob: 951bac2caf12013675a40125a86b2233032d4279 [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>
Felix Fietkau5ca06eb2014-10-25 17:19:35 +020022#include <linux/etherdevice.h>
Miaoqing Pan61b559d2015-04-01 10:19:57 +080023#include <linux/gpio.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024#include <asm/unaligned.h>
25
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070026#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040027#include "hw-ops.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040028#include "ar9003_mac.h"
Sujith Manoharanf4701b52012-02-22 12:41:18 +053029#include "ar9003_mci.h"
Sujith Manoharan362cd032012-09-16 08:06:36 +053030#include "ar9003_phy.h"
Ben Greear462e58f2012-04-12 10:04:00 -070031#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070032
Sujithcbe61d82009-02-09 13:27:12 +053033static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070034
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040035MODULE_AUTHOR("Atheros Communications");
36MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
37MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
38MODULE_LICENSE("Dual BSD/GPL");
39
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020040static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053041{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020042 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaue4744ec2013-10-11 23:31:01 +020043 struct ath9k_channel *chan = ah->curchan;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020044 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053045
Felix Fietkau087b6ff2011-07-09 11:12:49 +070046 /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
47 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
48 clockrate = 117;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020049 else if (!chan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020050 clockrate = ATH9K_CLOCK_RATE_CCK;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020051 else if (IS_CHAN_2GHZ(chan))
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020052 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
53 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
54 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040055 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020056 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
57
Michal Nazarewiczbeae4162013-11-29 18:06:46 +010058 if (chan) {
59 if (IS_CHAN_HT40(chan))
60 clockrate *= 2;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020061 if (IS_CHAN_HALF_RATE(chan))
Felix Fietkau906c7202011-07-09 11:12:48 +070062 clockrate /= 2;
Felix Fietkaue4744ec2013-10-11 23:31:01 +020063 if (IS_CHAN_QUARTER_RATE(chan))
Felix Fietkau906c7202011-07-09 11:12:48 +070064 clockrate /= 4;
65 }
66
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020067 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +053068}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070069
Sujithcbe61d82009-02-09 13:27:12 +053070static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053071{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020072 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +053073
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020074 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +053075}
76
Sujith0caa7b12009-02-16 13:23:20 +053077bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070078{
79 int i;
80
Sujith0caa7b12009-02-16 13:23:20 +053081 BUG_ON(timeout < AH_TIME_QUANTUM);
82
83 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070084 if ((REG_READ(ah, reg) & mask) == val)
85 return true;
86
87 udelay(AH_TIME_QUANTUM);
88 }
Sujith04bd4632008-11-28 22:18:05 +053089
Joe Perchesd2182b62011-12-15 14:55:53 -080090 ath_dbg(ath9k_hw_common(ah), ANY,
Joe Perches226afe62010-12-02 19:12:37 -080091 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
92 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +053093
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070094 return false;
95}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040096EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070097
Felix Fietkau7c5adc82012-04-19 21:18:26 +020098void ath9k_hw_synth_delay(struct ath_hw *ah, struct ath9k_channel *chan,
99 int hw_delay)
100{
Felix Fietkau1a5e6322013-10-11 23:30:54 +0200101 hw_delay /= 10;
Felix Fietkau7c5adc82012-04-19 21:18:26 +0200102
103 if (IS_CHAN_HALF_RATE(chan))
104 hw_delay *= 2;
105 else if (IS_CHAN_QUARTER_RATE(chan))
106 hw_delay *= 4;
107
108 udelay(hw_delay + BASE_ACTIVATE_DELAY);
109}
110
Felix Fietkau0166b4b2013-01-20 18:51:55 +0100111void ath9k_hw_write_array(struct ath_hw *ah, const struct ar5416IniArray *array,
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100112 int column, unsigned int *writecnt)
113{
114 int r;
115
116 ENABLE_REGWRITE_BUFFER(ah);
117 for (r = 0; r < array->ia_rows; r++) {
118 REG_WRITE(ah, INI_RA(array, r, 0),
119 INI_RA(array, r, column));
120 DO_DELAY(*writecnt);
121 }
122 REGWRITE_BUFFER_FLUSH(ah);
123}
124
Oleksij Rempela57cb452015-03-22 19:29:51 +0100125void ath9k_hw_read_array(struct ath_hw *ah, u32 array[][2], int size)
126{
127 u32 *tmp_reg_list, *tmp_data;
128 int i;
129
130 tmp_reg_list = kmalloc(size * sizeof(u32), GFP_KERNEL);
131 if (!tmp_reg_list) {
132 dev_err(ah->dev, "%s: tmp_reg_list: alloc filed\n", __func__);
133 return;
134 }
135
136 tmp_data = kmalloc(size * sizeof(u32), GFP_KERNEL);
137 if (!tmp_data) {
138 dev_err(ah->dev, "%s tmp_data: alloc filed\n", __func__);
139 goto error_tmp_data;
140 }
141
142 for (i = 0; i < size; i++)
143 tmp_reg_list[i] = array[i][0];
144
145 REG_READ_MULTI(ah, tmp_reg_list, tmp_data, size);
146
147 for (i = 0; i < size; i++)
148 array[i][1] = tmp_data[i];
149
150 kfree(tmp_data);
151error_tmp_data:
152 kfree(tmp_reg_list);
153}
154
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700155u32 ath9k_hw_reverse_bits(u32 val, u32 n)
156{
157 u32 retval;
158 int i;
159
160 for (i = 0, retval = 0; i < n; i++) {
161 retval = (retval << 1) | (val & 1);
162 val >>= 1;
163 }
164 return retval;
165}
166
Sujithcbe61d82009-02-09 13:27:12 +0530167u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100168 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530169 u32 frameLen, u16 rateix,
170 bool shortPreamble)
171{
172 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530173
174 if (kbps == 0)
175 return 0;
176
Felix Fietkau545750d2009-11-23 22:21:01 +0100177 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530178 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530179 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100180 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530181 phyTime >>= 1;
182 numBits = frameLen << 3;
183 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
184 break;
Sujith46d14a52008-11-18 09:08:13 +0530185 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530186 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530187 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
188 numBits = OFDM_PLCP_BITS + (frameLen << 3);
189 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
190 txTime = OFDM_SIFS_TIME_QUARTER
191 + OFDM_PREAMBLE_TIME_QUARTER
192 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530193 } else if (ah->curchan &&
194 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530195 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
196 numBits = OFDM_PLCP_BITS + (frameLen << 3);
197 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
198 txTime = OFDM_SIFS_TIME_HALF +
199 OFDM_PREAMBLE_TIME_HALF
200 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
201 } else {
202 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
203 numBits = OFDM_PLCP_BITS + (frameLen << 3);
204 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
205 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
206 + (numSymbols * OFDM_SYMBOL_TIME);
207 }
208 break;
209 default:
Joe Perches38002762010-12-02 19:12:36 -0800210 ath_err(ath9k_hw_common(ah),
211 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530212 txTime = 0;
213 break;
214 }
215
216 return txTime;
217}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400218EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530219
Sujithcbe61d82009-02-09 13:27:12 +0530220void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530221 struct ath9k_channel *chan,
222 struct chan_centers *centers)
223{
224 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530225
226 if (!IS_CHAN_HT40(chan)) {
227 centers->ctl_center = centers->ext_center =
228 centers->synth_center = chan->channel;
229 return;
230 }
231
Felix Fietkau88969342013-10-11 23:30:53 +0200232 if (IS_CHAN_HT40PLUS(chan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530233 centers->synth_center =
234 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
235 extoff = 1;
236 } else {
237 centers->synth_center =
238 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
239 extoff = -1;
240 }
241
242 centers->ctl_center =
243 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700244 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530245 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700246 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530247}
248
249/******************/
250/* Chip Revisions */
251/******************/
252
Sujithcbe61d82009-02-09 13:27:12 +0530253static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530254{
255 u32 val;
256
Felix Fietkau09c74f72014-09-27 22:49:43 +0200257 if (ah->get_mac_revision)
258 ah->hw_version.macRev = ah->get_mac_revision();
259
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530260 switch (ah->hw_version.devid) {
261 case AR5416_AR9100_DEVID:
262 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
263 break;
Gabor Juhos37625612011-06-21 11:23:23 +0200264 case AR9300_DEVID_AR9330:
265 ah->hw_version.macVersion = AR_SREV_VERSION_9330;
Felix Fietkau09c74f72014-09-27 22:49:43 +0200266 if (!ah->get_mac_revision) {
Gabor Juhos37625612011-06-21 11:23:23 +0200267 val = REG_READ(ah, AR_SREV);
268 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
269 }
270 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530271 case AR9300_DEVID_AR9340:
272 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530273 return;
Gabor Juhos813831d2012-07-03 19:13:17 +0200274 case AR9300_DEVID_QCA955X:
275 ah->hw_version.macVersion = AR_SREV_VERSION_9550;
276 return;
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530277 case AR9300_DEVID_AR953X:
278 ah->hw_version.macVersion = AR_SREV_VERSION_9531;
279 return;
Miaoqing Pan2131fab2014-12-19 06:33:56 +0530280 case AR9300_DEVID_QCA956X:
281 ah->hw_version.macVersion = AR_SREV_VERSION_9561;
Felix Fietkau78655982015-06-21 19:47:46 +0200282 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530283 }
284
Sujithf1dc5602008-10-29 10:16:30 +0530285 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
286
287 if (val == 0xFF) {
288 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530289 ah->hw_version.macVersion =
290 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
291 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530292
Sujith Manoharan77fac462012-09-11 20:09:18 +0530293 if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530294 ah->is_pciexpress = true;
295 else
296 ah->is_pciexpress = (val &
297 AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530298 } else {
299 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530300 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530301
Sujithd535a422009-02-09 13:27:06 +0530302 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530303
Sujithd535a422009-02-09 13:27:06 +0530304 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530305 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530306 }
307}
308
Sujithf1dc5602008-10-29 10:16:30 +0530309/************************************/
310/* HW Attach, Detach, Init Routines */
311/************************************/
312
Sujithcbe61d82009-02-09 13:27:12 +0530313static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530314{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100315 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530316 return;
317
318 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
319 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
320 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
321 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
322 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
323 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
324 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
325 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
326 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
327
328 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
329}
330
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400331/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530332static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530333{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700334 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400335 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530336 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800337 static const u32 patternData[4] = {
338 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
339 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400340 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530341
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400342 if (!AR_SREV_9300_20_OR_LATER(ah)) {
343 loop_max = 2;
344 regAddr[1] = AR_PHY_BASE + (8 << 2);
345 } else
346 loop_max = 1;
347
348 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530349 u32 addr = regAddr[i];
350 u32 wrData, rdData;
351
352 regHold[i] = REG_READ(ah, addr);
353 for (j = 0; j < 0x100; j++) {
354 wrData = (j << 16) | j;
355 REG_WRITE(ah, addr, wrData);
356 rdData = REG_READ(ah, addr);
357 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800358 ath_err(common,
359 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
360 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530361 return false;
362 }
363 }
364 for (j = 0; j < 4; j++) {
365 wrData = patternData[j];
366 REG_WRITE(ah, addr, wrData);
367 rdData = REG_READ(ah, addr);
368 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800369 ath_err(common,
370 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
371 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530372 return false;
373 }
374 }
375 REG_WRITE(ah, regAddr[i], regHold[i]);
376 }
377 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530378
Sujithf1dc5602008-10-29 10:16:30 +0530379 return true;
380}
381
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700382static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700383{
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530384 struct ath_common *common = ath9k_hw_common(ah);
385
Felix Fietkau689e7562012-04-12 22:35:56 +0200386 ah->config.dma_beacon_response_time = 1;
387 ah->config.sw_beacon_response_time = 6;
Viresh Kumar621a5f72015-09-26 15:04:07 -0700388 ah->config.cwm_ignore_extcca = false;
Sujith2660b812009-02-09 13:27:26 +0530389 ah->config.analog_shiftreg = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390
Sujith0ce024c2009-12-14 14:57:00 +0530391 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400392
Sujith Manoharana64e1a42014-01-23 08:20:30 +0530393 if (AR_SREV_9300_20_OR_LATER(ah)) {
394 ah->config.rimt_last = 500;
395 ah->config.rimt_first = 2000;
396 } else {
397 ah->config.rimt_last = 250;
398 ah->config.rimt_first = 700;
399 }
400
Sujith Manoharan656cd752015-03-09 14:20:08 +0530401 if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
402 ah->config.pll_pwrsave = 7;
403
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400404 /*
405 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
406 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
407 * This means we use it for all AR5416 devices, and the few
408 * minor PCI AR9280 devices out there.
409 *
410 * Serialization is required because these devices do not handle
411 * well the case of two concurrent reads/writes due to the latency
412 * involved. During one read/write another read/write can be issued
413 * on another CPU while the previous read/write may still be working
414 * on our hardware, if we hit this case the hardware poops in a loop.
415 * We prevent this by serializing reads and writes.
416 *
417 * This issue is not present on PCI-Express devices or pre-AR5416
418 * devices (legacy, 802.11abg).
419 */
420 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700421 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530422
423 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
424 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
425 ((AR_SREV_9160(ah) || AR_SREV_9280(ah) || AR_SREV_9287(ah)) &&
426 !ah->is_pciexpress)) {
427 ah->config.serialize_regmode = SER_REG_MODE_ON;
428 } else {
429 ah->config.serialize_regmode = SER_REG_MODE_OFF;
430 }
431 }
432
433 ath_dbg(common, RESET, "serialize_regmode is %d\n",
434 ah->config.serialize_regmode);
435
436 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
437 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
438 else
439 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440}
441
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700442static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700444 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
445
446 regulatory->country_code = CTRY_DEFAULT;
447 regulatory->power_limit = MAX_RATE_POWER;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700448
Sujithd535a422009-02-09 13:27:06 +0530449 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530450 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700451
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530452 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE |
453 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100454 if (AR_SREV_9100(ah))
455 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530456
Benjamin Berg11b0ac22016-07-04 14:37:24 +0200457 ah->slottime = 9;
Sujith2660b812009-02-09 13:27:26 +0530458 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200459 ah->power_mode = ATH9K_PM_UNDEFINED;
Felix Fietkau8efa7a82012-03-14 16:40:23 +0100460 ah->htc_reset_init = true;
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530461
Felix Fietkauc09396e2015-03-15 08:07:04 +0100462 ah->tpc_enabled = false;
Lorenzo Bianconia9abe302014-12-19 00:18:12 +0100463
Sujith Manoharanf57cf932013-12-28 09:47:12 +0530464 ah->ani_function = ATH9K_ANI_ALL;
465 if (!AR_SREV_9300_20_OR_LATER(ah))
466 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
467
468 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
469 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
470 else
471 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472}
473
Martin Blumenstingld323cb72016-06-23 16:57:12 +0200474static void ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700476 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700477 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530478 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800479 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700480
Martin Blumenstingl0cefa972016-06-23 16:57:11 +0200481 /* MAC address may already be loaded via ath9k_platform_data */
482 if (is_valid_ether_addr(common->macaddr))
Martin Blumenstingld323cb72016-06-23 16:57:12 +0200483 return;
Martin Blumenstingl0cefa972016-06-23 16:57:11 +0200484
Sujithf1dc5602008-10-29 10:16:30 +0530485 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400486 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700487 common->macaddr[2 * i] = eeval >> 8;
488 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700489 }
Felix Fietkau5ca06eb2014-10-25 17:19:35 +0200490
Martin Blumenstingl0cefa972016-06-23 16:57:11 +0200491 if (is_valid_ether_addr(common->macaddr))
Martin Blumenstingld323cb72016-06-23 16:57:12 +0200492 return;
Martin Blumenstingl0cefa972016-06-23 16:57:11 +0200493
494 ath_err(common, "eeprom contains invalid mac address: %pM\n",
495 common->macaddr);
496
497 random_ether_addr(common->macaddr);
498 ath_err(common, "random mac address will be used: %pM\n",
499 common->macaddr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500
Martin Blumenstingld323cb72016-06-23 16:57:12 +0200501 return;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700502}
503
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700504static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700505{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530506 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507 int ecode;
508
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530509 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530510 if (!ath9k_hw_chip_test(ah))
511 return -ENODEV;
512 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400514 if (!AR_SREV_9300_20_OR_LATER(ah)) {
515 ecode = ar9002_hw_rf_claim(ah);
516 if (ecode != 0)
517 return ecode;
518 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700520 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700521 if (ecode != 0)
522 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530523
Joe Perchesd2182b62011-12-15 14:55:53 -0800524 ath_dbg(ath9k_hw_common(ah), CONFIG, "Eeprom VER: %d, REV: %d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800525 ah->eep_ops->get_eeprom_ver(ah),
526 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530527
Sujith Manoharane3233002013-06-03 09:19:26 +0530528 ath9k_hw_ani_init(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530529
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530530 /*
531 * EEPROM needs to be initialized before we do this.
532 * This is required for regulatory compliance.
533 */
Sujith Manoharan0c7c2bb2013-12-06 16:28:50 +0530534 if (AR_SREV_9300_20_OR_LATER(ah)) {
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530535 u16 regdmn = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
536 if ((regdmn & 0xF0) == CTL_FCC) {
Sujith Manoharan0c7c2bb2013-12-06 16:28:50 +0530537 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_FCC_2GHZ;
538 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_FCC_5GHZ;
Sujith Manoharand3b371c2013-09-03 10:28:55 +0530539 }
540 }
541
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700542 return 0;
543}
544
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100545static int ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700546{
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100547 if (!AR_SREV_9300_20_OR_LATER(ah))
548 return ar9002_hw_attach_ops(ah);
549
550 ar9003_hw_attach_ops(ah);
551 return 0;
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700552}
553
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400554/* Called for all hardware families */
555static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700557 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700558 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700559
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530560 ath9k_hw_read_revisions(ah);
561
Sujith Manoharande825822013-12-28 09:47:11 +0530562 switch (ah->hw_version.macVersion) {
563 case AR_SREV_VERSION_5416_PCI:
564 case AR_SREV_VERSION_5416_PCIE:
565 case AR_SREV_VERSION_9160:
566 case AR_SREV_VERSION_9100:
567 case AR_SREV_VERSION_9280:
568 case AR_SREV_VERSION_9285:
569 case AR_SREV_VERSION_9287:
570 case AR_SREV_VERSION_9271:
571 case AR_SREV_VERSION_9300:
572 case AR_SREV_VERSION_9330:
573 case AR_SREV_VERSION_9485:
574 case AR_SREV_VERSION_9340:
575 case AR_SREV_VERSION_9462:
576 case AR_SREV_VERSION_9550:
577 case AR_SREV_VERSION_9565:
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530578 case AR_SREV_VERSION_9531:
Miaoqing Pan2131fab2014-12-19 06:33:56 +0530579 case AR_SREV_VERSION_9561:
Sujith Manoharande825822013-12-28 09:47:11 +0530580 break;
581 default:
582 ath_err(common,
583 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
584 ah->hw_version.macVersion, ah->hw_version.macRev);
585 return -EOPNOTSUPP;
586 }
587
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530588 /*
589 * Read back AR_WA into a permanent copy and set bits 14 and 17.
590 * We need to do this to avoid RMW of this register. We cannot
591 * read the reg when chip is asleep.
592 */
Sujith Manoharan27251e02013-08-27 11:34:39 +0530593 if (AR_SREV_9300_20_OR_LATER(ah)) {
594 ah->WARegVal = REG_READ(ah, AR_WA);
595 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
596 AR_WA_ASPM_TIMER_BASED_DISABLE);
597 }
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530598
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800600 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700601 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700602 }
603
Sujith Manoharana4a29542012-09-10 09:20:03 +0530604 if (AR_SREV_9565(ah)) {
605 ah->WARegVal |= AR_WA_BIT22;
606 REG_WRITE(ah, AR_WA, ah->WARegVal);
607 }
608
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400609 ath9k_hw_init_defaults(ah);
610 ath9k_hw_init_config(ah);
611
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100612 r = ath9k_hw_attach_ops(ah);
613 if (r)
614 return r;
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400615
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700616 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800617 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700618 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700619 }
620
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200621 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
Gabor Juhosc95b5842012-07-03 19:13:20 +0200622 AR_SREV_9330(ah) || AR_SREV_9550(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400623 ah->is_pciexpress = false;
624
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700625 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700626 ath9k_hw_init_cal_settings(ah);
627
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200628 if (!ah->is_pciexpress)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700629 ath9k_hw_disablepcie(ah);
630
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700631 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700632 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700633 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700634
635 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100636 r = ath9k_hw_fill_cap_info(ah);
637 if (r)
638 return r;
639
Martin Blumenstingld323cb72016-06-23 16:57:12 +0200640 ath9k_hw_init_macaddr(ah);
Sujith Manoharan45987022013-12-24 10:44:18 +0530641 ath9k_hw_init_hang_checks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400643 common->state = ATH_HW_INITIALIZED;
644
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700645 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700646}
647
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400648int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530649{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400650 int ret;
651 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530652
Sujith Manoharan77fac462012-09-11 20:09:18 +0530653 /* These are all the AR5008/AR9001/AR9002/AR9003 hardware family of chipsets */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400654 switch (ah->hw_version.devid) {
655 case AR5416_DEVID_PCI:
656 case AR5416_DEVID_PCIE:
657 case AR5416_AR9100_DEVID:
658 case AR9160_DEVID_PCI:
659 case AR9280_DEVID_PCI:
660 case AR9280_DEVID_PCIE:
661 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400662 case AR9287_DEVID_PCI:
663 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400664 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400665 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800666 case AR9300_DEVID_AR9485_PCIE:
Gabor Juhos999a7a82011-06-21 11:23:52 +0200667 case AR9300_DEVID_AR9330:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530668 case AR9300_DEVID_AR9340:
Gabor Juhos2b943a32012-07-03 19:13:34 +0200669 case AR9300_DEVID_QCA955X:
Luis R. Rodriguez5a63ef02011-08-24 15:36:08 -0700670 case AR9300_DEVID_AR9580:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530671 case AR9300_DEVID_AR9462:
Mohammed Shafi Shajakhand4e59792012-08-02 11:58:50 +0530672 case AR9485_DEVID_AR1111:
Sujith Manoharan77fac462012-09-11 20:09:18 +0530673 case AR9300_DEVID_AR9565:
Sujith Manoharane6b1e462013-12-31 08:11:59 +0530674 case AR9300_DEVID_AR953X:
Miaoqing Pan2131fab2014-12-19 06:33:56 +0530675 case AR9300_DEVID_QCA956X:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400676 break;
677 default:
678 if (common->bus_ops->ath_bus_type == ATH_USB)
679 break;
Joe Perches38002762010-12-02 19:12:36 -0800680 ath_err(common, "Hardware device ID 0x%04x not supported\n",
681 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400682 return -EOPNOTSUPP;
683 }
Sujithf1dc5602008-10-29 10:16:30 +0530684
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400685 ret = __ath9k_hw_init(ah);
686 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800687 ath_err(common,
688 "Unable to initialize hardware; initialization status: %d\n",
689 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400690 return ret;
691 }
Sujithf1dc5602008-10-29 10:16:30 +0530692
Lorenzo Bianconic774d572014-09-16 02:13:09 +0200693 ath_dynack_init(ah);
694
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400695 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530696}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400697EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530698
Sujithcbe61d82009-02-09 13:27:12 +0530699static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530700{
Sujith7d0d0df2010-04-16 11:53:57 +0530701 ENABLE_REGWRITE_BUFFER(ah);
702
Sujithf1dc5602008-10-29 10:16:30 +0530703 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
704 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
705
706 REG_WRITE(ah, AR_QOS_NO_ACK,
707 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
708 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
709 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
710
711 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
712 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
713 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
714 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
715 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530716
717 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530718}
719
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530720u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530721{
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530722 struct ath_common *common = ath9k_hw_common(ah);
723 int i = 0;
724
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100725 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
726 udelay(100);
727 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
728
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530729 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0) {
730
Vivek Natarajanb1415812011-01-27 14:45:07 +0530731 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530732
Mohammed Shafi Shajakhanf18e3c62012-06-18 13:13:30 +0530733 if (WARN_ON_ONCE(i >= 100)) {
734 ath_err(common, "PLL4 meaurement not done\n");
735 break;
736 }
737
738 i++;
739 }
740
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100741 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530742}
743EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
744
Sujithcbe61d82009-02-09 13:27:12 +0530745static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530746 struct ath9k_channel *chan)
747{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800748 u32 pll;
749
Felix Fietkau5fb9b1b2014-09-29 20:45:42 +0200750 pll = ath9k_hw_compute_pll_control(ah, chan);
751
Sujith Manoharana4a29542012-09-10 09:20:03 +0530752 if (AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530753 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
754 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
755 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
756 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
757 AR_CH0_DPLL2_KD, 0x40);
758 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
759 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530760
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530761 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
762 AR_CH0_BB_DPLL1_REFDIV, 0x5);
763 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
764 AR_CH0_BB_DPLL1_NINI, 0x58);
765 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
766 AR_CH0_BB_DPLL1_NFRAC, 0x0);
767
768 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
769 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
770 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
771 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
772 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
773 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
774
775 /* program BB PLL phase_shift to 0x6 */
776 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
777 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
778
779 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
780 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530781 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200782 } else if (AR_SREV_9330(ah)) {
783 u32 ddr_dpll2, pll_control2, kd;
784
785 if (ah->is_clk_25mhz) {
786 ddr_dpll2 = 0x18e82f01;
787 pll_control2 = 0xe04a3d;
788 kd = 0x1d;
789 } else {
790 ddr_dpll2 = 0x19e82f01;
791 pll_control2 = 0x886666;
792 kd = 0x3d;
793 }
794
795 /* program DDR PLL ki and kd value */
796 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
797
798 /* program DDR PLL phase_shift */
799 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
800 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
801
Felix Fietkau5fb9b1b2014-09-29 20:45:42 +0200802 REG_WRITE(ah, AR_RTC_PLL_CONTROL,
803 pll | AR_RTC_9300_PLL_BYPASS);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200804 udelay(1000);
805
806 /* program refdiv, nint, frac to RTC register */
807 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
808
809 /* program BB PLL kd and ki value */
810 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
811 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
812
813 /* program BB PLL phase_shift */
814 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
815 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530816 } else if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah) ||
817 AR_SREV_9561(ah)) {
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530818 u32 regval, pll2_divint, pll2_divfrac, refdiv;
819
Felix Fietkau5fb9b1b2014-09-29 20:45:42 +0200820 REG_WRITE(ah, AR_RTC_PLL_CONTROL,
821 pll | AR_RTC_9300_SOC_PLL_BYPASS);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530822 udelay(1000);
823
824 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
825 udelay(100);
826
827 if (ah->is_clk_25mhz) {
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530828 if (AR_SREV_9531(ah) || AR_SREV_9561(ah)) {
Sujith Manoharan2c323052013-12-31 08:12:02 +0530829 pll2_divint = 0x1c;
830 pll2_divfrac = 0xa3d2;
831 refdiv = 1;
832 } else {
833 pll2_divint = 0x54;
834 pll2_divfrac = 0x1eb85;
835 refdiv = 3;
836 }
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530837 } else {
Gabor Juhosfc05a312012-07-03 19:13:31 +0200838 if (AR_SREV_9340(ah)) {
839 pll2_divint = 88;
840 pll2_divfrac = 0;
841 refdiv = 5;
842 } else {
843 pll2_divint = 0x11;
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530844 pll2_divfrac = (AR_SREV_9531(ah) ||
845 AR_SREV_9561(ah)) ?
846 0x26665 : 0x26666;
Gabor Juhosfc05a312012-07-03 19:13:31 +0200847 refdiv = 1;
848 }
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530849 }
850
851 regval = REG_READ(ah, AR_PHY_PLL_MODE);
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530852 if (AR_SREV_9531(ah) || AR_SREV_9561(ah))
Sujith Manoharan2c323052013-12-31 08:12:02 +0530853 regval |= (0x1 << 22);
854 else
855 regval |= (0x1 << 16);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530856 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
857 udelay(100);
858
859 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
860 (pll2_divint << 18) | pll2_divfrac);
861 udelay(100);
862
863 regval = REG_READ(ah, AR_PHY_PLL_MODE);
Gabor Juhosfc05a312012-07-03 19:13:31 +0200864 if (AR_SREV_9340(ah))
Sujith Manoharan2c323052013-12-31 08:12:02 +0530865 regval = (regval & 0x80071fff) |
866 (0x1 << 30) |
867 (0x1 << 13) |
868 (0x4 << 26) |
869 (0x18 << 19);
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530870 else if (AR_SREV_9531(ah) || AR_SREV_9561(ah)) {
Sujith Manoharan2c323052013-12-31 08:12:02 +0530871 regval = (regval & 0x01c00fff) |
872 (0x1 << 31) |
873 (0x2 << 29) |
874 (0xa << 25) |
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530875 (0x1 << 19);
876
877 if (AR_SREV_9531(ah))
878 regval |= (0x6 << 12);
879 } else
Sujith Manoharan2c323052013-12-31 08:12:02 +0530880 regval = (regval & 0x80071fff) |
881 (0x3 << 30) |
882 (0x1 << 13) |
883 (0x4 << 26) |
884 (0x60 << 19);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530885 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
Sujith Manoharan2c323052013-12-31 08:12:02 +0530886
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530887 if (AR_SREV_9531(ah) || AR_SREV_9561(ah))
Sujith Manoharan2c323052013-12-31 08:12:02 +0530888 REG_WRITE(ah, AR_PHY_PLL_MODE,
889 REG_READ(ah, AR_PHY_PLL_MODE) & 0xffbfffff);
890 else
891 REG_WRITE(ah, AR_PHY_PLL_MODE,
892 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
893
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530894 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530895 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800896
Sujith Manoharan8565f8b2012-09-10 09:20:29 +0530897 if (AR_SREV_9565(ah))
898 pll |= 0x40000;
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100899 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530900
Gabor Juhosfc05a312012-07-03 19:13:31 +0200901 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah) ||
902 AR_SREV_9550(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530903 udelay(1000);
904
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400905 /* Switch the core clock for ar9271 to 117Mhz */
906 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530907 udelay(500);
908 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400909 }
910
Sujithf1dc5602008-10-29 10:16:30 +0530911 udelay(RTC_PLL_SETTLE_DELAY);
912
913 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
914}
915
Sujithcbe61d82009-02-09 13:27:12 +0530916static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800917 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530918{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530919 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400920 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530921 AR_IMR_TXURN |
922 AR_IMR_RXERR |
923 AR_IMR_RXORN |
924 AR_IMR_BCNMISC;
925
Miaoqing Panede6a5e2014-12-19 06:33:59 +0530926 if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah) ||
927 AR_SREV_9561(ah))
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530928 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
929
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400930 if (AR_SREV_9300_20_OR_LATER(ah)) {
931 imr_reg |= AR_IMR_RXOK_HP;
932 if (ah->config.rx_intr_mitigation)
933 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
934 else
935 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530936
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400937 } else {
938 if (ah->config.rx_intr_mitigation)
939 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
940 else
941 imr_reg |= AR_IMR_RXOK;
942 }
943
944 if (ah->config.tx_intr_mitigation)
945 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
946 else
947 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530948
Sujith7d0d0df2010-04-16 11:53:57 +0530949 ENABLE_REGWRITE_BUFFER(ah);
950
Pavel Roskin152d5302010-03-31 18:05:37 -0400951 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500952 ah->imrs2_reg |= AR_IMR_S2_GTT;
953 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530954
955 if (!AR_SREV_9100(ah)) {
956 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530957 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530958 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
959 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400960
Sujith7d0d0df2010-04-16 11:53:57 +0530961 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530962
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400963 if (AR_SREV_9300_20_OR_LATER(ah)) {
964 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
965 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
966 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
967 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
968 }
Sujithf1dc5602008-10-29 10:16:30 +0530969}
970
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700971static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
972{
973 u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
974 val = min(val, (u32) 0xFFFF);
975 REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
976}
977
Lorenzo Bianconi8e15e092014-09-16 02:13:07 +0200978void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530979{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100980 u32 val = ath9k_hw_mac_to_clks(ah, us);
981 val = min(val, (u32) 0xFFFF);
982 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530983}
984
Lorenzo Bianconi8e15e092014-09-16 02:13:07 +0200985void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530986{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100987 u32 val = ath9k_hw_mac_to_clks(ah, us);
988 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
989 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
990}
991
Lorenzo Bianconi8e15e092014-09-16 02:13:07 +0200992void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
Felix Fietkau0005baf2010-01-15 02:33:40 +0100993{
994 u32 val = ath9k_hw_mac_to_clks(ah, us);
995 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
996 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530997}
998
Sujithcbe61d82009-02-09 13:27:12 +0530999static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301000{
Sujithf1dc5602008-10-29 10:16:30 +05301001 if (tu > 0xFFFF) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001002 ath_dbg(ath9k_hw_common(ah), XMIT, "bad global tx timeout %u\n",
1003 tu);
Sujith2660b812009-02-09 13:27:26 +05301004 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301005 return false;
1006 } else {
1007 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301008 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301009 return true;
1010 }
1011}
1012
Felix Fietkau0005baf2010-01-15 02:33:40 +01001013void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301014{
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001015 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001016 const struct ath9k_channel *chan = ah->curchan;
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001017 int acktimeout, ctstimeout, ack_offset = 0;
Felix Fietkaue239d852010-01-15 02:34:58 +01001018 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001019 int sifstime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001020 int rx_lat = 0, tx_lat = 0, eifs = 0;
1021 u32 reg;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001022
Joe Perchesd2182b62011-12-15 14:55:53 -08001023 ath_dbg(ath9k_hw_common(ah), RESET, "ah->misc_mode 0x%x\n",
Joe Perches226afe62010-12-02 19:12:37 -08001024 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301025
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001026 if (!chan)
1027 return;
1028
Sujith2660b812009-02-09 13:27:26 +05301029 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001030 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001031
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301032 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1033 rx_lat = 41;
1034 else
1035 rx_lat = 37;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001036 tx_lat = 54;
1037
Felix Fietkaue88e4862012-04-19 21:18:22 +02001038 if (IS_CHAN_5GHZ(chan))
1039 sifstime = 16;
1040 else
1041 sifstime = 10;
1042
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001043 if (IS_CHAN_HALF_RATE(chan)) {
1044 eifs = 175;
1045 rx_lat *= 2;
1046 tx_lat *= 2;
1047 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1048 tx_lat += 11;
1049
Simon Wunderlich92367fe72013-08-14 08:01:30 +02001050 sifstime = 32;
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001051 ack_offset = 16;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001052 slottime = 13;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001053 } else if (IS_CHAN_QUARTER_RATE(chan)) {
1054 eifs = 340;
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301055 rx_lat = (rx_lat * 4) - 1;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001056 tx_lat *= 4;
1057 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1058 tx_lat += 22;
1059
Simon Wunderlich92367fe72013-08-14 08:01:30 +02001060 sifstime = 64;
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001061 ack_offset = 32;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001062 slottime = 21;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001063 } else {
Rajkumar Manoharana7be0392011-08-27 12:13:21 +05301064 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1065 eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
1066 reg = AR_USEC_ASYNC_FIFO;
1067 } else {
1068 eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
1069 common->clockrate;
1070 reg = REG_READ(ah, AR_USEC);
1071 }
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001072 rx_lat = MS(reg, AR_USEC_RX_LAT);
1073 tx_lat = MS(reg, AR_USEC_TX_LAT);
1074
1075 slottime = ah->slottime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001076 }
Felix Fietkau0005baf2010-01-15 02:33:40 +01001077
Felix Fietkaue239d852010-01-15 02:34:58 +01001078 /* As defined by IEEE 802.11-2007 17.3.8.6 */
Mathias Kretschmerf77f8232013-04-22 22:34:41 +02001079 slottime += 3 * ah->coverage_class;
1080 acktimeout = slottime + sifstime + ack_offset;
Felix Fietkauadb50662011-08-28 01:52:10 +02001081 ctstimeout = acktimeout;
Felix Fietkau42c45682010-02-11 18:07:19 +01001082
1083 /*
1084 * Workaround for early ACK timeouts, add an offset to match the
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001085 * initval's 64us ack timeout value. Use 48us for the CTS timeout.
Felix Fietkau42c45682010-02-11 18:07:19 +01001086 * This was initially only meant to work around an issue with delayed
1087 * BA frames in some implementations, but it has been found to fix ACK
1088 * timeout issues in other cases as well.
1089 */
Felix Fietkaue4744ec2013-10-11 23:31:01 +02001090 if (IS_CHAN_2GHZ(chan) &&
Felix Fietkaue115b7e2012-04-19 21:18:23 +02001091 !IS_CHAN_HALF_RATE(chan) && !IS_CHAN_QUARTER_RATE(chan)) {
Felix Fietkau42c45682010-02-11 18:07:19 +01001092 acktimeout += 64 - sifstime - ah->slottime;
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001093 ctstimeout += 48 - sifstime - ah->slottime;
1094 }
1095
Lorenzo Bianconi7aefa8a2014-09-16 02:13:11 +02001096 if (ah->dynack.enabled) {
1097 acktimeout = ah->dynack.ackto;
1098 ctstimeout = acktimeout;
1099 slottime = (acktimeout - 3) / 2;
1100 } else {
1101 ah->dynack.ackto = acktimeout;
1102 }
1103
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001104 ath9k_hw_set_sifs_time(ah, sifstime);
1105 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001106 ath9k_hw_set_ack_timeout(ah, acktimeout);
Felix Fietkauadb50662011-08-28 01:52:10 +02001107 ath9k_hw_set_cts_timeout(ah, ctstimeout);
Sujith2660b812009-02-09 13:27:26 +05301108 if (ah->globaltxtimeout != (u32) -1)
1109 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001110
1111 REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
1112 REG_RMW(ah, AR_USEC,
1113 (common->clockrate - 1) |
1114 SM(rx_lat, AR_USEC_RX_LAT) |
1115 SM(tx_lat, AR_USEC_TX_LAT),
1116 AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
1117
Sujithf1dc5602008-10-29 10:16:30 +05301118}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001119EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301120
Sujith285f2dd2010-01-08 10:36:07 +05301121void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001122{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001123 struct ath_common *common = ath9k_hw_common(ah);
1124
Sujith736b3a22010-03-17 14:25:24 +05301125 if (common->state < ATH_HW_INITIALIZED)
Felix Fietkauc1b976d2012-12-12 13:14:23 +01001126 return;
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001127
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001128 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001129}
Sujith285f2dd2010-01-08 10:36:07 +05301130EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001131
Sujithf1dc5602008-10-29 10:16:30 +05301132/*******/
1133/* INI */
1134/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001135
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001136u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001137{
1138 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1139
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001140 if (IS_CHAN_2GHZ(chan))
Bob Copeland3a702e42009-03-30 22:30:29 -04001141 ctl |= CTL_11G;
1142 else
1143 ctl |= CTL_11A;
1144
1145 return ctl;
1146}
1147
Sujithf1dc5602008-10-29 10:16:30 +05301148/****************************************/
1149/* Reset and Channel Switching Routines */
1150/****************************************/
1151
Sujithcbe61d82009-02-09 13:27:12 +05301152static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301153{
Felix Fietkau57b32222010-04-15 17:39:22 -04001154 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau86c157b2013-05-23 12:20:56 +02001155 int txbuf_size;
Sujithf1dc5602008-10-29 10:16:30 +05301156
Sujith7d0d0df2010-04-16 11:53:57 +05301157 ENABLE_REGWRITE_BUFFER(ah);
1158
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001159 /*
1160 * set AHB_MODE not to do cacheline prefetches
1161 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001162 if (!AR_SREV_9300_20_OR_LATER(ah))
1163 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301164
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001165 /*
1166 * let mac dma reads be in 128 byte chunks
1167 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001168 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301169
Sujith7d0d0df2010-04-16 11:53:57 +05301170 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301171
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001172 /*
1173 * Restore TX Trigger Level to its pre-reset value.
1174 * The initial value depends on whether aggregation is enabled, and is
1175 * adjusted whenever underruns are detected.
1176 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001177 if (!AR_SREV_9300_20_OR_LATER(ah))
1178 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301179
Sujith7d0d0df2010-04-16 11:53:57 +05301180 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301181
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001182 /*
1183 * let mac dma writes be in 128 byte chunks
1184 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001185 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301186
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001187 /*
1188 * Setup receive FIFO threshold to hold off TX activities
1189 */
Sujithf1dc5602008-10-29 10:16:30 +05301190 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1191
Felix Fietkau57b32222010-04-15 17:39:22 -04001192 if (AR_SREV_9300_20_OR_LATER(ah)) {
1193 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1194 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1195
1196 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1197 ah->caps.rx_status_len);
1198 }
1199
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001200 /*
1201 * reduce the number of usable entries in PCU TXBUF to avoid
1202 * wrap around issues.
1203 */
Sujithf1dc5602008-10-29 10:16:30 +05301204 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001205 /* For AR9285 the number of Fifos are reduced to half.
1206 * So set the usable tx buf size also to half to
1207 * avoid data/delimiter underruns
1208 */
Felix Fietkau86c157b2013-05-23 12:20:56 +02001209 txbuf_size = AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE;
1210 } else if (AR_SREV_9340_13_OR_LATER(ah)) {
1211 /* Uses fewer entries for AR934x v1.3+ to prevent rx overruns */
1212 txbuf_size = AR_9340_PCU_TXBUF_CTRL_USABLE_SIZE;
1213 } else {
1214 txbuf_size = AR_PCU_TXBUF_CTRL_USABLE_SIZE;
Sujithf1dc5602008-10-29 10:16:30 +05301215 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001216
Felix Fietkau86c157b2013-05-23 12:20:56 +02001217 if (!AR_SREV_9271(ah))
1218 REG_WRITE(ah, AR_PCU_TXBUF_CTRL, txbuf_size);
1219
Sujith7d0d0df2010-04-16 11:53:57 +05301220 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301221
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001222 if (AR_SREV_9300_20_OR_LATER(ah))
1223 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301224}
1225
Sujithcbe61d82009-02-09 13:27:12 +05301226static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301227{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001228 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1229 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301230
Oleksij Rempel7b37e0d2015-03-22 19:29:57 +01001231 ENABLE_REG_RMW_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301232 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001233 case NL80211_IFTYPE_ADHOC:
Felix Fietkau83322eb2014-09-27 22:49:44 +02001234 if (!AR_SREV_9340_13(ah)) {
1235 set |= AR_STA_ID1_ADHOC;
1236 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1237 break;
1238 }
1239 /* fall through */
Jan Kaisrlik862a3362015-09-17 14:03:46 +02001240 case NL80211_IFTYPE_OCB:
Thomas Pedersen2664d662013-05-08 10:16:48 -07001241 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001242 case NL80211_IFTYPE_AP:
1243 set |= AR_STA_ID1_STA_AP;
1244 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001245 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001246 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301247 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301248 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001249 if (!ah->is_monitoring)
1250 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301251 break;
Sujithf1dc5602008-10-29 10:16:30 +05301252 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001253 REG_RMW(ah, AR_STA_ID1, set, mask);
Oleksij Rempel7b37e0d2015-03-22 19:29:57 +01001254 REG_RMW_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301255}
1256
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001257void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1258 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259{
1260 u32 coef_exp, coef_man;
1261
1262 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1263 if ((coef_scaled >> coef_exp) & 0x1)
1264 break;
1265
1266 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1267
1268 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1269
1270 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1271 *coef_exponent = coef_exp - 16;
1272}
1273
Sujith Manoharand7df7a52013-12-18 09:53:27 +05301274/* AR9330 WAR:
1275 * call external reset function to reset WMAC if:
1276 * - doing a cold reset
1277 * - we have pending frames in the TX queues.
1278 */
1279static bool ath9k_hw_ar9330_reset_war(struct ath_hw *ah, int type)
1280{
1281 int i, npend = 0;
1282
1283 for (i = 0; i < AR_NUM_QCU; i++) {
1284 npend = ath9k_hw_numtxpending(ah, i);
1285 if (npend)
1286 break;
1287 }
1288
1289 if (ah->external_reset &&
1290 (npend || type == ATH9K_RESET_COLD)) {
1291 int reset_err = 0;
1292
1293 ath_dbg(ath9k_hw_common(ah), RESET,
1294 "reset MAC via external reset\n");
1295
1296 reset_err = ah->external_reset();
1297 if (reset_err) {
1298 ath_err(ath9k_hw_common(ah),
1299 "External reset failed, err=%d\n",
1300 reset_err);
1301 return false;
1302 }
1303
1304 REG_WRITE(ah, AR_RTC_RESET, 1);
1305 }
1306
1307 return true;
1308}
1309
Sujithcbe61d82009-02-09 13:27:12 +05301310static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301311{
1312 u32 rst_flags;
1313 u32 tmpReg;
1314
Sujith70768492009-02-16 13:23:12 +05301315 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001316 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1317 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301318 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1319 }
1320
Sujith7d0d0df2010-04-16 11:53:57 +05301321 ENABLE_REGWRITE_BUFFER(ah);
1322
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001323 if (AR_SREV_9300_20_OR_LATER(ah)) {
1324 REG_WRITE(ah, AR_WA, ah->WARegVal);
1325 udelay(10);
1326 }
1327
Sujithf1dc5602008-10-29 10:16:30 +05301328 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1329 AR_RTC_FORCE_WAKE_ON_INT);
1330
1331 if (AR_SREV_9100(ah)) {
1332 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1333 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1334 } else {
1335 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
Felix Fietkaua37a9912013-05-23 12:20:55 +02001336 if (AR_SREV_9340(ah))
1337 tmpReg &= AR9340_INTR_SYNC_LOCAL_TIMEOUT;
1338 else
1339 tmpReg &= AR_INTR_SYNC_LOCAL_TIMEOUT |
1340 AR_INTR_SYNC_RADM_CPL_TIMEOUT;
1341
1342 if (tmpReg) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001343 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301344 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001345
1346 val = AR_RC_HOSTIF;
1347 if (!AR_SREV_9300_20_OR_LATER(ah))
1348 val |= AR_RC_AHB;
1349 REG_WRITE(ah, AR_RC, val);
1350
1351 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301352 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301353
1354 rst_flags = AR_RTC_RC_MAC_WARM;
1355 if (type == ATH9K_RESET_COLD)
1356 rst_flags |= AR_RTC_RC_MAC_COLD;
1357 }
1358
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001359 if (AR_SREV_9330(ah)) {
Sujith Manoharand7df7a52013-12-18 09:53:27 +05301360 if (!ath9k_hw_ar9330_reset_war(ah, type))
1361 return false;
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001362 }
1363
Rajkumar Manoharan38634952012-06-11 12:19:32 +05301364 if (ath9k_hw_mci_is_enabled(ah))
Rajkumar Manoharan506847a2012-06-12 20:18:16 +05301365 ar9003_mci_check_gpm_offset(ah);
Rajkumar Manoharan38634952012-06-11 12:19:32 +05301366
Miaoqing Pan466b0f02016-01-18 09:33:50 +08001367 /* DMA HALT added to resolve ar9300 and ar9580 bus error during
1368 * RTC_RC reg read
1369 */
1370 if (AR_SREV_9300(ah) || AR_SREV_9580(ah)) {
1371 REG_SET_BIT(ah, AR_CFG, AR_CFG_HALT_REQ);
1372 ath9k_hw_wait(ah, AR_CFG, AR_CFG_HALT_ACK, AR_CFG_HALT_ACK,
1373 20 * AH_WAIT_TIMEOUT);
1374 REG_CLR_BIT(ah, AR_CFG, AR_CFG_HALT_REQ);
1375 }
1376
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001377 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301378
1379 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301380
Sujith Manoharan4dc78c432013-12-18 09:53:26 +05301381 if (AR_SREV_9300_20_OR_LATER(ah))
1382 udelay(50);
1383 else if (AR_SREV_9100(ah))
Sujith Manoharan3683a072014-02-04 08:37:52 +05301384 mdelay(10);
Sujith Manoharan4dc78c432013-12-18 09:53:26 +05301385 else
1386 udelay(100);
Sujithf1dc5602008-10-29 10:16:30 +05301387
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001388 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301389 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001390 ath_dbg(ath9k_hw_common(ah), RESET, "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301391 return false;
1392 }
1393
1394 if (!AR_SREV_9100(ah))
1395 REG_WRITE(ah, AR_RC, 0);
1396
Sujithf1dc5602008-10-29 10:16:30 +05301397 if (AR_SREV_9100(ah))
1398 udelay(50);
1399
1400 return true;
1401}
1402
Sujithcbe61d82009-02-09 13:27:12 +05301403static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301404{
Sujith7d0d0df2010-04-16 11:53:57 +05301405 ENABLE_REGWRITE_BUFFER(ah);
1406
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001407 if (AR_SREV_9300_20_OR_LATER(ah)) {
1408 REG_WRITE(ah, AR_WA, ah->WARegVal);
1409 udelay(10);
1410 }
1411
Sujithf1dc5602008-10-29 10:16:30 +05301412 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1413 AR_RTC_FORCE_WAKE_ON_INT);
1414
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001415 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301416 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1417
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001418 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301419
Sujith7d0d0df2010-04-16 11:53:57 +05301420 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301421
Sujith Manoharanafe36532013-12-18 09:53:25 +05301422 udelay(2);
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001423
1424 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301425 REG_WRITE(ah, AR_RC, 0);
1426
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001427 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301428
1429 if (!ath9k_hw_wait(ah,
1430 AR_RTC_STATUS,
1431 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301432 AR_RTC_STATUS_ON,
1433 AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001434 ath_dbg(ath9k_hw_common(ah), RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301435 return false;
1436 }
1437
Sujithf1dc5602008-10-29 10:16:30 +05301438 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1439}
1440
Sujithcbe61d82009-02-09 13:27:12 +05301441static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301442{
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301443 bool ret = false;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301444
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001445 if (AR_SREV_9300_20_OR_LATER(ah)) {
1446 REG_WRITE(ah, AR_WA, ah->WARegVal);
1447 udelay(10);
1448 }
1449
Sujithf1dc5602008-10-29 10:16:30 +05301450 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1451 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1452
Felix Fietkauceb26a62012-10-03 21:07:51 +02001453 if (!ah->reset_power_on)
1454 type = ATH9K_RESET_POWER_ON;
1455
Sujithf1dc5602008-10-29 10:16:30 +05301456 switch (type) {
1457 case ATH9K_RESET_POWER_ON:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301458 ret = ath9k_hw_set_reset_power_on(ah);
Sujith Manoharanda8fb122012-11-17 21:20:50 +05301459 if (ret)
Felix Fietkauceb26a62012-10-03 21:07:51 +02001460 ah->reset_power_on = true;
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301461 break;
Sujithf1dc5602008-10-29 10:16:30 +05301462 case ATH9K_RESET_WARM:
1463 case ATH9K_RESET_COLD:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301464 ret = ath9k_hw_set_reset(ah, type);
1465 break;
Sujithf1dc5602008-10-29 10:16:30 +05301466 default:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301467 break;
Sujithf1dc5602008-10-29 10:16:30 +05301468 }
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301469
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301470 return ret;
Sujithf1dc5602008-10-29 10:16:30 +05301471}
1472
Sujithcbe61d82009-02-09 13:27:12 +05301473static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301474 struct ath9k_channel *chan)
1475{
Felix Fietkau9c083af2012-03-03 15:17:02 +01001476 int reset_type = ATH9K_RESET_WARM;
1477
1478 if (AR_SREV_9280(ah)) {
1479 if (ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1480 reset_type = ATH9K_RESET_POWER_ON;
1481 else
1482 reset_type = ATH9K_RESET_COLD;
Felix Fietkau3412f2f02013-02-25 20:51:07 +01001483 } else if (ah->chip_fullsleep || REG_READ(ah, AR_Q_TXE) ||
1484 (REG_READ(ah, AR_CR) & AR_CR_RXE))
1485 reset_type = ATH9K_RESET_COLD;
Felix Fietkau9c083af2012-03-03 15:17:02 +01001486
1487 if (!ath9k_hw_set_reset_reg(ah, reset_type))
Sujithf1dc5602008-10-29 10:16:30 +05301488 return false;
1489
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001490 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301491 return false;
1492
Sujith2660b812009-02-09 13:27:26 +05301493 ah->chip_fullsleep = false;
Felix Fietkaubfc441a2012-05-24 14:32:22 +02001494
1495 if (AR_SREV_9330(ah))
1496 ar9003_hw_internal_regulator_apply(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301497 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301498
1499 return true;
1500}
1501
Sujithcbe61d82009-02-09 13:27:12 +05301502static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001503 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301504{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001505 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301506 struct ath9k_hw_capabilities *pCap = &ah->caps;
1507 bool band_switch = false, mode_diff = false;
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301508 u8 ini_reloaded = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001509 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001510 int r;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301511
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301512 if (pCap->hw_caps & ATH9K_HW_CAP_FCC_BAND_SWITCH) {
Felix Fietkauaf02efb2013-11-18 20:14:44 +01001513 u32 flags_diff = chan->channelFlags ^ ah->curchan->channelFlags;
1514 band_switch = !!(flags_diff & CHANNEL_5GHZ);
1515 mode_diff = !!(flags_diff & ~CHANNEL_HT);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301516 }
Sujithf1dc5602008-10-29 10:16:30 +05301517
1518 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1519 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001520 ath_dbg(common, QUEUE,
Joe Perches226afe62010-12-02 19:12:37 -08001521 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301522 return false;
1523 }
1524 }
1525
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001526 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001527 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301528 return false;
1529 }
1530
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301531 if (band_switch || mode_diff) {
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301532 ath9k_hw_mark_phy_inactive(ah);
1533 udelay(5);
1534
Sujith Manoharan5f35c0f2013-07-16 12:03:20 +05301535 if (band_switch)
1536 ath9k_hw_init_pll(ah, chan);
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301537
1538 if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
1539 ath_err(common, "Failed to do fast channel change\n");
1540 return false;
1541 }
1542 }
1543
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001544 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301545
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001546 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001547 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001548 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001549 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301550 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001551 ath9k_hw_set_clockrate(ah);
Gabor Juhos64ea57d2012-04-15 20:38:05 +02001552 ath9k_hw_apply_txpower(ah, chan, false);
Sujithf1dc5602008-10-29 10:16:30 +05301553
Felix Fietkau81c507a2013-10-11 23:30:55 +02001554 ath9k_hw_set_delta_slope(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001555 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301556
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301557 if (band_switch || ini_reloaded)
1558 ah->eep_ops->set_board_values(ah, chan);
1559
1560 ath9k_hw_init_bb(ah, chan);
1561 ath9k_hw_rfbus_done(ah);
1562
1563 if (band_switch || ini_reloaded) {
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301564 ah->ah_flags |= AH_FASTCC;
Sujith Manoharan70e89a72013-07-16 12:03:22 +05301565 ath9k_hw_init_cal(ah, chan);
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301566 ah->ah_flags &= ~AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301567 }
1568
Sujithf1dc5602008-10-29 10:16:30 +05301569 return true;
1570}
1571
Felix Fietkau691680b2011-03-19 13:55:38 +01001572static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1573{
1574 u32 gpio_mask = ah->gpio_mask;
1575 int i;
1576
1577 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1578 if (!(gpio_mask & 1))
1579 continue;
1580
Miaoqing Panb2d70d42016-03-07 10:38:15 +08001581 ath9k_hw_gpio_request_out(ah, i, NULL,
1582 AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
Felix Fietkau691680b2011-03-19 13:55:38 +01001583 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
Miaoqing Pandb222192016-03-07 10:38:16 +08001584 ath9k_hw_gpio_free(ah, i);
Felix Fietkau691680b2011-03-19 13:55:38 +01001585 }
1586}
1587
Sujith Manoharan1e516ca2013-09-11 21:30:27 +05301588void ath9k_hw_check_nav(struct ath_hw *ah)
1589{
1590 struct ath_common *common = ath9k_hw_common(ah);
1591 u32 val;
1592
1593 val = REG_READ(ah, AR_NAV);
1594 if (val != 0xdeadbeef && val > 0x7fff) {
1595 ath_dbg(common, BSTUCK, "Abnormal NAV: 0x%x\n", val);
1596 REG_WRITE(ah, AR_NAV, 0);
1597 }
1598}
1599EXPORT_SYMBOL(ath9k_hw_check_nav);
1600
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001601bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301602{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001603 int count = 50;
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001604 u32 reg, last_val;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301605
Felix Fietkauff738af2017-02-02 10:14:51 +01001606 /* Check if chip failed to wake up */
1607 if (REG_READ(ah, AR_CFG) == 0xdeadbeef)
1608 return false;
1609
Rajkumar Manoharan01e18912012-03-15 05:34:27 +05301610 if (AR_SREV_9300(ah))
1611 return !ath9k_hw_detect_mac_hang(ah);
1612
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001613 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001614 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301615
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001616 last_val = REG_READ(ah, AR_OBS_BUS_1);
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001617 do {
1618 reg = REG_READ(ah, AR_OBS_BUS_1);
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001619 if (reg != last_val)
1620 return true;
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001621
Felix Fietkau105ff412014-03-09 09:51:16 +01001622 udelay(1);
Felix Fietkaud31a36a2014-02-24 22:26:05 +01001623 last_val = reg;
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001624 if ((reg & 0x7E7FFFEF) == 0x00702400)
1625 continue;
1626
1627 switch (reg & 0x7E000B00) {
1628 case 0x1E000000:
1629 case 0x52000B00:
1630 case 0x18000B00:
1631 continue;
1632 default:
1633 return true;
1634 }
1635 } while (count-- > 0);
1636
1637 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301638}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001639EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301640
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301641static void ath9k_hw_init_mfp(struct ath_hw *ah)
1642{
1643 /* Setup MFP options for CCMP */
1644 if (AR_SREV_9280_20_OR_LATER(ah)) {
1645 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1646 * frames when constructing CCMP AAD. */
1647 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1648 0xc7ff);
Chun-Yeow Yeoh60fc4962014-11-16 03:05:41 +08001649 if (AR_SREV_9271(ah) || AR_DEVID_7010(ah))
1650 ah->sw_mgmt_crypto_tx = true;
1651 else
1652 ah->sw_mgmt_crypto_tx = false;
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001653 ah->sw_mgmt_crypto_rx = false;
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301654 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1655 /* Disable hardware crypto for management frames */
1656 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1657 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1658 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1659 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001660 ah->sw_mgmt_crypto_tx = true;
1661 ah->sw_mgmt_crypto_rx = true;
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301662 } else {
Chun-Yeow Yeohe6510b12014-11-16 03:05:40 +08001663 ah->sw_mgmt_crypto_tx = true;
1664 ah->sw_mgmt_crypto_rx = true;
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301665 }
1666}
1667
1668static void ath9k_hw_reset_opmode(struct ath_hw *ah,
1669 u32 macStaId1, u32 saveDefAntenna)
1670{
1671 struct ath_common *common = ath9k_hw_common(ah);
1672
1673 ENABLE_REGWRITE_BUFFER(ah);
1674
Felix Fietkauecbbed32013-04-16 12:51:56 +02001675 REG_RMW(ah, AR_STA_ID1, macStaId1
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301676 | AR_STA_ID1_RTS_USE_DEF
Felix Fietkauecbbed32013-04-16 12:51:56 +02001677 | ah->sta_id1_defaults,
1678 ~AR_STA_ID1_SADH_MASK);
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301679 ath_hw_setbssidmask(common);
1680 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1681 ath9k_hw_write_associd(ah);
1682 REG_WRITE(ah, AR_ISR, ~0);
1683 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1684
1685 REGWRITE_BUFFER_FLUSH(ah);
1686
1687 ath9k_hw_set_operating_mode(ah, ah->opmode);
1688}
1689
1690static void ath9k_hw_init_queues(struct ath_hw *ah)
1691{
1692 int i;
1693
1694 ENABLE_REGWRITE_BUFFER(ah);
1695
1696 for (i = 0; i < AR_NUM_DCU; i++)
1697 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1698
1699 REGWRITE_BUFFER_FLUSH(ah);
1700
1701 ah->intr_txqs = 0;
1702 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1703 ath9k_hw_resettxqueue(ah, i);
1704}
1705
1706/*
1707 * For big endian systems turn on swapping for descriptors
1708 */
1709static void ath9k_hw_init_desc(struct ath_hw *ah)
1710{
1711 struct ath_common *common = ath9k_hw_common(ah);
1712
1713 if (AR_SREV_9100(ah)) {
1714 u32 mask;
1715 mask = REG_READ(ah, AR_CFG);
1716 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
1717 ath_dbg(common, RESET, "CFG Byte Swap Set 0x%x\n",
1718 mask);
1719 } else {
1720 mask = INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1721 REG_WRITE(ah, AR_CFG, mask);
1722 ath_dbg(common, RESET, "Setting CFG 0x%x\n",
1723 REG_READ(ah, AR_CFG));
1724 }
1725 } else {
1726 if (common->bus_ops->ath_bus_type == ATH_USB) {
1727 /* Configure AR9271 target WLAN */
1728 if (AR_SREV_9271(ah))
1729 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1730 else
1731 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1732 }
1733#ifdef __BIG_ENDIAN
1734 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah) ||
Miaoqing Panede6a5e2014-12-19 06:33:59 +05301735 AR_SREV_9550(ah) || AR_SREV_9531(ah) ||
1736 AR_SREV_9561(ah))
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301737 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1738 else
1739 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1740#endif
1741 }
1742}
1743
Sujith Manoharancaed6572012-03-14 14:40:46 +05301744/*
1745 * Fast channel change:
1746 * (Change synthesizer based on channel freq without resetting chip)
Sujith Manoharancaed6572012-03-14 14:40:46 +05301747 */
1748static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan)
1749{
1750 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301751 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301752 int ret;
1753
1754 if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
1755 goto fail;
1756
1757 if (ah->chip_fullsleep)
1758 goto fail;
1759
1760 if (!ah->curchan)
1761 goto fail;
1762
1763 if (chan->channel == ah->curchan->channel)
1764 goto fail;
1765
Felix Fietkaufeb7bc92012-04-19 21:18:28 +02001766 if ((ah->curchan->channelFlags | chan->channelFlags) &
1767 (CHANNEL_HALF | CHANNEL_QUARTER))
1768 goto fail;
1769
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301770 /*
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001771 * If cross-band fcc is not supoprted, bail out if channelFlags differ.
Sujith Manoharanb840cff2013-07-16 12:03:19 +05301772 */
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001773 if (!(pCap->hw_caps & ATH9K_HW_CAP_FCC_BAND_SWITCH) &&
Felix Fietkauaf02efb2013-11-18 20:14:44 +01001774 ((chan->channelFlags ^ ah->curchan->channelFlags) & ~CHANNEL_HT))
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001775 goto fail;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301776
1777 if (!ath9k_hw_check_alive(ah))
1778 goto fail;
1779
1780 /*
1781 * For AR9462, make sure that calibration data for
1782 * re-using are present.
1783 */
Sujith Manoharan8a905552012-05-04 13:23:59 +05301784 if (AR_SREV_9462(ah) && (ah->caldata &&
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301785 (!test_bit(TXIQCAL_DONE, &ah->caldata->cal_flags) ||
1786 !test_bit(TXCLCAL_DONE, &ah->caldata->cal_flags) ||
1787 !test_bit(RTT_DONE, &ah->caldata->cal_flags))))
Sujith Manoharancaed6572012-03-14 14:40:46 +05301788 goto fail;
1789
1790 ath_dbg(common, RESET, "FastChannelChange for %d -> %d\n",
1791 ah->curchan->channel, chan->channel);
1792
1793 ret = ath9k_hw_channel_change(ah, chan);
1794 if (!ret)
1795 goto fail;
1796
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301797 if (ath9k_hw_mci_is_enabled(ah))
Rajkumar Manoharan1bde95fa2012-06-11 12:19:33 +05301798 ar9003_mci_2g5g_switch(ah, false);
Sujith Manoharancaed6572012-03-14 14:40:46 +05301799
Rajkumar Manoharan88033312012-09-12 18:59:19 +05301800 ath9k_hw_loadnf(ah, ah->curchan);
1801 ath9k_hw_start_nfcal(ah, true);
1802
Sujith Manoharancaed6572012-03-14 14:40:46 +05301803 if (AR_SREV_9271(ah))
1804 ar9002_hw_load_ani_reg(ah, chan);
1805
1806 return 0;
1807fail:
1808 return -EINVAL;
1809}
1810
Felix Fietkau8d7e09d2014-06-11 16:18:01 +05301811u32 ath9k_hw_get_tsf_offset(struct timespec *last, struct timespec *cur)
1812{
1813 struct timespec ts;
1814 s64 usec;
1815
1816 if (!cur) {
1817 getrawmonotonic(&ts);
1818 cur = &ts;
1819 }
1820
1821 usec = cur->tv_sec * 1000000ULL + cur->tv_nsec / 1000;
1822 usec -= last->tv_sec * 1000000ULL + last->tv_nsec / 1000;
1823
1824 return (u32) usec;
1825}
1826EXPORT_SYMBOL(ath9k_hw_get_tsf_offset);
1827
Sujithcbe61d82009-02-09 13:27:12 +05301828int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Sujith Manoharancaed6572012-03-14 14:40:46 +05301829 struct ath9k_hw_cal_data *caldata, bool fastcc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001830{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001831 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001832 u32 saveLedState;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833 u32 saveDefAntenna;
1834 u32 macStaId1;
Benjamin Bergbec9a942016-07-04 14:37:22 +02001835 struct timespec tsf_ts;
1836 u32 tsf_offset;
Sujith46fe7822009-09-17 09:25:25 +05301837 u64 tsf = 0;
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301838 int r;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301839 bool start_mci_reset = false;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301840 bool save_fullsleep = ah->chip_fullsleep;
1841
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301842 if (ath9k_hw_mci_is_enabled(ah)) {
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301843 start_mci_reset = ar9003_mci_start_reset(ah, chan);
1844 if (start_mci_reset)
1845 return 0;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301846 }
1847
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001848 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001849 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001850
Sujith Manoharancaed6572012-03-14 14:40:46 +05301851 if (ah->curchan && !ah->chip_fullsleep)
1852 ath9k_hw_getnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001853
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001854 ah->caldata = caldata;
Sujith Manoharanfcb9a3d2013-03-04 12:42:52 +05301855 if (caldata && (chan->channel != caldata->channel ||
Felix Fietkau6b21fd22013-10-11 23:30:56 +02001856 chan->channelFlags != caldata->channelFlags)) {
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001857 /* Operating channel changed, reset channel calibration data */
1858 memset(caldata, 0, sizeof(*caldata));
1859 ath9k_init_nfcal_hist_buffer(ah, chan);
Felix Fietkau51dea9b2012-08-27 17:00:07 +02001860 } else if (caldata) {
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301861 clear_bit(PAPRD_PACKET_SENT, &caldata->cal_flags);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001862 }
Lorenzo Bianconi5bc225a2013-10-11 14:09:54 +02001863 ah->noise = ath9k_hw_getchan_noise(ah, chan, chan->noisefloor);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001864
Sujith Manoharancaed6572012-03-14 14:40:46 +05301865 if (fastcc) {
1866 r = ath9k_hw_do_fastcc(ah, chan);
1867 if (!r)
1868 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869 }
1870
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301871 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301872 ar9003_mci_stop_bt(ah, save_fullsleep);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301873
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001874 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1875 if (saveDefAntenna == 0)
1876 saveDefAntenna = 1;
1877
1878 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1879
Felix Fietkau09d8e312013-11-18 20:14:43 +01001880 /* Save TSF before chip reset, a cold reset clears it */
Benjamin Bergbec9a942016-07-04 14:37:22 +02001881 getrawmonotonic(&tsf_ts);
Felix Fietkau09d8e312013-11-18 20:14:43 +01001882 tsf = ath9k_hw_gettsf64(ah);
Sujith46fe7822009-09-17 09:25:25 +05301883
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 saveLedState = REG_READ(ah, AR_CFG_LED) &
1885 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1886 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1887
1888 ath9k_hw_mark_phy_inactive(ah);
1889
Vasanthakumar Thiagarajan45ef6a0b2010-12-15 07:30:53 -08001890 ah->paprd_table_write_done = false;
1891
Sujith05020d22010-03-17 14:25:23 +05301892 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001893 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1894 REG_WRITE(ah,
1895 AR9271_RESET_POWER_DOWN_CONTROL,
1896 AR9271_RADIO_RF_RST);
1897 udelay(50);
1898 }
1899
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001901 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001902 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001903 }
1904
Sujith05020d22010-03-17 14:25:23 +05301905 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001906 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1907 ah->htc_reset_init = false;
1908 REG_WRITE(ah,
1909 AR9271_RESET_POWER_DOWN_CONTROL,
1910 AR9271_GATE_MAC_CTL);
1911 udelay(50);
1912 }
1913
Sujith46fe7822009-09-17 09:25:25 +05301914 /* Restore TSF */
Benjamin Bergbec9a942016-07-04 14:37:22 +02001915 tsf_offset = ath9k_hw_get_tsf_offset(&tsf_ts, NULL);
1916 ath9k_hw_settsf64(ah, tsf + tsf_offset);
Sujith46fe7822009-09-17 09:25:25 +05301917
Felix Fietkau7a370812010-09-22 12:34:52 +02001918 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301919 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001920
Sujithe9141f72010-06-01 15:14:10 +05301921 if (!AR_SREV_9300_20_OR_LATER(ah))
1922 ar9002_hw_enable_async_fifo(ah);
1923
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001924 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001925 if (r)
1926 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927
Lorenzo Bianconi935d00c2013-12-12 18:10:16 +01001928 ath9k_hw_set_rfmode(ah, chan);
1929
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05301930 if (ath9k_hw_mci_is_enabled(ah))
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301931 ar9003_mci_reset(ah, false, IS_CHAN_2GHZ(chan), save_fullsleep);
1932
Felix Fietkauf860d522010-06-30 02:07:48 +02001933 /*
1934 * Some AR91xx SoC devices frequently fail to accept TSF writes
1935 * right after the chip reset. When that happens, write a new
Benjamin Bergbec9a942016-07-04 14:37:22 +02001936 * value after the initvals have been applied.
Felix Fietkauf860d522010-06-30 02:07:48 +02001937 */
1938 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
Benjamin Bergbec9a942016-07-04 14:37:22 +02001939 tsf_offset = ath9k_hw_get_tsf_offset(&tsf_ts, NULL);
1940 ath9k_hw_settsf64(ah, tsf + tsf_offset);
Felix Fietkauf860d522010-06-30 02:07:48 +02001941 }
1942
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301943 ath9k_hw_init_mfp(ah);
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001944
Felix Fietkau81c507a2013-10-11 23:30:55 +02001945 ath9k_hw_set_delta_slope(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001946 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301947 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001948
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301949 ath9k_hw_reset_opmode(ah, macStaId1, saveDefAntenna);
Sujith Manoharan00e00032011-01-26 21:59:05 +05301950
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001951 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001952 if (r)
1953 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001954
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001955 ath9k_hw_set_clockrate(ah);
1956
Sujith Manoharan15d2b582013-03-04 12:42:53 +05301957 ath9k_hw_init_queues(ah);
Sujith2660b812009-02-09 13:27:26 +05301958 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001959 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960 ath9k_hw_init_qos(ah);
1961
Sujith2660b812009-02-09 13:27:26 +05301962 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Miaoqing Panb2d70d42016-03-07 10:38:15 +08001963 ath9k_hw_gpio_request_in(ah, ah->rfkill_gpio, "ath9k-rfkill");
Johannes Berg3b319aa2009-06-13 14:50:26 +05301964
Felix Fietkau0005baf2010-01-15 02:33:40 +01001965 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001966
Felix Fietkaufe2b6af2011-07-09 11:12:51 +07001967 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1968 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1969 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1970 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1971 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1972 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1973 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301974 }
1975
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001976 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001977
1978 ath9k_hw_set_dma(ah);
1979
Rajkumar Manoharaned6ebd82012-06-11 12:19:34 +05301980 if (!ath9k_hw_mci_is_enabled(ah))
1981 REG_WRITE(ah, AR_OBS, 8);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001982
Oleksij Rempel7b37e0d2015-03-22 19:29:57 +01001983 ENABLE_REG_RMW_BUFFER(ah);
Sujith0ce024c2009-12-14 14:57:00 +05301984 if (ah->config.rx_intr_mitigation) {
Sujith Manoharana64e1a42014-01-23 08:20:30 +05301985 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, ah->config.rimt_last);
1986 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, ah->config.rimt_first);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987 }
1988
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001989 if (ah->config.tx_intr_mitigation) {
1990 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1991 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1992 }
Oleksij Rempel7b37e0d2015-03-22 19:29:57 +01001993 REG_RMW_BUFFER_FLUSH(ah);
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001994
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995 ath9k_hw_init_bb(ah, chan);
1996
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301997 if (caldata) {
Sujith Manoharan4b9b42b2013-09-11 16:36:31 +05301998 clear_bit(TXIQCAL_DONE, &caldata->cal_flags);
1999 clear_bit(TXCLCAL_DONE, &caldata->cal_flags);
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05302000 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002001 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07002002 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002003
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05302004 if (ath9k_hw_mci_is_enabled(ah) && ar9003_mci_end_reset(ah, chan, caldata))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05302005 return -EIO;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05302006
Sujith7d0d0df2010-04-16 11:53:57 +05302007 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002008
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04002009 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002010 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2011
Sujith7d0d0df2010-04-16 11:53:57 +05302012 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302013
Sujith Manoharanf4c34af2014-11-16 06:11:03 +05302014 ath9k_hw_gen_timer_start_tsf2(ah);
2015
Sujith Manoharan15d2b582013-03-04 12:42:53 +05302016 ath9k_hw_init_desc(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002017
Sujith Manoharandbccdd12012-02-22 17:55:47 +05302018 if (ath9k_hw_btcoex_is_enabled(ah))
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05302019 ath9k_hw_btcoex_enable(ah);
2020
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05302021 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan528e5d32012-02-22 12:41:12 +05302022 ar9003_mci_check_bt(ah);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05302023
Felix Fietkau7b89fcc2014-10-25 17:19:32 +02002024 if (AR_SREV_9300_20_OR_LATER(ah)) {
2025 ath9k_hw_loadnf(ah, chan);
2026 ath9k_hw_start_nfcal(ah, true);
2027 }
Rajkumar Manoharan1fe860e2012-07-01 19:53:51 +05302028
Sujith Manoharana7abaf72013-12-24 10:44:21 +05302029 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04002030 ar9003_hw_bb_watchdog_config(ah);
Sujith Manoharana7abaf72013-12-24 10:44:21 +05302031
2032 if (ah->config.hw_hang_checks & HW_PHYRESTART_CLC_WAR)
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05302033 ar9003_hw_disable_phy_restart(ah);
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05302034
Felix Fietkau691680b2011-03-19 13:55:38 +01002035 ath9k_hw_apply_gpio_override(ah);
2036
Sujith Manoharan7bdea962013-08-04 14:22:00 +05302037 if (AR_SREV_9565(ah) && common->bt_ant_diversity)
Sujith Manoharan362cd032012-09-16 08:06:36 +05302038 REG_SET_BIT(ah, AR_BTCOEX_WL_LNADIV, AR_BTCOEX_WL_LNADIV_FORCE_ON);
2039
Lorenzo Bianconi4307b0f2014-09-11 23:50:54 +02002040 if (ah->hw->conf.radar_enabled) {
2041 /* set HW specific DFS configuration */
Lorenzo Bianconi7a0a2602014-09-16 16:43:42 +02002042 ah->radar_conf.ext_channel = IS_CHAN_HT40(chan);
Lorenzo Bianconi4307b0f2014-09-11 23:50:54 +02002043 ath9k_hw_set_radar_params(ah);
2044 }
2045
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08002046 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002047}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002048EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049
Sujithf1dc5602008-10-29 10:16:30 +05302050/******************************/
2051/* Power Management (Chipset) */
2052/******************************/
2053
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002054/*
2055 * Notify Power Mgt is disabled in self-generated frames.
2056 * If requested, force chip to sleep.
2057 */
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302058static void ath9k_set_power_sleep(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302059{
2060 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302061
Sujith Manoharana4a29542012-09-10 09:20:03 +05302062 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302063 REG_CLR_BIT(ah, AR_TIMER_MODE, 0xff);
2064 REG_CLR_BIT(ah, AR_NDP2_TIMER_MODE, 0xff);
2065 REG_CLR_BIT(ah, AR_SLP32_INC, 0xfffff);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302066 /* xxx Required for WLAN only case ? */
2067 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
2068 udelay(100);
2069 }
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302070
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302071 /*
2072 * Clear the RTC force wake bit to allow the
2073 * mac to go to sleep.
2074 */
2075 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302076
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302077 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302078 udelay(100);
Sujithf1dc5602008-10-29 10:16:30 +05302079
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302080 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
2081 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2082
2083 /* Shutdown chip. Active low */
2084 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) {
2085 REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
2086 udelay(2);
Sujithf1dc5602008-10-29 10:16:30 +05302087 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002088
2089 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
Rafael J. Wysockia7322812011-11-26 23:37:43 +01002090 if (AR_SREV_9300_20_OR_LATER(ah))
2091 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092}
2093
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002094/*
2095 * Notify Power Management is enabled in self-generating
2096 * frames. If request, set power mode of chip to
2097 * auto/normal. Duration in units of 128us (1/8 TU).
2098 */
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302099static void ath9k_set_power_network_sleep(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100{
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302101 struct ath9k_hw_capabilities *pCap = &ah->caps;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302102
Sujithf1dc5602008-10-29 10:16:30 +05302103 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002104
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302105 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2106 /* Set WakeOnInterrupt bit; clear ForceWake bit */
2107 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2108 AR_RTC_FORCE_WAKE_ON_INT);
2109 } else {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302110
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302111 /* When chip goes into network sleep, it could be waken
2112 * up by MCI_INT interrupt caused by BT's HW messages
2113 * (LNA_xxx, CONT_xxx) which chould be in a very fast
2114 * rate (~100us). This will cause chip to leave and
2115 * re-enter network sleep mode frequently, which in
2116 * consequence will have WLAN MCI HW to generate lots of
2117 * SYS_WAKING and SYS_SLEEPING messages which will make
2118 * BT CPU to busy to process.
2119 */
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302120 if (ath9k_hw_mci_is_enabled(ah))
2121 REG_CLR_BIT(ah, AR_MCI_INTERRUPT_RX_MSG_EN,
2122 AR_MCI_INTERRUPT_RX_HW_MSG_MASK);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302123 /*
2124 * Clear the RTC force wake bit to allow the
2125 * mac to go to sleep.
2126 */
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302127 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302128
Rajkumar Manoharan153dccd2012-06-04 16:28:47 +05302129 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302130 udelay(30);
Sujithf1dc5602008-10-29 10:16:30 +05302131 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002132
2133 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
2134 if (AR_SREV_9300_20_OR_LATER(ah))
2135 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05302136}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002137
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302138static bool ath9k_hw_set_power_awake(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302139{
2140 u32 val;
2141 int i;
2142
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002143 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
2144 if (AR_SREV_9300_20_OR_LATER(ah)) {
2145 REG_WRITE(ah, AR_WA, ah->WARegVal);
2146 udelay(10);
2147 }
2148
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302149 if ((REG_READ(ah, AR_RTC_STATUS) &
2150 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2151 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithf1dc5602008-10-29 10:16:30 +05302152 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153 }
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302154 if (!AR_SREV_9300_20_OR_LATER(ah))
2155 ath9k_hw_init_pll(ah, NULL);
2156 }
2157 if (AR_SREV_9100(ah))
2158 REG_SET_BIT(ah, AR_RTC_RESET,
2159 AR_RTC_RESET_EN);
2160
2161 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2162 AR_RTC_FORCE_WAKE_EN);
Sujith Manoharan04575f22013-12-28 09:47:13 +05302163 if (AR_SREV_9100(ah))
Sujith Manoharan3683a072014-02-04 08:37:52 +05302164 mdelay(10);
Sujith Manoharan04575f22013-12-28 09:47:13 +05302165 else
2166 udelay(50);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302167
2168 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2169 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2170 if (val == AR_RTC_STATUS_ON)
2171 break;
2172 udelay(50);
2173 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2174 AR_RTC_FORCE_WAKE_EN);
2175 }
2176 if (i == 0) {
2177 ath_err(ath9k_hw_common(ah),
2178 "Failed to wakeup in %uus\n",
2179 POWER_UP_TIME / 20);
2180 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002181 }
2182
Rajkumar Manoharancdbe4082012-10-25 17:16:53 +05302183 if (ath9k_hw_mci_is_enabled(ah))
2184 ar9003_mci_set_power_awake(ah);
2185
Sujithf1dc5602008-10-29 10:16:30 +05302186 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2187
2188 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189}
2190
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002191bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302192{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002193 struct ath_common *common = ath9k_hw_common(ah);
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302194 int status = true;
Sujithf1dc5602008-10-29 10:16:30 +05302195 static const char *modes[] = {
2196 "AWAKE",
2197 "FULL-SLEEP",
2198 "NETWORK SLEEP",
2199 "UNDEFINED"
2200 };
Sujithf1dc5602008-10-29 10:16:30 +05302201
Gabor Juhoscbdec972009-07-24 17:27:22 +02002202 if (ah->power_mode == mode)
2203 return status;
2204
Joe Perchesd2182b62011-12-15 14:55:53 -08002205 ath_dbg(common, RESET, "%s -> %s\n",
Joe Perches226afe62010-12-02 19:12:37 -08002206 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302207
2208 switch (mode) {
2209 case ATH9K_PM_AWAKE:
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302210 status = ath9k_hw_set_power_awake(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302211 break;
2212 case ATH9K_PM_FULL_SLEEP:
Sujith Manoharan5955b2b2012-06-04 16:27:30 +05302213 if (ath9k_hw_mci_is_enabled(ah))
Sujith Manoharand1ca8b82012-02-22 12:41:01 +05302214 ar9003_mci_set_full_sleep(ah);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302215
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302216 ath9k_set_power_sleep(ah);
Sujith2660b812009-02-09 13:27:26 +05302217 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302218 break;
2219 case ATH9K_PM_NETWORK_SLEEP:
Sujith Manoharan31604cf2012-06-04 16:27:36 +05302220 ath9k_set_power_network_sleep(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302221 break;
2222 default:
Joe Perches38002762010-12-02 19:12:36 -08002223 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302224 return false;
2225 }
Sujith2660b812009-02-09 13:27:26 +05302226 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302227
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002228 /*
2229 * XXX: If this warning never comes up after a while then
2230 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
2231 * ath9k_hw_setpower() return type void.
2232 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05302233
2234 if (!(ah->ah_flags & AH_UNPLUGGED))
2235 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002236
Sujithf1dc5602008-10-29 10:16:30 +05302237 return status;
2238}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002239EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302240
Sujithf1dc5602008-10-29 10:16:30 +05302241/*******************/
2242/* Beacon Handling */
2243/*******************/
2244
Sujithcbe61d82009-02-09 13:27:12 +05302245void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002246{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002247 int flags = 0;
2248
Sujith7d0d0df2010-04-16 11:53:57 +05302249 ENABLE_REGWRITE_BUFFER(ah);
2250
Sujith2660b812009-02-09 13:27:26 +05302251 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002252 case NL80211_IFTYPE_ADHOC:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253 REG_SET_BIT(ah, AR_TXCFG,
2254 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Thomas Pedersen2664d662013-05-08 10:16:48 -07002255 case NL80211_IFTYPE_MESH_POINT:
Colin McCabed97809d2008-12-01 13:38:55 -08002256 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01002257 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
2258 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
2259 TU_TO_USEC(ah->config.dma_beacon_response_time));
2260 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
2261 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002262 flags |=
2263 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2264 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002265 default:
Joe Perchesd2182b62011-12-15 14:55:53 -08002266 ath_dbg(ath9k_hw_common(ah), BEACON,
2267 "%s: unsupported opmode: %d\n", __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002268 return;
2269 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002270 }
2271
Felix Fietkaudd347f22011-03-22 21:54:17 +01002272 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
2273 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
2274 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002275
Sujith7d0d0df2010-04-16 11:53:57 +05302276 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302277
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2279}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002280EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002281
Sujithcbe61d82009-02-09 13:27:12 +05302282void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302283 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002284{
2285 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302286 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002287 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002288
Sujith7d0d0df2010-04-16 11:53:57 +05302289 ENABLE_REGWRITE_BUFFER(ah);
2290
Felix Fietkau4ed15762013-12-14 18:03:44 +01002291 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, bs->bs_nexttbtt);
2292 REG_WRITE(ah, AR_BEACON_PERIOD, bs->bs_intval);
2293 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, bs->bs_intval);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294
Sujith7d0d0df2010-04-16 11:53:57 +05302295 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302296
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002297 REG_RMW_FIELD(ah, AR_RSSI_THR,
2298 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2299
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302300 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301
2302 if (bs->bs_sleepduration > beaconintval)
2303 beaconintval = bs->bs_sleepduration;
2304
2305 dtimperiod = bs->bs_dtimperiod;
2306 if (bs->bs_sleepduration > dtimperiod)
2307 dtimperiod = bs->bs_sleepduration;
2308
2309 if (beaconintval == dtimperiod)
2310 nextTbtt = bs->bs_nextdtim;
2311 else
2312 nextTbtt = bs->bs_nexttbtt;
2313
Janusz Dziedzic58bb9ca2015-11-27 09:37:06 +01002314 ath_dbg(common, BEACON, "next DTIM %u\n", bs->bs_nextdtim);
2315 ath_dbg(common, BEACON, "next beacon %u\n", nextTbtt);
2316 ath_dbg(common, BEACON, "beacon period %u\n", beaconintval);
2317 ath_dbg(common, BEACON, "DTIM period %u\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318
Sujith7d0d0df2010-04-16 11:53:57 +05302319 ENABLE_REGWRITE_BUFFER(ah);
2320
Felix Fietkau4ed15762013-12-14 18:03:44 +01002321 REG_WRITE(ah, AR_NEXT_DTIM, bs->bs_nextdtim - SLEEP_SLOP);
2322 REG_WRITE(ah, AR_NEXT_TIM, nextTbtt - SLEEP_SLOP);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002323
2324 REG_WRITE(ah, AR_SLEEP1,
2325 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2326 | AR_SLEEP1_ASSUME_DTIM);
2327
Sujith60b67f52008-08-07 10:52:38 +05302328 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2330 else
2331 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2332
2333 REG_WRITE(ah, AR_SLEEP2,
2334 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2335
Felix Fietkau4ed15762013-12-14 18:03:44 +01002336 REG_WRITE(ah, AR_TIM_PERIOD, beaconintval);
2337 REG_WRITE(ah, AR_DTIM_PERIOD, dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338
Sujith7d0d0df2010-04-16 11:53:57 +05302339 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002341 REG_SET_BIT(ah, AR_TIMER_MODE,
2342 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2343 AR_DTIM_TIMER_EN);
2344
Sujith4af9cf42009-02-12 10:06:47 +05302345 /* TSF Out of Range Threshold */
2346 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002347}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002348EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002349
Sujithf1dc5602008-10-29 10:16:30 +05302350/*******************/
2351/* HW Capabilities */
2352/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002353
Felix Fietkau60540692011-07-19 08:46:44 +02002354static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
2355{
2356 eeprom_chainmask &= chip_chainmask;
2357 if (eeprom_chainmask)
2358 return eeprom_chainmask;
2359 else
2360 return chip_chainmask;
2361}
2362
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002363/**
2364 * ath9k_hw_dfs_tested - checks if DFS has been tested with used chipset
2365 * @ah: the atheros hardware data structure
2366 *
2367 * We enable DFS support upstream on chipsets which have passed a series
2368 * of tests. The testing requirements are going to be documented. Desired
2369 * test requirements are documented at:
2370 *
2371 * http://wireless.kernel.org/en/users/Drivers/ath9k/dfs
2372 *
2373 * Once a new chipset gets properly tested an individual commit can be used
2374 * to document the testing for DFS for that chipset.
2375 */
2376static bool ath9k_hw_dfs_tested(struct ath_hw *ah)
2377{
2378
2379 switch (ah->hw_version.macVersion) {
Zefir Kurtisi73e49372013-04-03 18:31:31 +02002380 /* for temporary testing DFS with 9280 */
2381 case AR_SREV_VERSION_9280:
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002382 /* AR9580 will likely be our first target to get testing on */
2383 case AR_SREV_VERSION_9580:
Zefir Kurtisi73e49372013-04-03 18:31:31 +02002384 return true;
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002385 default:
2386 return false;
2387 }
2388}
2389
Miaoqing Pana01ab812016-03-07 10:38:14 +08002390static void ath9k_gpio_cap_init(struct ath_hw *ah)
2391{
2392 struct ath9k_hw_capabilities *pCap = &ah->caps;
2393
2394 if (AR_SREV_9271(ah)) {
2395 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2396 pCap->gpio_mask = AR9271_GPIO_MASK;
2397 } else if (AR_DEVID_7010(ah)) {
2398 pCap->num_gpio_pins = AR7010_NUM_GPIO;
2399 pCap->gpio_mask = AR7010_GPIO_MASK;
2400 } else if (AR_SREV_9287(ah)) {
2401 pCap->num_gpio_pins = AR9287_NUM_GPIO;
2402 pCap->gpio_mask = AR9287_GPIO_MASK;
2403 } else if (AR_SREV_9285(ah)) {
2404 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2405 pCap->gpio_mask = AR9285_GPIO_MASK;
2406 } else if (AR_SREV_9280(ah)) {
2407 pCap->num_gpio_pins = AR9280_NUM_GPIO;
2408 pCap->gpio_mask = AR9280_GPIO_MASK;
2409 } else if (AR_SREV_9300(ah)) {
2410 pCap->num_gpio_pins = AR9300_NUM_GPIO;
2411 pCap->gpio_mask = AR9300_GPIO_MASK;
2412 } else if (AR_SREV_9330(ah)) {
2413 pCap->num_gpio_pins = AR9330_NUM_GPIO;
2414 pCap->gpio_mask = AR9330_GPIO_MASK;
2415 } else if (AR_SREV_9340(ah)) {
2416 pCap->num_gpio_pins = AR9340_NUM_GPIO;
2417 pCap->gpio_mask = AR9340_GPIO_MASK;
2418 } else if (AR_SREV_9462(ah)) {
2419 pCap->num_gpio_pins = AR9462_NUM_GPIO;
2420 pCap->gpio_mask = AR9462_GPIO_MASK;
2421 } else if (AR_SREV_9485(ah)) {
2422 pCap->num_gpio_pins = AR9485_NUM_GPIO;
2423 pCap->gpio_mask = AR9485_GPIO_MASK;
2424 } else if (AR_SREV_9531(ah)) {
2425 pCap->num_gpio_pins = AR9531_NUM_GPIO;
2426 pCap->gpio_mask = AR9531_GPIO_MASK;
2427 } else if (AR_SREV_9550(ah)) {
2428 pCap->num_gpio_pins = AR9550_NUM_GPIO;
2429 pCap->gpio_mask = AR9550_GPIO_MASK;
2430 } else if (AR_SREV_9561(ah)) {
2431 pCap->num_gpio_pins = AR9561_NUM_GPIO;
2432 pCap->gpio_mask = AR9561_GPIO_MASK;
2433 } else if (AR_SREV_9565(ah)) {
2434 pCap->num_gpio_pins = AR9565_NUM_GPIO;
2435 pCap->gpio_mask = AR9565_GPIO_MASK;
2436 } else if (AR_SREV_9580(ah)) {
2437 pCap->num_gpio_pins = AR9580_NUM_GPIO;
2438 pCap->gpio_mask = AR9580_GPIO_MASK;
2439 } else {
2440 pCap->num_gpio_pins = AR_NUM_GPIO;
2441 pCap->gpio_mask = AR_GPIO_MASK;
2442 }
2443}
2444
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002445int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002446{
Sujith2660b812009-02-09 13:27:26 +05302447 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002448 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002449 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002450
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05302451 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002452 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453
Sujithf74df6f2009-02-09 13:27:24 +05302454 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002455 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302456
Sujith2660b812009-02-09 13:27:26 +05302457 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302458 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002459 if (regulatory->current_rd == 0x64 ||
2460 regulatory->current_rd == 0x65)
2461 regulatory->current_rd += 5;
2462 else if (regulatory->current_rd == 0x41)
2463 regulatory->current_rd = 0x43;
Joe Perchesd2182b62011-12-15 14:55:53 -08002464 ath_dbg(common, REGULATORY, "regdomain mapped to 0x%x\n",
2465 regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002466 }
Sujithdc2222a2008-08-14 13:26:55 +05302467
Sujithf74df6f2009-02-09 13:27:24 +05302468 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Felix Fietkau34689682014-10-25 17:19:34 +02002469
2470 if (eeval & AR5416_OPFLAGS_11A) {
2471 if (ah->disable_5ghz)
2472 ath_warn(common, "disabling 5GHz band\n");
2473 else
2474 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002475 }
2476
Felix Fietkau34689682014-10-25 17:19:34 +02002477 if (eeval & AR5416_OPFLAGS_11G) {
2478 if (ah->disable_2ghz)
2479 ath_warn(common, "disabling 2GHz band\n");
2480 else
2481 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
2482 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002483
Felix Fietkau34689682014-10-25 17:19:34 +02002484 if ((pCap->hw_caps & (ATH9K_HW_CAP_2GHZ | ATH9K_HW_CAP_5GHZ)) == 0) {
2485 ath_err(common, "both bands are disabled\n");
2486 return -EINVAL;
2487 }
Sujithf1dc5602008-10-29 10:16:30 +05302488
Miaoqing Pandb7b5422016-08-04 15:48:34 +08002489 ath9k_gpio_cap_init(ah);
2490
Sujith Manoharane41db612012-09-10 09:20:12 +05302491 if (AR_SREV_9485(ah) ||
2492 AR_SREV_9285(ah) ||
2493 AR_SREV_9330(ah) ||
2494 AR_SREV_9565(ah))
Sujith Manoharanee79ccd2014-11-16 06:11:04 +05302495 pCap->chip_chainmask = 1;
Felix Fietkau60540692011-07-19 08:46:44 +02002496 else if (!AR_SREV_9280_20_OR_LATER(ah))
Sujith Manoharanee79ccd2014-11-16 06:11:04 +05302497 pCap->chip_chainmask = 7;
2498 else if (!AR_SREV_9300_20_OR_LATER(ah) ||
2499 AR_SREV_9340(ah) ||
2500 AR_SREV_9462(ah) ||
2501 AR_SREV_9531(ah))
2502 pCap->chip_chainmask = 3;
Felix Fietkau60540692011-07-19 08:46:44 +02002503 else
Sujith Manoharanee79ccd2014-11-16 06:11:04 +05302504 pCap->chip_chainmask = 7;
Felix Fietkau60540692011-07-19 08:46:44 +02002505
Sujithf74df6f2009-02-09 13:27:24 +05302506 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002507 /*
2508 * For AR9271 we will temporarilly uses the rx chainmax as read from
2509 * the EEPROM.
2510 */
Sujith8147f5d2009-02-20 15:13:23 +05302511 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002512 !(eeval & AR5416_OPFLAGS_11A) &&
2513 !(AR_SREV_9271(ah)))
2514 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302515 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01002516 else if (AR_SREV_9100(ah))
2517 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05302518 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002519 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302520 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302521
Sujith Manoharanee79ccd2014-11-16 06:11:04 +05302522 pCap->tx_chainmask = fixup_chainmask(pCap->chip_chainmask, pCap->tx_chainmask);
2523 pCap->rx_chainmask = fixup_chainmask(pCap->chip_chainmask, pCap->rx_chainmask);
Felix Fietkau82b2d332011-09-03 01:40:23 +02002524 ah->txchainmask = pCap->tx_chainmask;
2525 ah->rxchainmask = pCap->rx_chainmask;
Felix Fietkau60540692011-07-19 08:46:44 +02002526
Felix Fietkau7a370812010-09-22 12:34:52 +02002527 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302528
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01002529 /* enable key search for every frame in an aggregate */
2530 if (AR_SREV_9300_20_OR_LATER(ah))
2531 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
2532
Bruno Randolfce2220d2010-09-17 11:36:25 +09002533 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
2534
Felix Fietkau0db156e2011-03-23 20:57:29 +01002535 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302536 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2537 else
2538 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2539
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302540 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302541 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302542 else
Sujithf1dc5602008-10-29 10:16:30 +05302543 pCap->rts_aggr_limit = (8 * 1024);
Sujithf1dc5602008-10-29 10:16:30 +05302544
Johannes Berg74e13062013-07-03 20:55:38 +02002545#ifdef CONFIG_ATH9K_RFKILL
Sujith2660b812009-02-09 13:27:26 +05302546 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2547 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2548 ah->rfkill_gpio =
2549 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2550 ah->rfkill_polarity =
2551 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302552
2553 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2554 }
2555#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002556 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302557 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2558 else
2559 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302560
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302561 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302562 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2563 else
2564 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2565
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002566 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002567 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Miaoqing Panede6a5e2014-12-19 06:33:59 +05302568 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah) &&
2569 !AR_SREV_9561(ah) && !AR_SREV_9565(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002570 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2571
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002572 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2573 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2574 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002575 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002576 pCap->txs_len = sizeof(struct ar9003_txs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002577 } else {
2578 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkaua949b172011-07-09 11:12:47 +07002579 if (AR_SREV_9280_20(ah))
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002580 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002581 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002582
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002583 if (AR_SREV_9300_20_OR_LATER(ah))
2584 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2585
Miaoqing Panede6a5e2014-12-19 06:33:59 +05302586 if (AR_SREV_9561(ah))
2587 ah->ent_mode = 0x3BDA000;
2588 else if (AR_SREV_9300_20_OR_LATER(ah))
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002589 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2590
Felix Fietkaua42acef2010-09-22 12:34:54 +02002591 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002592 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2593
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302594 if (AR_SREV_9285(ah)) {
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002595 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2596 ant_div_ctl1 =
2597 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302598 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1)) {
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002599 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302600 ath_info(common, "Enable LNA combining\n");
2601 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002602 }
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302603 }
2604
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302605 if (AR_SREV_9300_20_OR_LATER(ah)) {
2606 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2607 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2608 }
2609
Sujith Manoharan06236e52012-09-16 08:07:12 +05302610 if (AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302611 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302612 if ((ant_div_ctl1 >> 0x6) == 0x3) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302613 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
Sujith Manoharanf85c3372013-08-04 14:21:53 +05302614 ath_info(common, "Enable LNA combining\n");
2615 }
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302616 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002617
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002618 if (ath9k_hw_dfs_tested(ah))
2619 pCap->hw_caps |= ATH9K_HW_CAP_DFS;
2620
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002621 tx_chainmask = pCap->tx_chainmask;
2622 rx_chainmask = pCap->rx_chainmask;
2623 while (tx_chainmask || rx_chainmask) {
2624 if (tx_chainmask & BIT(0))
2625 pCap->max_txchains++;
2626 if (rx_chainmask & BIT(0))
2627 pCap->max_rxchains++;
2628
2629 tx_chainmask >>= 1;
2630 rx_chainmask >>= 1;
2631 }
2632
Sujith Manoharana4a29542012-09-10 09:20:03 +05302633 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302634 if (!(ah->ent_mode & AR_ENT_OTP_49GHZ_DISABLE))
2635 pCap->hw_caps |= ATH9K_HW_CAP_MCI;
2636
Sujith Manoharan2b5e54e2013-06-24 18:18:46 +05302637 if (AR_SREV_9462_20_OR_LATER(ah))
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302638 pCap->hw_caps |= ATH9K_HW_CAP_RTT;
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302639 }
2640
Sujith Manoharan0f21ee82012-12-10 07:22:37 +05302641 if (AR_SREV_9300_20_OR_LATER(ah) &&
2642 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
2643 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
2644
Sujith Manoharan12a44422015-01-30 19:05:33 +05302645#ifdef CONFIG_ATH9K_WOW
2646 if (AR_SREV_9462_20_OR_LATER(ah) || AR_SREV_9565_11_OR_LATER(ah))
2647 ah->wow.max_patterns = MAX_NUM_PATTERN;
2648 else
2649 ah->wow.max_patterns = MAX_NUM_PATTERN_LEGACY;
2650#endif
2651
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002652 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002653}
2654
Sujithf1dc5602008-10-29 10:16:30 +05302655/****************************/
2656/* GPIO / RFKILL / Antennae */
2657/****************************/
2658
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002659static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah, u32 gpio, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05302660{
2661 int addr;
2662 u32 gpio_shift, tmp;
2663
2664 if (gpio > 11)
2665 addr = AR_GPIO_OUTPUT_MUX3;
2666 else if (gpio > 5)
2667 addr = AR_GPIO_OUTPUT_MUX2;
2668 else
2669 addr = AR_GPIO_OUTPUT_MUX1;
2670
2671 gpio_shift = (gpio % 6) * 5;
2672
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002673 if (AR_SREV_9280_20_OR_LATER(ah) ||
2674 (addr != AR_GPIO_OUTPUT_MUX1)) {
Sujithf1dc5602008-10-29 10:16:30 +05302675 REG_RMW(ah, addr, (type << gpio_shift),
2676 (0x1f << gpio_shift));
2677 } else {
2678 tmp = REG_READ(ah, addr);
2679 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2680 tmp &= ~(0x1f << gpio_shift);
2681 tmp |= (type << gpio_shift);
2682 REG_WRITE(ah, addr, tmp);
2683 }
2684}
2685
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002686/* BSP should set the corresponding MUX register correctly.
2687 */
2688static void ath9k_hw_gpio_cfg_soc(struct ath_hw *ah, u32 gpio, bool out,
2689 const char *label)
Sujithf1dc5602008-10-29 10:16:30 +05302690{
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002691 if (ah->caps.gpio_requested & BIT(gpio))
2692 return;
Sujithf1dc5602008-10-29 10:16:30 +05302693
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002694 /* may be requested by BSP, free anyway */
2695 gpio_free(gpio);
2696
2697 if (gpio_request_one(gpio, out ? GPIOF_OUT_INIT_LOW : GPIOF_IN, label))
2698 return;
2699
2700 ah->caps.gpio_requested |= BIT(gpio);
2701}
2702
2703static void ath9k_hw_gpio_cfg_wmac(struct ath_hw *ah, u32 gpio, bool out,
2704 u32 ah_signal_type)
2705{
2706 u32 gpio_set, gpio_shift = gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302707
Sujith88c1f4f2010-06-30 14:46:31 +05302708 if (AR_DEVID_7010(ah)) {
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002709 gpio_set = out ?
2710 AR7010_GPIO_OE_AS_OUTPUT : AR7010_GPIO_OE_AS_INPUT;
2711 REG_RMW(ah, AR7010_GPIO_OE, gpio_set << gpio_shift,
2712 AR7010_GPIO_OE_MASK << gpio_shift);
2713 } else if (AR_SREV_SOC(ah)) {
2714 gpio_set = out ? 1 : 0;
2715 REG_RMW(ah, AR_GPIO_OE_OUT, gpio_set << gpio_shift,
2716 gpio_set << gpio_shift);
2717 } else {
2718 gpio_shift = gpio << 1;
2719 gpio_set = out ?
2720 AR_GPIO_OE_OUT_DRV_ALL : AR_GPIO_OE_OUT_DRV_NO;
2721 REG_RMW(ah, AR_GPIO_OE_OUT, gpio_set << gpio_shift,
2722 AR_GPIO_OE_OUT_DRV << gpio_shift);
Sujithf1dc5602008-10-29 10:16:30 +05302723
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002724 if (out)
2725 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2726 }
Sujithf1dc5602008-10-29 10:16:30 +05302727}
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002728
2729static void ath9k_hw_gpio_request(struct ath_hw *ah, u32 gpio, bool out,
2730 const char *label, u32 ah_signal_type)
2731{
2732 WARN_ON(gpio >= ah->caps.num_gpio_pins);
2733
2734 if (BIT(gpio) & ah->caps.gpio_mask)
2735 ath9k_hw_gpio_cfg_wmac(ah, gpio, out, ah_signal_type);
2736 else if (AR_SREV_SOC(ah))
2737 ath9k_hw_gpio_cfg_soc(ah, gpio, out, label);
2738 else
2739 WARN_ON(1);
2740}
2741
2742void ath9k_hw_gpio_request_in(struct ath_hw *ah, u32 gpio, const char *label)
2743{
2744 ath9k_hw_gpio_request(ah, gpio, false, label, 0);
2745}
2746EXPORT_SYMBOL(ath9k_hw_gpio_request_in);
2747
2748void ath9k_hw_gpio_request_out(struct ath_hw *ah, u32 gpio, const char *label,
2749 u32 ah_signal_type)
2750{
2751 ath9k_hw_gpio_request(ah, gpio, true, label, ah_signal_type);
2752}
2753EXPORT_SYMBOL(ath9k_hw_gpio_request_out);
2754
2755void ath9k_hw_gpio_free(struct ath_hw *ah, u32 gpio)
2756{
2757 if (!AR_SREV_SOC(ah))
2758 return;
2759
2760 WARN_ON(gpio >= ah->caps.num_gpio_pins);
2761
2762 if (ah->caps.gpio_requested & BIT(gpio)) {
2763 gpio_free(gpio);
2764 ah->caps.gpio_requested &= ~BIT(gpio);
2765 }
2766}
2767EXPORT_SYMBOL(ath9k_hw_gpio_free);
Sujithf1dc5602008-10-29 10:16:30 +05302768
Sujithcbe61d82009-02-09 13:27:12 +05302769u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302770{
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002771 u32 val = 0xffffffff;
2772
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302773#define MS_REG_READ(x, y) \
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002774 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & BIT(y))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302775
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002776 WARN_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302777
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002778 if (BIT(gpio) & ah->caps.gpio_mask) {
2779 if (AR_SREV_9271(ah))
2780 val = MS_REG_READ(AR9271, gpio);
2781 else if (AR_SREV_9287(ah))
2782 val = MS_REG_READ(AR9287, gpio);
2783 else if (AR_SREV_9285(ah))
2784 val = MS_REG_READ(AR9285, gpio);
2785 else if (AR_SREV_9280(ah))
2786 val = MS_REG_READ(AR928X, gpio);
2787 else if (AR_DEVID_7010(ah))
2788 val = REG_READ(ah, AR7010_GPIO_IN) & BIT(gpio);
2789 else if (AR_SREV_9300_20_OR_LATER(ah))
2790 val = REG_READ(ah, AR_GPIO_IN) & BIT(gpio);
2791 else
2792 val = MS_REG_READ(AR, gpio);
2793 } else if (BIT(gpio) & ah->caps.gpio_requested) {
2794 val = gpio_get_value(gpio) & BIT(gpio);
2795 } else {
2796 WARN_ON(1);
2797 }
2798
Matthias Schiffer072ebf82016-11-15 18:47:21 +01002799 return !!val;
Sujithf1dc5602008-10-29 10:16:30 +05302800}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002801EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302802
Sujithcbe61d82009-02-09 13:27:12 +05302803void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302804{
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002805 WARN_ON(gpio >= ah->caps.num_gpio_pins);
Sujith88c1f4f2010-06-30 14:46:31 +05302806
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002807 if (AR_DEVID_7010(ah) || AR_SREV_9271(ah))
2808 val = !val;
Miaoqing Pan61b559d2015-04-01 10:19:57 +08002809 else
Miaoqing Panb2d70d42016-03-07 10:38:15 +08002810 val = !!val;
2811
2812 if (BIT(gpio) & ah->caps.gpio_mask) {
2813 u32 out_addr = AR_DEVID_7010(ah) ?
2814 AR7010_GPIO_OUT : AR_GPIO_IN_OUT;
2815
2816 REG_RMW(ah, out_addr, val << gpio, BIT(gpio));
2817 } else if (BIT(gpio) & ah->caps.gpio_requested) {
2818 gpio_set_value(gpio, val);
2819 } else {
2820 WARN_ON(1);
2821 }
Sujithf1dc5602008-10-29 10:16:30 +05302822}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002823EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302824
Sujithcbe61d82009-02-09 13:27:12 +05302825void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302826{
2827 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2828}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002829EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302830
Sujithf1dc5602008-10-29 10:16:30 +05302831/*********************/
2832/* General Operation */
2833/*********************/
2834
Sujithcbe61d82009-02-09 13:27:12 +05302835u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302836{
2837 u32 bits = REG_READ(ah, AR_RX_FILTER);
2838 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2839
2840 if (phybits & AR_PHY_ERR_RADAR)
2841 bits |= ATH9K_RX_FILTER_PHYRADAR;
2842 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2843 bits |= ATH9K_RX_FILTER_PHYERR;
2844
2845 return bits;
2846}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002847EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302848
Sujithcbe61d82009-02-09 13:27:12 +05302849void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302850{
2851 u32 phybits;
2852
Sujith7d0d0df2010-04-16 11:53:57 +05302853 ENABLE_REGWRITE_BUFFER(ah);
2854
Sujith7ea310b2009-09-03 12:08:43 +05302855 REG_WRITE(ah, AR_RX_FILTER, bits);
2856
Sujithf1dc5602008-10-29 10:16:30 +05302857 phybits = 0;
2858 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2859 phybits |= AR_PHY_ERR_RADAR;
2860 if (bits & ATH9K_RX_FILTER_PHYERR)
2861 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2862 REG_WRITE(ah, AR_PHY_ERR, phybits);
2863
2864 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002865 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302866 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002867 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302868
2869 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302870}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002871EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302872
Sujithcbe61d82009-02-09 13:27:12 +05302873bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302874{
Rajkumar Manoharan99922a42012-06-04 16:28:31 +05302875 if (ath9k_hw_mci_is_enabled(ah))
2876 ar9003_mci_bt_gain_ctrl(ah);
2877
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302878 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2879 return false;
2880
2881 ath9k_hw_init_pll(ah, NULL);
Felix Fietkau8efa7a82012-03-14 16:40:23 +01002882 ah->htc_reset_init = true;
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302883 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302884}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002885EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302886
Sujithcbe61d82009-02-09 13:27:12 +05302887bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302888{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002889 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302890 return false;
2891
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302892 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2893 return false;
2894
2895 ath9k_hw_init_pll(ah, NULL);
2896 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302897}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002898EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302899
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002900static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05302901{
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002902 enum eeprom_param gain_param;
Felix Fietkau9c204b42011-07-27 15:01:05 +02002903
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002904 if (IS_CHAN_2GHZ(chan))
2905 gain_param = EEP_ANTENNA_GAIN_2G;
2906 else
2907 gain_param = EEP_ANTENNA_GAIN_5G;
Sujithf1dc5602008-10-29 10:16:30 +05302908
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002909 return ah->eep_ops->get_eeprom(ah, gain_param);
2910}
2911
Gabor Juhos64ea57d2012-04-15 20:38:05 +02002912void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan,
2913 bool test)
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002914{
2915 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2916 struct ieee80211_channel *channel;
Zefir Kurtisi71f51372016-04-01 11:37:08 +02002917 int chan_pwr, new_pwr;
Felix Fietkau37438532018-07-30 21:31:28 +03002918 u16 ctl = NO_CTL;
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002919
2920 if (!chan)
2921 return;
2922
Felix Fietkau37438532018-07-30 21:31:28 +03002923 if (!test)
2924 ctl = ath9k_regd_get_ctl(reg, chan);
2925
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002926 channel = chan->chan;
2927 chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
2928 new_pwr = min_t(int, chan_pwr, reg->power_limit);
Sujithf1dc5602008-10-29 10:16:30 +05302929
Felix Fietkau37438532018-07-30 21:31:28 +03002930 ah->eep_ops->set_txpower(ah, chan, ctl,
Zefir Kurtisi71f51372016-04-01 11:37:08 +02002931 get_antenna_gain(ah, chan), new_pwr, test);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002932}
2933
2934void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2935{
2936 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2937 struct ath9k_channel *chan = ah->curchan;
2938 struct ieee80211_channel *channel = chan->chan;
2939
Dan Carpenter48ef5c42011-10-17 10:28:23 +03002940 reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002941 if (test)
2942 channel->max_power = MAX_RATE_POWER / 2;
2943
Gabor Juhos64ea57d2012-04-15 20:38:05 +02002944 ath9k_hw_apply_txpower(ah, chan, test);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002945
2946 if (test)
2947 channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
Sujithf1dc5602008-10-29 10:16:30 +05302948}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002949EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302950
Sujithcbe61d82009-02-09 13:27:12 +05302951void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302952{
Sujith2660b812009-02-09 13:27:26 +05302953 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302954}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002955EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302956
Sujithcbe61d82009-02-09 13:27:12 +05302957void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302958{
2959 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2960 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2961}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002962EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302963
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002964void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302965{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002966 struct ath_common *common = ath9k_hw_common(ah);
2967
2968 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2969 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2970 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302971}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002972EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302973
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002974#define ATH9K_MAX_TSF_READ 10
2975
Sujithcbe61d82009-02-09 13:27:12 +05302976u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302977{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002978 u32 tsf_lower, tsf_upper1, tsf_upper2;
2979 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302980
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002981 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2982 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2983 tsf_lower = REG_READ(ah, AR_TSF_L32);
2984 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2985 if (tsf_upper2 == tsf_upper1)
2986 break;
2987 tsf_upper1 = tsf_upper2;
2988 }
Sujithf1dc5602008-10-29 10:16:30 +05302989
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002990 WARN_ON( i == ATH9K_MAX_TSF_READ );
2991
2992 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302993}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002994EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302995
Sujithcbe61d82009-02-09 13:27:12 +05302996void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002997{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002998 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002999 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003000}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003001EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003002
Sujithcbe61d82009-02-09 13:27:12 +05303003void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303004{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003005 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3006 AH_TSF_WRITE_TIMEOUT))
Joe Perchesd2182b62011-12-15 14:55:53 -08003007 ath_dbg(ath9k_hw_common(ah), RESET,
Joe Perches226afe62010-12-02 19:12:37 -08003008 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003009
Sujithf1dc5602008-10-29 10:16:30 +05303010 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003011}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003012EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003013
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05303014void ath9k_hw_set_tsfadjust(struct ath_hw *ah, bool set)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003015{
Sujith Manoharan60ca9f82012-07-17 17:15:37 +05303016 if (set)
Sujith2660b812009-02-09 13:27:26 +05303017 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003018 else
Sujith2660b812009-02-09 13:27:26 +05303019 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003020}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003021EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003022
Felix Fietkaue4744ec2013-10-11 23:31:01 +02003023void ath9k_hw_set11nmac2040(struct ath_hw *ah, struct ath9k_channel *chan)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003024{
Sujithf1dc5602008-10-29 10:16:30 +05303025 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003026
Felix Fietkaue4744ec2013-10-11 23:31:01 +02003027 if (IS_CHAN_HT40(chan) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303028 macmode = AR_2040_JOINED_RX_CLEAR;
3029 else
3030 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003031
Sujithf1dc5602008-10-29 10:16:30 +05303032 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003033}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303034
3035/* HW Generic timers configuration */
3036
3037static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3038{
3039 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3040 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3041 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3042 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3043 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3044 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3045 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3046 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3047 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3048 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3049 AR_NDP2_TIMER_MODE, 0x0002},
3050 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3051 AR_NDP2_TIMER_MODE, 0x0004},
3052 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3053 AR_NDP2_TIMER_MODE, 0x0008},
3054 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3055 AR_NDP2_TIMER_MODE, 0x0010},
3056 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3057 AR_NDP2_TIMER_MODE, 0x0020},
3058 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3059 AR_NDP2_TIMER_MODE, 0x0040},
3060 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3061 AR_NDP2_TIMER_MODE, 0x0080}
3062};
3063
3064/* HW generic timer primitives */
3065
Felix Fietkaudd347f22011-03-22 21:54:17 +01003066u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303067{
3068 return REG_READ(ah, AR_TSF_L32);
3069}
Felix Fietkaudd347f22011-03-22 21:54:17 +01003070EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303071
Sujith Manoharanf4c34af2014-11-16 06:11:03 +05303072void ath9k_hw_gen_timer_start_tsf2(struct ath_hw *ah)
3073{
3074 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3075
3076 if (timer_table->tsf2_enabled) {
3077 REG_SET_BIT(ah, AR_DIRECT_CONNECT, AR_DC_AP_STA_EN);
3078 REG_SET_BIT(ah, AR_RESET_TSF, AR_RESET_TSF2_ONCE);
3079 }
3080}
3081
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303082struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3083 void (*trigger)(void *),
3084 void (*overflow)(void *),
3085 void *arg,
3086 u8 timer_index)
3087{
3088 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3089 struct ath_gen_timer *timer;
3090
Felix Fietkauc67ce332013-12-14 18:03:38 +01003091 if ((timer_index < AR_FIRST_NDP_TIMER) ||
Sujith Manoharanf4c34af2014-11-16 06:11:03 +05303092 (timer_index >= ATH_MAX_GEN_TIMER))
3093 return NULL;
3094
3095 if ((timer_index > AR_FIRST_NDP_TIMER) &&
3096 !AR_SREV_9300_20_OR_LATER(ah))
Felix Fietkauc67ce332013-12-14 18:03:38 +01003097 return NULL;
3098
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303099 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
Joe Perches14f8dc42013-02-07 11:46:27 +00003100 if (timer == NULL)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303101 return NULL;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303102
3103 /* allocate a hardware generic timer slot */
3104 timer_table->timers[timer_index] = timer;
3105 timer->index = timer_index;
3106 timer->trigger = trigger;
3107 timer->overflow = overflow;
3108 timer->arg = arg;
3109
Sujith Manoharanf4c34af2014-11-16 06:11:03 +05303110 if ((timer_index > AR_FIRST_NDP_TIMER) && !timer_table->tsf2_enabled) {
3111 timer_table->tsf2_enabled = true;
3112 ath9k_hw_gen_timer_start_tsf2(ah);
3113 }
3114
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303115 return timer;
3116}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003117EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303118
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003119void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3120 struct ath_gen_timer *timer,
Felix Fietkauc67ce332013-12-14 18:03:38 +01003121 u32 timer_next,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003122 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303123{
3124 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Felix Fietkauc67ce332013-12-14 18:03:38 +01003125 u32 mask = 0;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303126
Felix Fietkauc67ce332013-12-14 18:03:38 +01003127 timer_table->timer_mask |= BIT(timer->index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303128
3129 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303130 * Program generic timer registers
3131 */
3132 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3133 timer_next);
3134 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3135 timer_period);
3136 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3137 gen_tmr_configuration[timer->index].mode_mask);
3138
Sujith Manoharana4a29542012-09-10 09:20:03 +05303139 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05303140 /*
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05303141 * Starting from AR9462, each generic timer can select which tsf
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05303142 * to use. But we still follow the old rule, 0 - 7 use tsf and
3143 * 8 - 15 use tsf2.
3144 */
3145 if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
3146 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
3147 (1 << timer->index));
3148 else
3149 REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
3150 (1 << timer->index));
3151 }
3152
Felix Fietkauc67ce332013-12-14 18:03:38 +01003153 if (timer->trigger)
3154 mask |= SM(AR_GENTMR_BIT(timer->index),
3155 AR_IMR_S5_GENTIMER_TRIG);
3156 if (timer->overflow)
3157 mask |= SM(AR_GENTMR_BIT(timer->index),
3158 AR_IMR_S5_GENTIMER_THRESH);
3159
3160 REG_SET_BIT(ah, AR_IMR_S5, mask);
3161
3162 if ((ah->imask & ATH9K_INT_GENTIMER) == 0) {
3163 ah->imask |= ATH9K_INT_GENTIMER;
3164 ath9k_hw_set_interrupts(ah);
3165 }
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303166}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003167EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303168
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003169void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303170{
3171 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3172
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303173 /* Clear generic timer enable bits. */
3174 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3175 gen_tmr_configuration[timer->index].mode_mask);
3176
Sujith Manoharanb7f59762012-09-11 10:46:24 +05303177 if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
3178 /*
3179 * Need to switch back to TSF if it was using TSF2.
3180 */
3181 if ((timer->index >= AR_GEN_TIMER_BANK_1_LEN)) {
3182 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
3183 (1 << timer->index));
3184 }
3185 }
3186
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303187 /* Disable both trigger and thresh interrupt masks */
3188 REG_CLR_BIT(ah, AR_IMR_S5,
3189 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3190 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3191
Felix Fietkauc67ce332013-12-14 18:03:38 +01003192 timer_table->timer_mask &= ~BIT(timer->index);
3193
3194 if (timer_table->timer_mask == 0) {
3195 ah->imask &= ~ATH9K_INT_GENTIMER;
3196 ath9k_hw_set_interrupts(ah);
3197 }
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303198}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003199EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303200
3201void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3202{
3203 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3204
3205 /* free the hardware generic timer slot */
3206 timer_table->timers[timer->index] = NULL;
3207 kfree(timer);
3208}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003209EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303210
3211/*
3212 * Generic Timer Interrupts handling
3213 */
3214void ath_gen_timer_isr(struct ath_hw *ah)
3215{
3216 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3217 struct ath_gen_timer *timer;
Felix Fietkauc67ce332013-12-14 18:03:38 +01003218 unsigned long trigger_mask, thresh_mask;
3219 unsigned int index;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303220
3221 /* get hardware generic timer interrupt status */
3222 trigger_mask = ah->intr_gen_timer_trigger;
3223 thresh_mask = ah->intr_gen_timer_thresh;
Felix Fietkauc67ce332013-12-14 18:03:38 +01003224 trigger_mask &= timer_table->timer_mask;
3225 thresh_mask &= timer_table->timer_mask;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303226
Felix Fietkauc67ce332013-12-14 18:03:38 +01003227 for_each_set_bit(index, &thresh_mask, ARRAY_SIZE(timer_table->timers)) {
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303228 timer = timer_table->timers[index];
Felix Fietkauc67ce332013-12-14 18:03:38 +01003229 if (!timer)
3230 continue;
3231 if (!timer->overflow)
3232 continue;
Felix Fietkaua6a172b2013-12-20 16:18:45 +01003233
3234 trigger_mask &= ~BIT(index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303235 timer->overflow(timer->arg);
3236 }
3237
Felix Fietkauc67ce332013-12-14 18:03:38 +01003238 for_each_set_bit(index, &trigger_mask, ARRAY_SIZE(timer_table->timers)) {
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303239 timer = timer_table->timers[index];
Felix Fietkauc67ce332013-12-14 18:03:38 +01003240 if (!timer)
3241 continue;
3242 if (!timer->trigger)
3243 continue;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303244 timer->trigger(timer->arg);
3245 }
3246}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003247EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003248
Sujith05020d22010-03-17 14:25:23 +05303249/********/
3250/* HTC */
3251/********/
3252
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003253static struct {
3254 u32 version;
3255 const char * name;
3256} ath_mac_bb_names[] = {
3257 /* Devices with external radios */
3258 { AR_SREV_VERSION_5416_PCI, "5416" },
3259 { AR_SREV_VERSION_5416_PCIE, "5418" },
3260 { AR_SREV_VERSION_9100, "9100" },
3261 { AR_SREV_VERSION_9160, "9160" },
3262 /* Single-chip solutions */
3263 { AR_SREV_VERSION_9280, "9280" },
3264 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003265 { AR_SREV_VERSION_9287, "9287" },
3266 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04003267 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02003268 { AR_SREV_VERSION_9330, "9330" },
Florian Fainelli397e5d52011-08-25 21:33:48 +02003269 { AR_SREV_VERSION_9340, "9340" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05303270 { AR_SREV_VERSION_9485, "9485" },
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05303271 { AR_SREV_VERSION_9462, "9462" },
Gabor Juhos485124c2012-07-03 19:13:19 +02003272 { AR_SREV_VERSION_9550, "9550" },
Sujith Manoharan77fac462012-09-11 20:09:18 +05303273 { AR_SREV_VERSION_9565, "9565" },
Sujith Manoharanc08148b2014-03-17 15:02:46 +05303274 { AR_SREV_VERSION_9531, "9531" },
Miaoqing Pan1165dd92015-08-12 14:20:46 +08003275 { AR_SREV_VERSION_9561, "9561" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003276};
3277
3278/* For devices with external radios */
3279static struct {
3280 u16 version;
3281 const char * name;
3282} ath_rf_names[] = {
3283 { 0, "5133" },
3284 { AR_RAD5133_SREV_MAJOR, "5133" },
3285 { AR_RAD5122_SREV_MAJOR, "5122" },
3286 { AR_RAD2133_SREV_MAJOR, "2133" },
3287 { AR_RAD2122_SREV_MAJOR, "2122" }
3288};
3289
3290/*
3291 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3292 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003293static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003294{
3295 int i;
3296
3297 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3298 if (ath_mac_bb_names[i].version == mac_bb_version) {
3299 return ath_mac_bb_names[i].name;
3300 }
3301 }
3302
3303 return "????";
3304}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003305
3306/*
3307 * Return the RF name. "????" is returned if the RF is unknown.
3308 * Used for devices with external radios.
3309 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003310static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003311{
3312 int i;
3313
3314 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3315 if (ath_rf_names[i].version == rf_version) {
3316 return ath_rf_names[i].name;
3317 }
3318 }
3319
3320 return "????";
3321}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003322
3323void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3324{
3325 int used;
3326
3327 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02003328 if (AR_SREV_9280_20_OR_LATER(ah)) {
Zefir Kurtisi5e88ba62013-09-05 14:11:57 +02003329 used = scnprintf(hw_name, len,
3330 "Atheros AR%s Rev:%x",
3331 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3332 ah->hw_version.macRev);
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003333 }
3334 else {
Zefir Kurtisi5e88ba62013-09-05 14:11:57 +02003335 used = scnprintf(hw_name, len,
3336 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3337 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3338 ah->hw_version.macRev,
3339 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev
3340 & AR_RADIO_SREV_MAJOR)),
3341 ah->hw_version.phyRev);
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003342 }
3343
3344 hw_name[used] = '\0';
3345}
3346EXPORT_SYMBOL(ath9k_hw_name);