]> Pileus Git - ~andy/linux/blob - drivers/net/wireless/ath/ath9k/hw.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[~andy/linux] / drivers / net / wireless / ath / ath9k / hw.c
1 /*
2  * Copyright (c) 2008-2010 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include <linux/io.h>
18 #include <linux/slab.h>
19 #include <asm/unaligned.h>
20
21 #include "hw.h"
22 #include "hw-ops.h"
23 #include "rc.h"
24 #include "ar9003_mac.h"
25
26 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
27
28 MODULE_AUTHOR("Atheros Communications");
29 MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30 MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31 MODULE_LICENSE("Dual BSD/GPL");
32
33 static int __init ath9k_init(void)
34 {
35         return 0;
36 }
37 module_init(ath9k_init);
38
39 static void __exit ath9k_exit(void)
40 {
41         return;
42 }
43 module_exit(ath9k_exit);
44
45 /* Private hardware callbacks */
46
47 static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
48 {
49         ath9k_hw_private_ops(ah)->init_cal_settings(ah);
50 }
51
52 static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
53 {
54         ath9k_hw_private_ops(ah)->init_mode_regs(ah);
55 }
56
57 static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
58                                         struct ath9k_channel *chan)
59 {
60         return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
61 }
62
63 static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
64 {
65         if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
66                 return;
67
68         ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
69 }
70
71 static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
72 {
73         /* You will not have this callback if using the old ANI */
74         if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
75                 return;
76
77         ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
78 }
79
80 /********************/
81 /* Helper Functions */
82 /********************/
83
84 static void ath9k_hw_set_clockrate(struct ath_hw *ah)
85 {
86         struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
87         struct ath_common *common = ath9k_hw_common(ah);
88         unsigned int clockrate;
89
90         if (!ah->curchan) /* should really check for CCK instead */
91                 clockrate = ATH9K_CLOCK_RATE_CCK;
92         else if (conf->channel->band == IEEE80211_BAND_2GHZ)
93                 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
94         else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
95                 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
96         else
97                 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
98
99         if (conf_is_ht40(conf))
100                 clockrate *= 2;
101
102         common->clockrate = clockrate;
103 }
104
105 static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
106 {
107         struct ath_common *common = ath9k_hw_common(ah);
108
109         return usecs * common->clockrate;
110 }
111
112 bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
113 {
114         int i;
115
116         BUG_ON(timeout < AH_TIME_QUANTUM);
117
118         for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
119                 if ((REG_READ(ah, reg) & mask) == val)
120                         return true;
121
122                 udelay(AH_TIME_QUANTUM);
123         }
124
125         ath_dbg(ath9k_hw_common(ah), ATH_DBG_ANY,
126                 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
127                 timeout, reg, REG_READ(ah, reg), mask, val);
128
129         return false;
130 }
131 EXPORT_SYMBOL(ath9k_hw_wait);
132
133 u32 ath9k_hw_reverse_bits(u32 val, u32 n)
134 {
135         u32 retval;
136         int i;
137
138         for (i = 0, retval = 0; i < n; i++) {
139                 retval = (retval << 1) | (val & 1);
140                 val >>= 1;
141         }
142         return retval;
143 }
144
145 bool ath9k_get_channel_edges(struct ath_hw *ah,
146                              u16 flags, u16 *low,
147                              u16 *high)
148 {
149         struct ath9k_hw_capabilities *pCap = &ah->caps;
150
151         if (flags & CHANNEL_5GHZ) {
152                 *low = pCap->low_5ghz_chan;
153                 *high = pCap->high_5ghz_chan;
154                 return true;
155         }
156         if ((flags & CHANNEL_2GHZ)) {
157                 *low = pCap->low_2ghz_chan;
158                 *high = pCap->high_2ghz_chan;
159                 return true;
160         }
161         return false;
162 }
163
164 u16 ath9k_hw_computetxtime(struct ath_hw *ah,
165                            u8 phy, int kbps,
166                            u32 frameLen, u16 rateix,
167                            bool shortPreamble)
168 {
169         u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
170
171         if (kbps == 0)
172                 return 0;
173
174         switch (phy) {
175         case WLAN_RC_PHY_CCK:
176                 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
177                 if (shortPreamble)
178                         phyTime >>= 1;
179                 numBits = frameLen << 3;
180                 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
181                 break;
182         case WLAN_RC_PHY_OFDM:
183                 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
184                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
185                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
186                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
187                         txTime = OFDM_SIFS_TIME_QUARTER
188                                 + OFDM_PREAMBLE_TIME_QUARTER
189                                 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
190                 } else if (ah->curchan &&
191                            IS_CHAN_HALF_RATE(ah->curchan)) {
192                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
193                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
194                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
195                         txTime = OFDM_SIFS_TIME_HALF +
196                                 OFDM_PREAMBLE_TIME_HALF
197                                 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
198                 } else {
199                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
200                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
201                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202                         txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
203                                 + (numSymbols * OFDM_SYMBOL_TIME);
204                 }
205                 break;
206         default:
207                 ath_err(ath9k_hw_common(ah),
208                         "Unknown phy %u (rate ix %u)\n", phy, rateix);
209                 txTime = 0;
210                 break;
211         }
212
213         return txTime;
214 }
215 EXPORT_SYMBOL(ath9k_hw_computetxtime);
216
217 void ath9k_hw_get_channel_centers(struct ath_hw *ah,
218                                   struct ath9k_channel *chan,
219                                   struct chan_centers *centers)
220 {
221         int8_t extoff;
222
223         if (!IS_CHAN_HT40(chan)) {
224                 centers->ctl_center = centers->ext_center =
225                         centers->synth_center = chan->channel;
226                 return;
227         }
228
229         if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
230             (chan->chanmode == CHANNEL_G_HT40PLUS)) {
231                 centers->synth_center =
232                         chan->channel + HT40_CHANNEL_CENTER_SHIFT;
233                 extoff = 1;
234         } else {
235                 centers->synth_center =
236                         chan->channel - HT40_CHANNEL_CENTER_SHIFT;
237                 extoff = -1;
238         }
239
240         centers->ctl_center =
241                 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
242         /* 25 MHz spacing is supported by hw but not on upper layers */
243         centers->ext_center =
244                 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
245 }
246
247 /******************/
248 /* Chip Revisions */
249 /******************/
250
251 static void ath9k_hw_read_revisions(struct ath_hw *ah)
252 {
253         u32 val;
254
255         val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
256
257         if (val == 0xFF) {
258                 val = REG_READ(ah, AR_SREV);
259                 ah->hw_version.macVersion =
260                         (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
261                 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
262                 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
263         } else {
264                 if (!AR_SREV_9100(ah))
265                         ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
266
267                 ah->hw_version.macRev = val & AR_SREV_REVISION;
268
269                 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
270                         ah->is_pciexpress = true;
271         }
272 }
273
274 /************************************/
275 /* HW Attach, Detach, Init Routines */
276 /************************************/
277
278 static void ath9k_hw_disablepcie(struct ath_hw *ah)
279 {
280         if (!AR_SREV_5416(ah))
281                 return;
282
283         REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
284         REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
285         REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
286         REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
287         REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
288         REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
289         REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
290         REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
291         REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
292
293         REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
294 }
295
296 /* This should work for all families including legacy */
297 static bool ath9k_hw_chip_test(struct ath_hw *ah)
298 {
299         struct ath_common *common = ath9k_hw_common(ah);
300         u32 regAddr[2] = { AR_STA_ID0 };
301         u32 regHold[2];
302         static const u32 patternData[4] = {
303                 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
304         };
305         int i, j, loop_max;
306
307         if (!AR_SREV_9300_20_OR_LATER(ah)) {
308                 loop_max = 2;
309                 regAddr[1] = AR_PHY_BASE + (8 << 2);
310         } else
311                 loop_max = 1;
312
313         for (i = 0; i < loop_max; i++) {
314                 u32 addr = regAddr[i];
315                 u32 wrData, rdData;
316
317                 regHold[i] = REG_READ(ah, addr);
318                 for (j = 0; j < 0x100; j++) {
319                         wrData = (j << 16) | j;
320                         REG_WRITE(ah, addr, wrData);
321                         rdData = REG_READ(ah, addr);
322                         if (rdData != wrData) {
323                                 ath_err(common,
324                                         "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
325                                         addr, wrData, rdData);
326                                 return false;
327                         }
328                 }
329                 for (j = 0; j < 4; j++) {
330                         wrData = patternData[j];
331                         REG_WRITE(ah, addr, wrData);
332                         rdData = REG_READ(ah, addr);
333                         if (wrData != rdData) {
334                                 ath_err(common,
335                                         "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
336                                         addr, wrData, rdData);
337                                 return false;
338                         }
339                 }
340                 REG_WRITE(ah, regAddr[i], regHold[i]);
341         }
342         udelay(100);
343
344         return true;
345 }
346
347 static void ath9k_hw_init_config(struct ath_hw *ah)
348 {
349         int i;
350
351         ah->config.dma_beacon_response_time = 2;
352         ah->config.sw_beacon_response_time = 10;
353         ah->config.additional_swba_backoff = 0;
354         ah->config.ack_6mb = 0x0;
355         ah->config.cwm_ignore_extcca = 0;
356         ah->config.pcie_powersave_enable = 0;
357         ah->config.pcie_clock_req = 0;
358         ah->config.pcie_waen = 0;
359         ah->config.analog_shiftreg = 1;
360         ah->config.enable_ani = true;
361
362         for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
363                 ah->config.spurchans[i][0] = AR_NO_SPUR;
364                 ah->config.spurchans[i][1] = AR_NO_SPUR;
365         }
366
367         if (ah->hw_version.devid != AR2427_DEVID_PCIE)
368                 ah->config.ht_enable = 1;
369         else
370                 ah->config.ht_enable = 0;
371
372         /* PAPRD needs some more work to be enabled */
373         ah->config.paprd_disable = 1;
374
375         ah->config.rx_intr_mitigation = true;
376         ah->config.pcieSerDesWrite = true;
377
378         /*
379          * We need this for PCI devices only (Cardbus, PCI, miniPCI)
380          * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
381          * This means we use it for all AR5416 devices, and the few
382          * minor PCI AR9280 devices out there.
383          *
384          * Serialization is required because these devices do not handle
385          * well the case of two concurrent reads/writes due to the latency
386          * involved. During one read/write another read/write can be issued
387          * on another CPU while the previous read/write may still be working
388          * on our hardware, if we hit this case the hardware poops in a loop.
389          * We prevent this by serializing reads and writes.
390          *
391          * This issue is not present on PCI-Express devices or pre-AR5416
392          * devices (legacy, 802.11abg).
393          */
394         if (num_possible_cpus() > 1)
395                 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
396 }
397
398 static void ath9k_hw_init_defaults(struct ath_hw *ah)
399 {
400         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
401
402         regulatory->country_code = CTRY_DEFAULT;
403         regulatory->power_limit = MAX_RATE_POWER;
404         regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
405
406         ah->hw_version.magic = AR5416_MAGIC;
407         ah->hw_version.subvendorid = 0;
408
409         ah->atim_window = 0;
410         ah->sta_id1_defaults =
411                 AR_STA_ID1_CRPT_MIC_ENABLE |
412                 AR_STA_ID1_MCAST_KSRCH;
413         ah->enable_32kHz_clock = DONT_USE_32KHZ;
414         ah->slottime = 20;
415         ah->globaltxtimeout = (u32) -1;
416         ah->power_mode = ATH9K_PM_UNDEFINED;
417 }
418
419 static int ath9k_hw_init_macaddr(struct ath_hw *ah)
420 {
421         struct ath_common *common = ath9k_hw_common(ah);
422         u32 sum;
423         int i;
424         u16 eeval;
425         static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
426
427         sum = 0;
428         for (i = 0; i < 3; i++) {
429                 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
430                 sum += eeval;
431                 common->macaddr[2 * i] = eeval >> 8;
432                 common->macaddr[2 * i + 1] = eeval & 0xff;
433         }
434         if (sum == 0 || sum == 0xffff * 3)
435                 return -EADDRNOTAVAIL;
436
437         return 0;
438 }
439
440 static int ath9k_hw_post_init(struct ath_hw *ah)
441 {
442         struct ath_common *common = ath9k_hw_common(ah);
443         int ecode;
444
445         if (common->bus_ops->ath_bus_type != ATH_USB) {
446                 if (!ath9k_hw_chip_test(ah))
447                         return -ENODEV;
448         }
449
450         if (!AR_SREV_9300_20_OR_LATER(ah)) {
451                 ecode = ar9002_hw_rf_claim(ah);
452                 if (ecode != 0)
453                         return ecode;
454         }
455
456         ecode = ath9k_hw_eeprom_init(ah);
457         if (ecode != 0)
458                 return ecode;
459
460         ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
461                 "Eeprom VER: %d, REV: %d\n",
462                 ah->eep_ops->get_eeprom_ver(ah),
463                 ah->eep_ops->get_eeprom_rev(ah));
464
465         ecode = ath9k_hw_rf_alloc_ext_banks(ah);
466         if (ecode) {
467                 ath_err(ath9k_hw_common(ah),
468                         "Failed allocating banks for external radio\n");
469                 ath9k_hw_rf_free_ext_banks(ah);
470                 return ecode;
471         }
472
473         if (!AR_SREV_9100(ah)) {
474                 ath9k_hw_ani_setup(ah);
475                 ath9k_hw_ani_init(ah);
476         }
477
478         return 0;
479 }
480
481 static void ath9k_hw_attach_ops(struct ath_hw *ah)
482 {
483         if (AR_SREV_9300_20_OR_LATER(ah))
484                 ar9003_hw_attach_ops(ah);
485         else
486                 ar9002_hw_attach_ops(ah);
487 }
488
489 /* Called for all hardware families */
490 static int __ath9k_hw_init(struct ath_hw *ah)
491 {
492         struct ath_common *common = ath9k_hw_common(ah);
493         int r = 0;
494
495         if (ah->hw_version.devid == AR5416_AR9100_DEVID)
496                 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
497
498         ath9k_hw_read_revisions(ah);
499
500         /*
501          * Read back AR_WA into a permanent copy and set bits 14 and 17.
502          * We need to do this to avoid RMW of this register. We cannot
503          * read the reg when chip is asleep.
504          */
505         ah->WARegVal = REG_READ(ah, AR_WA);
506         ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
507                          AR_WA_ASPM_TIMER_BASED_DISABLE);
508
509         if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
510                 ath_err(common, "Couldn't reset chip\n");
511                 return -EIO;
512         }
513
514         ath9k_hw_init_defaults(ah);
515         ath9k_hw_init_config(ah);
516
517         ath9k_hw_attach_ops(ah);
518
519         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
520                 ath_err(common, "Couldn't wakeup chip\n");
521                 return -EIO;
522         }
523
524         if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
525                 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
526                     ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
527                      !ah->is_pciexpress)) {
528                         ah->config.serialize_regmode =
529                                 SER_REG_MODE_ON;
530                 } else {
531                         ah->config.serialize_regmode =
532                                 SER_REG_MODE_OFF;
533                 }
534         }
535
536         ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
537                 ah->config.serialize_regmode);
538
539         if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
540                 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
541         else
542                 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
543
544         switch (ah->hw_version.macVersion) {
545         case AR_SREV_VERSION_5416_PCI:
546         case AR_SREV_VERSION_5416_PCIE:
547         case AR_SREV_VERSION_9160:
548         case AR_SREV_VERSION_9100:
549         case AR_SREV_VERSION_9280:
550         case AR_SREV_VERSION_9285:
551         case AR_SREV_VERSION_9287:
552         case AR_SREV_VERSION_9271:
553         case AR_SREV_VERSION_9300:
554         case AR_SREV_VERSION_9485:
555                 break;
556         default:
557                 ath_err(common,
558                         "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
559                         ah->hw_version.macVersion, ah->hw_version.macRev);
560                 return -EOPNOTSUPP;
561         }
562
563         if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
564                 ah->is_pciexpress = false;
565
566         ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
567         ath9k_hw_init_cal_settings(ah);
568
569         ah->ani_function = ATH9K_ANI_ALL;
570         if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
571                 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
572         if (!AR_SREV_9300_20_OR_LATER(ah))
573                 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
574
575         ath9k_hw_init_mode_regs(ah);
576
577
578         if (ah->is_pciexpress)
579                 ath9k_hw_configpcipowersave(ah, 0, 0);
580         else
581                 ath9k_hw_disablepcie(ah);
582
583         if (!AR_SREV_9300_20_OR_LATER(ah))
584                 ar9002_hw_cck_chan14_spread(ah);
585
586         r = ath9k_hw_post_init(ah);
587         if (r)
588                 return r;
589
590         ath9k_hw_init_mode_gain_regs(ah);
591         r = ath9k_hw_fill_cap_info(ah);
592         if (r)
593                 return r;
594
595         r = ath9k_hw_init_macaddr(ah);
596         if (r) {
597                 ath_err(common, "Failed to initialize MAC address\n");
598                 return r;
599         }
600
601         if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
602                 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
603         else
604                 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
605
606         ah->bb_watchdog_timeout_ms = 25;
607
608         common->state = ATH_HW_INITIALIZED;
609
610         return 0;
611 }
612
613 int ath9k_hw_init(struct ath_hw *ah)
614 {
615         int ret;
616         struct ath_common *common = ath9k_hw_common(ah);
617
618         /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
619         switch (ah->hw_version.devid) {
620         case AR5416_DEVID_PCI:
621         case AR5416_DEVID_PCIE:
622         case AR5416_AR9100_DEVID:
623         case AR9160_DEVID_PCI:
624         case AR9280_DEVID_PCI:
625         case AR9280_DEVID_PCIE:
626         case AR9285_DEVID_PCIE:
627         case AR9287_DEVID_PCI:
628         case AR9287_DEVID_PCIE:
629         case AR2427_DEVID_PCIE:
630         case AR9300_DEVID_PCIE:
631         case AR9300_DEVID_AR9485_PCIE:
632                 break;
633         default:
634                 if (common->bus_ops->ath_bus_type == ATH_USB)
635                         break;
636                 ath_err(common, "Hardware device ID 0x%04x not supported\n",
637                         ah->hw_version.devid);
638                 return -EOPNOTSUPP;
639         }
640
641         ret = __ath9k_hw_init(ah);
642         if (ret) {
643                 ath_err(common,
644                         "Unable to initialize hardware; initialization status: %d\n",
645                         ret);
646                 return ret;
647         }
648
649         return 0;
650 }
651 EXPORT_SYMBOL(ath9k_hw_init);
652
653 static void ath9k_hw_init_qos(struct ath_hw *ah)
654 {
655         ENABLE_REGWRITE_BUFFER(ah);
656
657         REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
658         REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
659
660         REG_WRITE(ah, AR_QOS_NO_ACK,
661                   SM(2, AR_QOS_NO_ACK_TWO_BIT) |
662                   SM(5, AR_QOS_NO_ACK_BIT_OFF) |
663                   SM(0, AR_QOS_NO_ACK_BYTE_OFF));
664
665         REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
666         REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
667         REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
668         REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
669         REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
670
671         REGWRITE_BUFFER_FLUSH(ah);
672 }
673
674 unsigned long ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
675 {
676                 REG_WRITE(ah, PLL3, (REG_READ(ah, PLL3) & ~(PLL3_DO_MEAS_MASK)));
677                 udelay(100);
678                 REG_WRITE(ah, PLL3, (REG_READ(ah, PLL3) | PLL3_DO_MEAS_MASK));
679
680                 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
681                         udelay(100);
682
683                 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
684 }
685 EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
686
687 #define DPLL2_KD_VAL            0x3D
688 #define DPLL2_KI_VAL            0x06
689 #define DPLL3_PHASE_SHIFT_VAL   0x1
690
691 static void ath9k_hw_init_pll(struct ath_hw *ah,
692                               struct ath9k_channel *chan)
693 {
694         u32 pll;
695
696         if (AR_SREV_9485(ah)) {
697                 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, 0x886666);
698                 REG_WRITE(ah, AR_CH0_DDR_DPLL2, 0x19e82f01);
699
700                 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
701                               AR_CH0_DPLL3_PHASE_SHIFT, DPLL3_PHASE_SHIFT_VAL);
702
703                 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
704                 udelay(100);
705
706                 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, 0x886666);
707
708                 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
709                               AR_CH0_DPLL2_KD, DPLL2_KD_VAL);
710                 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
711                               AR_CH0_DPLL2_KI, DPLL2_KI_VAL);
712
713                 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
714                               AR_CH0_DPLL3_PHASE_SHIFT, DPLL3_PHASE_SHIFT_VAL);
715                 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x142c);
716                 udelay(110);
717         }
718
719         pll = ath9k_hw_compute_pll_control(ah, chan);
720
721         REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
722
723         /* Switch the core clock for ar9271 to 117Mhz */
724         if (AR_SREV_9271(ah)) {
725                 udelay(500);
726                 REG_WRITE(ah, 0x50040, 0x304);
727         }
728
729         udelay(RTC_PLL_SETTLE_DELAY);
730
731         REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
732 }
733
734 static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
735                                           enum nl80211_iftype opmode)
736 {
737         u32 imr_reg = AR_IMR_TXERR |
738                 AR_IMR_TXURN |
739                 AR_IMR_RXERR |
740                 AR_IMR_RXORN |
741                 AR_IMR_BCNMISC;
742
743         if (AR_SREV_9300_20_OR_LATER(ah)) {
744                 imr_reg |= AR_IMR_RXOK_HP;
745                 if (ah->config.rx_intr_mitigation)
746                         imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
747                 else
748                         imr_reg |= AR_IMR_RXOK_LP;
749
750         } else {
751                 if (ah->config.rx_intr_mitigation)
752                         imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
753                 else
754                         imr_reg |= AR_IMR_RXOK;
755         }
756
757         if (ah->config.tx_intr_mitigation)
758                 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
759         else
760                 imr_reg |= AR_IMR_TXOK;
761
762         if (opmode == NL80211_IFTYPE_AP)
763                 imr_reg |= AR_IMR_MIB;
764
765         ENABLE_REGWRITE_BUFFER(ah);
766
767         REG_WRITE(ah, AR_IMR, imr_reg);
768         ah->imrs2_reg |= AR_IMR_S2_GTT;
769         REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
770
771         if (!AR_SREV_9100(ah)) {
772                 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
773                 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
774                 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
775         }
776
777         REGWRITE_BUFFER_FLUSH(ah);
778
779         if (AR_SREV_9300_20_OR_LATER(ah)) {
780                 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
781                 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
782                 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
783                 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
784         }
785 }
786
787 static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
788 {
789         u32 val = ath9k_hw_mac_to_clks(ah, us);
790         val = min(val, (u32) 0xFFFF);
791         REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
792 }
793
794 static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
795 {
796         u32 val = ath9k_hw_mac_to_clks(ah, us);
797         val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
798         REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
799 }
800
801 static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
802 {
803         u32 val = ath9k_hw_mac_to_clks(ah, us);
804         val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
805         REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
806 }
807
808 static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
809 {
810         if (tu > 0xFFFF) {
811                 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
812                         "bad global tx timeout %u\n", tu);
813                 ah->globaltxtimeout = (u32) -1;
814                 return false;
815         } else {
816                 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
817                 ah->globaltxtimeout = tu;
818                 return true;
819         }
820 }
821
822 void ath9k_hw_init_global_settings(struct ath_hw *ah)
823 {
824         struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
825         int acktimeout;
826         int slottime;
827         int sifstime;
828
829         ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
830                 ah->misc_mode);
831
832         if (ah->misc_mode != 0)
833                 REG_WRITE(ah, AR_PCU_MISC,
834                           REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
835
836         if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
837                 sifstime = 16;
838         else
839                 sifstime = 10;
840
841         /* As defined by IEEE 802.11-2007 17.3.8.6 */
842         slottime = ah->slottime + 3 * ah->coverage_class;
843         acktimeout = slottime + sifstime;
844
845         /*
846          * Workaround for early ACK timeouts, add an offset to match the
847          * initval's 64us ack timeout value.
848          * This was initially only meant to work around an issue with delayed
849          * BA frames in some implementations, but it has been found to fix ACK
850          * timeout issues in other cases as well.
851          */
852         if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
853                 acktimeout += 64 - sifstime - ah->slottime;
854
855         ath9k_hw_setslottime(ah, ah->slottime);
856         ath9k_hw_set_ack_timeout(ah, acktimeout);
857         ath9k_hw_set_cts_timeout(ah, acktimeout);
858         if (ah->globaltxtimeout != (u32) -1)
859                 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
860 }
861 EXPORT_SYMBOL(ath9k_hw_init_global_settings);
862
863 void ath9k_hw_deinit(struct ath_hw *ah)
864 {
865         struct ath_common *common = ath9k_hw_common(ah);
866
867         if (common->state < ATH_HW_INITIALIZED)
868                 goto free_hw;
869
870         ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
871
872 free_hw:
873         ath9k_hw_rf_free_ext_banks(ah);
874 }
875 EXPORT_SYMBOL(ath9k_hw_deinit);
876
877 /*******/
878 /* INI */
879 /*******/
880
881 u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
882 {
883         u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
884
885         if (IS_CHAN_B(chan))
886                 ctl |= CTL_11B;
887         else if (IS_CHAN_G(chan))
888                 ctl |= CTL_11G;
889         else
890                 ctl |= CTL_11A;
891
892         return ctl;
893 }
894
895 /****************************************/
896 /* Reset and Channel Switching Routines */
897 /****************************************/
898
899 static inline void ath9k_hw_set_dma(struct ath_hw *ah)
900 {
901         struct ath_common *common = ath9k_hw_common(ah);
902         u32 regval;
903
904         ENABLE_REGWRITE_BUFFER(ah);
905
906         /*
907          * set AHB_MODE not to do cacheline prefetches
908         */
909         if (!AR_SREV_9300_20_OR_LATER(ah)) {
910                 regval = REG_READ(ah, AR_AHB_MODE);
911                 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
912         }
913
914         /*
915          * let mac dma reads be in 128 byte chunks
916          */
917         regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
918         REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
919
920         REGWRITE_BUFFER_FLUSH(ah);
921
922         /*
923          * Restore TX Trigger Level to its pre-reset value.
924          * The initial value depends on whether aggregation is enabled, and is
925          * adjusted whenever underruns are detected.
926          */
927         if (!AR_SREV_9300_20_OR_LATER(ah))
928                 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
929
930         ENABLE_REGWRITE_BUFFER(ah);
931
932         /*
933          * let mac dma writes be in 128 byte chunks
934          */
935         regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
936         REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
937
938         /*
939          * Setup receive FIFO threshold to hold off TX activities
940          */
941         REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
942
943         if (AR_SREV_9300_20_OR_LATER(ah)) {
944                 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
945                 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
946
947                 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
948                         ah->caps.rx_status_len);
949         }
950
951         /*
952          * reduce the number of usable entries in PCU TXBUF to avoid
953          * wrap around issues.
954          */
955         if (AR_SREV_9285(ah)) {
956                 /* For AR9285 the number of Fifos are reduced to half.
957                  * So set the usable tx buf size also to half to
958                  * avoid data/delimiter underruns
959                  */
960                 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
961                           AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
962         } else if (!AR_SREV_9271(ah)) {
963                 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
964                           AR_PCU_TXBUF_CTRL_USABLE_SIZE);
965         }
966
967         REGWRITE_BUFFER_FLUSH(ah);
968
969         if (AR_SREV_9300_20_OR_LATER(ah))
970                 ath9k_hw_reset_txstatus_ring(ah);
971 }
972
973 static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
974 {
975         u32 val;
976
977         val = REG_READ(ah, AR_STA_ID1);
978         val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
979         switch (opmode) {
980         case NL80211_IFTYPE_AP:
981                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
982                           | AR_STA_ID1_KSRCH_MODE);
983                 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
984                 break;
985         case NL80211_IFTYPE_ADHOC:
986         case NL80211_IFTYPE_MESH_POINT:
987                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
988                           | AR_STA_ID1_KSRCH_MODE);
989                 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
990                 break;
991         case NL80211_IFTYPE_STATION:
992                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
993                 break;
994         default:
995                 if (ah->is_monitoring)
996                         REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
997                 break;
998         }
999 }
1000
1001 void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1002                                    u32 *coef_mantissa, u32 *coef_exponent)
1003 {
1004         u32 coef_exp, coef_man;
1005
1006         for (coef_exp = 31; coef_exp > 0; coef_exp--)
1007                 if ((coef_scaled >> coef_exp) & 0x1)
1008                         break;
1009
1010         coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1011
1012         coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1013
1014         *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1015         *coef_exponent = coef_exp - 16;
1016 }
1017
1018 static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
1019 {
1020         u32 rst_flags;
1021         u32 tmpReg;
1022
1023         if (AR_SREV_9100(ah)) {
1024                 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1025                 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1026                 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1027                 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1028                 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1029         }
1030
1031         ENABLE_REGWRITE_BUFFER(ah);
1032
1033         if (AR_SREV_9300_20_OR_LATER(ah)) {
1034                 REG_WRITE(ah, AR_WA, ah->WARegVal);
1035                 udelay(10);
1036         }
1037
1038         REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1039                   AR_RTC_FORCE_WAKE_ON_INT);
1040
1041         if (AR_SREV_9100(ah)) {
1042                 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1043                         AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1044         } else {
1045                 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1046                 if (tmpReg &
1047                     (AR_INTR_SYNC_LOCAL_TIMEOUT |
1048                      AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1049                         u32 val;
1050                         REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1051
1052                         val = AR_RC_HOSTIF;
1053                         if (!AR_SREV_9300_20_OR_LATER(ah))
1054                                 val |= AR_RC_AHB;
1055                         REG_WRITE(ah, AR_RC, val);
1056
1057                 } else if (!AR_SREV_9300_20_OR_LATER(ah))
1058                         REG_WRITE(ah, AR_RC, AR_RC_AHB);
1059
1060                 rst_flags = AR_RTC_RC_MAC_WARM;
1061                 if (type == ATH9K_RESET_COLD)
1062                         rst_flags |= AR_RTC_RC_MAC_COLD;
1063         }
1064
1065         REG_WRITE(ah, AR_RTC_RC, rst_flags);
1066
1067         REGWRITE_BUFFER_FLUSH(ah);
1068
1069         udelay(50);
1070
1071         REG_WRITE(ah, AR_RTC_RC, 0);
1072         if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
1073                 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1074                         "RTC stuck in MAC reset\n");
1075                 return false;
1076         }
1077
1078         if (!AR_SREV_9100(ah))
1079                 REG_WRITE(ah, AR_RC, 0);
1080
1081         if (AR_SREV_9100(ah))
1082                 udelay(50);
1083
1084         return true;
1085 }
1086
1087 static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
1088 {
1089         ENABLE_REGWRITE_BUFFER(ah);
1090
1091         if (AR_SREV_9300_20_OR_LATER(ah)) {
1092                 REG_WRITE(ah, AR_WA, ah->WARegVal);
1093                 udelay(10);
1094         }
1095
1096         REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1097                   AR_RTC_FORCE_WAKE_ON_INT);
1098
1099         if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
1100                 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1101
1102         REG_WRITE(ah, AR_RTC_RESET, 0);
1103         udelay(2);
1104
1105         REGWRITE_BUFFER_FLUSH(ah);
1106
1107         if (!AR_SREV_9300_20_OR_LATER(ah))
1108                 udelay(2);
1109
1110         if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
1111                 REG_WRITE(ah, AR_RC, 0);
1112
1113         REG_WRITE(ah, AR_RTC_RESET, 1);
1114
1115         if (!ath9k_hw_wait(ah,
1116                            AR_RTC_STATUS,
1117                            AR_RTC_STATUS_M,
1118                            AR_RTC_STATUS_ON,
1119                            AH_WAIT_TIMEOUT)) {
1120                 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1121                         "RTC not waking up\n");
1122                 return false;
1123         }
1124
1125         return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1126 }
1127
1128 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
1129 {
1130         if (AR_SREV_9300_20_OR_LATER(ah)) {
1131                 REG_WRITE(ah, AR_WA, ah->WARegVal);
1132                 udelay(10);
1133         }
1134
1135         REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1136                   AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1137
1138         switch (type) {
1139         case ATH9K_RESET_POWER_ON:
1140                 return ath9k_hw_set_reset_power_on(ah);
1141         case ATH9K_RESET_WARM:
1142         case ATH9K_RESET_COLD:
1143                 return ath9k_hw_set_reset(ah, type);
1144         default:
1145                 return false;
1146         }
1147 }
1148
1149 static bool ath9k_hw_chip_reset(struct ath_hw *ah,
1150                                 struct ath9k_channel *chan)
1151 {
1152         if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
1153                 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1154                         return false;
1155         } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
1156                 return false;
1157
1158         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1159                 return false;
1160
1161         ah->chip_fullsleep = false;
1162         ath9k_hw_init_pll(ah, chan);
1163         ath9k_hw_set_rfmode(ah, chan);
1164
1165         return true;
1166 }
1167
1168 static bool ath9k_hw_channel_change(struct ath_hw *ah,
1169                                     struct ath9k_channel *chan)
1170 {
1171         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
1172         struct ath_common *common = ath9k_hw_common(ah);
1173         struct ieee80211_channel *channel = chan->chan;
1174         u32 qnum;
1175         int r;
1176
1177         for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1178                 if (ath9k_hw_numtxpending(ah, qnum)) {
1179                         ath_dbg(common, ATH_DBG_QUEUE,
1180                                 "Transmit frames pending on queue %d\n", qnum);
1181                         return false;
1182                 }
1183         }
1184
1185         if (!ath9k_hw_rfbus_req(ah)) {
1186                 ath_err(common, "Could not kill baseband RX\n");
1187                 return false;
1188         }
1189
1190         ath9k_hw_set_channel_regs(ah, chan);
1191
1192         r = ath9k_hw_rf_set_freq(ah, chan);
1193         if (r) {
1194                 ath_err(common, "Failed to set channel\n");
1195                 return false;
1196         }
1197         ath9k_hw_set_clockrate(ah);
1198
1199         ah->eep_ops->set_txpower(ah, chan,
1200                              ath9k_regd_get_ctl(regulatory, chan),
1201                              channel->max_antenna_gain * 2,
1202                              channel->max_power * 2,
1203                              min((u32) MAX_RATE_POWER,
1204                              (u32) regulatory->power_limit), false);
1205
1206         ath9k_hw_rfbus_done(ah);
1207
1208         if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1209                 ath9k_hw_set_delta_slope(ah, chan);
1210
1211         ath9k_hw_spur_mitigate_freq(ah, chan);
1212
1213         return true;
1214 }
1215
1216 bool ath9k_hw_check_alive(struct ath_hw *ah)
1217 {
1218         int count = 50;
1219         u32 reg;
1220
1221         if (AR_SREV_9285_12_OR_LATER(ah))
1222                 return true;
1223
1224         do {
1225                 reg = REG_READ(ah, AR_OBS_BUS_1);
1226
1227                 if ((reg & 0x7E7FFFEF) == 0x00702400)
1228                         continue;
1229
1230                 switch (reg & 0x7E000B00) {
1231                 case 0x1E000000:
1232                 case 0x52000B00:
1233                 case 0x18000B00:
1234                         continue;
1235                 default:
1236                         return true;
1237                 }
1238         } while (count-- > 0);
1239
1240         return false;
1241 }
1242 EXPORT_SYMBOL(ath9k_hw_check_alive);
1243
1244 int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
1245                    struct ath9k_hw_cal_data *caldata, bool bChannelChange)
1246 {
1247         struct ath_common *common = ath9k_hw_common(ah);
1248         u32 saveLedState;
1249         struct ath9k_channel *curchan = ah->curchan;
1250         u32 saveDefAntenna;
1251         u32 macStaId1;
1252         u64 tsf = 0;
1253         int i, r;
1254
1255         ah->txchainmask = common->tx_chainmask;
1256         ah->rxchainmask = common->rx_chainmask;
1257
1258         if ((common->bus_ops->ath_bus_type != ATH_USB) && !ah->chip_fullsleep) {
1259                 ath9k_hw_abortpcurecv(ah);
1260                 if (!ath9k_hw_stopdmarecv(ah)) {
1261                         ath_dbg(common, ATH_DBG_XMIT,
1262                                 "Failed to stop receive dma\n");
1263                         bChannelChange = false;
1264                 }
1265         }
1266
1267         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1268                 return -EIO;
1269
1270         if (curchan && !ah->chip_fullsleep)
1271                 ath9k_hw_getnf(ah, curchan);
1272
1273         ah->caldata = caldata;
1274         if (caldata &&
1275             (chan->channel != caldata->channel ||
1276              (chan->channelFlags & ~CHANNEL_CW_INT) !=
1277              (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1278                 /* Operating channel changed, reset channel calibration data */
1279                 memset(caldata, 0, sizeof(*caldata));
1280                 ath9k_init_nfcal_hist_buffer(ah, chan);
1281         }
1282
1283         if (bChannelChange &&
1284             (ah->chip_fullsleep != true) &&
1285             (ah->curchan != NULL) &&
1286             (chan->channel != ah->curchan->channel) &&
1287             ((chan->channelFlags & CHANNEL_ALL) ==
1288              (ah->curchan->channelFlags & CHANNEL_ALL)) &&
1289             (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
1290
1291                 if (ath9k_hw_channel_change(ah, chan)) {
1292                         ath9k_hw_loadnf(ah, ah->curchan);
1293                         ath9k_hw_start_nfcal(ah, true);
1294                         if (AR_SREV_9271(ah))
1295                                 ar9002_hw_load_ani_reg(ah, chan);
1296                         return 0;
1297                 }
1298         }
1299
1300         saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1301         if (saveDefAntenna == 0)
1302                 saveDefAntenna = 1;
1303
1304         macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1305
1306         /* For chips on which RTC reset is done, save TSF before it gets cleared */
1307         if (AR_SREV_9100(ah) ||
1308             (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
1309                 tsf = ath9k_hw_gettsf64(ah);
1310
1311         saveLedState = REG_READ(ah, AR_CFG_LED) &
1312                 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1313                  AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1314
1315         ath9k_hw_mark_phy_inactive(ah);
1316
1317         ah->paprd_table_write_done = false;
1318
1319         /* Only required on the first reset */
1320         if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1321                 REG_WRITE(ah,
1322                           AR9271_RESET_POWER_DOWN_CONTROL,
1323                           AR9271_RADIO_RF_RST);
1324                 udelay(50);
1325         }
1326
1327         if (!ath9k_hw_chip_reset(ah, chan)) {
1328                 ath_err(common, "Chip reset failed\n");
1329                 return -EINVAL;
1330         }
1331
1332         /* Only required on the first reset */
1333         if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1334                 ah->htc_reset_init = false;
1335                 REG_WRITE(ah,
1336                           AR9271_RESET_POWER_DOWN_CONTROL,
1337                           AR9271_GATE_MAC_CTL);
1338                 udelay(50);
1339         }
1340
1341         /* Restore TSF */
1342         if (tsf)
1343                 ath9k_hw_settsf64(ah, tsf);
1344
1345         if (AR_SREV_9280_20_OR_LATER(ah))
1346                 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
1347
1348         if (!AR_SREV_9300_20_OR_LATER(ah))
1349                 ar9002_hw_enable_async_fifo(ah);
1350
1351         r = ath9k_hw_process_ini(ah, chan);
1352         if (r)
1353                 return r;
1354
1355         /*
1356          * Some AR91xx SoC devices frequently fail to accept TSF writes
1357          * right after the chip reset. When that happens, write a new
1358          * value after the initvals have been applied, with an offset
1359          * based on measured time difference
1360          */
1361         if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1362                 tsf += 1500;
1363                 ath9k_hw_settsf64(ah, tsf);
1364         }
1365
1366         /* Setup MFP options for CCMP */
1367         if (AR_SREV_9280_20_OR_LATER(ah)) {
1368                 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1369                  * frames when constructing CCMP AAD. */
1370                 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1371                               0xc7ff);
1372                 ah->sw_mgmt_crypto = false;
1373         } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1374                 /* Disable hardware crypto for management frames */
1375                 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1376                             AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1377                 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1378                             AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1379                 ah->sw_mgmt_crypto = true;
1380         } else
1381                 ah->sw_mgmt_crypto = true;
1382
1383         if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1384                 ath9k_hw_set_delta_slope(ah, chan);
1385
1386         ath9k_hw_spur_mitigate_freq(ah, chan);
1387         ah->eep_ops->set_board_values(ah, chan);
1388
1389         ENABLE_REGWRITE_BUFFER(ah);
1390
1391         REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1392         REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
1393                   | macStaId1
1394                   | AR_STA_ID1_RTS_USE_DEF
1395                   | (ah->config.
1396                      ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
1397                   | ah->sta_id1_defaults);
1398         ath_hw_setbssidmask(common);
1399         REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1400         ath9k_hw_write_associd(ah);
1401         REG_WRITE(ah, AR_ISR, ~0);
1402         REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1403
1404         REGWRITE_BUFFER_FLUSH(ah);
1405
1406         ath9k_hw_set_operating_mode(ah, ah->opmode);
1407
1408         r = ath9k_hw_rf_set_freq(ah, chan);
1409         if (r)
1410                 return r;
1411
1412         ath9k_hw_set_clockrate(ah);
1413
1414         ENABLE_REGWRITE_BUFFER(ah);
1415
1416         for (i = 0; i < AR_NUM_DCU; i++)
1417                 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1418
1419         REGWRITE_BUFFER_FLUSH(ah);
1420
1421         ah->intr_txqs = 0;
1422         for (i = 0; i < ah->caps.total_queues; i++)
1423                 ath9k_hw_resettxqueue(ah, i);
1424
1425         ath9k_hw_init_interrupt_masks(ah, ah->opmode);
1426         ath9k_hw_ani_cache_ini_regs(ah);
1427         ath9k_hw_init_qos(ah);
1428
1429         if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
1430                 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
1431
1432         ath9k_hw_init_global_settings(ah);
1433
1434         if (!AR_SREV_9300_20_OR_LATER(ah)) {
1435                 ar9002_hw_update_async_fifo(ah);
1436                 ar9002_hw_enable_wep_aggregation(ah);
1437         }
1438
1439         REG_WRITE(ah, AR_STA_ID1,
1440                   REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1441
1442         ath9k_hw_set_dma(ah);
1443
1444         REG_WRITE(ah, AR_OBS, 8);
1445
1446         if (ah->config.rx_intr_mitigation) {
1447                 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1448                 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1449         }
1450
1451         if (ah->config.tx_intr_mitigation) {
1452                 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1453                 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1454         }
1455
1456         ath9k_hw_init_bb(ah, chan);
1457
1458         if (!ath9k_hw_init_cal(ah, chan))
1459                 return -EIO;
1460
1461         ENABLE_REGWRITE_BUFFER(ah);
1462
1463         ath9k_hw_restore_chainmask(ah);
1464         REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1465
1466         REGWRITE_BUFFER_FLUSH(ah);
1467
1468         /*
1469          * For big endian systems turn on swapping for descriptors
1470          */
1471         if (AR_SREV_9100(ah)) {
1472                 u32 mask;
1473                 mask = REG_READ(ah, AR_CFG);
1474                 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
1475                         ath_dbg(common, ATH_DBG_RESET,
1476                                 "CFG Byte Swap Set 0x%x\n", mask);
1477                 } else {
1478                         mask =
1479                                 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1480                         REG_WRITE(ah, AR_CFG, mask);
1481                         ath_dbg(common, ATH_DBG_RESET,
1482                                 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
1483                 }
1484         } else {
1485                 if (common->bus_ops->ath_bus_type == ATH_USB) {
1486                         /* Configure AR9271 target WLAN */
1487                         if (AR_SREV_9271(ah))
1488                                 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1489                         else
1490                                 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1491                 }
1492 #ifdef __BIG_ENDIAN
1493                 else
1494                         REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1495 #endif
1496         }
1497
1498         if (ah->btcoex_hw.enabled)
1499                 ath9k_hw_btcoex_enable(ah);
1500
1501         if (AR_SREV_9300_20_OR_LATER(ah))
1502                 ar9003_hw_bb_watchdog_config(ah);
1503
1504         return 0;
1505 }
1506 EXPORT_SYMBOL(ath9k_hw_reset);
1507
1508 /******************************/
1509 /* Power Management (Chipset) */
1510 /******************************/
1511
1512 /*
1513  * Notify Power Mgt is disabled in self-generated frames.
1514  * If requested, force chip to sleep.
1515  */
1516 static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
1517 {
1518         REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1519         if (setChip) {
1520                 /*
1521                  * Clear the RTC force wake bit to allow the
1522                  * mac to go to sleep.
1523                  */
1524                 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1525                             AR_RTC_FORCE_WAKE_EN);
1526                 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
1527                         REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1528
1529                 /* Shutdown chip. Active low */
1530                 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
1531                         REG_CLR_BIT(ah, (AR_RTC_RESET),
1532                                     AR_RTC_RESET_EN);
1533         }
1534
1535         /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1536         if (AR_SREV_9300_20_OR_LATER(ah))
1537                 REG_WRITE(ah, AR_WA,
1538                           ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
1539 }
1540
1541 /*
1542  * Notify Power Management is enabled in self-generating
1543  * frames. If request, set power mode of chip to
1544  * auto/normal.  Duration in units of 128us (1/8 TU).
1545  */
1546 static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
1547 {
1548         REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1549         if (setChip) {
1550                 struct ath9k_hw_capabilities *pCap = &ah->caps;
1551
1552                 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
1553                         /* Set WakeOnInterrupt bit; clear ForceWake bit */
1554                         REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1555                                   AR_RTC_FORCE_WAKE_ON_INT);
1556                 } else {
1557                         /*
1558                          * Clear the RTC force wake bit to allow the
1559                          * mac to go to sleep.
1560                          */
1561                         REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1562                                     AR_RTC_FORCE_WAKE_EN);
1563                 }
1564         }
1565
1566         /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1567         if (AR_SREV_9300_20_OR_LATER(ah))
1568                 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
1569 }
1570
1571 static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
1572 {
1573         u32 val;
1574         int i;
1575
1576         /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1577         if (AR_SREV_9300_20_OR_LATER(ah)) {
1578                 REG_WRITE(ah, AR_WA, ah->WARegVal);
1579                 udelay(10);
1580         }
1581
1582         if (setChip) {
1583                 if ((REG_READ(ah, AR_RTC_STATUS) &
1584                      AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1585                         if (ath9k_hw_set_reset_reg(ah,
1586                                            ATH9K_RESET_POWER_ON) != true) {
1587                                 return false;
1588                         }
1589                         if (!AR_SREV_9300_20_OR_LATER(ah))
1590                                 ath9k_hw_init_pll(ah, NULL);
1591                 }
1592                 if (AR_SREV_9100(ah))
1593                         REG_SET_BIT(ah, AR_RTC_RESET,
1594                                     AR_RTC_RESET_EN);
1595
1596                 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1597                             AR_RTC_FORCE_WAKE_EN);
1598                 udelay(50);
1599
1600                 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1601                         val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1602                         if (val == AR_RTC_STATUS_ON)
1603                                 break;
1604                         udelay(50);
1605                         REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1606                                     AR_RTC_FORCE_WAKE_EN);
1607                 }
1608                 if (i == 0) {
1609                         ath_err(ath9k_hw_common(ah),
1610                                 "Failed to wakeup in %uus\n",
1611                                 POWER_UP_TIME / 20);
1612                         return false;
1613                 }
1614         }
1615
1616         REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1617
1618         return true;
1619 }
1620
1621 bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
1622 {
1623         struct ath_common *common = ath9k_hw_common(ah);
1624         int status = true, setChip = true;
1625         static const char *modes[] = {
1626                 "AWAKE",
1627                 "FULL-SLEEP",
1628                 "NETWORK SLEEP",
1629                 "UNDEFINED"
1630         };
1631
1632         if (ah->power_mode == mode)
1633                 return status;
1634
1635         ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1636                 modes[ah->power_mode], modes[mode]);
1637
1638         switch (mode) {
1639         case ATH9K_PM_AWAKE:
1640                 status = ath9k_hw_set_power_awake(ah, setChip);
1641                 break;
1642         case ATH9K_PM_FULL_SLEEP:
1643                 ath9k_set_power_sleep(ah, setChip);
1644                 ah->chip_fullsleep = true;
1645                 break;
1646         case ATH9K_PM_NETWORK_SLEEP:
1647                 ath9k_set_power_network_sleep(ah, setChip);
1648                 break;
1649         default:
1650                 ath_err(common, "Unknown power mode %u\n", mode);
1651                 return false;
1652         }
1653         ah->power_mode = mode;
1654
1655         /*
1656          * XXX: If this warning never comes up after a while then
1657          * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1658          * ath9k_hw_setpower() return type void.
1659          */
1660
1661         if (!(ah->ah_flags & AH_UNPLUGGED))
1662                 ATH_DBG_WARN_ON_ONCE(!status);
1663
1664         return status;
1665 }
1666 EXPORT_SYMBOL(ath9k_hw_setpower);
1667
1668 /*******************/
1669 /* Beacon Handling */
1670 /*******************/
1671
1672 void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
1673 {
1674         int flags = 0;
1675
1676         ENABLE_REGWRITE_BUFFER(ah);
1677
1678         switch (ah->opmode) {
1679         case NL80211_IFTYPE_ADHOC:
1680         case NL80211_IFTYPE_MESH_POINT:
1681                 REG_SET_BIT(ah, AR_TXCFG,
1682                             AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1683                 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1684                           TU_TO_USEC(next_beacon +
1685                                      (ah->atim_window ? ah->
1686                                       atim_window : 1)));
1687                 flags |= AR_NDP_TIMER_EN;
1688         case NL80211_IFTYPE_AP:
1689                 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1690                 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1691                           TU_TO_USEC(next_beacon -
1692                                      ah->config.
1693                                      dma_beacon_response_time));
1694                 REG_WRITE(ah, AR_NEXT_SWBA,
1695                           TU_TO_USEC(next_beacon -
1696                                      ah->config.
1697                                      sw_beacon_response_time));
1698                 flags |=
1699                         AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1700                 break;
1701         default:
1702                 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1703                         "%s: unsupported opmode: %d\n",
1704                         __func__, ah->opmode);
1705                 return;
1706                 break;
1707         }
1708
1709         REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1710         REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1711         REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1712         REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1713
1714         REGWRITE_BUFFER_FLUSH(ah);
1715
1716         beacon_period &= ~ATH9K_BEACON_ENA;
1717         if (beacon_period & ATH9K_BEACON_RESET_TSF) {
1718                 ath9k_hw_reset_tsf(ah);
1719         }
1720
1721         REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1722 }
1723 EXPORT_SYMBOL(ath9k_hw_beaconinit);
1724
1725 void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
1726                                     const struct ath9k_beacon_state *bs)
1727 {
1728         u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
1729         struct ath9k_hw_capabilities *pCap = &ah->caps;
1730         struct ath_common *common = ath9k_hw_common(ah);
1731
1732         ENABLE_REGWRITE_BUFFER(ah);
1733
1734         REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1735
1736         REG_WRITE(ah, AR_BEACON_PERIOD,
1737                   TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1738         REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1739                   TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1740
1741         REGWRITE_BUFFER_FLUSH(ah);
1742
1743         REG_RMW_FIELD(ah, AR_RSSI_THR,
1744                       AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1745
1746         beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1747
1748         if (bs->bs_sleepduration > beaconintval)
1749                 beaconintval = bs->bs_sleepduration;
1750
1751         dtimperiod = bs->bs_dtimperiod;
1752         if (bs->bs_sleepduration > dtimperiod)
1753                 dtimperiod = bs->bs_sleepduration;
1754
1755         if (beaconintval == dtimperiod)
1756                 nextTbtt = bs->bs_nextdtim;
1757         else
1758                 nextTbtt = bs->bs_nexttbtt;
1759
1760         ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1761         ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1762         ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1763         ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
1764
1765         ENABLE_REGWRITE_BUFFER(ah);
1766
1767         REG_WRITE(ah, AR_NEXT_DTIM,
1768                   TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1769         REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1770
1771         REG_WRITE(ah, AR_SLEEP1,
1772                   SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1773                   | AR_SLEEP1_ASSUME_DTIM);
1774
1775         if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
1776                 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1777         else
1778                 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1779
1780         REG_WRITE(ah, AR_SLEEP2,
1781                   SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1782
1783         REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1784         REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1785
1786         REGWRITE_BUFFER_FLUSH(ah);
1787
1788         REG_SET_BIT(ah, AR_TIMER_MODE,
1789                     AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1790                     AR_DTIM_TIMER_EN);
1791
1792         /* TSF Out of Range Threshold */
1793         REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
1794 }
1795 EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
1796
1797 /*******************/
1798 /* HW Capabilities */
1799 /*******************/
1800
1801 int ath9k_hw_fill_cap_info(struct ath_hw *ah)
1802 {
1803         struct ath9k_hw_capabilities *pCap = &ah->caps;
1804         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
1805         struct ath_common *common = ath9k_hw_common(ah);
1806         struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
1807
1808         u16 capField = 0, eeval;
1809         u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
1810
1811         eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
1812         regulatory->current_rd = eeval;
1813
1814         eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
1815         if (AR_SREV_9285_12_OR_LATER(ah))
1816                 eeval |= AR9285_RDEXT_DEFAULT;
1817         regulatory->current_rd_ext = eeval;
1818
1819         capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
1820
1821         if (ah->opmode != NL80211_IFTYPE_AP &&
1822             ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
1823                 if (regulatory->current_rd == 0x64 ||
1824                     regulatory->current_rd == 0x65)
1825                         regulatory->current_rd += 5;
1826                 else if (regulatory->current_rd == 0x41)
1827                         regulatory->current_rd = 0x43;
1828                 ath_dbg(common, ATH_DBG_REGULATORY,
1829                         "regdomain mapped to 0x%x\n", regulatory->current_rd);
1830         }
1831
1832         eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
1833         if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
1834                 ath_err(common,
1835                         "no band has been marked as supported in EEPROM\n");
1836                 return -EINVAL;
1837         }
1838
1839         if (eeval & AR5416_OPFLAGS_11A)
1840                 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
1841
1842         if (eeval & AR5416_OPFLAGS_11G)
1843                 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
1844
1845         pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
1846         /*
1847          * For AR9271 we will temporarilly uses the rx chainmax as read from
1848          * the EEPROM.
1849          */
1850         if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
1851             !(eeval & AR5416_OPFLAGS_11A) &&
1852             !(AR_SREV_9271(ah)))
1853                 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
1854                 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
1855         else
1856                 /* Use rx_chainmask from EEPROM. */
1857                 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
1858
1859         ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
1860
1861         /* enable key search for every frame in an aggregate */
1862         if (AR_SREV_9300_20_OR_LATER(ah))
1863                 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1864
1865         pCap->low_2ghz_chan = 2312;
1866         pCap->high_2ghz_chan = 2732;
1867
1868         pCap->low_5ghz_chan = 4920;
1869         pCap->high_5ghz_chan = 6100;
1870
1871         common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1872
1873         if (ah->config.ht_enable)
1874                 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1875         else
1876                 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1877
1878         if (capField & AR_EEPROM_EEPCAP_MAXQCU)
1879                 pCap->total_queues =
1880                         MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
1881         else
1882                 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
1883
1884         if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
1885                 pCap->keycache_size =
1886                         1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
1887         else
1888                 pCap->keycache_size = AR_KEYTABLE_SIZE;
1889
1890         if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
1891                 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
1892         else
1893                 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
1894
1895         if (AR_SREV_9271(ah))
1896                 pCap->num_gpio_pins = AR9271_NUM_GPIO;
1897         else if (AR_DEVID_7010(ah))
1898                 pCap->num_gpio_pins = AR7010_NUM_GPIO;
1899         else if (AR_SREV_9285_12_OR_LATER(ah))
1900                 pCap->num_gpio_pins = AR9285_NUM_GPIO;
1901         else if (AR_SREV_9280_20_OR_LATER(ah))
1902                 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1903         else
1904                 pCap->num_gpio_pins = AR_NUM_GPIO;
1905
1906         if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1907                 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1908                 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1909         } else {
1910                 pCap->rts_aggr_limit = (8 * 1024);
1911         }
1912
1913         pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
1914
1915 #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
1916         ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1917         if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1918                 ah->rfkill_gpio =
1919                         MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1920                 ah->rfkill_polarity =
1921                         MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
1922
1923                 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1924         }
1925 #endif
1926         if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
1927                 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1928         else
1929                 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
1930
1931         if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
1932                 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1933         else
1934                 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1935
1936         if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
1937                 pCap->reg_cap =
1938                         AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1939                         AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
1940                         AR_EEPROM_EEREGCAP_EN_KK_U2 |
1941                         AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
1942         } else {
1943                 pCap->reg_cap =
1944                         AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1945                         AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
1946         }
1947
1948         /* Advertise midband for AR5416 with FCC midband set in eeprom */
1949         if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
1950             AR_SREV_5416(ah))
1951                 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
1952
1953         if (AR_SREV_9280_20_OR_LATER(ah) && common->btcoex_enabled) {
1954                 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
1955                 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
1956
1957                 if (AR_SREV_9285(ah)) {
1958                         btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1959                         btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
1960                 } else {
1961                         btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
1962                 }
1963         } else {
1964                 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
1965         }
1966
1967         if (AR_SREV_9300_20_OR_LATER(ah)) {
1968                 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1969                 if (!AR_SREV_9485(ah))
1970                         pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1971
1972                 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1973                 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1974                 pCap->rx_status_len = sizeof(struct ar9003_rxs);
1975                 pCap->tx_desc_len = sizeof(struct ar9003_txc);
1976                 pCap->txs_len = sizeof(struct ar9003_txs);
1977                 if (!ah->config.paprd_disable &&
1978                     ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
1979                         pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
1980         } else {
1981                 pCap->tx_desc_len = sizeof(struct ath_desc);
1982                 if (AR_SREV_9280_20(ah) &&
1983                     ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
1984                       AR5416_EEP_MINOR_VER_16) ||
1985                      ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
1986                         pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
1987         }
1988
1989         if (AR_SREV_9300_20_OR_LATER(ah))
1990                 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
1991
1992         if (AR_SREV_9300_20_OR_LATER(ah))
1993                 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
1994
1995         if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
1996                 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
1997
1998         if (AR_SREV_9285(ah))
1999                 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2000                         ant_div_ctl1 =
2001                                 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2002                         if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2003                                 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2004                 }
2005         if (AR_SREV_9300_20_OR_LATER(ah)) {
2006                 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2007                         pCap->hw_caps |= ATH9K_HW_CAP_APM;
2008         }
2009
2010
2011
2012         if (AR_SREV_9485_10(ah)) {
2013                 pCap->pcie_lcr_extsync_en = true;
2014                 pCap->pcie_lcr_offset = 0x80;
2015         }
2016
2017         tx_chainmask = pCap->tx_chainmask;
2018         rx_chainmask = pCap->rx_chainmask;
2019         while (tx_chainmask || rx_chainmask) {
2020                 if (tx_chainmask & BIT(0))
2021                         pCap->max_txchains++;
2022                 if (rx_chainmask & BIT(0))
2023                         pCap->max_rxchains++;
2024
2025                 tx_chainmask >>= 1;
2026                 rx_chainmask >>= 1;
2027         }
2028
2029         return 0;
2030 }
2031
2032 /****************************/
2033 /* GPIO / RFKILL / Antennae */
2034 /****************************/
2035
2036 static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
2037                                          u32 gpio, u32 type)
2038 {
2039         int addr;
2040         u32 gpio_shift, tmp;
2041
2042         if (gpio > 11)
2043                 addr = AR_GPIO_OUTPUT_MUX3;
2044         else if (gpio > 5)
2045                 addr = AR_GPIO_OUTPUT_MUX2;
2046         else
2047                 addr = AR_GPIO_OUTPUT_MUX1;
2048
2049         gpio_shift = (gpio % 6) * 5;
2050
2051         if (AR_SREV_9280_20_OR_LATER(ah)
2052             || (addr != AR_GPIO_OUTPUT_MUX1)) {
2053                 REG_RMW(ah, addr, (type << gpio_shift),
2054                         (0x1f << gpio_shift));
2055         } else {
2056                 tmp = REG_READ(ah, addr);
2057                 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2058                 tmp &= ~(0x1f << gpio_shift);
2059                 tmp |= (type << gpio_shift);
2060                 REG_WRITE(ah, addr, tmp);
2061         }
2062 }
2063
2064 void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
2065 {
2066         u32 gpio_shift;
2067
2068         BUG_ON(gpio >= ah->caps.num_gpio_pins);
2069
2070         if (AR_DEVID_7010(ah)) {
2071                 gpio_shift = gpio;
2072                 REG_RMW(ah, AR7010_GPIO_OE,
2073                         (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2074                         (AR7010_GPIO_OE_MASK << gpio_shift));
2075                 return;
2076         }
2077
2078         gpio_shift = gpio << 1;
2079         REG_RMW(ah,
2080                 AR_GPIO_OE_OUT,
2081                 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2082                 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2083 }
2084 EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
2085
2086 u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
2087 {
2088 #define MS_REG_READ(x, y) \
2089         (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2090
2091         if (gpio >= ah->caps.num_gpio_pins)
2092                 return 0xffffffff;
2093
2094         if (AR_DEVID_7010(ah)) {
2095                 u32 val;
2096                 val = REG_READ(ah, AR7010_GPIO_IN);
2097                 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2098         } else if (AR_SREV_9300_20_OR_LATER(ah))
2099                 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2100                         AR_GPIO_BIT(gpio)) != 0;
2101         else if (AR_SREV_9271(ah))
2102                 return MS_REG_READ(AR9271, gpio) != 0;
2103         else if (AR_SREV_9287_11_OR_LATER(ah))
2104                 return MS_REG_READ(AR9287, gpio) != 0;
2105         else if (AR_SREV_9285_12_OR_LATER(ah))
2106                 return MS_REG_READ(AR9285, gpio) != 0;
2107         else if (AR_SREV_9280_20_OR_LATER(ah))
2108                 return MS_REG_READ(AR928X, gpio) != 0;
2109         else
2110                 return MS_REG_READ(AR, gpio) != 0;
2111 }
2112 EXPORT_SYMBOL(ath9k_hw_gpio_get);
2113
2114 void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
2115                          u32 ah_signal_type)
2116 {
2117         u32 gpio_shift;
2118
2119         if (AR_DEVID_7010(ah)) {
2120                 gpio_shift = gpio;
2121                 REG_RMW(ah, AR7010_GPIO_OE,
2122                         (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2123                         (AR7010_GPIO_OE_MASK << gpio_shift));
2124                 return;
2125         }
2126
2127         ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2128         gpio_shift = 2 * gpio;
2129         REG_RMW(ah,
2130                 AR_GPIO_OE_OUT,
2131                 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2132                 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2133 }
2134 EXPORT_SYMBOL(ath9k_hw_cfg_output);
2135
2136 void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
2137 {
2138         if (AR_DEVID_7010(ah)) {
2139                 val = val ? 0 : 1;
2140                 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2141                         AR_GPIO_BIT(gpio));
2142                 return;
2143         }
2144
2145         if (AR_SREV_9271(ah))
2146                 val = ~val;
2147
2148         REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2149                 AR_GPIO_BIT(gpio));
2150 }
2151 EXPORT_SYMBOL(ath9k_hw_set_gpio);
2152
2153 u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
2154 {
2155         return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2156 }
2157 EXPORT_SYMBOL(ath9k_hw_getdefantenna);
2158
2159 void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
2160 {
2161         REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2162 }
2163 EXPORT_SYMBOL(ath9k_hw_setantenna);
2164
2165 /*********************/
2166 /* General Operation */
2167 /*********************/
2168
2169 u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
2170 {
2171         u32 bits = REG_READ(ah, AR_RX_FILTER);
2172         u32 phybits = REG_READ(ah, AR_PHY_ERR);
2173
2174         if (phybits & AR_PHY_ERR_RADAR)
2175                 bits |= ATH9K_RX_FILTER_PHYRADAR;
2176         if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2177                 bits |= ATH9K_RX_FILTER_PHYERR;
2178
2179         return bits;
2180 }
2181 EXPORT_SYMBOL(ath9k_hw_getrxfilter);
2182
2183 void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
2184 {
2185         u32 phybits;
2186
2187         ENABLE_REGWRITE_BUFFER(ah);
2188
2189         REG_WRITE(ah, AR_RX_FILTER, bits);
2190
2191         phybits = 0;
2192         if (bits & ATH9K_RX_FILTER_PHYRADAR)
2193                 phybits |= AR_PHY_ERR_RADAR;
2194         if (bits & ATH9K_RX_FILTER_PHYERR)
2195                 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2196         REG_WRITE(ah, AR_PHY_ERR, phybits);
2197
2198         if (phybits)
2199                 REG_WRITE(ah, AR_RXCFG,
2200                           REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2201         else
2202                 REG_WRITE(ah, AR_RXCFG,
2203                           REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
2204
2205         REGWRITE_BUFFER_FLUSH(ah);
2206 }
2207 EXPORT_SYMBOL(ath9k_hw_setrxfilter);
2208
2209 bool ath9k_hw_phy_disable(struct ath_hw *ah)
2210 {
2211         if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2212                 return false;
2213
2214         ath9k_hw_init_pll(ah, NULL);
2215         return true;
2216 }
2217 EXPORT_SYMBOL(ath9k_hw_phy_disable);
2218
2219 bool ath9k_hw_disable(struct ath_hw *ah)
2220 {
2221         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2222                 return false;
2223
2224         if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2225                 return false;
2226
2227         ath9k_hw_init_pll(ah, NULL);
2228         return true;
2229 }
2230 EXPORT_SYMBOL(ath9k_hw_disable);
2231
2232 void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2233 {
2234         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
2235         struct ath9k_channel *chan = ah->curchan;
2236         struct ieee80211_channel *channel = chan->chan;
2237
2238         regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
2239
2240         ah->eep_ops->set_txpower(ah, chan,
2241                                  ath9k_regd_get_ctl(regulatory, chan),
2242                                  channel->max_antenna_gain * 2,
2243                                  channel->max_power * 2,
2244                                  min((u32) MAX_RATE_POWER,
2245                                  (u32) regulatory->power_limit), test);
2246 }
2247 EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
2248
2249 void ath9k_hw_setopmode(struct ath_hw *ah)
2250 {
2251         ath9k_hw_set_operating_mode(ah, ah->opmode);
2252 }
2253 EXPORT_SYMBOL(ath9k_hw_setopmode);
2254
2255 void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
2256 {
2257         REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2258         REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2259 }
2260 EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
2261
2262 void ath9k_hw_write_associd(struct ath_hw *ah)
2263 {
2264         struct ath_common *common = ath9k_hw_common(ah);
2265
2266         REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2267         REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2268                   ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
2269 }
2270 EXPORT_SYMBOL(ath9k_hw_write_associd);
2271
2272 #define ATH9K_MAX_TSF_READ 10
2273
2274 u64 ath9k_hw_gettsf64(struct ath_hw *ah)
2275 {
2276         u32 tsf_lower, tsf_upper1, tsf_upper2;
2277         int i;
2278
2279         tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2280         for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2281                 tsf_lower = REG_READ(ah, AR_TSF_L32);
2282                 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2283                 if (tsf_upper2 == tsf_upper1)
2284                         break;
2285                 tsf_upper1 = tsf_upper2;
2286         }
2287
2288         WARN_ON( i == ATH9K_MAX_TSF_READ );
2289
2290         return (((u64)tsf_upper1 << 32) | tsf_lower);
2291 }
2292 EXPORT_SYMBOL(ath9k_hw_gettsf64);
2293
2294 void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
2295 {
2296         REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
2297         REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
2298 }
2299 EXPORT_SYMBOL(ath9k_hw_settsf64);
2300
2301 void ath9k_hw_reset_tsf(struct ath_hw *ah)
2302 {
2303         if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2304                            AH_TSF_WRITE_TIMEOUT))
2305                 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2306                         "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
2307
2308         REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
2309 }
2310 EXPORT_SYMBOL(ath9k_hw_reset_tsf);
2311
2312 void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
2313 {
2314         if (setting)
2315                 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
2316         else
2317                 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
2318 }
2319 EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
2320
2321 void ath9k_hw_set11nmac2040(struct ath_hw *ah)
2322 {
2323         struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
2324         u32 macmode;
2325
2326         if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
2327                 macmode = AR_2040_JOINED_RX_CLEAR;
2328         else
2329                 macmode = 0;
2330
2331         REG_WRITE(ah, AR_2040_MODE, macmode);
2332 }
2333
2334 /* HW Generic timers configuration */
2335
2336 static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2337 {
2338         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2339         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2340         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2341         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2342         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2343         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2344         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2345         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2346         {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2347         {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2348                                 AR_NDP2_TIMER_MODE, 0x0002},
2349         {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2350                                 AR_NDP2_TIMER_MODE, 0x0004},
2351         {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2352                                 AR_NDP2_TIMER_MODE, 0x0008},
2353         {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2354                                 AR_NDP2_TIMER_MODE, 0x0010},
2355         {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2356                                 AR_NDP2_TIMER_MODE, 0x0020},
2357         {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2358                                 AR_NDP2_TIMER_MODE, 0x0040},
2359         {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2360                                 AR_NDP2_TIMER_MODE, 0x0080}
2361 };
2362
2363 /* HW generic timer primitives */
2364
2365 /* compute and clear index of rightmost 1 */
2366 static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2367 {
2368         u32 b;
2369
2370         b = *mask;
2371         b &= (0-b);
2372         *mask &= ~b;
2373         b *= debruijn32;
2374         b >>= 27;
2375
2376         return timer_table->gen_timer_index[b];
2377 }
2378
2379 static u32 ath9k_hw_gettsf32(struct ath_hw *ah)
2380 {
2381         return REG_READ(ah, AR_TSF_L32);
2382 }
2383
2384 struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2385                                           void (*trigger)(void *),
2386                                           void (*overflow)(void *),
2387                                           void *arg,
2388                                           u8 timer_index)
2389 {
2390         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2391         struct ath_gen_timer *timer;
2392
2393         timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2394
2395         if (timer == NULL) {
2396                 ath_err(ath9k_hw_common(ah),
2397                         "Failed to allocate memory for hw timer[%d]\n",
2398                         timer_index);
2399                 return NULL;
2400         }
2401
2402         /* allocate a hardware generic timer slot */
2403         timer_table->timers[timer_index] = timer;
2404         timer->index = timer_index;
2405         timer->trigger = trigger;
2406         timer->overflow = overflow;
2407         timer->arg = arg;
2408
2409         return timer;
2410 }
2411 EXPORT_SYMBOL(ath_gen_timer_alloc);
2412
2413 void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2414                               struct ath_gen_timer *timer,
2415                               u32 timer_next,
2416                               u32 timer_period)
2417 {
2418         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2419         u32 tsf;
2420
2421         BUG_ON(!timer_period);
2422
2423         set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2424
2425         tsf = ath9k_hw_gettsf32(ah);
2426
2427         ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2428                 "current tsf %x period %x timer_next %x\n",
2429                 tsf, timer_period, timer_next);
2430
2431         /*
2432          * Pull timer_next forward if the current TSF already passed it
2433          * because of software latency
2434          */
2435         if (timer_next < tsf)
2436                 timer_next = tsf + timer_period;
2437
2438         /*
2439          * Program generic timer registers
2440          */
2441         REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2442                  timer_next);
2443         REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2444                   timer_period);
2445         REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2446                     gen_tmr_configuration[timer->index].mode_mask);
2447
2448         /* Enable both trigger and thresh interrupt masks */
2449         REG_SET_BIT(ah, AR_IMR_S5,
2450                 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2451                 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2452 }
2453 EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
2454
2455 void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
2456 {
2457         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2458
2459         if ((timer->index < AR_FIRST_NDP_TIMER) ||
2460                 (timer->index >= ATH_MAX_GEN_TIMER)) {
2461                 return;
2462         }
2463
2464         /* Clear generic timer enable bits. */
2465         REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2466                         gen_tmr_configuration[timer->index].mode_mask);
2467
2468         /* Disable both trigger and thresh interrupt masks */
2469         REG_CLR_BIT(ah, AR_IMR_S5,
2470                 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2471                 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2472
2473         clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
2474 }
2475 EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
2476
2477 void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2478 {
2479         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2480
2481         /* free the hardware generic timer slot */
2482         timer_table->timers[timer->index] = NULL;
2483         kfree(timer);
2484 }
2485 EXPORT_SYMBOL(ath_gen_timer_free);
2486
2487 /*
2488  * Generic Timer Interrupts handling
2489  */
2490 void ath_gen_timer_isr(struct ath_hw *ah)
2491 {
2492         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2493         struct ath_gen_timer *timer;
2494         struct ath_common *common = ath9k_hw_common(ah);
2495         u32 trigger_mask, thresh_mask, index;
2496
2497         /* get hardware generic timer interrupt status */
2498         trigger_mask = ah->intr_gen_timer_trigger;
2499         thresh_mask = ah->intr_gen_timer_thresh;
2500         trigger_mask &= timer_table->timer_mask.val;
2501         thresh_mask &= timer_table->timer_mask.val;
2502
2503         trigger_mask &= ~thresh_mask;
2504
2505         while (thresh_mask) {
2506                 index = rightmost_index(timer_table, &thresh_mask);
2507                 timer = timer_table->timers[index];
2508                 BUG_ON(!timer);
2509                 ath_dbg(common, ATH_DBG_HWTIMER,
2510                         "TSF overflow for Gen timer %d\n", index);
2511                 timer->overflow(timer->arg);
2512         }
2513
2514         while (trigger_mask) {
2515                 index = rightmost_index(timer_table, &trigger_mask);
2516                 timer = timer_table->timers[index];
2517                 BUG_ON(!timer);
2518                 ath_dbg(common, ATH_DBG_HWTIMER,
2519                         "Gen timer[%d] trigger\n", index);
2520                 timer->trigger(timer->arg);
2521         }
2522 }
2523 EXPORT_SYMBOL(ath_gen_timer_isr);
2524
2525 /********/
2526 /* HTC  */
2527 /********/
2528
2529 void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2530 {
2531         ah->htc_reset_init = true;
2532 }
2533 EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2534
2535 static struct {
2536         u32 version;
2537         const char * name;
2538 } ath_mac_bb_names[] = {
2539         /* Devices with external radios */
2540         { AR_SREV_VERSION_5416_PCI,     "5416" },
2541         { AR_SREV_VERSION_5416_PCIE,    "5418" },
2542         { AR_SREV_VERSION_9100,         "9100" },
2543         { AR_SREV_VERSION_9160,         "9160" },
2544         /* Single-chip solutions */
2545         { AR_SREV_VERSION_9280,         "9280" },
2546         { AR_SREV_VERSION_9285,         "9285" },
2547         { AR_SREV_VERSION_9287,         "9287" },
2548         { AR_SREV_VERSION_9271,         "9271" },
2549         { AR_SREV_VERSION_9300,         "9300" },
2550 };
2551
2552 /* For devices with external radios */
2553 static struct {
2554         u16 version;
2555         const char * name;
2556 } ath_rf_names[] = {
2557         { 0,                            "5133" },
2558         { AR_RAD5133_SREV_MAJOR,        "5133" },
2559         { AR_RAD5122_SREV_MAJOR,        "5122" },
2560         { AR_RAD2133_SREV_MAJOR,        "2133" },
2561         { AR_RAD2122_SREV_MAJOR,        "2122" }
2562 };
2563
2564 /*
2565  * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2566  */
2567 static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
2568 {
2569         int i;
2570
2571         for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2572                 if (ath_mac_bb_names[i].version == mac_bb_version) {
2573                         return ath_mac_bb_names[i].name;
2574                 }
2575         }
2576
2577         return "????";
2578 }
2579
2580 /*
2581  * Return the RF name. "????" is returned if the RF is unknown.
2582  * Used for devices with external radios.
2583  */
2584 static const char *ath9k_hw_rf_name(u16 rf_version)
2585 {
2586         int i;
2587
2588         for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2589                 if (ath_rf_names[i].version == rf_version) {
2590                         return ath_rf_names[i].name;
2591                 }
2592         }
2593
2594         return "????";
2595 }
2596
2597 void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2598 {
2599         int used;
2600
2601         /* chipsets >= AR9280 are single-chip */
2602         if (AR_SREV_9280_20_OR_LATER(ah)) {
2603                 used = snprintf(hw_name, len,
2604                                "Atheros AR%s Rev:%x",
2605                                ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2606                                ah->hw_version.macRev);
2607         }
2608         else {
2609                 used = snprintf(hw_name, len,
2610                                "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2611                                ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2612                                ah->hw_version.macRev,
2613                                ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2614                                                 AR_RADIO_SREV_MAJOR)),
2615                                ah->hw_version.phyRev);
2616         }
2617
2618         hw_name[used] = '\0';
2619 }
2620 EXPORT_SYMBOL(ath9k_hw_name);