2 * Copyright (c) 2008-2009 Atheros Communications Inc.
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.
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.
18 #include <asm/unaligned.h>
23 static int btcoex_enable;
24 module_param(btcoex_enable, bool, 0);
25 MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
27 #define ATH9K_CLOCK_RATE_CCK 22
28 #define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
29 #define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
31 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
32 static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
33 enum ath9k_ht_macmode macmode);
34 static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
35 struct ar5416_eeprom_def *pEepData,
37 static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
38 static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
40 /********************/
41 /* Helper Functions */
42 /********************/
44 static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
46 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
48 if (!ah->curchan) /* should really check for CCK instead */
49 return clks / ATH9K_CLOCK_RATE_CCK;
50 if (conf->channel->band == IEEE80211_BAND_2GHZ)
51 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
53 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
56 static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
58 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
60 if (conf_is_ht40(conf))
61 return ath9k_hw_mac_usec(ah, clks) / 2;
63 return ath9k_hw_mac_usec(ah, clks);
66 static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
68 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
70 if (!ah->curchan) /* should really check for CCK instead */
71 return usecs *ATH9K_CLOCK_RATE_CCK;
72 if (conf->channel->band == IEEE80211_BAND_2GHZ)
73 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
74 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
77 static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
79 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
81 if (conf_is_ht40(conf))
82 return ath9k_hw_mac_clks(ah, usecs) * 2;
84 return ath9k_hw_mac_clks(ah, usecs);
88 * Read and write, they both share the same lock. We do this to serialize
89 * reads and writes on Atheros 802.11n PCI devices only. This is required
90 * as the FIFO on these devices can only accept sanely 2 requests. After
91 * that the device goes bananas. Serializing the reads/writes prevents this
95 void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
97 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
99 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
100 iowrite32(val, ah->ah_sc->mem + reg_offset);
101 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
103 iowrite32(val, ah->ah_sc->mem + reg_offset);
106 unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
109 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
111 spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
112 val = ioread32(ah->ah_sc->mem + reg_offset);
113 spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
115 val = ioread32(ah->ah_sc->mem + reg_offset);
119 bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
123 BUG_ON(timeout < AH_TIME_QUANTUM);
125 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
126 if ((REG_READ(ah, reg) & mask) == val)
129 udelay(AH_TIME_QUANTUM);
132 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
133 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
134 timeout, reg, REG_READ(ah, reg), mask, val);
139 u32 ath9k_hw_reverse_bits(u32 val, u32 n)
144 for (i = 0, retval = 0; i < n; i++) {
145 retval = (retval << 1) | (val & 1);
151 bool ath9k_get_channel_edges(struct ath_hw *ah,
155 struct ath9k_hw_capabilities *pCap = &ah->caps;
157 if (flags & CHANNEL_5GHZ) {
158 *low = pCap->low_5ghz_chan;
159 *high = pCap->high_5ghz_chan;
162 if ((flags & CHANNEL_2GHZ)) {
163 *low = pCap->low_2ghz_chan;
164 *high = pCap->high_2ghz_chan;
170 u16 ath9k_hw_computetxtime(struct ath_hw *ah,
171 const struct ath_rate_table *rates,
172 u32 frameLen, u16 rateix,
175 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
178 kbps = rates->info[rateix].ratekbps;
183 switch (rates->info[rateix].phy) {
184 case WLAN_RC_PHY_CCK:
185 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
186 if (shortPreamble && rates->info[rateix].short_preamble)
188 numBits = frameLen << 3;
189 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
191 case WLAN_RC_PHY_OFDM:
192 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
193 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
194 numBits = OFDM_PLCP_BITS + (frameLen << 3);
195 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
196 txTime = OFDM_SIFS_TIME_QUARTER
197 + OFDM_PREAMBLE_TIME_QUARTER
198 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
199 } else if (ah->curchan &&
200 IS_CHAN_HALF_RATE(ah->curchan)) {
201 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
202 numBits = OFDM_PLCP_BITS + (frameLen << 3);
203 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
204 txTime = OFDM_SIFS_TIME_HALF +
205 OFDM_PREAMBLE_TIME_HALF
206 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
208 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
209 numBits = OFDM_PLCP_BITS + (frameLen << 3);
210 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
211 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
212 + (numSymbols * OFDM_SYMBOL_TIME);
216 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
217 "Unknown phy %u (rate ix %u)\n",
218 rates->info[rateix].phy, rateix);
226 void ath9k_hw_get_channel_centers(struct ath_hw *ah,
227 struct ath9k_channel *chan,
228 struct chan_centers *centers)
232 if (!IS_CHAN_HT40(chan)) {
233 centers->ctl_center = centers->ext_center =
234 centers->synth_center = chan->channel;
238 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
239 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
240 centers->synth_center =
241 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
244 centers->synth_center =
245 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
249 centers->ctl_center =
250 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
251 centers->ext_center =
252 centers->synth_center + (extoff *
253 ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
254 HT40_CHANNEL_CENTER_SHIFT : 15));
261 static void ath9k_hw_read_revisions(struct ath_hw *ah)
265 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
268 val = REG_READ(ah, AR_SREV);
269 ah->hw_version.macVersion =
270 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
271 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
272 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
274 if (!AR_SREV_9100(ah))
275 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
277 ah->hw_version.macRev = val & AR_SREV_REVISION;
279 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
280 ah->is_pciexpress = true;
284 static int ath9k_hw_get_radiorev(struct ath_hw *ah)
289 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
291 for (i = 0; i < 8; i++)
292 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
293 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
294 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
296 return ath9k_hw_reverse_bits(val, 8);
299 /************************************/
300 /* HW Attach, Detach, Init Routines */
301 /************************************/
303 static void ath9k_hw_disablepcie(struct ath_hw *ah)
305 if (AR_SREV_9100(ah))
308 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
309 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
310 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
311 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
312 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
313 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
315 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
318 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
321 static bool ath9k_hw_chip_test(struct ath_hw *ah)
323 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
325 u32 patternData[4] = { 0x55555555,
331 for (i = 0; i < 2; i++) {
332 u32 addr = regAddr[i];
335 regHold[i] = REG_READ(ah, addr);
336 for (j = 0; j < 0x100; j++) {
337 wrData = (j << 16) | j;
338 REG_WRITE(ah, addr, wrData);
339 rdData = REG_READ(ah, addr);
340 if (rdData != wrData) {
341 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
342 "address test failed "
343 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
344 addr, wrData, rdData);
348 for (j = 0; j < 4; j++) {
349 wrData = patternData[j];
350 REG_WRITE(ah, addr, wrData);
351 rdData = REG_READ(ah, addr);
352 if (wrData != rdData) {
353 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
354 "address test failed "
355 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
356 addr, wrData, rdData);
360 REG_WRITE(ah, regAddr[i], regHold[i]);
367 static const char *ath9k_hw_devname(u16 devid)
370 case AR5416_DEVID_PCI:
371 return "Atheros 5416";
372 case AR5416_DEVID_PCIE:
373 return "Atheros 5418";
374 case AR9160_DEVID_PCI:
375 return "Atheros 9160";
376 case AR5416_AR9100_DEVID:
377 return "Atheros 9100";
378 case AR9280_DEVID_PCI:
379 case AR9280_DEVID_PCIE:
380 return "Atheros 9280";
381 case AR9285_DEVID_PCIE:
382 return "Atheros 9285";
383 case AR5416_DEVID_AR9287_PCI:
384 case AR5416_DEVID_AR9287_PCIE:
385 return "Atheros 9287";
391 static void ath9k_hw_init_config(struct ath_hw *ah)
395 ah->config.dma_beacon_response_time = 2;
396 ah->config.sw_beacon_response_time = 10;
397 ah->config.additional_swba_backoff = 0;
398 ah->config.ack_6mb = 0x0;
399 ah->config.cwm_ignore_extcca = 0;
400 ah->config.pcie_powersave_enable = 0;
401 ah->config.pcie_clock_req = 0;
402 ah->config.pcie_waen = 0;
403 ah->config.analog_shiftreg = 1;
404 ah->config.ht_enable = 1;
405 ah->config.ofdm_trig_low = 200;
406 ah->config.ofdm_trig_high = 500;
407 ah->config.cck_trig_high = 200;
408 ah->config.cck_trig_low = 100;
409 ah->config.enable_ani = 1;
410 ah->config.diversity_control = ATH9K_ANT_VARIABLE;
411 ah->config.antenna_switch_swap = 0;
413 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
414 ah->config.spurchans[i][0] = AR_NO_SPUR;
415 ah->config.spurchans[i][1] = AR_NO_SPUR;
418 ah->config.intr_mitigation = true;
421 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
422 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
423 * This means we use it for all AR5416 devices, and the few
424 * minor PCI AR9280 devices out there.
426 * Serialization is required because these devices do not handle
427 * well the case of two concurrent reads/writes due to the latency
428 * involved. During one read/write another read/write can be issued
429 * on another CPU while the previous read/write may still be working
430 * on our hardware, if we hit this case the hardware poops in a loop.
431 * We prevent this by serializing reads and writes.
433 * This issue is not present on PCI-Express devices or pre-AR5416
434 * devices (legacy, 802.11abg).
436 if (num_possible_cpus() > 1)
437 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
440 static void ath9k_hw_init_defaults(struct ath_hw *ah)
442 ah->hw_version.magic = AR5416_MAGIC;
443 ah->regulatory.country_code = CTRY_DEFAULT;
444 ah->hw_version.subvendorid = 0;
447 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
448 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
449 if (!AR_SREV_9100(ah))
450 ah->ah_flags = AH_USE_EEPROM;
452 ah->regulatory.power_limit = MAX_RATE_POWER;
453 ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
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;
463 ah->gbeacon_rate = 0;
465 ah->power_mode = ATH9K_PM_UNDEFINED;
468 static int ath9k_hw_rfattach(struct ath_hw *ah)
470 bool rfStatus = false;
473 rfStatus = ath9k_hw_init_rf(ah, &ecode);
475 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
476 "RF setup failed, status: %u\n", ecode);
483 static int ath9k_hw_rf_claim(struct ath_hw *ah)
487 REG_WRITE(ah, AR_PHY(0), 0x00000007);
489 val = ath9k_hw_get_radiorev(ah);
490 switch (val & AR_RADIO_SREV_MAJOR) {
492 val = AR_RAD5133_SREV_MAJOR;
494 case AR_RAD5133_SREV_MAJOR:
495 case AR_RAD5122_SREV_MAJOR:
496 case AR_RAD2133_SREV_MAJOR:
497 case AR_RAD2122_SREV_MAJOR:
500 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
501 "Radio Chip Rev 0x%02X not supported\n",
502 val & AR_RADIO_SREV_MAJOR);
506 ah->hw_version.analog5GhzRev = val;
511 static int ath9k_hw_init_macaddr(struct ath_hw *ah)
518 for (i = 0; i < 3; i++) {
519 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
521 ah->macaddr[2 * i] = eeval >> 8;
522 ah->macaddr[2 * i + 1] = eeval & 0xff;
524 if (sum == 0 || sum == 0xffff * 3)
525 return -EADDRNOTAVAIL;
530 static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
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);
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);
546 INIT_INI_ARRAY(&ah->iniModesRxGain,
547 ar9280Modes_original_rxgain_9280_2,
548 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
550 INIT_INI_ARRAY(&ah->iniModesRxGain,
551 ar9280Modes_original_rxgain_9280_2,
552 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
556 static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
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);
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);
568 INIT_INI_ARRAY(&ah->iniModesTxGain,
569 ar9280Modes_original_tx_gain_9280_2,
570 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
572 INIT_INI_ARRAY(&ah->iniModesTxGain,
573 ar9280Modes_original_tx_gain_9280_2,
574 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
578 static int ath9k_hw_post_init(struct ath_hw *ah)
582 if (!ath9k_hw_chip_test(ah))
585 ecode = ath9k_hw_rf_claim(ah);
589 ecode = ath9k_hw_eeprom_init(ah);
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));
596 ecode = ath9k_hw_rfattach(ah);
600 if (!AR_SREV_9100(ah)) {
601 ath9k_hw_ani_setup(ah);
602 ath9k_hw_ani_init(ah);
608 static bool ath9k_hw_devid_supported(u16 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:
627 static bool ath9k_hw_macversion_supported(u32 macversion)
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:
639 case AR_SREV_VERSION_9271:
646 static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
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 =
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 =
666 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
670 static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
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);
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);
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),
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);
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);
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),
709 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
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);
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);
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),
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);
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);
738 INIT_INI_ARRAY(&ah->iniPcieSerdes,
739 ar9285PciePhy_clkreq_always_on_L1_9285,
740 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
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);
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);
753 INIT_INI_ARRAY(&ah->iniPcieSerdes,
754 ar9280PciePhy_clkreq_always_on_L1_9280,
755 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
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,
789 ARRAY_SIZE(ar5416Addac_91601_1), 2);
791 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
792 ARRAY_SIZE(ar5416Addac_9160), 2);
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);
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);
843 static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
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);
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);
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);
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);
883 static void ath9k_hw_init_11a_eeprom_fix(struct ath_hw *ah)
887 if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
888 test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
891 for (i = 0; i < ah->iniModes.ia_rows; i++) {
892 u32 reg = INI_RA(&ah->iniModes, i, 0);
894 for (j = 1; j < ah->iniModes.ia_columns; j++) {
895 u32 val = INI_RA(&ah->iniModes, i, j);
897 INI_RA(&ah->iniModes, i, j) =
898 ath9k_hw_ini_fixup(ah,
906 int ath9k_hw_init(struct ath_hw *ah)
910 if (!ath9k_hw_devid_supported(ah->hw_version.devid))
913 ath9k_hw_init_defaults(ah);
914 ath9k_hw_init_config(ah);
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");
921 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
922 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
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 =
932 ah->config.serialize_regmode =
937 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
938 ah->config.serialize_regmode);
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);
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;
954 if (AR_SREV_9271(ah))
955 ah->is_pciexpress = false;
957 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
959 ath9k_hw_init_cal_settings(ah);
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;
965 ath9k_hw_init_mode_regs(ah);
967 if (ah->is_pciexpress)
968 ath9k_hw_configpcipowersave(ah, 0);
970 ath9k_hw_disablepcie(ah);
972 r = ath9k_hw_post_init(ah);
976 ath9k_hw_init_mode_gain_regs(ah);
977 ath9k_hw_fill_cap_info(ah);
978 ath9k_hw_init_11a_eeprom_fix(ah);
980 r = ath9k_hw_init_macaddr(ah);
982 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
983 "Failed to initialize MAC address\n");
987 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
988 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
990 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
992 ath9k_init_nfcal_hist_buffer(ah);
997 static void ath9k_hw_init_bb(struct ath_hw *ah,
998 struct ath9k_channel *chan)
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;
1008 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
1010 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1013 static void ath9k_hw_init_qos(struct ath_hw *ah)
1015 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1016 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
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));
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);
1030 static void ath9k_hw_init_pll(struct ath_hw *ah,
1031 struct ath9k_channel *chan)
1035 if (AR_SREV_9100(ah)) {
1036 if (chan && IS_CHAN_5GHZ(chan))
1041 if (AR_SREV_9280_10_OR_LATER(ah)) {
1042 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
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);
1049 if (chan && IS_CHAN_5GHZ(chan)) {
1050 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
1053 if (AR_SREV_9280_20(ah)) {
1054 if (((chan->channel % 20) == 0)
1055 || ((chan->channel % 10) == 0))
1061 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
1064 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1066 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
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);
1073 if (chan && IS_CHAN_5GHZ(chan))
1074 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1076 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1078 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
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);
1085 if (chan && IS_CHAN_5GHZ(chan))
1086 pll |= SM(0xa, AR_RTC_PLL_DIV);
1088 pll |= SM(0xb, AR_RTC_PLL_DIV);
1091 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
1093 udelay(RTC_PLL_SETTLE_DELAY);
1095 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1098 static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
1100 int rx_chainmask, tx_chainmask;
1102 rx_chainmask = ah->rxchainmask;
1103 tx_chainmask = ah->txchainmask;
1105 switch (rx_chainmask) {
1107 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1108 AR_PHY_SWAP_ALT_CHAIN);
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);
1118 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1119 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
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);
1130 if (AR_SREV_9100(ah))
1131 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1132 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1135 static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
1136 enum nl80211_iftype opmode)
1138 ah->mask_reg = AR_IMR_TXERR |
1144 if (ah->config.intr_mitigation)
1145 ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
1147 ah->mask_reg |= AR_IMR_RXOK;
1149 ah->mask_reg |= AR_IMR_TXOK;
1151 if (opmode == NL80211_IFTYPE_AP)
1152 ah->mask_reg |= AR_IMR_MIB;
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);
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);
1164 static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
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;
1171 REG_RMW_FIELD(ah, AR_TIME_OUT,
1172 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
1173 ah->acktimeout = us;
1178 static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
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;
1185 REG_RMW_FIELD(ah, AR_TIME_OUT,
1186 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
1187 ah->ctstimeout = us;
1192 static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
1195 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
1196 "bad global tx timeout %u\n", tu);
1197 ah->globaltxtimeout = (u32) -1;
1200 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
1201 ah->globaltxtimeout = tu;
1206 static void ath9k_hw_init_user_settings(struct ath_hw *ah)
1208 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
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);
1224 const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1226 return vendorid == ATHEROS_VENDOR_ID ?
1227 ath9k_hw_devname(devid) : NULL;
1230 void ath9k_hw_detach(struct ath_hw *ah)
1232 if (!AR_SREV_9100(ah))
1233 ath9k_hw_ani_disable(ah);
1235 ath9k_hw_rf_free(ah);
1236 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1245 static void ath9k_hw_override_ini(struct ath_hw *ah,
1246 struct ath9k_channel *chan)
1250 if (AR_SREV_9271(ah)) {
1252 * Enable spectral scan to solution for issues with stuck
1253 * beacons on AR9271 1.0. The beacon stuck issue is not seeon on
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);
1260 else if (AR_SREV_9271_11(ah))
1262 * change AR_PHY_RF_CTL3 setting to fix MAC issue
1263 * present on AR9271 1.1
1265 REG_WRITE(ah, AR_PHY_RF_CTL3, 0x3a020001);
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.
1274 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1277 if (!AR_SREV_5416_20_OR_LATER(ah) ||
1278 AR_SREV_9280_10_OR_LATER(ah))
1281 * Disable BB clock gating
1282 * Necessary to avoid issues on AR5416 2.0
1284 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1287 static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
1288 struct ar5416_eeprom_def *pEepData,
1291 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
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));
1300 if ((pBase->version & 0xff) > 0x0a) {
1301 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1304 value &= ~AR_AN_TOP2_PWDCLKIND;
1305 value |= AR_AN_TOP2_PWDCLKIND &
1306 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1308 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1309 "PWDCLKIND Earlier Rev\n");
1312 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1313 "final ini VAL: %x\n", value);
1321 static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
1322 struct ar5416_eeprom_def *pEepData,
1325 if (ah->eep_map == EEP_MAP_4KBITS)
1328 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1331 static void ath9k_olc_init(struct ath_hw *ah)
1335 for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
1336 ah->originalGain[i] =
1337 MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
1342 static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
1343 struct ath9k_channel *chan)
1345 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1347 if (IS_CHAN_B(chan))
1349 else if (IS_CHAN_G(chan))
1357 static int ath9k_hw_process_ini(struct ath_hw *ah,
1358 struct ath9k_channel *chan,
1359 enum ath9k_ht_macmode macmode)
1361 int i, regWrites = 0;
1362 struct ieee80211_channel *channel = chan->chan;
1363 u32 modesIndex, freqIndex;
1365 switch (chan->chanmode) {
1367 case CHANNEL_A_HT20:
1371 case CHANNEL_A_HT40PLUS:
1372 case CHANNEL_A_HT40MINUS:
1377 case CHANNEL_G_HT20:
1382 case CHANNEL_G_HT40PLUS:
1383 case CHANNEL_G_HT40MINUS:
1392 REG_WRITE(ah, AR_PHY(0), 0x00000007);
1393 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
1394 ah->eep_ops->set_addac(ah, chan);
1396 if (AR_SREV_5416_22_OR_LATER(ah)) {
1397 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
1399 struct ar5416IniArray temp;
1401 sizeof(u32) * ah->iniAddac.ia_rows *
1402 ah->iniAddac.ia_columns;
1404 memcpy(ah->addac5416_21,
1405 ah->iniAddac.ia_array, addacSize);
1407 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
1409 temp.ia_array = ah->addac5416_21;
1410 temp.ia_columns = ah->iniAddac.ia_columns;
1411 temp.ia_rows = ah->iniAddac.ia_rows;
1412 REG_WRITE_ARRAY(&temp, 1, regWrites);
1415 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1417 for (i = 0; i < ah->iniModes.ia_rows; i++) {
1418 u32 reg = INI_RA(&ah->iniModes, i, 0);
1419 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
1421 REG_WRITE(ah, reg, val);
1423 if (reg >= 0x7800 && reg < 0x78a0
1424 && ah->config.analog_shiftreg) {
1428 DO_DELAY(regWrites);
1431 if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
1432 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
1434 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
1435 AR_SREV_9287_10_OR_LATER(ah))
1436 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
1438 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
1439 u32 reg = INI_RA(&ah->iniCommon, i, 0);
1440 u32 val = INI_RA(&ah->iniCommon, i, 1);
1442 REG_WRITE(ah, reg, val);
1444 if (reg >= 0x7800 && reg < 0x78a0
1445 && ah->config.analog_shiftreg) {
1449 DO_DELAY(regWrites);
1452 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1454 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
1455 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
1459 ath9k_hw_override_ini(ah, chan);
1460 ath9k_hw_set_regs(ah, chan, macmode);
1461 ath9k_hw_init_chain_masks(ah);
1463 if (OLC_FOR_AR9280_20_LATER)
1466 ah->eep_ops->set_txpower(ah, chan,
1467 ath9k_regd_get_ctl(&ah->regulatory, chan),
1468 channel->max_antenna_gain * 2,
1469 channel->max_power * 2,
1470 min((u32) MAX_RATE_POWER,
1471 (u32) ah->regulatory.power_limit));
1473 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1474 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1475 "ar5416SetRfRegs failed\n");
1482 /****************************************/
1483 /* Reset and Channel Switching Routines */
1484 /****************************************/
1486 static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
1493 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1494 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1496 if (!AR_SREV_9280_10_OR_LATER(ah))
1497 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1498 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1500 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1501 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1503 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1506 static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
1508 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1511 static inline void ath9k_hw_set_dma(struct ath_hw *ah)
1516 * set AHB_MODE not to do cacheline prefetches
1518 regval = REG_READ(ah, AR_AHB_MODE);
1519 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1522 * let mac dma reads be in 128 byte chunks
1524 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1525 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1528 * Restore TX Trigger Level to its pre-reset value.
1529 * The initial value depends on whether aggregation is enabled, and is
1530 * adjusted whenever underruns are detected.
1532 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
1535 * let mac dma writes be in 128 byte chunks
1537 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1538 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1541 * Setup receive FIFO threshold to hold off TX activities
1543 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1546 * reduce the number of usable entries in PCU TXBUF to avoid
1547 * wrap around issues.
1549 if (AR_SREV_9285(ah)) {
1550 /* For AR9285 the number of Fifos are reduced to half.
1551 * So set the usable tx buf size also to half to
1552 * avoid data/delimiter underruns
1554 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1555 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1556 } else if (!AR_SREV_9271(ah)) {
1557 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1558 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1562 static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
1566 val = REG_READ(ah, AR_STA_ID1);
1567 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1569 case NL80211_IFTYPE_AP:
1570 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1571 | AR_STA_ID1_KSRCH_MODE);
1572 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1574 case NL80211_IFTYPE_ADHOC:
1575 case NL80211_IFTYPE_MESH_POINT:
1576 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1577 | AR_STA_ID1_KSRCH_MODE);
1578 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1580 case NL80211_IFTYPE_STATION:
1581 case NL80211_IFTYPE_MONITOR:
1582 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1587 static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
1592 u32 coef_exp, coef_man;
1594 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1595 if ((coef_scaled >> coef_exp) & 0x1)
1598 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1600 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1602 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1603 *coef_exponent = coef_exp - 16;
1606 static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
1607 struct ath9k_channel *chan)
1609 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1610 u32 clockMhzScaled = 0x64000000;
1611 struct chan_centers centers;
1613 if (IS_CHAN_HALF_RATE(chan))
1614 clockMhzScaled = clockMhzScaled >> 1;
1615 else if (IS_CHAN_QUARTER_RATE(chan))
1616 clockMhzScaled = clockMhzScaled >> 2;
1618 ath9k_hw_get_channel_centers(ah, chan, ¢ers);
1619 coef_scaled = clockMhzScaled / centers.synth_center;
1621 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1624 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1625 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1626 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1627 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1629 coef_scaled = (9 * coef_scaled) / 10;
1631 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1634 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1635 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1636 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1637 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1640 static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
1645 if (AR_SREV_9100(ah)) {
1646 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1647 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1648 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1649 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1650 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1653 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1654 AR_RTC_FORCE_WAKE_ON_INT);
1656 if (AR_SREV_9100(ah)) {
1657 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1658 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1660 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1662 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1663 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1664 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1665 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1667 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1670 rst_flags = AR_RTC_RC_MAC_WARM;
1671 if (type == ATH9K_RESET_COLD)
1672 rst_flags |= AR_RTC_RC_MAC_COLD;
1675 REG_WRITE(ah, AR_RTC_RC, rst_flags);
1678 REG_WRITE(ah, AR_RTC_RC, 0);
1679 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
1680 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
1681 "RTC stuck in MAC reset\n");
1685 if (!AR_SREV_9100(ah))
1686 REG_WRITE(ah, AR_RC, 0);
1688 ath9k_hw_init_pll(ah, NULL);
1690 if (AR_SREV_9100(ah))
1696 static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
1698 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1699 AR_RTC_FORCE_WAKE_ON_INT);
1701 REG_WRITE(ah, AR_RTC_RESET, 0);
1703 REG_WRITE(ah, AR_RTC_RESET, 1);
1705 if (!ath9k_hw_wait(ah,
1710 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
1714 ath9k_hw_read_revisions(ah);
1716 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1719 static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
1721 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1722 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1725 case ATH9K_RESET_POWER_ON:
1726 return ath9k_hw_set_reset_power_on(ah);
1727 case ATH9K_RESET_WARM:
1728 case ATH9K_RESET_COLD:
1729 return ath9k_hw_set_reset(ah, type);
1735 static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
1736 enum ath9k_ht_macmode macmode)
1739 u32 enableDacFifo = 0;
1741 if (AR_SREV_9285_10_OR_LATER(ah))
1742 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1743 AR_PHY_FC_ENABLE_DAC_FIFO);
1745 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
1746 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
1748 if (IS_CHAN_HT40(chan)) {
1749 phymode |= AR_PHY_FC_DYN2040_EN;
1751 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1752 (chan->chanmode == CHANNEL_G_HT40PLUS))
1753 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1755 if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
1756 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1758 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1760 ath9k_hw_set11nmac2040(ah, macmode);
1762 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1763 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1766 static bool ath9k_hw_chip_reset(struct ath_hw *ah,
1767 struct ath9k_channel *chan)
1769 if (OLC_FOR_AR9280_20_LATER) {
1770 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1772 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
1775 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1778 ah->chip_fullsleep = false;
1779 ath9k_hw_init_pll(ah, chan);
1780 ath9k_hw_set_rfmode(ah, chan);
1785 static bool ath9k_hw_channel_change(struct ath_hw *ah,
1786 struct ath9k_channel *chan,
1787 enum ath9k_ht_macmode macmode)
1789 struct ieee80211_channel *channel = chan->chan;
1790 u32 synthDelay, qnum;
1792 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1793 if (ath9k_hw_numtxpending(ah, qnum)) {
1794 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
1795 "Transmit frames pending on queue %d\n", qnum);
1800 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1801 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
1802 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
1803 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1804 "Could not kill baseband RX\n");
1808 ath9k_hw_set_regs(ah, chan, macmode);
1810 if (AR_SREV_9280_10_OR_LATER(ah)) {
1811 ath9k_hw_ar9280_set_channel(ah, chan);
1813 if (!(ath9k_hw_set_channel(ah, chan))) {
1814 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
1815 "Failed to set channel\n");
1820 ah->eep_ops->set_txpower(ah, chan,
1821 ath9k_regd_get_ctl(&ah->regulatory, chan),
1822 channel->max_antenna_gain * 2,
1823 channel->max_power * 2,
1824 min((u32) MAX_RATE_POWER,
1825 (u32) ah->regulatory.power_limit));
1827 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
1828 if (IS_CHAN_B(chan))
1829 synthDelay = (4 * synthDelay) / 22;
1833 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1835 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1837 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1838 ath9k_hw_set_delta_slope(ah, chan);
1840 if (AR_SREV_9280_10_OR_LATER(ah))
1841 ath9k_hw_9280_spur_mitigate(ah, chan);
1843 ath9k_hw_spur_mitigate(ah, chan);
1845 if (!chan->oneTimeCalsDone)
1846 chan->oneTimeCalsDone = true;
1851 static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
1853 int bb_spur = AR_NO_SPUR;
1856 int bb_spur_off, spur_subchannel_sd;
1858 int spur_delta_phase;
1860 int upper, lower, cur_vit_mask;
1863 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1864 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1866 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1867 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1869 int inc[4] = { 0, 100, 0, 0 };
1870 struct chan_centers centers;
1877 bool is2GHz = IS_CHAN_2GHZ(chan);
1879 memset(&mask_m, 0, sizeof(int8_t) * 123);
1880 memset(&mask_p, 0, sizeof(int8_t) * 123);
1882 ath9k_hw_get_channel_centers(ah, chan, ¢ers);
1883 freq = centers.synth_center;
1885 ah->config.spurmode = SPUR_ENABLE_EEPROM;
1886 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
1887 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
1890 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1892 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1894 if (AR_NO_SPUR == cur_bb_spur)
1896 cur_bb_spur = cur_bb_spur - freq;
1898 if (IS_CHAN_HT40(chan)) {
1899 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1900 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1901 bb_spur = cur_bb_spur;
1904 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1905 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1906 bb_spur = cur_bb_spur;
1911 if (AR_NO_SPUR == bb_spur) {
1912 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1913 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1916 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1917 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1920 bin = bb_spur * 320;
1922 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1924 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1925 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1926 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1927 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1928 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1930 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1931 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1932 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1933 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1934 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1935 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1937 if (IS_CHAN_HT40(chan)) {
1939 spur_subchannel_sd = 1;
1940 bb_spur_off = bb_spur + 10;
1942 spur_subchannel_sd = 0;
1943 bb_spur_off = bb_spur - 10;
1946 spur_subchannel_sd = 0;
1947 bb_spur_off = bb_spur;
1950 if (IS_CHAN_HT40(chan))
1952 ((bb_spur * 262144) /
1953 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1956 ((bb_spur * 524288) /
1957 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1959 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1960 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1962 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1963 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1964 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1965 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1967 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1968 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1974 for (i = 0; i < 4; i++) {
1978 for (bp = 0; bp < 30; bp++) {
1979 if ((cur_bin > lower) && (cur_bin < upper)) {
1980 pilot_mask = pilot_mask | 0x1 << bp;
1981 chan_mask = chan_mask | 0x1 << bp;
1986 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1987 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1990 cur_vit_mask = 6100;
1994 for (i = 0; i < 123; i++) {
1995 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
1997 /* workaround for gcc bug #37014 */
1998 volatile int tmp_v = abs(cur_vit_mask - bin);
2004 if (cur_vit_mask < 0)
2005 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2007 mask_p[cur_vit_mask / 100] = mask_amt;
2009 cur_vit_mask -= 100;
2012 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2013 | (mask_m[48] << 26) | (mask_m[49] << 24)
2014 | (mask_m[50] << 22) | (mask_m[51] << 20)
2015 | (mask_m[52] << 18) | (mask_m[53] << 16)
2016 | (mask_m[54] << 14) | (mask_m[55] << 12)
2017 | (mask_m[56] << 10) | (mask_m[57] << 8)
2018 | (mask_m[58] << 6) | (mask_m[59] << 4)
2019 | (mask_m[60] << 2) | (mask_m[61] << 0);
2020 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2021 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2023 tmp_mask = (mask_m[31] << 28)
2024 | (mask_m[32] << 26) | (mask_m[33] << 24)
2025 | (mask_m[34] << 22) | (mask_m[35] << 20)
2026 | (mask_m[36] << 18) | (mask_m[37] << 16)
2027 | (mask_m[48] << 14) | (mask_m[39] << 12)
2028 | (mask_m[40] << 10) | (mask_m[41] << 8)
2029 | (mask_m[42] << 6) | (mask_m[43] << 4)
2030 | (mask_m[44] << 2) | (mask_m[45] << 0);
2031 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2032 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2034 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2035 | (mask_m[18] << 26) | (mask_m[18] << 24)
2036 | (mask_m[20] << 22) | (mask_m[20] << 20)
2037 | (mask_m[22] << 18) | (mask_m[22] << 16)
2038 | (mask_m[24] << 14) | (mask_m[24] << 12)
2039 | (mask_m[25] << 10) | (mask_m[26] << 8)
2040 | (mask_m[27] << 6) | (mask_m[28] << 4)
2041 | (mask_m[29] << 2) | (mask_m[30] << 0);
2042 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2043 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2045 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2046 | (mask_m[2] << 26) | (mask_m[3] << 24)
2047 | (mask_m[4] << 22) | (mask_m[5] << 20)
2048 | (mask_m[6] << 18) | (mask_m[7] << 16)
2049 | (mask_m[8] << 14) | (mask_m[9] << 12)
2050 | (mask_m[10] << 10) | (mask_m[11] << 8)
2051 | (mask_m[12] << 6) | (mask_m[13] << 4)
2052 | (mask_m[14] << 2) | (mask_m[15] << 0);
2053 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2054 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2056 tmp_mask = (mask_p[15] << 28)
2057 | (mask_p[14] << 26) | (mask_p[13] << 24)
2058 | (mask_p[12] << 22) | (mask_p[11] << 20)
2059 | (mask_p[10] << 18) | (mask_p[9] << 16)
2060 | (mask_p[8] << 14) | (mask_p[7] << 12)
2061 | (mask_p[6] << 10) | (mask_p[5] << 8)
2062 | (mask_p[4] << 6) | (mask_p[3] << 4)
2063 | (mask_p[2] << 2) | (mask_p[1] << 0);
2064 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2065 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2067 tmp_mask = (mask_p[30] << 28)
2068 | (mask_p[29] << 26) | (mask_p[28] << 24)
2069 | (mask_p[27] << 22) | (mask_p[26] << 20)
2070 | (mask_p[25] << 18) | (mask_p[24] << 16)
2071 | (mask_p[23] << 14) | (mask_p[22] << 12)
2072 | (mask_p[21] << 10) | (mask_p[20] << 8)
2073 | (mask_p[19] << 6) | (mask_p[18] << 4)
2074 | (mask_p[17] << 2) | (mask_p[16] << 0);
2075 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2076 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2078 tmp_mask = (mask_p[45] << 28)
2079 | (mask_p[44] << 26) | (mask_p[43] << 24)
2080 | (mask_p[42] << 22) | (mask_p[41] << 20)
2081 | (mask_p[40] << 18) | (mask_p[39] << 16)
2082 | (mask_p[38] << 14) | (mask_p[37] << 12)
2083 | (mask_p[36] << 10) | (mask_p[35] << 8)
2084 | (mask_p[34] << 6) | (mask_p[33] << 4)
2085 | (mask_p[32] << 2) | (mask_p[31] << 0);
2086 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2087 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2089 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2090 | (mask_p[59] << 26) | (mask_p[58] << 24)
2091 | (mask_p[57] << 22) | (mask_p[56] << 20)
2092 | (mask_p[55] << 18) | (mask_p[54] << 16)
2093 | (mask_p[53] << 14) | (mask_p[52] << 12)
2094 | (mask_p[51] << 10) | (mask_p[50] << 8)
2095 | (mask_p[49] << 6) | (mask_p[48] << 4)
2096 | (mask_p[47] << 2) | (mask_p[46] << 0);
2097 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2098 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2101 static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
2103 int bb_spur = AR_NO_SPUR;
2106 int spur_delta_phase;
2108 int upper, lower, cur_vit_mask;
2111 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2112 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2114 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2115 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2117 int inc[4] = { 0, 100, 0, 0 };
2124 bool is2GHz = IS_CHAN_2GHZ(chan);
2126 memset(&mask_m, 0, sizeof(int8_t) * 123);
2127 memset(&mask_p, 0, sizeof(int8_t) * 123);
2129 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
2130 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
2131 if (AR_NO_SPUR == cur_bb_spur)
2133 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2134 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2135 bb_spur = cur_bb_spur;
2140 if (AR_NO_SPUR == bb_spur)
2145 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2146 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2147 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2148 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2149 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2151 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2153 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2154 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2155 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2156 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2157 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2158 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2160 spur_delta_phase = ((bb_spur * 524288) / 100) &
2161 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2163 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2164 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2166 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2167 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2168 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2169 REG_WRITE(ah, AR_PHY_TIMING11, new);
2175 for (i = 0; i < 4; i++) {
2179 for (bp = 0; bp < 30; bp++) {
2180 if ((cur_bin > lower) && (cur_bin < upper)) {
2181 pilot_mask = pilot_mask | 0x1 << bp;
2182 chan_mask = chan_mask | 0x1 << bp;
2187 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2188 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2191 cur_vit_mask = 6100;
2195 for (i = 0; i < 123; i++) {
2196 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
2198 /* workaround for gcc bug #37014 */
2199 volatile int tmp_v = abs(cur_vit_mask - bin);
2205 if (cur_vit_mask < 0)
2206 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2208 mask_p[cur_vit_mask / 100] = mask_amt;
2210 cur_vit_mask -= 100;
2213 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2214 | (mask_m[48] << 26) | (mask_m[49] << 24)
2215 | (mask_m[50] << 22) | (mask_m[51] << 20)
2216 | (mask_m[52] << 18) | (mask_m[53] << 16)
2217 | (mask_m[54] << 14) | (mask_m[55] << 12)
2218 | (mask_m[56] << 10) | (mask_m[57] << 8)
2219 | (mask_m[58] << 6) | (mask_m[59] << 4)
2220 | (mask_m[60] << 2) | (mask_m[61] << 0);
2221 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2222 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2224 tmp_mask = (mask_m[31] << 28)
2225 | (mask_m[32] << 26) | (mask_m[33] << 24)
2226 | (mask_m[34] << 22) | (mask_m[35] << 20)
2227 | (mask_m[36] << 18) | (mask_m[37] << 16)
2228 | (mask_m[48] << 14) | (mask_m[39] << 12)
2229 | (mask_m[40] << 10) | (mask_m[41] << 8)
2230 | (mask_m[42] << 6) | (mask_m[43] << 4)
2231 | (mask_m[44] << 2) | (mask_m[45] << 0);
2232 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2233 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2235 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2236 | (mask_m[18] << 26) | (mask_m[18] << 24)
2237 | (mask_m[20] << 22) | (mask_m[20] << 20)
2238 | (mask_m[22] << 18) | (mask_m[22] << 16)
2239 | (mask_m[24] << 14) | (mask_m[24] << 12)
2240 | (mask_m[25] << 10) | (mask_m[26] << 8)
2241 | (mask_m[27] << 6) | (mask_m[28] << 4)
2242 | (mask_m[29] << 2) | (mask_m[30] << 0);
2243 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2244 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2246 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2247 | (mask_m[2] << 26) | (mask_m[3] << 24)
2248 | (mask_m[4] << 22) | (mask_m[5] << 20)
2249 | (mask_m[6] << 18) | (mask_m[7] << 16)
2250 | (mask_m[8] << 14) | (mask_m[9] << 12)
2251 | (mask_m[10] << 10) | (mask_m[11] << 8)
2252 | (mask_m[12] << 6) | (mask_m[13] << 4)
2253 | (mask_m[14] << 2) | (mask_m[15] << 0);
2254 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2255 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2257 tmp_mask = (mask_p[15] << 28)
2258 | (mask_p[14] << 26) | (mask_p[13] << 24)
2259 | (mask_p[12] << 22) | (mask_p[11] << 20)
2260 | (mask_p[10] << 18) | (mask_p[9] << 16)
2261 | (mask_p[8] << 14) | (mask_p[7] << 12)
2262 | (mask_p[6] << 10) | (mask_p[5] << 8)
2263 | (mask_p[4] << 6) | (mask_p[3] << 4)
2264 | (mask_p[2] << 2) | (mask_p[1] << 0);
2265 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2266 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2268 tmp_mask = (mask_p[30] << 28)
2269 | (mask_p[29] << 26) | (mask_p[28] << 24)
2270 | (mask_p[27] << 22) | (mask_p[26] << 20)
2271 | (mask_p[25] << 18) | (mask_p[24] << 16)
2272 | (mask_p[23] << 14) | (mask_p[22] << 12)
2273 | (mask_p[21] << 10) | (mask_p[20] << 8)
2274 | (mask_p[19] << 6) | (mask_p[18] << 4)
2275 | (mask_p[17] << 2) | (mask_p[16] << 0);
2276 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2277 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2279 tmp_mask = (mask_p[45] << 28)
2280 | (mask_p[44] << 26) | (mask_p[43] << 24)
2281 | (mask_p[42] << 22) | (mask_p[41] << 20)
2282 | (mask_p[40] << 18) | (mask_p[39] << 16)
2283 | (mask_p[38] << 14) | (mask_p[37] << 12)
2284 | (mask_p[36] << 10) | (mask_p[35] << 8)
2285 | (mask_p[34] << 6) | (mask_p[33] << 4)
2286 | (mask_p[32] << 2) | (mask_p[31] << 0);
2287 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2288 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2290 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2291 | (mask_p[59] << 26) | (mask_p[58] << 24)
2292 | (mask_p[57] << 22) | (mask_p[56] << 20)
2293 | (mask_p[55] << 18) | (mask_p[54] << 16)
2294 | (mask_p[53] << 14) | (mask_p[52] << 12)
2295 | (mask_p[51] << 10) | (mask_p[50] << 8)
2296 | (mask_p[49] << 6) | (mask_p[48] << 4)
2297 | (mask_p[47] << 2) | (mask_p[46] << 0);
2298 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2299 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2302 static void ath9k_enable_rfkill(struct ath_hw *ah)
2304 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2305 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
2307 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
2308 AR_GPIO_INPUT_MUX2_RFSILENT);
2310 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
2311 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
2314 int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
2315 bool bChannelChange)
2318 struct ath_softc *sc = ah->ah_sc;
2319 struct ath9k_channel *curchan = ah->curchan;
2322 int i, rx_chainmask, r;
2324 ah->extprotspacing = sc->ht_extprotspacing;
2325 ah->txchainmask = sc->tx_chainmask;
2326 ah->rxchainmask = sc->rx_chainmask;
2328 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2332 ath9k_hw_getnf(ah, curchan);
2334 if (bChannelChange &&
2335 (ah->chip_fullsleep != true) &&
2336 (ah->curchan != NULL) &&
2337 (chan->channel != ah->curchan->channel) &&
2338 ((chan->channelFlags & CHANNEL_ALL) ==
2339 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
2340 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
2341 !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
2343 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
2344 ath9k_hw_loadnf(ah, ah->curchan);
2345 ath9k_hw_start_nfcal(ah);
2350 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2351 if (saveDefAntenna == 0)
2354 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2356 saveLedState = REG_READ(ah, AR_CFG_LED) &
2357 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2358 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2360 ath9k_hw_mark_phy_inactive(ah);
2362 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2364 AR9271_RESET_POWER_DOWN_CONTROL,
2365 AR9271_RADIO_RF_RST);
2369 if (!ath9k_hw_chip_reset(ah, chan)) {
2370 DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
2374 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
2375 ah->htc_reset_init = false;
2377 AR9271_RESET_POWER_DOWN_CONTROL,
2378 AR9271_GATE_MAC_CTL);
2382 if (AR_SREV_9280_10_OR_LATER(ah))
2383 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
2385 if (AR_SREV_9287_10_OR_LATER(ah)) {
2386 /* Enable ASYNC FIFO */
2387 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2388 AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
2389 REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
2390 REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2391 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2392 REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
2393 AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
2395 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2399 /* Setup MFP options for CCMP */
2400 if (AR_SREV_9280_20_OR_LATER(ah)) {
2401 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2402 * frames when constructing CCMP AAD. */
2403 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2405 ah->sw_mgmt_crypto = false;
2406 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2407 /* Disable hardware crypto for management frames */
2408 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2409 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2410 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2411 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2412 ah->sw_mgmt_crypto = true;
2414 ah->sw_mgmt_crypto = true;
2416 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2417 ath9k_hw_set_delta_slope(ah, chan);
2419 if (AR_SREV_9280_10_OR_LATER(ah))
2420 ath9k_hw_9280_spur_mitigate(ah, chan);
2422 ath9k_hw_spur_mitigate(ah, chan);
2424 ah->eep_ops->set_board_values(ah, chan);
2426 ath9k_hw_decrease_chain_power(ah, chan);
2428 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
2429 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
2431 | AR_STA_ID1_RTS_USE_DEF
2433 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
2434 | ah->sta_id1_defaults);
2435 ath9k_hw_set_operating_mode(ah, ah->opmode);
2437 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
2438 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
2440 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2442 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
2443 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
2444 ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
2446 REG_WRITE(ah, AR_ISR, ~0);
2448 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2450 if (AR_SREV_9280_10_OR_LATER(ah))
2451 ath9k_hw_ar9280_set_channel(ah, chan);
2453 if (!(ath9k_hw_set_channel(ah, chan)))
2456 for (i = 0; i < AR_NUM_DCU; i++)
2457 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2460 for (i = 0; i < ah->caps.total_queues; i++)
2461 ath9k_hw_resettxqueue(ah, i);
2463 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
2464 ath9k_hw_init_qos(ah);
2466 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2467 ath9k_enable_rfkill(ah);
2469 ath9k_hw_init_user_settings(ah);
2471 if (AR_SREV_9287_10_OR_LATER(ah)) {
2472 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
2473 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
2474 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
2475 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
2476 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
2477 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
2479 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
2480 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
2482 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
2483 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
2484 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
2485 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
2487 if (AR_SREV_9287_10_OR_LATER(ah)) {
2488 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2489 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
2492 REG_WRITE(ah, AR_STA_ID1,
2493 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2495 ath9k_hw_set_dma(ah);
2497 REG_WRITE(ah, AR_OBS, 8);
2499 if (ah->config.intr_mitigation) {
2500 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2501 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2504 ath9k_hw_init_bb(ah, chan);
2506 if (!ath9k_hw_init_cal(ah, chan))
2509 rx_chainmask = ah->rxchainmask;
2510 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2511 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2512 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2515 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2518 * For big endian systems turn on swapping for descriptors
2520 if (AR_SREV_9100(ah)) {
2522 mask = REG_READ(ah, AR_CFG);
2523 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2524 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2525 "CFG Byte Swap Set 0x%x\n", mask);
2528 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2529 REG_WRITE(ah, AR_CFG, mask);
2530 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2531 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
2534 /* Configure AR9271 target WLAN */
2535 if (AR_SREV_9271(ah))
2536 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
2539 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2546 /************************/
2547 /* Key Cache Management */
2548 /************************/
2550 bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
2554 if (entry >= ah->caps.keycache_size) {
2555 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2556 "keychache entry %u out of range\n", entry);
2560 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
2562 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2563 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2564 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2565 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2566 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2567 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2568 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2569 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2571 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2572 u16 micentry = entry + 64;
2574 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2575 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2576 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2577 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2584 bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
2588 if (entry >= ah->caps.keycache_size) {
2589 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2590 "keychache entry %u out of range\n", entry);
2595 macHi = (mac[5] << 8) | mac[4];
2596 macLo = (mac[3] << 24) |
2601 macLo |= (macHi & 1) << 31;
2606 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2607 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
2612 bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
2613 const struct ath9k_keyval *k,
2616 const struct ath9k_hw_capabilities *pCap = &ah->caps;
2617 u32 key0, key1, key2, key3, key4;
2620 if (entry >= pCap->keycache_size) {
2621 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2622 "keycache entry %u out of range\n", entry);
2626 switch (k->kv_type) {
2627 case ATH9K_CIPHER_AES_OCB:
2628 keyType = AR_KEYTABLE_TYPE_AES;
2630 case ATH9K_CIPHER_AES_CCM:
2631 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2632 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2633 "AES-CCM not supported by mac rev 0x%x\n",
2634 ah->hw_version.macRev);
2637 keyType = AR_KEYTABLE_TYPE_CCM;
2639 case ATH9K_CIPHER_TKIP:
2640 keyType = AR_KEYTABLE_TYPE_TKIP;
2641 if (ATH9K_IS_MIC_ENABLED(ah)
2642 && entry + 64 >= pCap->keycache_size) {
2643 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2644 "entry %u inappropriate for TKIP\n", entry);
2648 case ATH9K_CIPHER_WEP:
2649 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
2650 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2651 "WEP key length %u too small\n", k->kv_len);
2654 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
2655 keyType = AR_KEYTABLE_TYPE_40;
2656 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
2657 keyType = AR_KEYTABLE_TYPE_104;
2659 keyType = AR_KEYTABLE_TYPE_128;
2661 case ATH9K_CIPHER_CLR:
2662 keyType = AR_KEYTABLE_TYPE_CLR;
2665 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2666 "cipher %u not supported\n", k->kv_type);
2670 key0 = get_unaligned_le32(k->kv_val + 0);
2671 key1 = get_unaligned_le16(k->kv_val + 4);
2672 key2 = get_unaligned_le32(k->kv_val + 6);
2673 key3 = get_unaligned_le16(k->kv_val + 10);
2674 key4 = get_unaligned_le32(k->kv_val + 12);
2675 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
2679 * Note: Key cache registers access special memory area that requires
2680 * two 32-bit writes to actually update the values in the internal
2681 * memory. Consequently, the exact order and pairs used here must be
2685 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2686 u16 micentry = entry + 64;
2689 * Write inverted key[47:0] first to avoid Michael MIC errors
2690 * on frames that could be sent or received at the same time.
2691 * The correct key will be written in the end once everything
2694 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2695 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
2697 /* Write key[95:48] */
2698 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2699 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2701 /* Write key[127:96] and key type */
2702 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2703 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2705 /* Write MAC address for the entry */
2706 (void) ath9k_hw_keysetmac(ah, entry, mac);
2708 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
2710 * TKIP uses two key cache entries:
2711 * Michael MIC TX/RX keys in the same key cache entry
2712 * (idx = main index + 64):
2713 * key0 [31:0] = RX key [31:0]
2714 * key1 [15:0] = TX key [31:16]
2715 * key1 [31:16] = reserved
2716 * key2 [31:0] = RX key [63:32]
2717 * key3 [15:0] = TX key [15:0]
2718 * key3 [31:16] = reserved
2719 * key4 [31:0] = TX key [63:32]
2721 u32 mic0, mic1, mic2, mic3, mic4;
2723 mic0 = get_unaligned_le32(k->kv_mic + 0);
2724 mic2 = get_unaligned_le32(k->kv_mic + 4);
2725 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2726 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2727 mic4 = get_unaligned_le32(k->kv_txmic + 4);
2729 /* Write RX[31:0] and TX[31:16] */
2730 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2731 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
2733 /* Write RX[63:32] and TX[15:0] */
2734 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2735 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
2737 /* Write TX[63:32] and keyType(reserved) */
2738 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2739 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2740 AR_KEYTABLE_TYPE_CLR);
2744 * TKIP uses four key cache entries (two for group
2746 * Michael MIC TX/RX keys are in different key cache
2747 * entries (idx = main index + 64 for TX and
2748 * main index + 32 + 96 for RX):
2749 * key0 [31:0] = TX/RX MIC key [31:0]
2750 * key1 [31:0] = reserved
2751 * key2 [31:0] = TX/RX MIC key [63:32]
2752 * key3 [31:0] = reserved
2753 * key4 [31:0] = reserved
2755 * Upper layer code will call this function separately
2756 * for TX and RX keys when these registers offsets are
2761 mic0 = get_unaligned_le32(k->kv_mic + 0);
2762 mic2 = get_unaligned_le32(k->kv_mic + 4);
2764 /* Write MIC key[31:0] */
2765 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2766 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2768 /* Write MIC key[63:32] */
2769 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2770 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2772 /* Write TX[63:32] and keyType(reserved) */
2773 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2774 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2775 AR_KEYTABLE_TYPE_CLR);
2778 /* MAC address registers are reserved for the MIC entry */
2779 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2780 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
2783 * Write the correct (un-inverted) key[47:0] last to enable
2784 * TKIP now that all other registers are set with correct
2787 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2788 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2790 /* Write key[47:0] */
2791 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2792 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2794 /* Write key[95:48] */
2795 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2796 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2798 /* Write key[127:96] and key type */
2799 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2800 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2802 /* Write MAC address for the entry */
2803 (void) ath9k_hw_keysetmac(ah, entry, mac);
2809 bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
2811 if (entry < ah->caps.keycache_size) {
2812 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2813 if (val & AR_KEYTABLE_VALID)
2819 /******************************/
2820 /* Power Management (Chipset) */
2821 /******************************/
2823 static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
2825 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2827 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2828 AR_RTC_FORCE_WAKE_EN);
2829 if (!AR_SREV_9100(ah))
2830 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2832 REG_CLR_BIT(ah, (AR_RTC_RESET),
2837 static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
2839 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2841 struct ath9k_hw_capabilities *pCap = &ah->caps;
2843 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2844 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2845 AR_RTC_FORCE_WAKE_ON_INT);
2847 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2848 AR_RTC_FORCE_WAKE_EN);
2853 static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
2859 if ((REG_READ(ah, AR_RTC_STATUS) &
2860 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2861 if (ath9k_hw_set_reset_reg(ah,
2862 ATH9K_RESET_POWER_ON) != true) {
2866 if (AR_SREV_9100(ah))
2867 REG_SET_BIT(ah, AR_RTC_RESET,
2870 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2871 AR_RTC_FORCE_WAKE_EN);
2874 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2875 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2876 if (val == AR_RTC_STATUS_ON)
2879 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2880 AR_RTC_FORCE_WAKE_EN);
2883 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2884 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
2889 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2894 static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
2895 enum ath9k_power_mode mode)
2897 int status = true, setChip = true;
2898 static const char *modes[] = {
2905 if (ah->power_mode == mode)
2908 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
2909 modes[ah->power_mode], modes[mode]);
2912 case ATH9K_PM_AWAKE:
2913 status = ath9k_hw_set_power_awake(ah, setChip);
2915 case ATH9K_PM_FULL_SLEEP:
2916 ath9k_set_power_sleep(ah, setChip);
2917 ah->chip_fullsleep = true;
2919 case ATH9K_PM_NETWORK_SLEEP:
2920 ath9k_set_power_network_sleep(ah, setChip);
2923 DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
2924 "Unknown power mode %u\n", mode);
2927 ah->power_mode = mode;
2932 bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
2934 unsigned long flags;
2937 spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
2938 ret = ath9k_hw_setpower_nolock(ah, mode);
2939 spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);