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