ath9k: Restore TSF after RESET
[safe/jmp/linux-2.6] / drivers / net / wireless / ath / ath9k / hw.c
1 /*
2  * Copyright (c) 2008-2009 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 <asm/unaligned.h>
19 #include <linux/pci.h>
20
21 #include "ath9k.h"
22 #include "initvals.h"
23
24 #define ATH9K_CLOCK_RATE_CCK            22
25 #define ATH9K_CLOCK_RATE_5GHZ_OFDM      40
26 #define ATH9K_CLOCK_RATE_2GHZ_OFDM      44
27
28 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
29 static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
30                               enum ath9k_ht_macmode macmode);
31 static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
32                               struct ar5416_eeprom_def *pEepData,
33                               u32 reg, u32 value);
34 static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
35 static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
36
37 /********************/
38 /* Helper Functions */
39 /********************/
40
41 static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
42 {
43         struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
44
45         if (!ah->curchan) /* should really check for CCK instead */
46                 return clks / ATH9K_CLOCK_RATE_CCK;
47         if (conf->channel->band == IEEE80211_BAND_2GHZ)
48                 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
49
50         return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
51 }
52
53 static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
54 {
55         struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
56
57         if (conf_is_ht40(conf))
58                 return ath9k_hw_mac_usec(ah, clks) / 2;
59         else
60                 return ath9k_hw_mac_usec(ah, clks);
61 }
62
63 static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
64 {
65         struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
66
67         if (!ah->curchan) /* should really check for CCK instead */
68                 return usecs *ATH9K_CLOCK_RATE_CCK;
69         if (conf->channel->band == IEEE80211_BAND_2GHZ)
70                 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
71         return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
72 }
73
74 static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
75 {
76         struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
77
78         if (conf_is_ht40(conf))
79                 return ath9k_hw_mac_clks(ah, usecs) * 2;
80         else
81                 return ath9k_hw_mac_clks(ah, usecs);
82 }
83
84 /*
85  * Read and write, they both share the same lock. We do this to serialize
86  * reads and writes on Atheros 802.11n PCI devices only. This is required
87  * as the FIFO on these devices can only accept sanely 2 requests. After
88  * that the device goes bananas. Serializing the reads/writes prevents this
89  * from happening.
90  */
91
92 void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
93 {
94         if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
95                 unsigned long flags;
96                 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
97                 iowrite32(val, ah->ah_sc->mem + reg_offset);
98                 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
99         } else
100                 iowrite32(val, ah->ah_sc->mem + reg_offset);
101 }
102
103 unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
104 {
105         u32 val;
106         if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
107                 unsigned long flags;
108                 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
109                 val = ioread32(ah->ah_sc->mem + reg_offset);
110                 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
111         } else
112                 val = ioread32(ah->ah_sc->mem + reg_offset);
113         return val;
114 }
115
116 bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
117 {
118         int i;
119
120         BUG_ON(timeout < AH_TIME_QUANTUM);
121
122         for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
123                 if ((REG_READ(ah, reg) & mask) == val)
124                         return true;
125
126                 udelay(AH_TIME_QUANTUM);
127         }
128
129         DPRINTF(ah->ah_sc, ATH_DBG_ANY,
130                 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
131                 timeout, reg, REG_READ(ah, reg), mask, val);
132
133         return false;
134 }
135
136 u32 ath9k_hw_reverse_bits(u32 val, u32 n)
137 {
138         u32 retval;
139         int i;
140
141         for (i = 0, retval = 0; i < n; i++) {
142                 retval = (retval << 1) | (val & 1);
143                 val >>= 1;
144         }
145         return retval;
146 }
147
148 bool ath9k_get_channel_edges(struct ath_hw *ah,
149                              u16 flags, u16 *low,
150                              u16 *high)
151 {
152         struct ath9k_hw_capabilities *pCap = &ah->caps;
153
154         if (flags & CHANNEL_5GHZ) {
155                 *low = pCap->low_5ghz_chan;
156                 *high = pCap->high_5ghz_chan;
157                 return true;
158         }
159         if ((flags & CHANNEL_2GHZ)) {
160                 *low = pCap->low_2ghz_chan;
161                 *high = pCap->high_2ghz_chan;
162                 return true;
163         }
164         return false;
165 }
166
167 u16 ath9k_hw_computetxtime(struct ath_hw *ah,
168                            const struct ath_rate_table *rates,
169                            u32 frameLen, u16 rateix,
170                            bool shortPreamble)
171 {
172         u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
173         u32 kbps;
174
175         kbps = rates->info[rateix].ratekbps;
176
177         if (kbps == 0)
178                 return 0;
179
180         switch (rates->info[rateix].phy) {
181         case WLAN_RC_PHY_CCK:
182                 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
183                 if (shortPreamble && rates->info[rateix].short_preamble)
184                         phyTime >>= 1;
185                 numBits = frameLen << 3;
186                 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
187                 break;
188         case WLAN_RC_PHY_OFDM:
189                 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
190                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
191                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
192                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
193                         txTime = OFDM_SIFS_TIME_QUARTER
194                                 + OFDM_PREAMBLE_TIME_QUARTER
195                                 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
196                 } else if (ah->curchan &&
197                            IS_CHAN_HALF_RATE(ah->curchan)) {
198                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
199                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
200                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
201                         txTime = OFDM_SIFS_TIME_HALF +
202                                 OFDM_PREAMBLE_TIME_HALF
203                                 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
204                 } else {
205                         bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
206                         numBits = OFDM_PLCP_BITS + (frameLen << 3);
207                         numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
208                         txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
209                                 + (numSymbols * OFDM_SYMBOL_TIME);
210                 }
211                 break;
212         default:
213                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
214                         "Unknown phy %u (rate ix %u)\n",
215                         rates->info[rateix].phy, rateix);
216                 txTime = 0;
217                 break;
218         }
219
220         return txTime;
221 }
222
223 void ath9k_hw_get_channel_centers(struct ath_hw *ah,
224                                   struct ath9k_channel *chan,
225                                   struct chan_centers *centers)
226 {
227         int8_t extoff;
228
229         if (!IS_CHAN_HT40(chan)) {
230                 centers->ctl_center = centers->ext_center =
231                         centers->synth_center = chan->channel;
232                 return;
233         }
234
235         if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
236             (chan->chanmode == CHANNEL_G_HT40PLUS)) {
237                 centers->synth_center =
238                         chan->channel + HT40_CHANNEL_CENTER_SHIFT;
239                 extoff = 1;
240         } else {
241                 centers->synth_center =
242                         chan->channel - HT40_CHANNEL_CENTER_SHIFT;
243                 extoff = -1;
244         }
245
246         centers->ctl_center =
247                 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
248         centers->ext_center =
249                 centers->synth_center + (extoff *
250                          ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
251                           HT40_CHANNEL_CENTER_SHIFT : 15));
252 }
253
254 /******************/
255 /* Chip Revisions */
256 /******************/
257
258 static void ath9k_hw_read_revisions(struct ath_hw *ah)
259 {
260         u32 val;
261
262         val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
263
264         if (val == 0xFF) {
265                 val = REG_READ(ah, AR_SREV);
266                 ah->hw_version.macVersion =
267                         (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
268                 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
269                 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
270         } else {
271                 if (!AR_SREV_9100(ah))
272                         ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
273
274                 ah->hw_version.macRev = val & AR_SREV_REVISION;
275
276                 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
277                         ah->is_pciexpress = true;
278         }
279 }
280
281 static int ath9k_hw_get_radiorev(struct ath_hw *ah)
282 {
283         u32 val;
284         int i;
285
286         REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
287
288         for (i = 0; i < 8; i++)
289                 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
290         val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
291         val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
292
293         return ath9k_hw_reverse_bits(val, 8);
294 }
295
296 /************************************/
297 /* HW Attach, Detach, Init Routines */
298 /************************************/
299
300 static void ath9k_hw_disablepcie(struct ath_hw *ah)
301 {
302         if (AR_SREV_9100(ah))
303                 return;
304
305         REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
306         REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
307         REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
308         REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
309         REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
310         REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
311         REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
312         REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
313         REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
314
315         REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
316 }
317
318 static bool ath9k_hw_chip_test(struct ath_hw *ah)
319 {
320         u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
321         u32 regHold[2];
322         u32 patternData[4] = { 0x55555555,
323                                0xaaaaaaaa,
324                                0x66666666,
325                                0x99999999 };
326         int i, j;
327
328         for (i = 0; i < 2; i++) {
329                 u32 addr = regAddr[i];
330                 u32 wrData, rdData;
331
332                 regHold[i] = REG_READ(ah, addr);
333                 for (j = 0; j < 0x100; j++) {
334                         wrData = (j << 16) | j;
335                         REG_WRITE(ah, addr, wrData);
336                         rdData = REG_READ(ah, addr);
337                         if (rdData != wrData) {
338                                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
339                                         "address test failed "
340                                         "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
341                                         addr, wrData, rdData);
342                                 return false;
343                         }
344                 }
345                 for (j = 0; j < 4; j++) {
346                         wrData = patternData[j];
347                         REG_WRITE(ah, addr, wrData);
348                         rdData = REG_READ(ah, addr);
349                         if (wrData != rdData) {
350                                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
351                                         "address test failed "
352                                         "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
353                                         addr, wrData, rdData);
354                                 return false;
355                         }
356                 }
357                 REG_WRITE(ah, regAddr[i], regHold[i]);
358         }
359         udelay(100);
360
361         return true;
362 }
363
364 static const char *ath9k_hw_devname(u16 devid)
365 {
366         switch (devid) {
367         case AR5416_DEVID_PCI:
368                 return "Atheros 5416";
369         case AR5416_DEVID_PCIE:
370                 return "Atheros 5418";
371         case AR9160_DEVID_PCI:
372                 return "Atheros 9160";
373         case AR5416_AR9100_DEVID:
374                 return "Atheros 9100";
375         case AR9280_DEVID_PCI:
376         case AR9280_DEVID_PCIE:
377                 return "Atheros 9280";
378         case AR9285_DEVID_PCIE:
379                 return "Atheros 9285";
380         case AR5416_DEVID_AR9287_PCI:
381         case AR5416_DEVID_AR9287_PCIE:
382                 return "Atheros 9287";
383         }
384
385         return NULL;
386 }
387
388 static void ath9k_hw_init_config(struct ath_hw *ah)
389 {
390         int i;
391
392         ah->config.dma_beacon_response_time = 2;
393         ah->config.sw_beacon_response_time = 10;
394         ah->config.additional_swba_backoff = 0;
395         ah->config.ack_6mb = 0x0;
396         ah->config.cwm_ignore_extcca = 0;
397         ah->config.pcie_powersave_enable = 0;
398         ah->config.pcie_clock_req = 0;
399         ah->config.pcie_waen = 0;
400         ah->config.analog_shiftreg = 1;
401         ah->config.ht_enable = 1;
402         ah->config.ofdm_trig_low = 200;
403         ah->config.ofdm_trig_high = 500;
404         ah->config.cck_trig_high = 200;
405         ah->config.cck_trig_low = 100;
406         ah->config.enable_ani = 1;
407         ah->config.diversity_control = ATH9K_ANT_VARIABLE;
408         ah->config.antenna_switch_swap = 0;
409
410         for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
411                 ah->config.spurchans[i][0] = AR_NO_SPUR;
412                 ah->config.spurchans[i][1] = AR_NO_SPUR;
413         }
414
415         ah->config.intr_mitigation = true;
416
417         /*
418          * We need this for PCI devices only (Cardbus, PCI, miniPCI)
419          * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
420          * This means we use it for all AR5416 devices, and the few
421          * minor PCI AR9280 devices out there.
422          *
423          * Serialization is required because these devices do not handle
424          * well the case of two concurrent reads/writes due to the latency
425          * involved. During one read/write another read/write can be issued
426          * on another CPU while the previous read/write may still be working
427          * on our hardware, if we hit this case the hardware poops in a loop.
428          * We prevent this by serializing reads and writes.
429          *
430          * This issue is not present on PCI-Express devices or pre-AR5416
431          * devices (legacy, 802.11abg).
432          */
433         if (num_possible_cpus() > 1)
434                 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
435 }
436
437 static void ath9k_hw_init_defaults(struct ath_hw *ah)
438 {
439         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
440
441         regulatory->country_code = CTRY_DEFAULT;
442         regulatory->power_limit = MAX_RATE_POWER;
443         regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
444
445         ah->hw_version.magic = AR5416_MAGIC;
446         ah->hw_version.subvendorid = 0;
447
448         ah->ah_flags = 0;
449         if (ah->hw_version.devid == AR5416_AR9100_DEVID)
450                 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
451         if (!AR_SREV_9100(ah))
452                 ah->ah_flags = AH_USE_EEPROM;
453
454         ah->atim_window = 0;
455         ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
456         ah->beacon_interval = 100;
457         ah->enable_32kHz_clock = DONT_USE_32KHZ;
458         ah->slottime = (u32) -1;
459         ah->acktimeout = (u32) -1;
460         ah->ctstimeout = (u32) -1;
461         ah->globaltxtimeout = (u32) -1;
462
463         ah->gbeacon_rate = 0;
464
465         ah->power_mode = ATH9K_PM_UNDEFINED;
466 }
467
468 static int ath9k_hw_rfattach(struct ath_hw *ah)
469 {
470         bool rfStatus = false;
471         int ecode = 0;
472
473         rfStatus = ath9k_hw_init_rf(ah, &ecode);
474         if (!rfStatus) {
475                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
476                         "RF setup failed, status: %u\n", ecode);
477                 return ecode;
478         }
479
480         return 0;
481 }
482
483 static int ath9k_hw_rf_claim(struct ath_hw *ah)
484 {
485         u32 val;
486
487         REG_WRITE(ah, AR_PHY(0), 0x00000007);
488
489         val = ath9k_hw_get_radiorev(ah);
490         switch (val & AR_RADIO_SREV_MAJOR) {
491         case 0:
492                 val = AR_RAD5133_SREV_MAJOR;
493                 break;
494         case AR_RAD5133_SREV_MAJOR:
495         case AR_RAD5122_SREV_MAJOR:
496         case AR_RAD2133_SREV_MAJOR:
497         case AR_RAD2122_SREV_MAJOR:
498                 break;
499         default:
500                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
501                         "Radio Chip Rev 0x%02X not supported\n",
502                         val & AR_RADIO_SREV_MAJOR);
503                 return -EOPNOTSUPP;
504         }
505
506         ah->hw_version.analog5GhzRev = val;
507
508         return 0;
509 }
510
511 static int ath9k_hw_init_macaddr(struct ath_hw *ah)
512 {
513         u32 sum;
514         int i;
515         u16 eeval;
516
517         sum = 0;
518         for (i = 0; i < 3; i++) {
519                 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
520                 sum += eeval;
521                 ah->macaddr[2 * i] = eeval >> 8;
522                 ah->macaddr[2 * i + 1] = eeval & 0xff;
523         }
524         if (sum == 0 || sum == 0xffff * 3)
525                 return -EADDRNOTAVAIL;
526
527         return 0;
528 }
529
530 static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
531 {
532         u32 rxgain_type;
533
534         if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
535                 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
536
537                 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
538                         INIT_INI_ARRAY(&ah->iniModesRxGain,
539                         ar9280Modes_backoff_13db_rxgain_9280_2,
540                         ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
541                 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
542                         INIT_INI_ARRAY(&ah->iniModesRxGain,
543                         ar9280Modes_backoff_23db_rxgain_9280_2,
544                         ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
545                 else
546                         INIT_INI_ARRAY(&ah->iniModesRxGain,
547                         ar9280Modes_original_rxgain_9280_2,
548                         ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
549         } else {
550                 INIT_INI_ARRAY(&ah->iniModesRxGain,
551                         ar9280Modes_original_rxgain_9280_2,
552                         ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
553         }
554 }
555
556 static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
557 {
558         u32 txgain_type;
559
560         if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
561                 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
562
563                 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
564                         INIT_INI_ARRAY(&ah->iniModesTxGain,
565                         ar9280Modes_high_power_tx_gain_9280_2,
566                         ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
567                 else
568                         INIT_INI_ARRAY(&ah->iniModesTxGain,
569                         ar9280Modes_original_tx_gain_9280_2,
570                         ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
571         } else {
572                 INIT_INI_ARRAY(&ah->iniModesTxGain,
573                 ar9280Modes_original_tx_gain_9280_2,
574                 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
575         }
576 }
577
578 static int ath9k_hw_post_init(struct ath_hw *ah)
579 {
580         int ecode;
581
582         if (!ath9k_hw_chip_test(ah))
583                 return -ENODEV;
584
585         ecode = ath9k_hw_rf_claim(ah);
586         if (ecode != 0)
587                 return ecode;
588
589         ecode = ath9k_hw_eeprom_init(ah);
590         if (ecode != 0)
591                 return ecode;
592
593         DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
594                 ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
595
596         ecode = ath9k_hw_rfattach(ah);
597         if (ecode != 0)
598                 return ecode;
599
600         if (!AR_SREV_9100(ah)) {
601                 ath9k_hw_ani_setup(ah);
602                 ath9k_hw_ani_init(ah);
603         }
604
605         return 0;
606 }
607
608 static bool ath9k_hw_devid_supported(u16 devid)
609 {
610         switch (devid) {
611         case AR5416_DEVID_PCI:
612         case AR5416_DEVID_PCIE:
613         case AR5416_AR9100_DEVID:
614         case AR9160_DEVID_PCI:
615         case AR9280_DEVID_PCI:
616         case AR9280_DEVID_PCIE:
617         case AR9285_DEVID_PCIE:
618         case AR5416_DEVID_AR9287_PCI:
619         case AR5416_DEVID_AR9287_PCIE:
620                 return true;
621         default:
622                 break;
623         }
624         return false;
625 }
626
627 static bool ath9k_hw_macversion_supported(u32 macversion)
628 {
629         switch (macversion) {
630         case AR_SREV_VERSION_5416_PCI:
631         case AR_SREV_VERSION_5416_PCIE:
632         case AR_SREV_VERSION_9160:
633         case AR_SREV_VERSION_9100:
634         case AR_SREV_VERSION_9280:
635         case AR_SREV_VERSION_9285:
636         case AR_SREV_VERSION_9287:
637                 return true;
638         /* Not yet */
639         case AR_SREV_VERSION_9271:
640         default:
641                 break;
642         }
643         return false;
644 }
645
646 static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
647 {
648         if (AR_SREV_9160_10_OR_LATER(ah)) {
649                 if (AR_SREV_9280_10_OR_LATER(ah)) {
650                         ah->iq_caldata.calData = &iq_cal_single_sample;
651                         ah->adcgain_caldata.calData =
652                                 &adc_gain_cal_single_sample;
653                         ah->adcdc_caldata.calData =
654                                 &adc_dc_cal_single_sample;
655                         ah->adcdc_calinitdata.calData =
656                                 &adc_init_dc_cal;
657                 } else {
658                         ah->iq_caldata.calData = &iq_cal_multi_sample;
659                         ah->adcgain_caldata.calData =
660                                 &adc_gain_cal_multi_sample;
661                         ah->adcdc_caldata.calData =
662                                 &adc_dc_cal_multi_sample;
663                         ah->adcdc_calinitdata.calData =
664                                 &adc_init_dc_cal;
665                 }
666                 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
667         }
668 }
669
670 static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
671 {
672         if (AR_SREV_9271(ah)) {
673                 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271_1_0,
674                                ARRAY_SIZE(ar9271Modes_9271_1_0), 6);
675                 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271_1_0,
676                                ARRAY_SIZE(ar9271Common_9271_1_0), 2);
677                 return;
678         }
679
680         if (AR_SREV_9287_11_OR_LATER(ah)) {
681                 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
682                                 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
683                 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
684                                 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
685                 if (ah->config.pcie_clock_req)
686                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
687                         ar9287PciePhy_clkreq_off_L1_9287_1_1,
688                         ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
689                 else
690                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
691                         ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
692                         ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
693                                         2);
694         } else if (AR_SREV_9287_10_OR_LATER(ah)) {
695                 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
696                                 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
697                 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
698                                 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
699
700                 if (ah->config.pcie_clock_req)
701                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
702                         ar9287PciePhy_clkreq_off_L1_9287_1_0,
703                         ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
704                 else
705                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
706                         ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
707                         ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
708                                   2);
709         } else if (AR_SREV_9285_12_OR_LATER(ah)) {
710
711
712                 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
713                                ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
714                 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
715                                ARRAY_SIZE(ar9285Common_9285_1_2), 2);
716
717                 if (ah->config.pcie_clock_req) {
718                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
719                         ar9285PciePhy_clkreq_off_L1_9285_1_2,
720                         ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
721                 } else {
722                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
723                         ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
724                         ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
725                                   2);
726                 }
727         } else if (AR_SREV_9285_10_OR_LATER(ah)) {
728                 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
729                                ARRAY_SIZE(ar9285Modes_9285), 6);
730                 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
731                                ARRAY_SIZE(ar9285Common_9285), 2);
732
733                 if (ah->config.pcie_clock_req) {
734                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
735                         ar9285PciePhy_clkreq_off_L1_9285,
736                         ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
737                 } else {
738                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
739                         ar9285PciePhy_clkreq_always_on_L1_9285,
740                         ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
741                 }
742         } else if (AR_SREV_9280_20_OR_LATER(ah)) {
743                 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
744                                ARRAY_SIZE(ar9280Modes_9280_2), 6);
745                 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
746                                ARRAY_SIZE(ar9280Common_9280_2), 2);
747
748                 if (ah->config.pcie_clock_req) {
749                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
750                                ar9280PciePhy_clkreq_off_L1_9280,
751                                ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
752                 } else {
753                         INIT_INI_ARRAY(&ah->iniPcieSerdes,
754                                ar9280PciePhy_clkreq_always_on_L1_9280,
755                                ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
756                 }
757                 INIT_INI_ARRAY(&ah->iniModesAdditional,
758                                ar9280Modes_fast_clock_9280_2,
759                                ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
760         } else if (AR_SREV_9280_10_OR_LATER(ah)) {
761                 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
762                                ARRAY_SIZE(ar9280Modes_9280), 6);
763                 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
764                                ARRAY_SIZE(ar9280Common_9280), 2);
765         } else if (AR_SREV_9160_10_OR_LATER(ah)) {
766                 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
767                                ARRAY_SIZE(ar5416Modes_9160), 6);
768                 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
769                                ARRAY_SIZE(ar5416Common_9160), 2);
770                 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
771                                ARRAY_SIZE(ar5416Bank0_9160), 2);
772                 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
773                                ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
774                 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
775                                ARRAY_SIZE(ar5416Bank1_9160), 2);
776                 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
777                                ARRAY_SIZE(ar5416Bank2_9160), 2);
778                 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
779                                ARRAY_SIZE(ar5416Bank3_9160), 3);
780                 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
781                                ARRAY_SIZE(ar5416Bank6_9160), 3);
782                 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
783                                ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
784                 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
785                                ARRAY_SIZE(ar5416Bank7_9160), 2);
786                 if (AR_SREV_9160_11(ah)) {
787                         INIT_INI_ARRAY(&ah->iniAddac,
788                                        ar5416Addac_91601_1,
789                                        ARRAY_SIZE(ar5416Addac_91601_1), 2);
790                 } else {
791                         INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
792                                        ARRAY_SIZE(ar5416Addac_9160), 2);
793                 }
794         } else if (AR_SREV_9100_OR_LATER(ah)) {
795                 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
796                                ARRAY_SIZE(ar5416Modes_9100), 6);
797                 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
798                                ARRAY_SIZE(ar5416Common_9100), 2);
799                 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
800                                ARRAY_SIZE(ar5416Bank0_9100), 2);
801                 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
802                                ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
803                 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
804                                ARRAY_SIZE(ar5416Bank1_9100), 2);
805                 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
806                                ARRAY_SIZE(ar5416Bank2_9100), 2);
807                 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
808                                ARRAY_SIZE(ar5416Bank3_9100), 3);
809                 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
810                                ARRAY_SIZE(ar5416Bank6_9100), 3);
811                 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
812                                ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
813                 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
814                                ARRAY_SIZE(ar5416Bank7_9100), 2);
815                 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
816                                ARRAY_SIZE(ar5416Addac_9100), 2);
817         } else {
818                 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
819                                ARRAY_SIZE(ar5416Modes), 6);
820                 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
821                                ARRAY_SIZE(ar5416Common), 2);
822                 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
823                                ARRAY_SIZE(ar5416Bank0), 2);
824                 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
825                                ARRAY_SIZE(ar5416BB_RfGain), 3);
826                 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
827                                ARRAY_SIZE(ar5416Bank1), 2);
828                 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
829                                ARRAY_SIZE(ar5416Bank2), 2);
830                 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
831                                ARRAY_SIZE(ar5416Bank3), 3);
832                 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
833                                ARRAY_SIZE(ar5416Bank6), 3);
834                 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
835                                ARRAY_SIZE(ar5416Bank6TPC), 3);
836                 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
837                                ARRAY_SIZE(ar5416Bank7), 2);
838                 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
839                                ARRAY_SIZE(ar5416Addac), 2);
840         }
841 }
842
843 static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
844 {
845         if (AR_SREV_9287_11(ah))
846                 INIT_INI_ARRAY(&ah->iniModesRxGain,
847                 ar9287Modes_rx_gain_9287_1_1,
848                 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
849         else if (AR_SREV_9287_10(ah))
850                 INIT_INI_ARRAY(&ah->iniModesRxGain,
851                 ar9287Modes_rx_gain_9287_1_0,
852                 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
853         else if (AR_SREV_9280_20(ah))
854                 ath9k_hw_init_rxgain_ini(ah);
855
856         if (AR_SREV_9287_11(ah)) {
857                 INIT_INI_ARRAY(&ah->iniModesTxGain,
858                 ar9287Modes_tx_gain_9287_1_1,
859                 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
860         } else if (AR_SREV_9287_10(ah)) {
861                 INIT_INI_ARRAY(&ah->iniModesTxGain,
862                 ar9287Modes_tx_gain_9287_1_0,
863                 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
864         } else if (AR_SREV_9280_20(ah)) {
865                 ath9k_hw_init_txgain_ini(ah);
866         } else if (AR_SREV_9285_12_OR_LATER(ah)) {
867                 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
868
869                 /* txgain table */
870                 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
871                         INIT_INI_ARRAY(&ah->iniModesTxGain,
872                         ar9285Modes_high_power_tx_gain_9285_1_2,
873                         ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
874                 } else {
875                         INIT_INI_ARRAY(&ah->iniModesTxGain,
876                         ar9285Modes_original_tx_gain_9285_1_2,
877                         ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
878                 }
879
880         }
881 }
882
883 static void ath9k_hw_init_11a_eeprom_fix(struct ath_hw *ah)
884 {
885         u32 i, j;
886
887         if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
888             test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
889
890                 /* EEPROM Fixup */
891                 for (i = 0; i < ah->iniModes.ia_rows; i++) {
892                         u32 reg = INI_RA(&ah->iniModes, i, 0);
893
894                         for (j = 1; j < ah->iniModes.ia_columns; j++) {
895                                 u32 val = INI_RA(&ah->iniModes, i, j);
896
897                                 INI_RA(&ah->iniModes, i, j) =
898                                         ath9k_hw_ini_fixup(ah,
899                                                            &ah->eeprom.def,
900                                                            reg, val);
901                         }
902                 }
903         }
904 }
905
906 int ath9k_hw_init(struct ath_hw *ah)
907 {
908         int r = 0;
909
910         if (!ath9k_hw_devid_supported(ah->hw_version.devid))
911                 return -EOPNOTSUPP;
912
913         ath9k_hw_init_defaults(ah);
914         ath9k_hw_init_config(ah);
915
916         if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
917                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
918                 return -EIO;
919         }
920
921         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
922                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
923                 return -EIO;
924         }
925
926         if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
927                 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
928                     (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
929                         ah->config.serialize_regmode =
930                                 SER_REG_MODE_ON;
931                 } else {
932                         ah->config.serialize_regmode =
933                                 SER_REG_MODE_OFF;
934                 }
935         }
936
937         DPRINTF(ah->ah_sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
938                 ah->config.serialize_regmode);
939
940         if (!ath9k_hw_macversion_supported(ah->hw_version.macVersion)) {
941                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
942                         "Mac Chip Rev 0x%02x.%x is not supported by "
943                         "this driver\n", ah->hw_version.macVersion,
944                         ah->hw_version.macRev);
945                 return -EOPNOTSUPP;
946         }
947
948         if (AR_SREV_9100(ah)) {
949                 ah->iq_caldata.calData = &iq_cal_multi_sample;
950                 ah->supp_cals = IQ_MISMATCH_CAL;
951                 ah->is_pciexpress = false;
952         }
953
954         if (AR_SREV_9271(ah))
955                 ah->is_pciexpress = false;
956
957         ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
958
959         ath9k_hw_init_cal_settings(ah);
960
961         ah->ani_function = ATH9K_ANI_ALL;
962         if (AR_SREV_9280_10_OR_LATER(ah))
963                 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
964
965         ath9k_hw_init_mode_regs(ah);
966
967         if (ah->is_pciexpress)
968                 ath9k_hw_configpcipowersave(ah, 0, 0);
969         else
970                 ath9k_hw_disablepcie(ah);
971
972         r = ath9k_hw_post_init(ah);
973         if (r)
974                 return r;
975
976         ath9k_hw_init_mode_gain_regs(ah);
977         ath9k_hw_fill_cap_info(ah);
978         ath9k_hw_init_11a_eeprom_fix(ah);
979
980         r = ath9k_hw_init_macaddr(ah);
981         if (r) {
982                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
983                         "Failed to initialize MAC address\n");
984                 return r;
985         }
986
987         if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
988                 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
989         else
990                 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
991
992         ath9k_init_nfcal_hist_buffer(ah);
993
994         return 0;
995 }
996
997 static void ath9k_hw_init_bb(struct ath_hw *ah,
998                              struct ath9k_channel *chan)
999 {
1000         u32 synthDelay;
1001
1002         synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
1003         if (IS_CHAN_B(chan))
1004                 synthDelay = (4 * synthDelay) / 22;
1005         else
1006                 synthDelay /= 10;
1007
1008         REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1009
1010         udelay(synthDelay + BASE_ACTIVATE_DELAY);
1011 }
1012
1013 static void ath9k_hw_init_qos(struct ath_hw *ah)
1014 {
1015         REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1016         REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1017
1018         REG_WRITE(ah, AR_QOS_NO_ACK,
1019                   SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1020                   SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1021                   SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1022
1023         REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1024         REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1025         REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1026         REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1027         REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1028 }
1029
1030 static void ath9k_hw_init_pll(struct ath_hw *ah,
1031                               struct ath9k_channel *chan)
1032 {
1033         u32 pll;
1034
1035         if (AR_SREV_9100(ah)) {
1036                 if (chan && IS_CHAN_5GHZ(chan))
1037                         pll = 0x1450;
1038                 else
1039                         pll = 0x1458;
1040         } else {
1041                 if (AR_SREV_9280_10_OR_LATER(ah)) {
1042                         pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1043
1044                         if (chan && IS_CHAN_HALF_RATE(chan))
1045                                 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1046                         else if (chan && IS_CHAN_QUARTER_RATE(chan))
1047                                 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1048
1049                         if (chan && IS_CHAN_5GHZ(chan)) {
1050                                 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1051
1052
1053                                 if (AR_SREV_9280_20(ah)) {
1054                                         if (((chan->channel % 20) == 0)
1055                                             || ((chan->channel % 10) == 0))
1056                                                 pll = 0x2850;
1057                                         else
1058                                                 pll = 0x142c;
1059                                 }
1060                         } else {
1061                                 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1062                         }
1063
1064                 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1065
1066                         pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1067
1068                         if (chan && IS_CHAN_HALF_RATE(chan))
1069                                 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1070                         else if (chan && IS_CHAN_QUARTER_RATE(chan))
1071                                 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1072
1073                         if (chan && IS_CHAN_5GHZ(chan))
1074                                 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1075                         else
1076                                 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1077                 } else {
1078                         pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1079
1080                         if (chan && IS_CHAN_HALF_RATE(chan))
1081                                 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1082                         else if (chan && IS_CHAN_QUARTER_RATE(chan))
1083                                 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1084
1085                         if (chan && IS_CHAN_5GHZ(chan))
1086                                 pll |= SM(0xa, AR_RTC_PLL_DIV);
1087                         else
1088                                 pll |= SM(0xb, AR_RTC_PLL_DIV);
1089                 }
1090         }
1091         REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
1092
1093         udelay(RTC_PLL_SETTLE_DELAY);
1094
1095         REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1096 }
1097
1098 static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
1099 {
1100         int rx_chainmask, tx_chainmask;
1101
1102         rx_chainmask = ah->rxchainmask;
1103         tx_chainmask = ah->txchainmask;
1104
1105         switch (rx_chainmask) {
1106         case 0x5:
1107                 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1108                             AR_PHY_SWAP_ALT_CHAIN);
1109         case 0x3:
1110                 if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
1111                         REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1112                         REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1113                         break;
1114                 }
1115         case 0x1:
1116         case 0x2:
1117         case 0x7:
1118                 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1119                 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1120                 break;
1121         default:
1122                 break;
1123         }
1124
1125         REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1126         if (tx_chainmask == 0x5) {
1127                 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1128                             AR_PHY_SWAP_ALT_CHAIN);
1129         }
1130         if (AR_SREV_9100(ah))
1131                 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1132                           REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1133 }
1134
1135 static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
1136                                           enum nl80211_iftype opmode)
1137 {
1138         ah->mask_reg = AR_IMR_TXERR |
1139                 AR_IMR_TXURN |
1140                 AR_IMR_RXERR |
1141                 AR_IMR_RXORN |
1142                 AR_IMR_BCNMISC;
1143
1144         if (ah->config.intr_mitigation)
1145                 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
1146         else
1147                 ah->mask_reg |= AR_IMR_RXOK;
1148
1149         ah->mask_reg |= AR_IMR_TXOK;
1150
1151         if (opmode == NL80211_IFTYPE_AP)
1152                 ah->mask_reg |= AR_IMR_MIB;
1153
1154         REG_WRITE(ah, AR_IMR, ah->mask_reg);
1155         REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1156
1157         if (!AR_SREV_9100(ah)) {
1158                 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1159                 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1160                 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1161         }
1162 }
1163
1164 static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
1165 {
1166         if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
1167                 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
1168                 ah->acktimeout = (u32) -1;
1169                 return false;
1170         } else {
1171                 REG_RMW_FIELD(ah, AR_TIME_OUT,
1172                               AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
1173                 ah->acktimeout = us;
1174                 return true;
1175         }
1176 }
1177
1178 static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1179 {
1180         if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
1181                 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
1182                 ah->ctstimeout = (u32) -1;
1183                 return false;
1184         } else {
1185                 REG_RMW_FIELD(ah, AR_TIME_OUT,
1186                               AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
1187                 ah->ctstimeout = us;
1188                 return true;
1189         }
1190 }
1191
1192 static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
1193 {
1194         if (tu > 0xFFFF) {
1195                 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
1196                         "bad global tx timeout %u\n", tu);
1197                 ah->globaltxtimeout = (u32) -1;
1198                 return false;
1199         } else {
1200                 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
1201                 ah->globaltxtimeout = tu;
1202                 return true;
1203         }
1204 }
1205
1206 static void ath9k_hw_init_user_settings(struct ath_hw *ah)
1207 {
1208         DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1209                 ah->misc_mode);
1210
1211         if (ah->misc_mode != 0)
1212                 REG_WRITE(ah, AR_PCU_MISC,
1213                           REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
1214         if (ah->slottime != (u32) -1)
1215                 ath9k_hw_setslottime(ah, ah->slottime);
1216         if (ah->acktimeout != (u32) -1)
1217                 ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
1218         if (ah->ctstimeout != (u32) -1)
1219                 ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
1220         if (ah->globaltxtimeout != (u32) -1)
1221                 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
1222 }
1223
1224 const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1225 {
1226         return vendorid == ATHEROS_VENDOR_ID ?
1227                 ath9k_hw_devname(devid) : NULL;
1228 }
1229
1230 void ath9k_hw_detach(struct ath_hw *ah)
1231 {
1232         if (!AR_SREV_9100(ah))
1233                 ath9k_hw_ani_disable(ah);
1234
1235         ath9k_hw_rf_free(ah);
1236         ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1237         kfree(ah);
1238         ah = NULL;
1239 }
1240
1241 /*******/
1242 /* INI */
1243 /*******/
1244
1245 static void ath9k_hw_override_ini(struct ath_hw *ah,
1246                                   struct ath9k_channel *chan)
1247 {
1248         u32 val;
1249
1250         if (AR_SREV_9271(ah)) {
1251                 /*
1252                  * Enable spectral scan to solution for issues with stuck
1253                  * beacons on AR9271 1.0. The beacon stuck issue is not seeon on
1254                  * AR9271 1.1
1255                  */
1256                 if (AR_SREV_9271_10(ah)) {
1257                         val = REG_READ(ah, AR_PHY_SPECTRAL_SCAN) | AR_PHY_SPECTRAL_SCAN_ENABLE;
1258                         REG_WRITE(ah, AR_PHY_SPECTRAL_SCAN, val);
1259                 }
1260                 else if (AR_SREV_9271_11(ah))
1261                         /*
1262                          * change AR_PHY_RF_CTL3 setting to fix MAC issue
1263                          * present on AR9271 1.1
1264                          */
1265                         REG_WRITE(ah, AR_PHY_RF_CTL3, 0x3a020001);
1266                 return;
1267         }
1268
1269         /*
1270          * Set the RX_ABORT and RX_DIS and clear if off only after
1271          * RXE is set for MAC. This prevents frames with corrupted
1272          * descriptor status.
1273          */
1274         REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1275
1276
1277         if (!AR_SREV_5416_20_OR_LATER(ah) ||
1278             AR_SREV_9280_10_OR_LATER(ah))
1279                 return;
1280         /*
1281          * Disable BB clock gating
1282          * Necessary to avoid issues on AR5416 2.0
1283          */
1284         REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1285 }
1286
1287 static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
1288                               struct ar5416_eeprom_def *pEepData,
1289                               u32 reg, u32 value)
1290 {
1291         struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1292
1293         switch (ah->hw_version.devid) {
1294         case AR9280_DEVID_PCI:
1295                 if (reg == 0x7894) {
1296                         DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1297                                 "ini VAL: %x  EEPROM: %x\n", value,
1298                                 (pBase->version & 0xff));
1299
1300                         if ((pBase->version & 0xff) > 0x0a) {
1301                                 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1302                                         "PWDCLKIND: %d\n",
1303                                         pBase->pwdclkind);
1304                                 value &= ~AR_AN_TOP2_PWDCLKIND;
1305                                 value |= AR_AN_TOP2_PWDCLKIND &
1306                                         (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1307                         } else {
1308                                 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1309                                         "PWDCLKIND Earlier Rev\n");
1310                         }
1311
1312                         DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1313                                 "final ini VAL: %x\n", value);
1314                 }
1315                 break;
1316         }
1317
1318         return value;
1319 }
1320
1321 static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
1322                               struct ar5416_eeprom_def *pEepData,
1323                               u32 reg, u32 value)
1324 {
1325         if (ah->eep_map == EEP_MAP_4KBITS)
1326                 return value;
1327         else
1328                 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1329 }
1330
1331 static void ath9k_olc_init(struct ath_hw *ah)
1332 {
1333         u32 i;
1334
1335         if (OLC_FOR_AR9287_10_LATER) {
1336                 REG_SET_BIT(ah, AR_PHY_TX_PWRCTRL9,
1337                                 AR_PHY_TX_PWRCTRL9_RES_DC_REMOVAL);
1338                 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TXPC0,
1339                                 AR9287_AN_TXPC0_TXPCMODE,
1340                                 AR9287_AN_TXPC0_TXPCMODE_S,
1341                                 AR9287_AN_TXPC0_TXPCMODE_TEMPSENSE);
1342                 udelay(100);
1343         } else {
1344                 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1345                         ah->originalGain[i] =
1346                                 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1347                                                 AR_PHY_TX_GAIN);
1348                 ah->PDADCdelta = 0;
1349         }
1350 }
1351
1352 static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1353                               struct ath9k_channel *chan)
1354 {
1355         u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1356
1357         if (IS_CHAN_B(chan))
1358                 ctl |= CTL_11B;
1359         else if (IS_CHAN_G(chan))
1360                 ctl |= CTL_11G;
1361         else
1362                 ctl |= CTL_11A;
1363
1364         return ctl;
1365 }
1366
1367 static int ath9k_hw_process_ini(struct ath_hw *ah,
1368                                 struct ath9k_channel *chan,
1369                                 enum ath9k_ht_macmode macmode)
1370 {
1371         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
1372         int i, regWrites = 0;
1373         struct ieee80211_channel *channel = chan->chan;
1374         u32 modesIndex, freqIndex;
1375
1376         switch (chan->chanmode) {
1377         case CHANNEL_A:
1378         case CHANNEL_A_HT20:
1379                 modesIndex = 1;
1380                 freqIndex = 1;
1381                 break;
1382         case CHANNEL_A_HT40PLUS:
1383         case CHANNEL_A_HT40MINUS:
1384                 modesIndex = 2;
1385                 freqIndex = 1;
1386                 break;
1387         case CHANNEL_G:
1388         case CHANNEL_G_HT20:
1389         case CHANNEL_B:
1390                 modesIndex = 4;
1391                 freqIndex = 2;
1392                 break;
1393         case CHANNEL_G_HT40PLUS:
1394         case CHANNEL_G_HT40MINUS:
1395                 modesIndex = 3;
1396                 freqIndex = 2;
1397                 break;
1398
1399         default:
1400                 return -EINVAL;
1401         }
1402
1403         REG_WRITE(ah, AR_PHY(0), 0x00000007);
1404         REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
1405         ah->eep_ops->set_addac(ah, chan);
1406
1407         if (AR_SREV_5416_22_OR_LATER(ah)) {
1408                 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
1409         } else {
1410                 struct ar5416IniArray temp;
1411                 u32 addacSize =
1412                         sizeof(u32) * ah->iniAddac.ia_rows *
1413                         ah->iniAddac.ia_columns;
1414
1415                 memcpy(ah->addac5416_21,
1416                        ah->iniAddac.ia_array, addacSize);
1417
1418                 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
1419
1420                 temp.ia_array = ah->addac5416_21;
1421                 temp.ia_columns = ah->iniAddac.ia_columns;
1422                 temp.ia_rows = ah->iniAddac.ia_rows;
1423                 REG_WRITE_ARRAY(&temp, 1, regWrites);
1424         }
1425
1426         REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1427
1428         for (i = 0; i < ah->iniModes.ia_rows; i++) {
1429                 u32 reg = INI_RA(&ah->iniModes, i, 0);
1430                 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
1431
1432                 REG_WRITE(ah, reg, val);
1433
1434                 if (reg >= 0x7800 && reg < 0x78a0
1435                     && ah->config.analog_shiftreg) {
1436                         udelay(100);
1437                 }
1438
1439                 DO_DELAY(regWrites);
1440         }
1441
1442         if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
1443                 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
1444
1445         if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1446             AR_SREV_9287_10_OR_LATER(ah))
1447                 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
1448
1449         for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1450                 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1451                 u32 val = INI_RA(&ah->iniCommon, i, 1);
1452
1453                 REG_WRITE(ah, reg, val);
1454
1455                 if (reg >= 0x7800 && reg < 0x78a0
1456                     && ah->config.analog_shiftreg) {
1457                         udelay(100);
1458                 }
1459
1460                 DO_DELAY(regWrites);
1461         }
1462
1463         ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1464
1465         if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
1466                 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
1467                                 regWrites);
1468         }
1469
1470         ath9k_hw_override_ini(ah, chan);
1471         ath9k_hw_set_regs(ah, chan, macmode);
1472         ath9k_hw_init_chain_masks(ah);
1473
1474         if (OLC_FOR_AR9280_20_LATER)
1475                 ath9k_olc_init(ah);
1476
1477         ah->eep_ops->set_txpower(ah, chan,
1478                                  ath9k_regd_get_ctl(regulatory, chan),
1479                                  channel->max_antenna_gain * 2,
1480                                  channel->max_power * 2,
1481                                  min((u32) MAX_RATE_POWER,
1482                                  (u32) regulatory->power_limit));
1483
1484         if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1485                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1486                         "ar5416SetRfRegs failed\n");
1487                 return -EIO;
1488         }
1489
1490         return 0;
1491 }
1492
1493 /****************************************/
1494 /* Reset and Channel Switching Routines */
1495 /****************************************/
1496
1497 static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
1498 {
1499         u32 rfMode = 0;
1500
1501         if (chan == NULL)
1502                 return;
1503
1504         rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1505                 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1506
1507         if (!AR_SREV_9280_10_OR_LATER(ah))
1508                 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1509                         AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1510
1511         if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1512                 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1513
1514         REG_WRITE(ah, AR_PHY_MODE, rfMode);
1515 }
1516
1517 static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
1518 {
1519         REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1520 }
1521
1522 static inline void ath9k_hw_set_dma(struct ath_hw *ah)
1523 {
1524         u32 regval;
1525
1526         /*
1527          * set AHB_MODE not to do cacheline prefetches
1528         */
1529         regval = REG_READ(ah, AR_AHB_MODE);
1530         REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1531
1532         /*
1533          * let mac dma reads be in 128 byte chunks
1534          */
1535         regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1536         REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1537
1538         /*
1539          * Restore TX Trigger Level to its pre-reset value.
1540          * The initial value depends on whether aggregation is enabled, and is
1541          * adjusted whenever underruns are detected.
1542          */
1543         REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
1544
1545         /*
1546          * let mac dma writes be in 128 byte chunks
1547          */
1548         regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1549         REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1550
1551         /*
1552          * Setup receive FIFO threshold to hold off TX activities
1553          */
1554         REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1555
1556         /*
1557          * reduce the number of usable entries in PCU TXBUF to avoid
1558          * wrap around issues.
1559          */
1560         if (AR_SREV_9285(ah)) {
1561                 /* For AR9285 the number of Fifos are reduced to half.
1562                  * So set the usable tx buf size also to half to
1563                  * avoid data/delimiter underruns
1564                  */
1565                 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1566                           AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1567         } else if (!AR_SREV_9271(ah)) {
1568                 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1569                           AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1570         }
1571 }
1572
1573 static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
1574 {
1575         u32 val;
1576
1577         val = REG_READ(ah, AR_STA_ID1);
1578         val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1579         switch (opmode) {
1580         case NL80211_IFTYPE_AP:
1581                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1582                           | AR_STA_ID1_KSRCH_MODE);
1583                 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1584                 break;
1585         case NL80211_IFTYPE_ADHOC:
1586         case NL80211_IFTYPE_MESH_POINT:
1587                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1588                           | AR_STA_ID1_KSRCH_MODE);
1589                 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1590                 break;
1591         case NL80211_IFTYPE_STATION:
1592         case NL80211_IFTYPE_MONITOR:
1593                 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1594                 break;
1595         }
1596 }
1597
1598 static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
1599                                                  u32 coef_scaled,
1600                                                  u32 *coef_mantissa,
1601                                                  u32 *coef_exponent)
1602 {
1603         u32 coef_exp, coef_man;
1604
1605         for (coef_exp = 31; coef_exp > 0; coef_exp--)
1606                 if ((coef_scaled >> coef_exp) & 0x1)
1607                         break;
1608
1609         coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1610
1611         coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1612
1613         *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1614         *coef_exponent = coef_exp - 16;
1615 }
1616
1617 static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
1618                                      struct ath9k_channel *chan)
1619 {
1620         u32 coef_scaled, ds_coef_exp, ds_coef_man;
1621         u32 clockMhzScaled = 0x64000000;
1622         struct chan_centers centers;
1623
1624         if (IS_CHAN_HALF_RATE(chan))
1625                 clockMhzScaled = clockMhzScaled >> 1;
1626         else if (IS_CHAN_QUARTER_RATE(chan))
1627                 clockMhzScaled = clockMhzScaled >> 2;
1628
1629         ath9k_hw_get_channel_centers(ah, chan, &centers);
1630         coef_scaled = clockMhzScaled / centers.synth_center;
1631
1632         ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1633                                       &ds_coef_exp);
1634
1635         REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1636                       AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1637         REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1638                       AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1639
1640         coef_scaled = (9 * coef_scaled) / 10;
1641
1642         ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1643                                       &ds_coef_exp);
1644
1645         REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1646                       AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1647         REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1648                       AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1649 }
1650
1651 static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
1652 {
1653         u32 rst_flags;
1654         u32 tmpReg;
1655
1656         if (AR_SREV_9100(ah)) {
1657                 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1658                 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1659                 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1660                 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1661                 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1662         }
1663
1664         REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1665                   AR_RTC_FORCE_WAKE_ON_INT);
1666
1667         if (AR_SREV_9100(ah)) {
1668                 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1669                         AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1670         } else {
1671                 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1672                 if (tmpReg &
1673                     (AR_INTR_SYNC_LOCAL_TIMEOUT |
1674                      AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1675                         REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1676                         REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1677                 } else {
1678                         REG_WRITE(ah, AR_RC, AR_RC_AHB);
1679                 }
1680
1681                 rst_flags = AR_RTC_RC_MAC_WARM;
1682                 if (type == ATH9K_RESET_COLD)
1683                         rst_flags |= AR_RTC_RC_MAC_COLD;
1684         }
1685
1686         REG_WRITE(ah, AR_RTC_RC, rst_flags);
1687         udelay(50);
1688
1689         REG_WRITE(ah, AR_RTC_RC, 0);
1690         if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
1691                 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
1692                         "RTC stuck in MAC reset\n");
1693                 return false;
1694         }
1695
1696         if (!AR_SREV_9100(ah))
1697                 REG_WRITE(ah, AR_RC, 0);
1698
1699         ath9k_hw_init_pll(ah, NULL);
1700
1701         if (AR_SREV_9100(ah))
1702                 udelay(50);
1703
1704         return true;
1705 }
1706
1707 static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
1708 {
1709         REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1710                   AR_RTC_FORCE_WAKE_ON_INT);
1711
1712         if (!AR_SREV_9100(ah))
1713                 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1714
1715         REG_WRITE(ah, AR_RTC_RESET, 0);
1716         udelay(2);
1717
1718         if (!AR_SREV_9100(ah))
1719                 REG_WRITE(ah, AR_RC, 0);
1720
1721         REG_WRITE(ah, AR_RTC_RESET, 1);
1722
1723         if (!ath9k_hw_wait(ah,
1724                            AR_RTC_STATUS,
1725                            AR_RTC_STATUS_M,
1726                            AR_RTC_STATUS_ON,
1727                            AH_WAIT_TIMEOUT)) {
1728                 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
1729                 return false;
1730         }
1731
1732         ath9k_hw_read_revisions(ah);
1733
1734         return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1735 }
1736
1737 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
1738 {
1739         REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1740                   AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1741
1742         switch (type) {
1743         case ATH9K_RESET_POWER_ON:
1744                 return ath9k_hw_set_reset_power_on(ah);
1745         case ATH9K_RESET_WARM:
1746         case ATH9K_RESET_COLD:
1747                 return ath9k_hw_set_reset(ah, type);
1748         default:
1749                 return false;
1750         }
1751 }
1752
1753 static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
1754                               enum ath9k_ht_macmode macmode)
1755 {
1756         u32 phymode;
1757         u32 enableDacFifo = 0;
1758
1759         if (AR_SREV_9285_10_OR_LATER(ah))
1760                 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1761                                          AR_PHY_FC_ENABLE_DAC_FIFO);
1762
1763         phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
1764                 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
1765
1766         if (IS_CHAN_HT40(chan)) {
1767                 phymode |= AR_PHY_FC_DYN2040_EN;
1768
1769                 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1770                     (chan->chanmode == CHANNEL_G_HT40PLUS))
1771                         phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1772
1773                 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
1774                         phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1775         }
1776         REG_WRITE(ah, AR_PHY_TURBO, phymode);
1777
1778         ath9k_hw_set11nmac2040(ah, macmode);
1779
1780         REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1781         REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1782 }
1783
1784 static bool ath9k_hw_chip_reset(struct ath_hw *ah,
1785                                 struct ath9k_channel *chan)
1786 {
1787         if (OLC_FOR_AR9280_20_LATER) {
1788                 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1789                         return false;
1790         } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
1791                 return false;
1792
1793         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1794                 return false;
1795
1796         ah->chip_fullsleep = false;
1797         ath9k_hw_init_pll(ah, chan);
1798         ath9k_hw_set_rfmode(ah, chan);
1799
1800         return true;
1801 }
1802
1803 static bool ath9k_hw_channel_change(struct ath_hw *ah,
1804                                     struct ath9k_channel *chan,
1805                                     enum ath9k_ht_macmode macmode)
1806 {
1807         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
1808         struct ieee80211_channel *channel = chan->chan;
1809         u32 synthDelay, qnum;
1810
1811         for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1812                 if (ath9k_hw_numtxpending(ah, qnum)) {
1813                         DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
1814                                 "Transmit frames pending on queue %d\n", qnum);
1815                         return false;
1816                 }
1817         }
1818
1819         REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1820         if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
1821                            AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
1822                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1823                         "Could not kill baseband RX\n");
1824                 return false;
1825         }
1826
1827         ath9k_hw_set_regs(ah, chan, macmode);
1828
1829         if (AR_SREV_9280_10_OR_LATER(ah)) {
1830                 ath9k_hw_ar9280_set_channel(ah, chan);
1831         } else {
1832                 if (!(ath9k_hw_set_channel(ah, chan))) {
1833                         DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1834                                 "Failed to set channel\n");
1835                         return false;
1836                 }
1837         }
1838
1839         ah->eep_ops->set_txpower(ah, chan,
1840                              ath9k_regd_get_ctl(regulatory, chan),
1841                              channel->max_antenna_gain * 2,
1842                              channel->max_power * 2,
1843                              min((u32) MAX_RATE_POWER,
1844                              (u32) regulatory->power_limit));
1845
1846         synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
1847         if (IS_CHAN_B(chan))
1848                 synthDelay = (4 * synthDelay) / 22;
1849         else
1850                 synthDelay /= 10;
1851
1852         udelay(synthDelay + BASE_ACTIVATE_DELAY);
1853
1854         REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1855
1856         if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1857                 ath9k_hw_set_delta_slope(ah, chan);
1858
1859         if (AR_SREV_9280_10_OR_LATER(ah))
1860                 ath9k_hw_9280_spur_mitigate(ah, chan);
1861         else
1862                 ath9k_hw_spur_mitigate(ah, chan);
1863
1864         if (!chan->oneTimeCalsDone)
1865                 chan->oneTimeCalsDone = true;
1866
1867         return true;
1868 }
1869
1870 static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
1871 {
1872         int bb_spur = AR_NO_SPUR;
1873         int freq;
1874         int bin, cur_bin;
1875         int bb_spur_off, spur_subchannel_sd;
1876         int spur_freq_sd;
1877         int spur_delta_phase;
1878         int denominator;
1879         int upper, lower, cur_vit_mask;
1880         int tmp, newVal;
1881         int i;
1882         int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1883                           AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1884         };
1885         int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1886                          AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1887         };
1888         int inc[4] = { 0, 100, 0, 0 };
1889         struct chan_centers centers;
1890
1891         int8_t mask_m[123];
1892         int8_t mask_p[123];
1893         int8_t mask_amt;
1894         int tmp_mask;
1895         int cur_bb_spur;
1896         bool is2GHz = IS_CHAN_2GHZ(chan);
1897
1898         memset(&mask_m, 0, sizeof(int8_t) * 123);
1899         memset(&mask_p, 0, sizeof(int8_t) * 123);
1900
1901         ath9k_hw_get_channel_centers(ah, chan, &centers);
1902         freq = centers.synth_center;
1903
1904         ah->config.spurmode = SPUR_ENABLE_EEPROM;
1905         for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
1906                 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
1907
1908                 if (is2GHz)
1909                         cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1910                 else
1911                         cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1912
1913                 if (AR_NO_SPUR == cur_bb_spur)
1914                         break;
1915                 cur_bb_spur = cur_bb_spur - freq;
1916
1917                 if (IS_CHAN_HT40(chan)) {
1918                         if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1919                             (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1920                                 bb_spur = cur_bb_spur;
1921                                 break;
1922                         }
1923                 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1924                            (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1925                         bb_spur = cur_bb_spur;
1926                         break;
1927                 }
1928         }
1929
1930         if (AR_NO_SPUR == bb_spur) {
1931                 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1932                             AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1933                 return;
1934         } else {
1935                 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1936                             AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1937         }
1938
1939         bin = bb_spur * 320;
1940
1941         tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1942
1943         newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1944                         AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1945                         AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1946                         AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1947         REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1948
1949         newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1950                   AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1951                   AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1952                   AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1953                   SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1954         REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1955
1956         if (IS_CHAN_HT40(chan)) {
1957                 if (bb_spur < 0) {
1958                         spur_subchannel_sd = 1;
1959                         bb_spur_off = bb_spur + 10;
1960                 } else {
1961                         spur_subchannel_sd = 0;
1962                         bb_spur_off = bb_spur - 10;
1963                 }
1964         } else {
1965                 spur_subchannel_sd = 0;
1966                 bb_spur_off = bb_spur;
1967         }
1968
1969         if (IS_CHAN_HT40(chan))
1970                 spur_delta_phase =
1971                         ((bb_spur * 262144) /
1972                          10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1973         else
1974                 spur_delta_phase =
1975                         ((bb_spur * 524288) /
1976                          10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1977
1978         denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1979         spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1980
1981         newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1982                   SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1983                   SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1984         REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1985
1986         newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1987         REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1988
1989         cur_bin = -6000;
1990         upper = bin + 100;
1991         lower = bin - 100;
1992
1993         for (i = 0; i < 4; i++) {
1994                 int pilot_mask = 0;
1995                 int chan_mask = 0;
1996                 int bp = 0;
1997                 for (bp = 0; bp < 30; bp++) {
1998                         if ((cur_bin > lower) && (cur_bin < upper)) {
1999                                 pilot_mask = pilot_mask | 0x1 << bp;
2000                                 chan_mask = chan_mask | 0x1 << bp;
2001                         }
2002                         cur_bin += 100;
2003                 }
2004                 cur_bin += inc[i];
2005                 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2006                 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2007         }
2008
2009         cur_vit_mask = 6100;
2010         upper = bin + 120;
2011         lower = bin - 120;
2012
2013         for (i = 0; i < 123; i++) {
2014                 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
2015
2016                         /* workaround for gcc bug #37014 */
2017                         volatile int tmp_v = abs(cur_vit_mask - bin);
2018
2019                         if (tmp_v < 75)
2020                                 mask_amt = 1;
2021                         else
2022                                 mask_amt = 0;
2023                         if (cur_vit_mask < 0)
2024                                 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2025                         else
2026                                 mask_p[cur_vit_mask / 100] = mask_amt;
2027                 }
2028                 cur_vit_mask -= 100;
2029         }
2030
2031         tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2032                 | (mask_m[48] << 26) | (mask_m[49] << 24)
2033                 | (mask_m[50] << 22) | (mask_m[51] << 20)
2034                 | (mask_m[52] << 18) | (mask_m[53] << 16)
2035                 | (mask_m[54] << 14) | (mask_m[55] << 12)
2036                 | (mask_m[56] << 10) | (mask_m[57] << 8)
2037                 | (mask_m[58] << 6) | (mask_m[59] << 4)
2038                 | (mask_m[60] << 2) | (mask_m[61] << 0);
2039         REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2040         REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2041
2042         tmp_mask = (mask_m[31] << 28)
2043                 | (mask_m[32] << 26) | (mask_m[33] << 24)
2044                 | (mask_m[34] << 22) | (mask_m[35] << 20)
2045                 | (mask_m[36] << 18) | (mask_m[37] << 16)
2046                 | (mask_m[48] << 14) | (mask_m[39] << 12)
2047                 | (mask_m[40] << 10) | (mask_m[41] << 8)
2048                 | (mask_m[42] << 6) | (mask_m[43] << 4)
2049                 | (mask_m[44] << 2) | (mask_m[45] << 0);
2050         REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2051         REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2052
2053         tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2054                 | (mask_m[18] << 26) | (mask_m[18] << 24)
2055                 | (mask_m[20] << 22) | (mask_m[20] << 20)
2056                 | (mask_m[22] << 18) | (mask_m[22] << 16)
2057                 | (mask_m[24] << 14) | (mask_m[24] << 12)
2058                 | (mask_m[25] << 10) | (mask_m[26] << 8)
2059                 | (mask_m[27] << 6) | (mask_m[28] << 4)
2060                 | (mask_m[29] << 2) | (mask_m[30] << 0);
2061         REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2062         REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2063
2064         tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2065                 | (mask_m[2] << 26) | (mask_m[3] << 24)
2066                 | (mask_m[4] << 22) | (mask_m[5] << 20)
2067                 | (mask_m[6] << 18) | (mask_m[7] << 16)
2068                 | (mask_m[8] << 14) | (mask_m[9] << 12)
2069                 | (mask_m[10] << 10) | (mask_m[11] << 8)
2070                 | (mask_m[12] << 6) | (mask_m[13] << 4)
2071                 | (mask_m[14] << 2) | (mask_m[15] << 0);
2072         REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2073         REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2074
2075         tmp_mask = (mask_p[15] << 28)
2076                 | (mask_p[14] << 26) | (mask_p[13] << 24)
2077                 | (mask_p[12] << 22) | (mask_p[11] << 20)
2078                 | (mask_p[10] << 18) | (mask_p[9] << 16)
2079                 | (mask_p[8] << 14) | (mask_p[7] << 12)
2080                 | (mask_p[6] << 10) | (mask_p[5] << 8)
2081                 | (mask_p[4] << 6) | (mask_p[3] << 4)
2082                 | (mask_p[2] << 2) | (mask_p[1] << 0);
2083         REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2084         REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2085
2086         tmp_mask = (mask_p[30] << 28)
2087                 | (mask_p[29] << 26) | (mask_p[28] << 24)
2088                 | (mask_p[27] << 22) | (mask_p[26] << 20)
2089                 | (mask_p[25] << 18) | (mask_p[24] << 16)
2090                 | (mask_p[23] << 14) | (mask_p[22] << 12)
2091                 | (mask_p[21] << 10) | (mask_p[20] << 8)
2092                 | (mask_p[19] << 6) | (mask_p[18] << 4)
2093                 | (mask_p[17] << 2) | (mask_p[16] << 0);
2094         REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2095         REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2096
2097         tmp_mask = (mask_p[45] << 28)
2098                 | (mask_p[44] << 26) | (mask_p[43] << 24)
2099                 | (mask_p[42] << 22) | (mask_p[41] << 20)
2100                 | (mask_p[40] << 18) | (mask_p[39] << 16)
2101                 | (mask_p[38] << 14) | (mask_p[37] << 12)
2102                 | (mask_p[36] << 10) | (mask_p[35] << 8)
2103                 | (mask_p[34] << 6) | (mask_p[33] << 4)
2104                 | (mask_p[32] << 2) | (mask_p[31] << 0);
2105         REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2106         REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2107
2108         tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2109                 | (mask_p[59] << 26) | (mask_p[58] << 24)
2110                 | (mask_p[57] << 22) | (mask_p[56] << 20)
2111                 | (mask_p[55] << 18) | (mask_p[54] << 16)
2112                 | (mask_p[53] << 14) | (mask_p[52] << 12)
2113                 | (mask_p[51] << 10) | (mask_p[50] << 8)
2114                 | (mask_p[49] << 6) | (mask_p[48] << 4)
2115                 | (mask_p[47] << 2) | (mask_p[46] << 0);
2116         REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2117         REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2118 }
2119
2120 static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
2121 {
2122         int bb_spur = AR_NO_SPUR;
2123         int bin, cur_bin;
2124         int spur_freq_sd;
2125         int spur_delta_phase;
2126         int denominator;
2127         int upper, lower, cur_vit_mask;
2128         int tmp, new;
2129         int i;
2130         int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2131                           AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2132         };
2133         int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2134                          AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2135         };
2136         int inc[4] = { 0, 100, 0, 0 };
2137
2138         int8_t mask_m[123];
2139         int8_t mask_p[123];
2140         int8_t mask_amt;
2141         int tmp_mask;
2142         int cur_bb_spur;
2143         bool is2GHz = IS_CHAN_2GHZ(chan);
2144
2145         memset(&mask_m, 0, sizeof(int8_t) * 123);
2146         memset(&mask_p, 0, sizeof(int8_t) * 123);
2147
2148         for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
2149                 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
2150                 if (AR_NO_SPUR == cur_bb_spur)
2151                         break;
2152                 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2153                 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2154                         bb_spur = cur_bb_spur;
2155                         break;
2156                 }
2157         }
2158
2159         if (AR_NO_SPUR == bb_spur)
2160                 return;
2161
2162         bin = bb_spur * 32;
2163
2164         tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2165         new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2166                      AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2167                      AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2168                      AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2169
2170         REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2171
2172         new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2173                AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2174                AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2175                AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2176                SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2177         REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2178
2179         spur_delta_phase = ((bb_spur * 524288) / 100) &
2180                 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2181
2182         denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2183         spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2184
2185         new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2186                SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2187                SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2188         REG_WRITE(ah, AR_PHY_TIMING11, new);
2189
2190         cur_bin = -6000;
2191         upper = bin + 100;
2192         lower = bin - 100;
2193
2194         for (i = 0; i < 4; i++) {
2195                 int pilot_mask = 0;
2196                 int chan_mask = 0;
2197                 int bp = 0;
2198                 for (bp = 0; bp < 30; bp++) {
2199                         if ((cur_bin > lower) && (cur_bin < upper)) {
2200                                 pilot_mask = pilot_mask | 0x1 << bp;
2201                                 chan_mask = chan_mask | 0x1 << bp;
2202                         }
2203                         cur_bin += 100;
2204                 }
2205                 cur_bin += inc[i];
2206                 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2207                 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2208         }
2209
2210         cur_vit_mask = 6100;
2211         upper = bin + 120;
2212         lower = bin - 120;
2213
2214         for (i = 0; i < 123; i++) {
2215                 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
2216
2217                         /* workaround for gcc bug #37014 */
2218                         volatile int tmp_v = abs(cur_vit_mask - bin);
2219
2220                         if (tmp_v < 75)
2221                                 mask_amt = 1;
2222                         else
2223                                 mask_amt = 0;
2224                         if (cur_vit_mask < 0)
2225                                 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2226                         else
2227                                 mask_p[cur_vit_mask / 100] = mask_amt;
2228                 }
2229                 cur_vit_mask -= 100;
2230         }
2231
2232         tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2233                 | (mask_m[48] << 26) | (mask_m[49] << 24)
2234                 | (mask_m[50] << 22) | (mask_m[51] << 20)
2235                 | (mask_m[52] << 18) | (mask_m[53] << 16)
2236                 | (mask_m[54] << 14) | (mask_m[55] << 12)
2237                 | (mask_m[56] << 10) | (mask_m[57] << 8)
2238                 | (mask_m[58] << 6) | (mask_m[59] << 4)
2239                 | (mask_m[60] << 2) | (mask_m[61] << 0);
2240         REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2241         REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2242
2243         tmp_mask = (mask_m[31] << 28)
2244                 | (mask_m[32] << 26) | (mask_m[33] << 24)
2245                 | (mask_m[34] << 22) | (mask_m[35] << 20)
2246                 | (mask_m[36] << 18) | (mask_m[37] << 16)
2247                 | (mask_m[48] << 14) | (mask_m[39] << 12)
2248                 | (mask_m[40] << 10) | (mask_m[41] << 8)
2249                 | (mask_m[42] << 6) | (mask_m[43] << 4)
2250                 | (mask_m[44] << 2) | (mask_m[45] << 0);
2251         REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2252         REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2253
2254         tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2255                 | (mask_m[18] << 26) | (mask_m[18] << 24)
2256                 | (mask_m[20] << 22) | (mask_m[20] << 20)
2257                 | (mask_m[22] << 18) | (mask_m[22] << 16)
2258                 | (mask_m[24] << 14) | (mask_m[24] << 12)
2259                 | (mask_m[25] << 10) | (mask_m[26] << 8)
2260                 | (mask_m[27] << 6) | (mask_m[28] << 4)
2261                 | (mask_m[29] << 2) | (mask_m[30] << 0);
2262         REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2263         REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2264
2265         tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2266                 | (mask_m[2] << 26) | (mask_m[3] << 24)
2267                 | (mask_m[4] << 22) | (mask_m[5] << 20)
2268                 | (mask_m[6] << 18) | (mask_m[7] << 16)
2269                 | (mask_m[8] << 14) | (mask_m[9] << 12)
2270                 | (mask_m[10] << 10) | (mask_m[11] << 8)
2271                 | (mask_m[12] << 6) | (mask_m[13] << 4)
2272                 | (mask_m[14] << 2) | (mask_m[15] << 0);
2273         REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2274         REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2275
2276         tmp_mask = (mask_p[15] << 28)
2277                 | (mask_p[14] << 26) | (mask_p[13] << 24)
2278                 | (mask_p[12] << 22) | (mask_p[11] << 20)
2279                 | (mask_p[10] << 18) | (mask_p[9] << 16)
2280                 | (mask_p[8] << 14) | (mask_p[7] << 12)
2281                 | (mask_p[6] << 10) | (mask_p[5] << 8)
2282                 | (mask_p[4] << 6) | (mask_p[3] << 4)
2283                 | (mask_p[2] << 2) | (mask_p[1] << 0);
2284         REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2285         REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2286
2287         tmp_mask = (mask_p[30] << 28)
2288                 | (mask_p[29] << 26) | (mask_p[28] << 24)
2289                 | (mask_p[27] << 22) | (mask_p[26] << 20)
2290                 | (mask_p[25] << 18) | (mask_p[24] << 16)
2291                 | (mask_p[23] << 14) | (mask_p[22] << 12)
2292                 | (mask_p[21] << 10) | (mask_p[20] << 8)
2293                 | (mask_p[19] << 6) | (mask_p[18] << 4)
2294                 | (mask_p[17] << 2) | (mask_p[16] << 0);
2295         REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2296         REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2297
2298         tmp_mask = (mask_p[45] << 28)
2299                 | (mask_p[44] << 26) | (mask_p[43] << 24)
2300                 | (mask_p[42] << 22) | (mask_p[41] << 20)
2301                 | (mask_p[40] << 18) | (mask_p[39] << 16)
2302                 | (mask_p[38] << 14) | (mask_p[37] << 12)
2303                 | (mask_p[36] << 10) | (mask_p[35] << 8)
2304                 | (mask_p[34] << 6) | (mask_p[33] << 4)
2305                 | (mask_p[32] << 2) | (mask_p[31] << 0);
2306         REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2307         REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2308
2309         tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2310                 | (mask_p[59] << 26) | (mask_p[58] << 24)
2311                 | (mask_p[57] << 22) | (mask_p[56] << 20)
2312                 | (mask_p[55] << 18) | (mask_p[54] << 16)
2313                 | (mask_p[53] << 14) | (mask_p[52] << 12)
2314                 | (mask_p[51] << 10) | (mask_p[50] << 8)
2315                 | (mask_p[49] << 6) | (mask_p[48] << 4)
2316                 | (mask_p[47] << 2) | (mask_p[46] << 0);
2317         REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2318         REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2319 }
2320
2321 static void ath9k_enable_rfkill(struct ath_hw *ah)
2322 {
2323         REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2324                     AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2325
2326         REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2327                     AR_GPIO_INPUT_MUX2_RFSILENT);
2328
2329         ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2330         REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2331 }
2332
2333 int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
2334                     bool bChannelChange)
2335 {
2336         u32 saveLedState;
2337         struct ath_softc *sc = ah->ah_sc;
2338         struct ath9k_channel *curchan = ah->curchan;
2339         u32 saveDefAntenna;
2340         u32 macStaId1;
2341         u64 tsf = 0;
2342         int i, rx_chainmask, r;
2343
2344         ah->extprotspacing = sc->ht_extprotspacing;
2345         ah->txchainmask = sc->tx_chainmask;
2346         ah->rxchainmask = sc->rx_chainmask;
2347
2348         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2349                 return -EIO;
2350
2351         if (curchan)
2352                 ath9k_hw_getnf(ah, curchan);
2353
2354         if (bChannelChange &&
2355             (ah->chip_fullsleep != true) &&
2356             (ah->curchan != NULL) &&
2357             (chan->channel != ah->curchan->channel) &&
2358             ((chan->channelFlags & CHANNEL_ALL) ==
2359              (ah->curchan->channelFlags & CHANNEL_ALL)) &&
2360             (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
2361                                    !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
2362
2363                 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
2364                         ath9k_hw_loadnf(ah, ah->curchan);
2365                         ath9k_hw_start_nfcal(ah);
2366                         return 0;
2367                 }
2368         }
2369
2370         saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2371         if (saveDefAntenna == 0)
2372                 saveDefAntenna = 1;
2373
2374         macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2375
2376         /* For chips on which RTC reset is done, save TSF before it gets cleared */
2377         if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
2378                 tsf = ath9k_hw_gettsf64(ah);
2379
2380         saveLedState = REG_READ(ah, AR_CFG_LED) &
2381                 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2382                  AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2383
2384         ath9k_hw_mark_phy_inactive(ah);
2385
2386         if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2387                 REG_WRITE(ah,
2388                           AR9271_RESET_POWER_DOWN_CONTROL,
2389                           AR9271_RADIO_RF_RST);
2390                 udelay(50);
2391         }
2392
2393         if (!ath9k_hw_chip_reset(ah, chan)) {
2394                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
2395                 return -EINVAL;
2396         }
2397
2398         if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2399                 ah->htc_reset_init = false;
2400                 REG_WRITE(ah,
2401                           AR9271_RESET_POWER_DOWN_CONTROL,
2402                           AR9271_GATE_MAC_CTL);
2403                 udelay(50);
2404         }
2405
2406         /* Restore TSF */
2407         if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
2408                 ath9k_hw_settsf64(ah, tsf);
2409
2410         if (AR_SREV_9280_10_OR_LATER(ah))
2411                 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
2412
2413         if (AR_SREV_9287_12_OR_LATER(ah)) {
2414                 /* Enable ASYNC FIFO */
2415                 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2416                                 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2417                 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2418                 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2419                                 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2420                 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2421                                 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2422         }
2423         r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2424         if (r)
2425                 return r;
2426
2427         /* Setup MFP options for CCMP */
2428         if (AR_SREV_9280_20_OR_LATER(ah)) {
2429                 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2430                  * frames when constructing CCMP AAD. */
2431                 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2432                               0xc7ff);
2433                 ah->sw_mgmt_crypto = false;
2434         } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2435                 /* Disable hardware crypto for management frames */
2436                 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2437                             AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2438                 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2439                             AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2440                 ah->sw_mgmt_crypto = true;
2441         } else
2442                 ah->sw_mgmt_crypto = true;
2443
2444         if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2445                 ath9k_hw_set_delta_slope(ah, chan);
2446
2447         if (AR_SREV_9280_10_OR_LATER(ah))
2448                 ath9k_hw_9280_spur_mitigate(ah, chan);
2449         else
2450                 ath9k_hw_spur_mitigate(ah, chan);
2451
2452         ah->eep_ops->set_board_values(ah, chan);
2453
2454         ath9k_hw_decrease_chain_power(ah, chan);
2455
2456         REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2457         REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
2458                   | macStaId1
2459                   | AR_STA_ID1_RTS_USE_DEF
2460                   | (ah->config.
2461                      ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
2462                   | ah->sta_id1_defaults);
2463         ath9k_hw_set_operating_mode(ah, ah->opmode);
2464
2465         REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2466         REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
2467
2468         REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2469
2470         REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2471         REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2472                   ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
2473
2474         REG_WRITE(ah, AR_ISR, ~0);
2475
2476         REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2477
2478         if (AR_SREV_9280_10_OR_LATER(ah))
2479                 ath9k_hw_ar9280_set_channel(ah, chan);
2480         else
2481                 if (!(ath9k_hw_set_channel(ah, chan)))
2482                         return -EIO;
2483
2484         for (i = 0; i < AR_NUM_DCU; i++)
2485                 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2486
2487         ah->intr_txqs = 0;
2488         for (i = 0; i < ah->caps.total_queues; i++)
2489                 ath9k_hw_resettxqueue(ah, i);
2490
2491         ath9k_hw_init_interrupt_masks(ah, ah->opmode);
2492         ath9k_hw_init_qos(ah);
2493
2494         if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2495                 ath9k_enable_rfkill(ah);
2496
2497         ath9k_hw_init_user_settings(ah);
2498
2499         if (AR_SREV_9287_12_OR_LATER(ah)) {
2500                 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2501                           AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2502                 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2503                           AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2504                 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2505                           AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2506
2507                 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2508                 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2509
2510                 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2511                             AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2512                 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2513                               AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2514         }
2515         if (AR_SREV_9287_12_OR_LATER(ah)) {
2516                 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2517                                 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2518         }
2519
2520         REG_WRITE(ah, AR_STA_ID1,
2521                   REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2522
2523         ath9k_hw_set_dma(ah);
2524
2525         REG_WRITE(ah, AR_OBS, 8);
2526
2527         if (ah->config.intr_mitigation) {
2528                 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2529                 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2530         }
2531
2532         ath9k_hw_init_bb(ah, chan);
2533
2534         if (!ath9k_hw_init_cal(ah, chan))
2535                 return -EIO;
2536
2537         rx_chainmask = ah->rxchainmask;
2538         if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2539                 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2540                 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2541         }
2542
2543         REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2544
2545         /*
2546          * For big endian systems turn on swapping for descriptors
2547          */
2548         if (AR_SREV_9100(ah)) {
2549                 u32 mask;
2550                 mask = REG_READ(ah, AR_CFG);
2551                 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2552                         DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2553                                 "CFG Byte Swap Set 0x%x\n", mask);
2554                 } else {
2555                         mask =
2556                                 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2557                         REG_WRITE(ah, AR_CFG, mask);
2558                         DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2559                                 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
2560                 }
2561         } else {
2562                 /* Configure AR9271 target WLAN */
2563                 if (AR_SREV_9271(ah))
2564                         REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
2565 #ifdef __BIG_ENDIAN
2566                 else
2567                         REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2568 #endif
2569         }
2570
2571         if (ah->ah_sc->sc_flags & SC_OP_BTCOEX_ENABLED)
2572                 ath9k_hw_btcoex_enable(ah);
2573
2574         return 0;
2575 }
2576
2577 /************************/
2578 /* Key Cache Management */
2579 /************************/
2580
2581 bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
2582 {
2583         u32 keyType;
2584
2585         if (entry >= ah->caps.keycache_size) {
2586                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2587                         "keychache entry %u out of range\n", entry);
2588                 return false;
2589         }
2590
2591         keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
2592
2593         REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2594         REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2595         REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2596         REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2597         REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2598         REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2599         REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2600         REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2601
2602         if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2603                 u16 micentry = entry + 64;
2604
2605                 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2606                 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2607                 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2608                 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2609
2610         }
2611
2612         return true;
2613 }
2614
2615 bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
2616 {
2617         u32 macHi, macLo;
2618
2619         if (entry >= ah->caps.keycache_size) {
2620                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2621                         "keychache entry %u out of range\n", entry);
2622                 return false;
2623         }
2624
2625         if (mac != NULL) {
2626                 macHi = (mac[5] << 8) | mac[4];
2627                 macLo = (mac[3] << 24) |
2628                         (mac[2] << 16) |
2629                         (mac[1] << 8) |
2630                         mac[0];
2631                 macLo >>= 1;
2632                 macLo |= (macHi & 1) << 31;
2633                 macHi >>= 1;
2634         } else {
2635                 macLo = macHi = 0;
2636         }
2637         REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2638         REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
2639
2640         return true;
2641 }
2642
2643 bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
2644                                  const struct ath9k_keyval *k,
2645                                  const u8 *mac)
2646 {
2647         const struct ath9k_hw_capabilities *pCap = &ah->caps;
2648         u32 key0, key1, key2, key3, key4;
2649         u32 keyType;
2650
2651         if (entry >= pCap->keycache_size) {
2652                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2653                         "keycache entry %u out of range\n", entry);
2654                 return false;
2655         }
2656
2657         switch (k->kv_type) {
2658         case ATH9K_CIPHER_AES_OCB:
2659                 keyType = AR_KEYTABLE_TYPE_AES;
2660                 break;
2661         case ATH9K_CIPHER_AES_CCM:
2662                 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2663                         DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2664                                 "AES-CCM not supported by mac rev 0x%x\n",
2665                                 ah->hw_version.macRev);
2666                         return false;
2667                 }
2668                 keyType = AR_KEYTABLE_TYPE_CCM;
2669                 break;
2670         case ATH9K_CIPHER_TKIP:
2671                 keyType = AR_KEYTABLE_TYPE_TKIP;
2672                 if (ATH9K_IS_MIC_ENABLED(ah)
2673                     && entry + 64 >= pCap->keycache_size) {
2674                         DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2675                                 "entry %u inappropriate for TKIP\n", entry);
2676                         return false;
2677                 }
2678                 break;
2679         case ATH9K_CIPHER_WEP:
2680                 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
2681                         DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2682                                 "WEP key length %u too small\n", k->kv_len);
2683                         return false;
2684                 }
2685                 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
2686                         keyType = AR_KEYTABLE_TYPE_40;
2687                 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
2688                         keyType = AR_KEYTABLE_TYPE_104;
2689                 else
2690                         keyType = AR_KEYTABLE_TYPE_128;
2691                 break;
2692         case ATH9K_CIPHER_CLR:
2693                 keyType = AR_KEYTABLE_TYPE_CLR;
2694                 break;
2695         default:
2696                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2697                         "cipher %u not supported\n", k->kv_type);
2698                 return false;
2699         }
2700
2701         key0 = get_unaligned_le32(k->kv_val + 0);
2702         key1 = get_unaligned_le16(k->kv_val + 4);
2703         key2 = get_unaligned_le32(k->kv_val + 6);
2704         key3 = get_unaligned_le16(k->kv_val + 10);
2705         key4 = get_unaligned_le32(k->kv_val + 12);
2706         if (k->kv_len <= WLAN_KEY_LEN_WEP104)
2707                 key4 &= 0xff;
2708
2709         /*
2710          * Note: Key cache registers access special memory area that requires
2711          * two 32-bit writes to actually update the values in the internal
2712          * memory. Consequently, the exact order and pairs used here must be
2713          * maintained.
2714          */
2715
2716         if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2717                 u16 micentry = entry + 64;
2718
2719                 /*
2720                  * Write inverted key[47:0] first to avoid Michael MIC errors
2721                  * on frames that could be sent or received at the same time.
2722                  * The correct key will be written in the end once everything
2723                  * else is ready.
2724                  */
2725                 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2726                 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
2727
2728                 /* Write key[95:48] */
2729                 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2730                 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2731
2732                 /* Write key[127:96] and key type */
2733                 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2734                 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2735
2736                 /* Write MAC address for the entry */
2737                 (void) ath9k_hw_keysetmac(ah, entry, mac);
2738
2739                 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
2740                         /*
2741                          * TKIP uses two key cache entries:
2742                          * Michael MIC TX/RX keys in the same key cache entry
2743                          * (idx = main index + 64):
2744                          * key0 [31:0] = RX key [31:0]
2745                          * key1 [15:0] = TX key [31:16]
2746                          * key1 [31:16] = reserved
2747                          * key2 [31:0] = RX key [63:32]
2748                          * key3 [15:0] = TX key [15:0]
2749                          * key3 [31:16] = reserved
2750                          * key4 [31:0] = TX key [63:32]
2751                          */
2752                         u32 mic0, mic1, mic2, mic3, mic4;
2753
2754                         mic0 = get_unaligned_le32(k->kv_mic + 0);
2755                         mic2 = get_unaligned_le32(k->kv_mic + 4);
2756                         mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2757                         mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2758                         mic4 = get_unaligned_le32(k->kv_txmic + 4);
2759
2760                         /* Write RX[31:0] and TX[31:16] */
2761                         REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2762                         REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
2763
2764                         /* Write RX[63:32] and TX[15:0] */
2765                         REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2766                         REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
2767
2768                         /* Write TX[63:32] and keyType(reserved) */
2769                         REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2770                         REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2771                                   AR_KEYTABLE_TYPE_CLR);
2772
2773                 } else {
2774                         /*
2775                          * TKIP uses four key cache entries (two for group
2776                          * keys):
2777                          * Michael MIC TX/RX keys are in different key cache
2778                          * entries (idx = main index + 64 for TX and
2779                          * main index + 32 + 96 for RX):
2780                          * key0 [31:0] = TX/RX MIC key [31:0]
2781                          * key1 [31:0] = reserved
2782                          * key2 [31:0] = TX/RX MIC key [63:32]
2783                          * key3 [31:0] = reserved
2784                          * key4 [31:0] = reserved
2785                          *
2786                          * Upper layer code will call this function separately
2787                          * for TX and RX keys when these registers offsets are
2788                          * used.
2789                          */
2790                         u32 mic0, mic2;
2791
2792                         mic0 = get_unaligned_le32(k->kv_mic + 0);
2793                         mic2 = get_unaligned_le32(k->kv_mic + 4);
2794
2795                         /* Write MIC key[31:0] */
2796                         REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2797                         REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2798
2799                         /* Write MIC key[63:32] */
2800                         REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2801                         REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2802
2803                         /* Write TX[63:32] and keyType(reserved) */
2804                         REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2805                         REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2806                                   AR_KEYTABLE_TYPE_CLR);
2807                 }
2808
2809                 /* MAC address registers are reserved for the MIC entry */
2810                 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2811                 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
2812
2813                 /*
2814                  * Write the correct (un-inverted) key[47:0] last to enable
2815                  * TKIP now that all other registers are set with correct
2816                  * values.
2817                  */
2818                 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2819                 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2820         } else {
2821                 /* Write key[47:0] */
2822                 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2823                 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2824
2825                 /* Write key[95:48] */
2826                 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2827                 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2828
2829                 /* Write key[127:96] and key type */
2830                 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2831                 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2832
2833                 /* Write MAC address for the entry */
2834                 (void) ath9k_hw_keysetmac(ah, entry, mac);
2835         }
2836
2837         return true;
2838 }
2839
2840 bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
2841 {
2842         if (entry < ah->caps.keycache_size) {
2843                 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2844                 if (val & AR_KEYTABLE_VALID)
2845                         return true;
2846         }
2847         return false;
2848 }
2849
2850 /******************************/
2851 /* Power Management (Chipset) */
2852 /******************************/
2853
2854 static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
2855 {
2856         REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2857         if (setChip) {
2858                 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2859                             AR_RTC_FORCE_WAKE_EN);
2860                 if (!AR_SREV_9100(ah))
2861                         REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2862
2863                 REG_CLR_BIT(ah, (AR_RTC_RESET),
2864                             AR_RTC_RESET_EN);
2865         }
2866 }
2867
2868 static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
2869 {
2870         REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2871         if (setChip) {
2872                 struct ath9k_hw_capabilities *pCap = &ah->caps;
2873
2874                 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2875                         REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2876                                   AR_RTC_FORCE_WAKE_ON_INT);
2877                 } else {
2878                         REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2879                                     AR_RTC_FORCE_WAKE_EN);
2880                 }
2881         }
2882 }
2883
2884 static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
2885 {
2886         u32 val;
2887         int i;
2888
2889         if (setChip) {
2890                 if ((REG_READ(ah, AR_RTC_STATUS) &
2891                      AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2892                         if (ath9k_hw_set_reset_reg(ah,
2893                                            ATH9K_RESET_POWER_ON) != true) {
2894                                 return false;
2895                         }
2896                 }
2897                 if (AR_SREV_9100(ah))
2898                         REG_SET_BIT(ah, AR_RTC_RESET,
2899                                     AR_RTC_RESET_EN);
2900
2901                 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2902                             AR_RTC_FORCE_WAKE_EN);
2903                 udelay(50);
2904
2905                 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2906                         val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2907                         if (val == AR_RTC_STATUS_ON)
2908                                 break;
2909                         udelay(50);
2910                         REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2911                                     AR_RTC_FORCE_WAKE_EN);
2912                 }
2913                 if (i == 0) {
2914                         DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2915                                 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
2916                         return false;
2917                 }
2918         }
2919
2920         REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2921
2922         return true;
2923 }
2924
2925 static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2926                                      enum ath9k_power_mode mode)
2927 {
2928         int status = true, setChip = true;
2929         static const char *modes[] = {
2930                 "AWAKE",
2931                 "FULL-SLEEP",
2932                 "NETWORK SLEEP",
2933                 "UNDEFINED"
2934         };
2935
2936         if (ah->power_mode == mode)
2937                 return status;
2938
2939         DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2940                 modes[ah->power_mode], modes[mode]);
2941
2942         switch (mode) {
2943         case ATH9K_PM_AWAKE:
2944                 status = ath9k_hw_set_power_awake(ah, setChip);
2945                 break;
2946         case ATH9K_PM_FULL_SLEEP:
2947                 ath9k_set_power_sleep(ah, setChip);
2948                 ah->chip_fullsleep = true;
2949                 break;
2950         case ATH9K_PM_NETWORK_SLEEP:
2951                 ath9k_set_power_network_sleep(ah, setChip);
2952                 break;
2953         default:
2954                 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2955                         "Unknown power mode %u\n", mode);
2956                 return false;
2957         }
2958         ah->power_mode = mode;
2959
2960         return status;
2961 }
2962
2963 bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2964 {
2965         unsigned long flags;
2966         bool ret;
2967
2968         spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2969         ret = ath9k_hw_setpower_nolock(ah, mode);
2970         spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
2971
2972         return ret;
2973 }
2974
2975 void ath9k_ps_wakeup(struct ath_softc *sc)
2976 {
2977         unsigned long flags;
2978
2979         spin_lock_irqsave(&sc->sc_pm_lock, flags);
2980         if (++sc->ps_usecount != 1)
2981                 goto unlock;
2982
2983         ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
2984
2985  unlock:
2986         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
2987 }
2988
2989 void ath9k_ps_restore(struct ath_softc *sc)
2990 {
2991         unsigned long flags;
2992
2993         spin_lock_irqsave(&sc->sc_pm_lock, flags);
2994         if (--sc->ps_usecount != 0)
2995                 goto unlock;
2996
2997         if (sc->ps_enabled &&
2998             !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
2999                               SC_OP_WAIT_FOR_CAB |
3000                               SC_OP_WAIT_FOR_PSPOLL_DATA |
3001                               SC_OP_WAIT_FOR_TX_ACK)))
3002                 ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
3003
3004  unlock:
3005         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
3006 }
3007
3008 /*
3009  * Helper for ASPM support.
3010  *
3011  * Disable PLL when in L0s as well as receiver clock when in L1.
3012  * This power saving option must be enabled through the SerDes.
3013  *
3014  * Programming the SerDes must go through the same 288 bit serial shift
3015  * register as the other analog registers.  Hence the 9 writes.
3016  */
3017 void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore, int power_off)
3018 {
3019         u8 i;
3020         u32 val;
3021
3022         if (ah->is_pciexpress != true)
3023                 return;
3024
3025         /* Do not touch SerDes registers */
3026         if (ah->config.pcie_powersave_enable == 2)
3027                 return;
3028
3029         /* Nothing to do on restore for 11N */
3030         if (!restore) {
3031                 if (AR_SREV_9280_20_OR_LATER(ah)) {
3032                         /*
3033                          * AR9280 2.0 or later chips use SerDes values from the
3034                          * initvals.h initialized depending on chipset during
3035                          * ath9k_hw_init()
3036                          */
3037                         for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
3038                                 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
3039                                           INI_RA(&ah->iniPcieSerdes, i, 1));
3040                         }
3041                 } else if (AR_SREV_9280(ah) &&
3042                            (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
3043                         REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
3044                         REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
3045
3046                         /* RX shut off when elecidle is asserted */
3047                         REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
3048                         REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
3049                         REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
3050
3051                         /* Shut off CLKREQ active in L1 */
3052                         if (ah->config.pcie_clock_req)
3053                                 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
3054                         else
3055                                 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
3056
3057                         REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3058                         REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3059                         REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
3060
3061                         /* Load the new settings */
3062                         REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
3063
3064                 } else {
3065                         REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
3066                         REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
3067
3068                         /* RX shut off when elecidle is asserted */
3069                         REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
3070                         REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
3071                         REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
3072
3073                         /*
3074                          * Ignore ah->ah_config.pcie_clock_req setting for
3075                          * pre-AR9280 11n
3076                          */
3077                         REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
3078
3079                         REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
3080                         REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
3081                         REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
3082
3083                         /* Load the new settings */
3084                         REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
3085                 }
3086
3087                 udelay(1000);
3088
3089                 /* set bit 19 to allow forcing of pcie core into L1 state */
3090                 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
3091
3092                 /* Several PCIe massages to ensure proper behaviour */
3093                 if (ah->config.pcie_waen) {
3094                         val = ah->config.pcie_waen;
3095                         if (!power_off)
3096                                 val &= (~AR_WA_D3_L1_DISABLE);
3097                 } else {
3098                         if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
3099                             AR_SREV_9287(ah)) {
3100                                 val = AR9285_WA_DEFAULT;
3101                                 if (!power_off)
3102                                         val &= (~AR_WA_D3_L1_DISABLE);
3103                         } else if (AR_SREV_9280(ah)) {
3104                                 /*
3105                                  * On AR9280 chips bit 22 of 0x4004 needs to be
3106                                  * set otherwise card may disappear.
3107                                  */
3108                                 val = AR9280_WA_DEFAULT;
3109                                 if (!power_off)
3110                                         val &= (~AR_WA_D3_L1_DISABLE);
3111                         } else
3112                                 val = AR_WA_DEFAULT;
3113                 }
3114
3115                 REG_WRITE(ah, AR_WA, val);
3116         }
3117
3118         if (power_off) {
3119                 /*
3120                  * Set PCIe workaround bits
3121                  * bit 14 in WA register (disable L1) should only
3122                  * be set when device enters D3 and be cleared
3123                  * when device comes back to D0.
3124                  */
3125                 if (ah->config.pcie_waen) {
3126                         if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
3127                                 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
3128                 } else {
3129                         if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
3130                               AR_SREV_9287(ah)) &&
3131                              (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
3132                             (AR_SREV_9280(ah) &&
3133                              (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
3134                                 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
3135                         }
3136                 }
3137         }
3138 }
3139
3140 /**********************/
3141 /* Interrupt Handling */
3142 /**********************/
3143
3144 bool ath9k_hw_intrpend(struct ath_hw *ah)
3145 {
3146         u32 host_isr;
3147
3148         if (AR_SREV_9100(ah))
3149                 return true;
3150
3151         host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
3152         if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
3153                 return true;
3154
3155         host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
3156         if ((host_isr & AR_INTR_SYNC_DEFAULT)
3157             && (host_isr != AR_INTR_SPURIOUS))
3158                 return true;
3159
3160         return false;
3161 }
3162
3163 bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
3164 {
3165         u32 isr = 0;
3166         u32 mask2 = 0;
3167         struct ath9k_hw_capabilities *pCap = &ah->caps;
3168         u32 sync_cause = 0;
3169         bool fatal_int = false;
3170
3171         if (!AR_SREV_9100(ah)) {
3172                 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
3173                         if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
3174                             == AR_RTC_STATUS_ON) {
3175                                 isr = REG_READ(ah, AR_ISR);
3176                         }
3177                 }
3178
3179                 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
3180                         AR_INTR_SYNC_DEFAULT;
3181
3182                 *masked = 0;
3183
3184                 if (!isr && !sync_cause)
3185                         return false;
3186         } else {
3187                 *masked = 0;
3188                 isr = REG_READ(ah, AR_ISR);
3189         }
3190
3191         if (isr) {
3192                 if (isr & AR_ISR_BCNMISC) {
3193                         u32 isr2;
3194                         isr2 = REG_READ(ah, AR_ISR_S2);
3195                         if (isr2 & AR_ISR_S2_TIM)
3196                                 mask2 |= ATH9K_INT_TIM;
3197                         if (isr2 & AR_ISR_S2_DTIM)
3198                                 mask2 |= ATH9K_INT_DTIM;
3199                         if (isr2 & AR_ISR_S2_DTIMSYNC)
3200                                 mask2 |= ATH9K_INT_DTIMSYNC;
3201                         if (isr2 & (AR_ISR_S2_CABEND))
3202                                 mask2 |= ATH9K_INT_CABEND;
3203                         if (isr2 & AR_ISR_S2_GTT)
3204                                 mask2 |= ATH9K_INT_GTT;
3205                         if (isr2 & AR_ISR_S2_CST)
3206                                 mask2 |= ATH9K_INT_CST;
3207                         if (isr2 & AR_ISR_S2_TSFOOR)
3208                                 mask2 |= ATH9K_INT_TSFOOR;
3209                 }
3210
3211                 isr = REG_READ(ah, AR_ISR_RAC);
3212                 if (isr == 0xffffffff) {
3213                         *masked = 0;
3214                         return false;
3215                 }
3216
3217                 *masked = isr & ATH9K_INT_COMMON;
3218
3219                 if (ah->config.intr_mitigation) {
3220                         if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
3221                                 *masked |= ATH9K_INT_RX;
3222                 }
3223
3224                 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
3225                         *masked |= ATH9K_INT_RX;
3226                 if (isr &
3227                     (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
3228                      AR_ISR_TXEOL)) {
3229                         u32 s0_s, s1_s;
3230
3231                         *masked |= ATH9K_INT_TX;
3232
3233                         s0_s = REG_READ(ah, AR_ISR_S0_S);
3234                         ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
3235                         ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
3236
3237                         s1_s = REG_READ(ah, AR_ISR_S1_S);
3238                         ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
3239                         ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
3240                 }
3241
3242                 if (isr & AR_ISR_RXORN) {
3243                         DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
3244                                 "receive FIFO overrun interrupt\n");
3245                 }
3246
3247                 if (!AR_SREV_9100(ah)) {
3248                         if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
3249                                 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
3250                                 if (isr5 & AR_ISR_S5_TIM_TIMER)
3251                                         *masked |= ATH9K_INT_TIM_TIMER;
3252                         }
3253                 }
3254
3255                 *masked |= mask2;
3256         }
3257
3258         if (AR_SREV_9100(ah))
3259                 return true;
3260
3261         if (isr & AR_ISR_GENTMR) {
3262                 u32 s5_s;
3263
3264                 s5_s = REG_READ(ah, AR_ISR_S5_S);
3265                 if (isr & AR_ISR_GENTMR) {
3266                         ah->intr_gen_timer_trigger =
3267                                 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
3268
3269                         ah->intr_gen_timer_thresh =
3270                                 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
3271
3272                         if (ah->intr_gen_timer_trigger)
3273                                 *masked |= ATH9K_INT_GENTIMER;
3274
3275                 }
3276         }
3277
3278         if (sync_cause) {
3279                 fatal_int =
3280                         (sync_cause &
3281                          (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
3282                         ? true : false;
3283
3284                 if (fatal_int) {
3285                         if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
3286                                 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
3287                                         "received PCI FATAL interrupt\n");
3288                         }
3289                         if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
3290                                 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
3291                                         "received PCI PERR interrupt\n");
3292                         }
3293                         *masked |= ATH9K_INT_FATAL;
3294                 }
3295                 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
3296                         DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
3297                                 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
3298                         REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
3299                         REG_WRITE(ah, AR_RC, 0);
3300                         *masked |= ATH9K_INT_FATAL;
3301                 }
3302                 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
3303                         DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
3304                                 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
3305                 }
3306
3307                 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
3308                 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
3309         }
3310
3311         return true;
3312 }
3313
3314 enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
3315 {
3316         u32 omask = ah->mask_reg;
3317         u32 mask, mask2;
3318         struct ath9k_hw_capabilities *pCap = &ah->caps;
3319
3320         DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
3321
3322         if (omask & ATH9K_INT_GLOBAL) {
3323                 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
3324                 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
3325                 (void) REG_READ(ah, AR_IER);
3326                 if (!AR_SREV_9100(ah)) {
3327                         REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
3328                         (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
3329
3330                         REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
3331                         (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
3332                 }
3333         }
3334
3335         mask = ints & ATH9K_INT_COMMON;
3336         mask2 = 0;
3337
3338         if (ints & ATH9K_INT_TX) {
3339                 if (ah->txok_interrupt_mask)
3340                         mask |= AR_IMR_TXOK;
3341                 if (ah->txdesc_interrupt_mask)
3342                         mask |= AR_IMR_TXDESC;
3343                 if (ah->txerr_interrupt_mask)
3344                         mask |= AR_IMR_TXERR;
3345                 if (ah->txeol_interrupt_mask)
3346                         mask |= AR_IMR_TXEOL;
3347         }
3348         if (ints & ATH9K_INT_RX) {
3349                 mask |= AR_IMR_RXERR;
3350                 if (ah->config.intr_mitigation)
3351                         mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
3352                 else
3353                         mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
3354                 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
3355                         mask |= AR_IMR_GENTMR;
3356         }
3357
3358         if (ints & (ATH9K_INT_BMISC)) {
3359                 mask |= AR_IMR_BCNMISC;
3360                 if (ints & ATH9K_INT_TIM)
3361                         mask2 |= AR_IMR_S2_TIM;
3362                 if (ints & ATH9K_INT_DTIM)
3363                         mask2 |= AR_IMR_S2_DTIM;
3364                 if (ints & ATH9K_INT_DTIMSYNC)
3365                         mask2 |= AR_IMR_S2_DTIMSYNC;
3366                 if (ints & ATH9K_INT_CABEND)
3367                         mask2 |= AR_IMR_S2_CABEND;
3368                 if (ints & ATH9K_INT_TSFOOR)
3369                         mask2 |= AR_IMR_S2_TSFOOR;
3370         }
3371
3372         if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3373                 mask |= AR_IMR_BCNMISC;
3374                 if (ints & ATH9K_INT_GTT)
3375                         mask2 |= AR_IMR_S2_GTT;
3376                 if (ints & ATH9K_INT_CST)
3377                         mask2 |= AR_IMR_S2_CST;
3378         }
3379
3380         DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
3381         REG_WRITE(ah, AR_IMR, mask);
3382         mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3383                                            AR_IMR_S2_DTIM |
3384                                            AR_IMR_S2_DTIMSYNC |
3385                                            AR_IMR_S2_CABEND |
3386                                            AR_IMR_S2_CABTO |
3387                                            AR_IMR_S2_TSFOOR |
3388                                            AR_IMR_S2_GTT | AR_IMR_S2_CST);
3389         REG_WRITE(ah, AR_IMR_S2, mask | mask2);
3390         ah->mask_reg = ints;
3391
3392         if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
3393                 if (ints & ATH9K_INT_TIM_TIMER)
3394                         REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3395                 else
3396                         REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3397         }
3398
3399         if (ints & ATH9K_INT_GLOBAL) {
3400                 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
3401                 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3402                 if (!AR_SREV_9100(ah)) {
3403                         REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3404                                   AR_INTR_MAC_IRQ);
3405                         REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3406
3407
3408                         REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3409                                   AR_INTR_SYNC_DEFAULT);
3410                         REG_WRITE(ah, AR_INTR_SYNC_MASK,
3411                                   AR_INTR_SYNC_DEFAULT);
3412                 }
3413                 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3414                          REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3415         }
3416
3417         return omask;
3418 }
3419
3420 /*******************/
3421 /* Beacon Handling */
3422 /*******************/
3423
3424 void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
3425 {
3426         int flags = 0;
3427
3428         ah->beacon_interval = beacon_period;
3429
3430         switch (ah->opmode) {
3431         case NL80211_IFTYPE_STATION:
3432         case NL80211_IFTYPE_MONITOR:
3433                 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3434                 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3435                 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3436                 flags |= AR_TBTT_TIMER_EN;
3437                 break;
3438         case NL80211_IFTYPE_ADHOC:
3439         case NL80211_IFTYPE_MESH_POINT:
3440                 REG_SET_BIT(ah, AR_TXCFG,
3441                             AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3442                 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3443                           TU_TO_USEC(next_beacon +
3444                                      (ah->atim_window ? ah->
3445                                       atim_window : 1)));
3446                 flags |= AR_NDP_TIMER_EN;
3447         case NL80211_IFTYPE_AP:
3448                 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3449                 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3450                           TU_TO_USEC(next_beacon -
3451                                      ah->config.
3452                                      dma_beacon_response_time));
3453                 REG_WRITE(ah, AR_NEXT_SWBA,
3454                           TU_TO_USEC(next_beacon -
3455                                      ah->config.
3456                                      sw_beacon_response_time));
3457                 flags |=
3458                         AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3459                 break;
3460         default:
3461                 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3462                         "%s: unsupported opmode: %d\n",
3463                         __func__, ah->opmode);
3464                 return;
3465                 break;
3466         }
3467
3468         REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3469         REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3470         REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3471         REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3472
3473         beacon_period &= ~ATH9K_BEACON_ENA;
3474         if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3475                 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3476                 ath9k_hw_reset_tsf(ah);
3477         }
3478
3479         REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3480 }
3481
3482 void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
3483                                     const struct ath9k_beacon_state *bs)
3484 {
3485         u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
3486         struct ath9k_hw_capabilities *pCap = &ah->caps;
3487
3488         REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3489
3490         REG_WRITE(ah, AR_BEACON_PERIOD,
3491                   TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3492         REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3493                   TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3494
3495         REG_RMW_FIELD(ah, AR_RSSI_THR,
3496                       AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3497
3498         beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3499
3500         if (bs->bs_sleepduration > beaconintval)
3501                 beaconintval = bs->bs_sleepduration;
3502
3503         dtimperiod = bs->bs_dtimperiod;
3504         if (bs->bs_sleepduration > dtimperiod)
3505                 dtimperiod = bs->bs_sleepduration;
3506
3507         if (beaconintval == dtimperiod)
3508                 nextTbtt = bs->bs_nextdtim;
3509         else
3510                 nextTbtt = bs->bs_nexttbtt;
3511
3512         DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3513         DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3514         DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3515         DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
3516
3517         REG_WRITE(ah, AR_NEXT_DTIM,
3518                   TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3519         REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3520
3521         REG_WRITE(ah, AR_SLEEP1,
3522                   SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3523                   | AR_SLEEP1_ASSUME_DTIM);
3524
3525         if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
3526                 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3527         else
3528                 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3529
3530         REG_WRITE(ah, AR_SLEEP2,
3531                   SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3532
3533         REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3534         REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3535
3536         REG_SET_BIT(ah, AR_TIMER_MODE,
3537                     AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3538                     AR_DTIM_TIMER_EN);
3539
3540         /* TSF Out of Range Threshold */
3541         REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
3542 }
3543
3544 /*******************/
3545 /* HW Capabilities */
3546 /*******************/
3547
3548 void ath9k_hw_fill_cap_info(struct ath_hw *ah)
3549 {
3550         struct ath9k_hw_capabilities *pCap = &ah->caps;
3551         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
3552         struct ath_btcoex_info *btcoex_info = &ah->ah_sc->btcoex_info;
3553
3554         u16 capField = 0, eeval;
3555
3556         eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
3557         regulatory->current_rd = eeval;
3558
3559         eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
3560         if (AR_SREV_9285_10_OR_LATER(ah))
3561                 eeval |= AR9285_RDEXT_DEFAULT;
3562         regulatory->current_rd_ext = eeval;
3563
3564         capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
3565
3566         if (ah->opmode != NL80211_IFTYPE_AP &&
3567             ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
3568                 if (regulatory->current_rd == 0x64 ||
3569                     regulatory->current_rd == 0x65)
3570                         regulatory->current_rd += 5;
3571                 else if (regulatory->current_rd == 0x41)
3572                         regulatory->current_rd = 0x43;
3573                 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
3574                         "regdomain mapped to 0x%x\n", regulatory->current_rd);
3575         }
3576
3577         eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
3578         bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
3579
3580         if (eeval & AR5416_OPFLAGS_11A) {
3581                 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
3582                 if (ah->config.ht_enable) {
3583                         if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3584                                 set_bit(ATH9K_MODE_11NA_HT20,
3585                                         pCap->wireless_modes);
3586                         if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3587                                 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3588                                         pCap->wireless_modes);
3589                                 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3590                                         pCap->wireless_modes);
3591                         }
3592                 }
3593         }
3594
3595         if (eeval & AR5416_OPFLAGS_11G) {
3596                 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
3597                 if (ah->config.ht_enable) {
3598                         if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3599                                 set_bit(ATH9K_MODE_11NG_HT20,
3600                                         pCap->wireless_modes);
3601                         if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3602                                 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3603                                         pCap->wireless_modes);
3604                                 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3605                                         pCap->wireless_modes);
3606                         }
3607                 }
3608         }
3609
3610         pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
3611         /*
3612          * For AR9271 we will temporarilly uses the rx chainmax as read from
3613          * the EEPROM.
3614          */
3615         if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
3616             !(eeval & AR5416_OPFLAGS_11A) &&
3617             !(AR_SREV_9271(ah)))
3618                 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
3619                 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
3620         else
3621                 /* Use rx_chainmask from EEPROM. */
3622                 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
3623
3624         if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
3625                 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
3626
3627         pCap->low_2ghz_chan = 2312;
3628         pCap->high_2ghz_chan = 2732;
3629
3630         pCap->low_5ghz_chan = 4920;
3631         pCap->high_5ghz_chan = 6100;
3632
3633         pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3634         pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3635         pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3636
3637         pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3638         pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3639         pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3640
3641         if (ah->config.ht_enable)
3642                 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3643         else
3644                 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3645
3646         pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3647         pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3648         pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3649         pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3650
3651         if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3652                 pCap->total_queues =
3653                         MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3654         else
3655                 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3656
3657         if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3658                 pCap->keycache_size =
3659                         1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3660         else
3661                 pCap->keycache_size = AR_KEYTABLE_SIZE;
3662
3663         pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
3664         pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3665
3666         if (AR_SREV_9285_10_OR_LATER(ah))
3667                 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3668         else if (AR_SREV_9280_10_OR_LATER(ah))
3669                 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3670         else
3671                 pCap->num_gpio_pins = AR_NUM_GPIO;
3672
3673         if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3674                 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3675                 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3676         } else {
3677                 pCap->rts_aggr_limit = (8 * 1024);
3678         }
3679
3680         pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3681
3682 #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
3683         ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
3684         if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
3685                 ah->rfkill_gpio =
3686                         MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
3687                 ah->rfkill_polarity =
3688                         MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
3689
3690                 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3691         }
3692 #endif
3693
3694         if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
3695             (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
3696             (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
3697             (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
3698             (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
3699             (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
3700                 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3701         else
3702                 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3703
3704         if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
3705                 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3706         else
3707                 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3708
3709         if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
3710                 pCap->reg_cap =
3711                         AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3712                         AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3713                         AR_EEPROM_EEREGCAP_EN_KK_U2 |
3714                         AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3715         } else {
3716                 pCap->reg_cap =
3717                         AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3718                         AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3719         }
3720
3721         pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3722
3723         pCap->num_antcfg_5ghz =
3724                 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
3725         pCap->num_antcfg_2ghz =
3726                 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
3727
3728         if (AR_SREV_9280_10_OR_LATER(ah) &&
3729             ath_btcoex_supported(ah->hw_version.subsysid)) {
3730                 btcoex_info->btactive_gpio = ATH_BTACTIVE_GPIO;
3731                 btcoex_info->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
3732
3733                 if (AR_SREV_9285(ah)) {
3734                         btcoex_info->btcoex_scheme = ATH_BTCOEX_CFG_3WIRE;
3735                         btcoex_info->btpriority_gpio = ATH_BTPRIORITY_GPIO;
3736                 } else {
3737                         btcoex_info->btcoex_scheme = ATH_BTCOEX_CFG_2WIRE;
3738                 }
3739         } else {
3740                 btcoex_info->btcoex_scheme = ATH_BTCOEX_CFG_NONE;
3741         }
3742 }
3743
3744 bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
3745                             u32 capability, u32 *result)
3746 {
3747         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
3748         switch (type) {
3749         case ATH9K_CAP_CIPHER:
3750                 switch (capability) {
3751                 case ATH9K_CIPHER_AES_CCM:
3752                 case ATH9K_CIPHER_AES_OCB:
3753                 case ATH9K_CIPHER_TKIP:
3754                 case ATH9K_CIPHER_WEP:
3755                 case ATH9K_CIPHER_MIC:
3756                 case ATH9K_CIPHER_CLR:
3757                         return true;
3758                 default:
3759                         return false;
3760                 }
3761         case ATH9K_CAP_TKIP_MIC:
3762                 switch (capability) {
3763                 case 0:
3764                         return true;
3765                 case 1:
3766                         return (ah->sta_id1_defaults &
3767                                 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3768                         false;
3769                 }
3770         case ATH9K_CAP_TKIP_SPLIT:
3771                 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
3772                         false : true;
3773         case ATH9K_CAP_DIVERSITY:
3774                 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3775                         AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3776                         true : false;
3777         case ATH9K_CAP_MCAST_KEYSRCH:
3778                 switch (capability) {
3779                 case 0:
3780                         return true;
3781                 case 1:
3782                         if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3783                                 return false;
3784                         } else {
3785                                 return (ah->sta_id1_defaults &
3786                                         AR_STA_ID1_MCAST_KSRCH) ? true :
3787                                         false;
3788                         }
3789                 }
3790                 return false;
3791         case ATH9K_CAP_TXPOW:
3792                 switch (capability) {
3793                 case 0:
3794                         return 0;
3795                 case 1:
3796                         *result = regulatory->power_limit;
3797                         return 0;
3798                 case 2:
3799                         *result = regulatory->max_power_level;
3800                         return 0;
3801                 case 3:
3802                         *result = regulatory->tp_scale;
3803                         return 0;
3804                 }
3805                 return false;
3806         case ATH9K_CAP_DS:
3807                 return (AR_SREV_9280_20_OR_LATER(ah) &&
3808                         (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
3809                         ? false : true;
3810         default:
3811                 return false;
3812         }
3813 }
3814
3815 bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
3816                             u32 capability, u32 setting, int *status)
3817 {
3818         u32 v;
3819
3820         switch (type) {
3821         case ATH9K_CAP_TKIP_MIC:
3822                 if (setting)
3823                         ah->sta_id1_defaults |=
3824                                 AR_STA_ID1_CRPT_MIC_ENABLE;
3825                 else
3826                         ah->sta_id1_defaults &=
3827                                 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3828                 return true;
3829         case ATH9K_CAP_DIVERSITY:
3830                 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3831                 if (setting)
3832                         v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3833                 else
3834                         v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3835                 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3836                 return true;
3837         case ATH9K_CAP_MCAST_KEYSRCH:
3838                 if (setting)
3839                         ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
3840                 else
3841                         ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
3842                 return true;
3843         default:
3844                 return false;
3845         }
3846 }
3847
3848 /****************************/
3849 /* GPIO / RFKILL / Antennae */
3850 /****************************/
3851
3852 static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
3853                                          u32 gpio, u32 type)
3854 {
3855         int addr;
3856         u32 gpio_shift, tmp;
3857
3858         if (gpio > 11)
3859                 addr = AR_GPIO_OUTPUT_MUX3;
3860         else if (gpio > 5)
3861                 addr = AR_GPIO_OUTPUT_MUX2;
3862         else
3863                 addr = AR_GPIO_OUTPUT_MUX1;
3864
3865         gpio_shift = (gpio % 6) * 5;
3866
3867         if (AR_SREV_9280_20_OR_LATER(ah)
3868             || (addr != AR_GPIO_OUTPUT_MUX1)) {
3869                 REG_RMW(ah, addr, (type << gpio_shift),
3870                         (0x1f << gpio_shift));
3871         } else {
3872                 tmp = REG_READ(ah, addr);
3873                 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3874                 tmp &= ~(0x1f << gpio_shift);
3875                 tmp |= (type << gpio_shift);
3876                 REG_WRITE(ah, addr, tmp);
3877         }
3878 }
3879
3880 void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
3881 {
3882         u32 gpio_shift;
3883
3884         ASSERT(gpio < ah->caps.num_gpio_pins);
3885
3886         gpio_shift = gpio << 1;
3887
3888         REG_RMW(ah,
3889                 AR_GPIO_OE_OUT,
3890                 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3891                 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3892 }
3893
3894 u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
3895 {
3896 #define MS_REG_READ(x, y) \
3897         (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3898
3899         if (gpio >= ah->caps.num_gpio_pins)
3900                 return 0xffffffff;
3901
3902         if (AR_SREV_9287_10_OR_LATER(ah))
3903                 return MS_REG_READ(AR9287, gpio) != 0;
3904         else if (AR_SREV_9285_10_OR_LATER(ah))
3905                 return MS_REG_READ(AR9285, gpio) != 0;
3906         else if (AR_SREV_9280_10_OR_LATER(ah))
3907                 return MS_REG_READ(AR928X, gpio) != 0;
3908         else
3909                 return MS_REG_READ(AR, gpio) != 0;
3910 }
3911
3912 void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
3913                          u32 ah_signal_type)
3914 {
3915         u32 gpio_shift;
3916
3917         ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3918
3919         gpio_shift = 2 * gpio;
3920
3921         REG_RMW(ah,
3922                 AR_GPIO_OE_OUT,
3923                 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3924                 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3925 }
3926
3927 void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
3928 {
3929         REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3930                 AR_GPIO_BIT(gpio));
3931 }
3932
3933 u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
3934 {
3935         return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3936 }
3937
3938 void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
3939 {
3940         REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3941 }
3942
3943 bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
3944                                enum ath9k_ant_setting settings,
3945                                struct ath9k_channel *chan,
3946                                u8 *tx_chainmask,
3947                                u8 *rx_chainmask,
3948                                u8 *antenna_cfgd)
3949 {
3950         static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3951
3952         if (AR_SREV_9280(ah)) {
3953                 if (!tx_chainmask_cfg) {
3954
3955                         tx_chainmask_cfg = *tx_chainmask;
3956                         rx_chainmask_cfg = *rx_chainmask;
3957                 }
3958
3959                 switch (settings) {
3960                 case ATH9K_ANT_FIXED_A:
3961                         *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3962                         *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3963                         *antenna_cfgd = true;
3964                         break;
3965                 case ATH9K_ANT_FIXED_B:
3966                         if (ah->caps.tx_chainmask >
3967                             ATH9K_ANTENNA1_CHAINMASK) {
3968                                 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3969                         }
3970                         *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3971                         *antenna_cfgd = true;
3972                         break;
3973                 case ATH9K_ANT_VARIABLE:
3974                         *tx_chainmask = tx_chainmask_cfg;
3975                         *rx_chainmask = rx_chainmask_cfg;
3976                         *antenna_cfgd = true;
3977                         break;
3978                 default:
3979                         break;
3980                 }
3981         } else {
3982                 ah->config.diversity_control = settings;
3983         }
3984
3985         return true;
3986 }
3987
3988 /*********************/
3989 /* General Operation */
3990 /*********************/
3991
3992 u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
3993 {
3994         u32 bits = REG_READ(ah, AR_RX_FILTER);
3995         u32 phybits = REG_READ(ah, AR_PHY_ERR);
3996
3997         if (phybits & AR_PHY_ERR_RADAR)
3998                 bits |= ATH9K_RX_FILTER_PHYRADAR;
3999         if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
4000                 bits |= ATH9K_RX_FILTER_PHYERR;
4001
4002         return bits;
4003 }
4004
4005 void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
4006 {
4007         u32 phybits;
4008
4009         REG_WRITE(ah, AR_RX_FILTER, bits);
4010
4011         phybits = 0;
4012         if (bits & ATH9K_RX_FILTER_PHYRADAR)
4013                 phybits |= AR_PHY_ERR_RADAR;
4014         if (bits & ATH9K_RX_FILTER_PHYERR)
4015                 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
4016         REG_WRITE(ah, AR_PHY_ERR, phybits);
4017
4018         if (phybits)
4019                 REG_WRITE(ah, AR_RXCFG,
4020                           REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
4021         else
4022                 REG_WRITE(ah, AR_RXCFG,
4023                           REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
4024 }
4025
4026 bool ath9k_hw_phy_disable(struct ath_hw *ah)
4027 {
4028         return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
4029 }
4030
4031 bool ath9k_hw_disable(struct ath_hw *ah)
4032 {
4033         if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
4034                 return false;
4035
4036         return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
4037 }
4038
4039 void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
4040 {
4041         struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
4042         struct ath9k_channel *chan = ah->curchan;
4043         struct ieee80211_channel *channel = chan->chan;
4044
4045         regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
4046
4047         ah->eep_ops->set_txpower(ah, chan,
4048                                  ath9k_regd_get_ctl(regulatory, chan),
4049                                  channel->max_antenna_gain * 2,
4050                                  channel->max_power * 2,
4051                                  min((u32) MAX_RATE_POWER,
4052                                  (u32) regulatory->power_limit));
4053 }
4054
4055 void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
4056 {
4057         memcpy(ah->macaddr, mac, ETH_ALEN);
4058 }
4059
4060 void ath9k_hw_setopmode(struct ath_hw *ah)
4061 {
4062         ath9k_hw_set_operating_mode(ah, ah->opmode);
4063 }
4064
4065 void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
4066 {
4067         REG_WRITE(ah, AR_MCAST_FIL0, filter0);
4068         REG_WRITE(ah, AR_MCAST_FIL1, filter1);
4069 }
4070
4071 void ath9k_hw_setbssidmask(struct ath_softc *sc)
4072 {
4073         REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
4074         REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
4075 }
4076
4077 void ath9k_hw_write_associd(struct ath_softc *sc)
4078 {
4079         REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
4080         REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
4081                   ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
4082 }
4083
4084 u64 ath9k_hw_gettsf64(struct ath_hw *ah)
4085 {
4086         u64 tsf;
4087
4088         tsf = REG_READ(ah, AR_TSF_U32);
4089         tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
4090
4091         return tsf;
4092 }
4093
4094 void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
4095 {
4096         REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
4097         REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
4098 }
4099
4100 void ath9k_hw_reset_tsf(struct ath_hw *ah)
4101 {
4102         ath9k_ps_wakeup(ah->ah_sc);
4103         if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
4104                            AH_TSF_WRITE_TIMEOUT))
4105                 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
4106                         "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
4107
4108         REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
4109         ath9k_ps_restore(ah->ah_sc);
4110 }
4111
4112 void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
4113 {
4114         if (setting)
4115                 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
4116         else
4117                 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
4118 }
4119
4120 bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
4121 {
4122         if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
4123                 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
4124                 ah->slottime = (u32) -1;
4125                 return false;
4126         } else {
4127                 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
4128                 ah->slottime = us;
4129                 return true;
4130         }
4131 }
4132
4133 void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
4134 {
4135         u32 macmode;
4136
4137         if (mode == ATH9K_HT_MACMODE_2040 &&
4138             !ah->config.cwm_ignore_extcca)
4139                 macmode = AR_2040_JOINED_RX_CLEAR;
4140         else
4141                 macmode = 0;
4142
4143         REG_WRITE(ah, AR_2040_MODE, macmode);
4144 }
4145
4146 /* HW Generic timers configuration */
4147
4148 static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
4149 {
4150         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4151         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4152         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4153         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4154         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4155         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4156         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4157         {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
4158         {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
4159         {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
4160                                 AR_NDP2_TIMER_MODE, 0x0002},
4161         {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
4162                                 AR_NDP2_TIMER_MODE, 0x0004},
4163         {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
4164                                 AR_NDP2_TIMER_MODE, 0x0008},
4165         {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
4166                                 AR_NDP2_TIMER_MODE, 0x0010},
4167         {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
4168                                 AR_NDP2_TIMER_MODE, 0x0020},
4169         {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
4170                                 AR_NDP2_TIMER_MODE, 0x0040},
4171         {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
4172                                 AR_NDP2_TIMER_MODE, 0x0080}
4173 };
4174
4175 /* HW generic timer primitives */
4176
4177 /* compute and clear index of rightmost 1 */
4178 static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
4179 {
4180         u32 b;
4181
4182         b = *mask;
4183         b &= (0-b);
4184         *mask &= ~b;
4185         b *= debruijn32;
4186         b >>= 27;
4187
4188         return timer_table->gen_timer_index[b];
4189 }
4190
4191 u32 ath9k_hw_gettsf32(struct ath_hw *ah)
4192 {
4193         return REG_READ(ah, AR_TSF_L32);
4194 }
4195
4196 struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
4197                                           void (*trigger)(void *),
4198                                           void (*overflow)(void *),
4199                                           void *arg,
4200                                           u8 timer_index)
4201 {
4202         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4203         struct ath_gen_timer *timer;
4204
4205         timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
4206
4207         if (timer == NULL) {
4208                 printk(KERN_DEBUG "Failed to allocate memory"
4209                        "for hw timer[%d]\n", timer_index);
4210                 return NULL;
4211         }
4212
4213         /* allocate a hardware generic timer slot */
4214         timer_table->timers[timer_index] = timer;
4215         timer->index = timer_index;
4216         timer->trigger = trigger;
4217         timer->overflow = overflow;
4218         timer->arg = arg;
4219
4220         return timer;
4221 }
4222
4223 void ath_gen_timer_start(struct ath_hw *ah,
4224                          struct ath_gen_timer *timer,
4225                          u32 timer_next, u32 timer_period)
4226 {
4227         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4228         u32 tsf;
4229
4230         BUG_ON(!timer_period);
4231
4232         set_bit(timer->index, &timer_table->timer_mask.timer_bits);
4233
4234         tsf = ath9k_hw_gettsf32(ah);
4235
4236         DPRINTF(ah->ah_sc, ATH_DBG_HWTIMER, "curent tsf %x period %x"
4237                 "timer_next %x\n", tsf, timer_period, timer_next);
4238
4239         /*
4240          * Pull timer_next forward if the current TSF already passed it
4241          * because of software latency
4242          */
4243         if (timer_next < tsf)
4244                 timer_next = tsf + timer_period;
4245
4246         /*
4247          * Program generic timer registers
4248          */
4249         REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
4250                  timer_next);
4251         REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
4252                   timer_period);
4253         REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
4254                     gen_tmr_configuration[timer->index].mode_mask);
4255
4256         /* Enable both trigger and thresh interrupt masks */
4257         REG_SET_BIT(ah, AR_IMR_S5,
4258                 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
4259                 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
4260
4261         if ((ah->ah_sc->imask & ATH9K_INT_GENTIMER) == 0) {
4262                 ath9k_hw_set_interrupts(ah, 0);
4263                 ah->ah_sc->imask |= ATH9K_INT_GENTIMER;
4264                 ath9k_hw_set_interrupts(ah, ah->ah_sc->imask);
4265         }
4266 }
4267
4268 void ath_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
4269 {
4270         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4271
4272         if ((timer->index < AR_FIRST_NDP_TIMER) ||
4273                 (timer->index >= ATH_MAX_GEN_TIMER)) {
4274                 return;
4275         }
4276
4277         /* Clear generic timer enable bits. */
4278         REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
4279                         gen_tmr_configuration[timer->index].mode_mask);
4280
4281         /* Disable both trigger and thresh interrupt masks */
4282         REG_CLR_BIT(ah, AR_IMR_S5,
4283                 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
4284                 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
4285
4286         clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
4287
4288         /* if no timer is enabled, turn off interrupt mask */
4289         if (timer_table->timer_mask.val == 0) {
4290                 ath9k_hw_set_interrupts(ah, 0);
4291                 ah->ah_sc->imask &= ~ATH9K_INT_GENTIMER;
4292                 ath9k_hw_set_interrupts(ah, ah->ah_sc->imask);
4293         }
4294 }
4295
4296 void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
4297 {
4298         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4299
4300         /* free the hardware generic timer slot */
4301         timer_table->timers[timer->index] = NULL;
4302         kfree(timer);
4303 }
4304
4305 /*
4306  * Generic Timer Interrupts handling
4307  */
4308 void ath_gen_timer_isr(struct ath_hw *ah)
4309 {
4310         struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
4311         struct ath_gen_timer *timer;
4312         u32 trigger_mask, thresh_mask, index;
4313
4314         /* get hardware generic timer interrupt status */
4315         trigger_mask = ah->intr_gen_timer_trigger;
4316         thresh_mask = ah->intr_gen_timer_thresh;
4317         trigger_mask &= timer_table->timer_mask.val;
4318         thresh_mask &= timer_table->timer_mask.val;
4319
4320         trigger_mask &= ~thresh_mask;
4321
4322         while (thresh_mask) {
4323                 index = rightmost_index(timer_table, &thresh_mask);
4324                 timer = timer_table->timers[index];
4325                 BUG_ON(!timer);
4326                 DPRINTF(ah->ah_sc, ATH_DBG_HWTIMER,
4327                         "TSF overflow for Gen timer %d\n", index);
4328                 timer->overflow(timer->arg);
4329         }
4330
4331         while (trigger_mask) {
4332                 index = rightmost_index(timer_table, &trigger_mask);
4333                 timer = timer_table->timers[index];
4334                 BUG_ON(!timer);
4335                 DPRINTF(ah->ah_sc, ATH_DBG_HWTIMER,
4336                         "Gen timer[%d] trigger\n", index);
4337                 timer->trigger(timer->arg);
4338         }
4339 }
4340
4341 /*
4342  * Primitive to disable ASPM
4343  */
4344 void ath_pcie_aspm_disable(struct ath_softc *sc)
4345 {
4346         struct pci_dev *pdev = to_pci_dev(sc->dev);
4347         u8 aspm;
4348
4349         pci_read_config_byte(pdev, ATH_PCIE_CAP_LINK_CTRL, &aspm);
4350         aspm &= ~(ATH_PCIE_CAP_LINK_L0S | ATH_PCIE_CAP_LINK_L1);
4351         pci_write_config_byte(pdev, ATH_PCIE_CAP_LINK_CTRL, aspm);
4352 }