2 * Copyright (c) 2008 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>
26 static int btcoex_enable;
27 module_param(btcoex_enable, bool, 0);
28 MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
30 #define ATH9K_CLOCK_RATE_CCK 22
31 #define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
32 #define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
34 static bool ath9k_hw_set_reset_reg(struct ath_hal *ah, u32 type);
35 static void ath9k_hw_set_regs(struct ath_hal *ah, struct ath9k_channel *chan,
36 enum ath9k_ht_macmode macmode);
37 static u32 ath9k_hw_ini_fixup(struct ath_hal *ah,
38 struct ar5416_eeprom_def *pEepData,
40 static void ath9k_hw_9280_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan);
41 static void ath9k_hw_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan);
43 /********************/
44 /* Helper Functions */
45 /********************/
47 static u32 ath9k_hw_mac_usec(struct ath_hal *ah, u32 clks)
49 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
50 if (!ah->ah_curchan) /* should really check for CCK instead */
51 return clks / ATH9K_CLOCK_RATE_CCK;
52 if (conf->channel->band == IEEE80211_BAND_2GHZ)
53 return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
54 return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
57 static u32 ath9k_hw_mac_to_usec(struct ath_hal *ah, u32 clks)
59 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_hal *ah, u32 usecs)
68 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
69 if (!ah->ah_curchan) /* should really check for CCK instead */
70 return usecs *ATH9K_CLOCK_RATE_CCK;
71 if (conf->channel->band == IEEE80211_BAND_2GHZ)
72 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
73 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
76 static u32 ath9k_hw_mac_to_clks(struct ath_hal *ah, u32 usecs)
78 struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
79 if (conf_is_ht40(conf))
80 return ath9k_hw_mac_clks(ah, usecs) * 2;
82 return ath9k_hw_mac_clks(ah, usecs);
85 bool ath9k_hw_wait(struct ath_hal *ah, u32 reg, u32 mask, u32 val)
89 for (i = 0; i < (AH_TIMEOUT / AH_TIME_QUANTUM); i++) {
90 if ((REG_READ(ah, reg) & mask) == val)
93 udelay(AH_TIME_QUANTUM);
96 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
97 "timeout on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
98 reg, REG_READ(ah, reg), mask, val);
103 u32 ath9k_hw_reverse_bits(u32 val, u32 n)
108 for (i = 0, retval = 0; i < n; i++) {
109 retval = (retval << 1) | (val & 1);
115 bool ath9k_get_channel_edges(struct ath_hal *ah,
119 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
121 if (flags & CHANNEL_5GHZ) {
122 *low = pCap->low_5ghz_chan;
123 *high = pCap->high_5ghz_chan;
126 if ((flags & CHANNEL_2GHZ)) {
127 *low = pCap->low_2ghz_chan;
128 *high = pCap->high_2ghz_chan;
134 u16 ath9k_hw_computetxtime(struct ath_hal *ah,
135 struct ath_rate_table *rates,
136 u32 frameLen, u16 rateix,
139 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
142 kbps = rates->info[rateix].ratekbps;
147 switch (rates->info[rateix].phy) {
148 case WLAN_RC_PHY_CCK:
149 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
150 if (shortPreamble && rates->info[rateix].short_preamble)
152 numBits = frameLen << 3;
153 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
155 case WLAN_RC_PHY_OFDM:
156 if (ah->ah_curchan && IS_CHAN_QUARTER_RATE(ah->ah_curchan)) {
157 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
158 numBits = OFDM_PLCP_BITS + (frameLen << 3);
159 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
160 txTime = OFDM_SIFS_TIME_QUARTER
161 + OFDM_PREAMBLE_TIME_QUARTER
162 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
163 } else if (ah->ah_curchan &&
164 IS_CHAN_HALF_RATE(ah->ah_curchan)) {
165 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
166 numBits = OFDM_PLCP_BITS + (frameLen << 3);
167 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
168 txTime = OFDM_SIFS_TIME_HALF +
169 OFDM_PREAMBLE_TIME_HALF
170 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
172 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
173 numBits = OFDM_PLCP_BITS + (frameLen << 3);
174 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
175 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
176 + (numSymbols * OFDM_SYMBOL_TIME);
180 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
181 "Unknown phy %u (rate ix %u)\n",
182 rates->info[rateix].phy, rateix);
190 u32 ath9k_hw_mhz2ieee(struct ath_hal *ah, u32 freq, u32 flags)
192 if (flags & CHANNEL_2GHZ) {
196 return (freq - 2407) / 5;
198 return 15 + ((freq - 2512) / 20);
199 } else if (flags & CHANNEL_5GHZ) {
200 if (ath9k_regd_is_public_safety_sku(ah) &&
201 IS_CHAN_IN_PUBLIC_SAFETY_BAND(freq)) {
202 return ((freq * 10) +
203 (((freq % 5) == 2) ? 5 : 0) - 49400) / 5;
204 } else if ((flags & CHANNEL_A) && (freq <= 5000)) {
205 return (freq - 4000) / 5;
207 return (freq - 5000) / 5;
213 return (freq - 2407) / 5;
215 if (ath9k_regd_is_public_safety_sku(ah)
216 && IS_CHAN_IN_PUBLIC_SAFETY_BAND(freq)) {
217 return ((freq * 10) +
219 2) ? 5 : 0) - 49400) / 5;
220 } else if (freq > 4900) {
221 return (freq - 4000) / 5;
223 return 15 + ((freq - 2512) / 20);
226 return (freq - 5000) / 5;
230 void ath9k_hw_get_channel_centers(struct ath_hal *ah,
231 struct ath9k_channel *chan,
232 struct chan_centers *centers)
235 struct ath_hal_5416 *ahp = AH5416(ah);
237 if (!IS_CHAN_HT40(chan)) {
238 centers->ctl_center = centers->ext_center =
239 centers->synth_center = chan->channel;
243 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
244 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
245 centers->synth_center =
246 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
249 centers->synth_center =
250 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
254 centers->ctl_center =
255 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
256 centers->ext_center =
257 centers->synth_center + (extoff *
258 ((ahp->ah_extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
259 HT40_CHANNEL_CENTER_SHIFT : 15));
267 static void ath9k_hw_read_revisions(struct ath_hal *ah)
271 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
274 val = REG_READ(ah, AR_SREV);
275 ah->ah_macVersion = (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
276 ah->ah_macRev = MS(val, AR_SREV_REVISION2);
277 ah->ah_isPciExpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
279 if (!AR_SREV_9100(ah))
280 ah->ah_macVersion = MS(val, AR_SREV_VERSION);
282 ah->ah_macRev = val & AR_SREV_REVISION;
284 if (ah->ah_macVersion == AR_SREV_VERSION_5416_PCIE)
285 ah->ah_isPciExpress = true;
289 static int ath9k_hw_get_radiorev(struct ath_hal *ah)
294 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
296 for (i = 0; i < 8; i++)
297 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
298 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
299 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
301 return ath9k_hw_reverse_bits(val, 8);
304 /************************************/
305 /* HW Attach, Detach, Init Routines */
306 /************************************/
308 static void ath9k_hw_disablepcie(struct ath_hal *ah)
310 if (!AR_SREV_9100(ah))
313 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
315 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
317 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
318 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
319 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
320 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
321 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
323 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
326 static bool ath9k_hw_chip_test(struct ath_hal *ah)
328 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
330 u32 patternData[4] = { 0x55555555,
336 for (i = 0; i < 2; i++) {
337 u32 addr = regAddr[i];
340 regHold[i] = REG_READ(ah, addr);
341 for (j = 0; j < 0x100; j++) {
342 wrData = (j << 16) | j;
343 REG_WRITE(ah, addr, wrData);
344 rdData = REG_READ(ah, addr);
345 if (rdData != wrData) {
346 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
347 "address test failed "
348 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
349 addr, wrData, rdData);
353 for (j = 0; j < 4; j++) {
354 wrData = patternData[j];
355 REG_WRITE(ah, addr, wrData);
356 rdData = REG_READ(ah, addr);
357 if (wrData != rdData) {
358 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
359 "address test failed "
360 "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
361 addr, wrData, rdData);
365 REG_WRITE(ah, regAddr[i], regHold[i]);
371 static const char *ath9k_hw_devname(u16 devid)
374 case AR5416_DEVID_PCI:
375 return "Atheros 5416";
376 case AR5416_DEVID_PCIE:
377 return "Atheros 5418";
378 case AR9160_DEVID_PCI:
379 return "Atheros 9160";
380 case AR5416_AR9100_DEVID:
381 return "Atheros 9100";
382 case AR9280_DEVID_PCI:
383 case AR9280_DEVID_PCIE:
384 return "Atheros 9280";
385 case AR9285_DEVID_PCIE:
386 return "Atheros 9285";
392 static void ath9k_hw_set_defaults(struct ath_hal *ah)
396 ah->ah_config.dma_beacon_response_time = 2;
397 ah->ah_config.sw_beacon_response_time = 10;
398 ah->ah_config.additional_swba_backoff = 0;
399 ah->ah_config.ack_6mb = 0x0;
400 ah->ah_config.cwm_ignore_extcca = 0;
401 ah->ah_config.pcie_powersave_enable = 0;
402 ah->ah_config.pcie_l1skp_enable = 0;
403 ah->ah_config.pcie_clock_req = 0;
404 ah->ah_config.pcie_power_reset = 0x100;
405 ah->ah_config.pcie_restore = 0;
406 ah->ah_config.pcie_waen = 0;
407 ah->ah_config.analog_shiftreg = 1;
408 ah->ah_config.ht_enable = 1;
409 ah->ah_config.ofdm_trig_low = 200;
410 ah->ah_config.ofdm_trig_high = 500;
411 ah->ah_config.cck_trig_high = 200;
412 ah->ah_config.cck_trig_low = 100;
413 ah->ah_config.enable_ani = 1;
414 ah->ah_config.noise_immunity_level = 4;
415 ah->ah_config.ofdm_weaksignal_det = 1;
416 ah->ah_config.cck_weaksignal_thr = 0;
417 ah->ah_config.spur_immunity_level = 2;
418 ah->ah_config.firstep_level = 0;
419 ah->ah_config.rssi_thr_high = 40;
420 ah->ah_config.rssi_thr_low = 7;
421 ah->ah_config.diversity_control = 0;
422 ah->ah_config.antenna_switch_swap = 0;
424 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
425 ah->ah_config.spurchans[i][0] = AR_NO_SPUR;
426 ah->ah_config.spurchans[i][1] = AR_NO_SPUR;
429 ah->ah_config.intr_mitigation = 1;
432 static struct ath_hal_5416 *ath9k_hw_newstate(u16 devid,
433 struct ath_softc *sc,
437 static const u8 defbssidmask[ETH_ALEN] =
438 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
439 struct ath_hal_5416 *ahp;
442 ahp = kzalloc(sizeof(struct ath_hal_5416), GFP_KERNEL);
444 DPRINTF(sc, ATH_DBG_FATAL,
445 "Cannot allocate memory for state block\n");
453 ah->ah_magic = AR5416_MAGIC;
454 ah->ah_countryCode = CTRY_DEFAULT;
455 ah->ah_devid = devid;
456 ah->ah_subvendorid = 0;
459 if ((devid == AR5416_AR9100_DEVID))
460 ah->ah_macVersion = AR_SREV_VERSION_9100;
461 if (!AR_SREV_9100(ah))
462 ah->ah_flags = AH_USE_EEPROM;
464 ah->ah_powerLimit = MAX_RATE_POWER;
465 ah->ah_tpScale = ATH9K_TP_SCALE_MAX;
466 ahp->ah_atimWindow = 0;
467 ahp->ah_diversityControl = ah->ah_config.diversity_control;
468 ahp->ah_antennaSwitchSwap =
469 ah->ah_config.antenna_switch_swap;
470 ahp->ah_staId1Defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
471 ahp->ah_beaconInterval = 100;
472 ahp->ah_enable32kHzClock = DONT_USE_32KHZ;
473 ahp->ah_slottime = (u32) -1;
474 ahp->ah_acktimeout = (u32) -1;
475 ahp->ah_ctstimeout = (u32) -1;
476 ahp->ah_globaltxtimeout = (u32) -1;
477 memcpy(&ahp->ah_bssidmask, defbssidmask, ETH_ALEN);
479 ahp->ah_gBeaconRate = 0;
484 static int ath9k_hw_rfattach(struct ath_hal *ah)
486 bool rfStatus = false;
489 rfStatus = ath9k_hw_init_rf(ah, &ecode);
491 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
492 "RF setup failed, status %u\n", ecode);
499 static int ath9k_hw_rf_claim(struct ath_hal *ah)
503 REG_WRITE(ah, AR_PHY(0), 0x00000007);
505 val = ath9k_hw_get_radiorev(ah);
506 switch (val & AR_RADIO_SREV_MAJOR) {
508 val = AR_RAD5133_SREV_MAJOR;
510 case AR_RAD5133_SREV_MAJOR:
511 case AR_RAD5122_SREV_MAJOR:
512 case AR_RAD2133_SREV_MAJOR:
513 case AR_RAD2122_SREV_MAJOR:
516 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
517 "5G Radio Chip Rev 0x%02X is not "
518 "supported by this driver\n",
519 ah->ah_analog5GhzRev);
523 ah->ah_analog5GhzRev = val;
528 static int ath9k_hw_init_macaddr(struct ath_hal *ah)
533 struct ath_hal_5416 *ahp = AH5416(ah);
536 for (i = 0; i < 3; i++) {
537 eeval = ath9k_hw_get_eeprom(ah, AR_EEPROM_MAC(i));
539 ahp->ah_macaddr[2 * i] = eeval >> 8;
540 ahp->ah_macaddr[2 * i + 1] = eeval & 0xff;
542 if (sum == 0 || sum == 0xffff * 3) {
543 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
544 "mac address read failed: %pM\n",
546 return -EADDRNOTAVAIL;
552 static void ath9k_hw_init_rxgain_ini(struct ath_hal *ah)
555 struct ath_hal_5416 *ahp = AH5416(ah);
557 if (ath9k_hw_get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
558 rxgain_type = ath9k_hw_get_eeprom(ah, EEP_RXGAIN_TYPE);
560 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
561 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
562 ar9280Modes_backoff_13db_rxgain_9280_2,
563 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
564 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
565 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
566 ar9280Modes_backoff_23db_rxgain_9280_2,
567 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
569 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
570 ar9280Modes_original_rxgain_9280_2,
571 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
573 INIT_INI_ARRAY(&ahp->ah_iniModesRxGain,
574 ar9280Modes_original_rxgain_9280_2,
575 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
578 static void ath9k_hw_init_txgain_ini(struct ath_hal *ah)
581 struct ath_hal_5416 *ahp = AH5416(ah);
583 if (ath9k_hw_get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
584 txgain_type = ath9k_hw_get_eeprom(ah, EEP_TXGAIN_TYPE);
586 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
587 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
588 ar9280Modes_high_power_tx_gain_9280_2,
589 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
591 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
592 ar9280Modes_original_tx_gain_9280_2,
593 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
595 INIT_INI_ARRAY(&ahp->ah_iniModesTxGain,
596 ar9280Modes_original_tx_gain_9280_2,
597 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
600 static int ath9k_hw_post_attach(struct ath_hal *ah)
604 if (!ath9k_hw_chip_test(ah)) {
605 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
606 "hardware self-test failed\n");
610 ecode = ath9k_hw_rf_claim(ah);
614 ecode = ath9k_hw_eeprom_attach(ah);
617 ecode = ath9k_hw_rfattach(ah);
621 if (!AR_SREV_9100(ah)) {
622 ath9k_hw_ani_setup(ah);
623 ath9k_hw_ani_attach(ah);
629 static struct ath_hal *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
630 void __iomem *mem, int *status)
632 struct ath_hal_5416 *ahp;
637 ahp = ath9k_hw_newstate(devid, sc, mem, status);
643 ath9k_hw_set_defaults(ah);
645 if (ah->ah_config.intr_mitigation != 0)
646 ahp->ah_intrMitigation = true;
648 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
649 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "Couldn't reset chip\n");
654 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
655 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "Couldn't wakeup chip\n");
660 if (ah->ah_config.serialize_regmode == SER_REG_MODE_AUTO) {
661 if (ah->ah_macVersion == AR_SREV_VERSION_5416_PCI) {
662 ah->ah_config.serialize_regmode =
665 ah->ah_config.serialize_regmode =
670 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
671 "serialize_regmode is %d\n",
672 ah->ah_config.serialize_regmode);
674 if ((ah->ah_macVersion != AR_SREV_VERSION_5416_PCI) &&
675 (ah->ah_macVersion != AR_SREV_VERSION_5416_PCIE) &&
676 (ah->ah_macVersion != AR_SREV_VERSION_9160) &&
677 (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) && (!AR_SREV_9285(ah))) {
678 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
679 "Mac Chip Rev 0x%02x.%x is not supported by "
680 "this driver\n", ah->ah_macVersion, ah->ah_macRev);
685 if (AR_SREV_9100(ah)) {
686 ahp->ah_iqCalData.calData = &iq_cal_multi_sample;
687 ahp->ah_suppCals = IQ_MISMATCH_CAL;
688 ah->ah_isPciExpress = false;
690 ah->ah_phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
692 if (AR_SREV_9160_10_OR_LATER(ah)) {
693 if (AR_SREV_9280_10_OR_LATER(ah)) {
694 ahp->ah_iqCalData.calData = &iq_cal_single_sample;
695 ahp->ah_adcGainCalData.calData =
696 &adc_gain_cal_single_sample;
697 ahp->ah_adcDcCalData.calData =
698 &adc_dc_cal_single_sample;
699 ahp->ah_adcDcCalInitData.calData =
702 ahp->ah_iqCalData.calData = &iq_cal_multi_sample;
703 ahp->ah_adcGainCalData.calData =
704 &adc_gain_cal_multi_sample;
705 ahp->ah_adcDcCalData.calData =
706 &adc_dc_cal_multi_sample;
707 ahp->ah_adcDcCalInitData.calData =
710 ahp->ah_suppCals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
713 if (AR_SREV_9160(ah)) {
714 ah->ah_config.enable_ani = 1;
715 ahp->ah_ani_function = (ATH9K_ANI_SPUR_IMMUNITY_LEVEL |
716 ATH9K_ANI_FIRSTEP_LEVEL);
718 ahp->ah_ani_function = ATH9K_ANI_ALL;
719 if (AR_SREV_9280_10_OR_LATER(ah)) {
720 ahp->ah_ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
724 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
725 "This Mac Chip Rev 0x%02x.%x is \n",
726 ah->ah_macVersion, ah->ah_macRev);
728 if (AR_SREV_9285_12_OR_LATER(ah)) {
729 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9285Modes_9285_1_2,
730 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
731 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9285Common_9285_1_2,
732 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
734 if (ah->ah_config.pcie_clock_req) {
735 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
736 ar9285PciePhy_clkreq_off_L1_9285_1_2,
737 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
739 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
740 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
741 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
744 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
745 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9285Modes_9285,
746 ARRAY_SIZE(ar9285Modes_9285), 6);
747 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9285Common_9285,
748 ARRAY_SIZE(ar9285Common_9285), 2);
750 if (ah->ah_config.pcie_clock_req) {
751 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
752 ar9285PciePhy_clkreq_off_L1_9285,
753 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
755 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
756 ar9285PciePhy_clkreq_always_on_L1_9285,
757 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
759 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
760 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9280Modes_9280_2,
761 ARRAY_SIZE(ar9280Modes_9280_2), 6);
762 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9280Common_9280_2,
763 ARRAY_SIZE(ar9280Common_9280_2), 2);
765 if (ah->ah_config.pcie_clock_req) {
766 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
767 ar9280PciePhy_clkreq_off_L1_9280,
768 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
770 INIT_INI_ARRAY(&ahp->ah_iniPcieSerdes,
771 ar9280PciePhy_clkreq_always_on_L1_9280,
772 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
774 INIT_INI_ARRAY(&ahp->ah_iniModesAdditional,
775 ar9280Modes_fast_clock_9280_2,
776 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
777 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
778 INIT_INI_ARRAY(&ahp->ah_iniModes, ar9280Modes_9280,
779 ARRAY_SIZE(ar9280Modes_9280), 6);
780 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar9280Common_9280,
781 ARRAY_SIZE(ar9280Common_9280), 2);
782 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
783 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes_9160,
784 ARRAY_SIZE(ar5416Modes_9160), 6);
785 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common_9160,
786 ARRAY_SIZE(ar5416Common_9160), 2);
787 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0_9160,
788 ARRAY_SIZE(ar5416Bank0_9160), 2);
789 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain_9160,
790 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
791 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1_9160,
792 ARRAY_SIZE(ar5416Bank1_9160), 2);
793 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2_9160,
794 ARRAY_SIZE(ar5416Bank2_9160), 2);
795 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3_9160,
796 ARRAY_SIZE(ar5416Bank3_9160), 3);
797 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6_9160,
798 ARRAY_SIZE(ar5416Bank6_9160), 3);
799 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC_9160,
800 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
801 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7_9160,
802 ARRAY_SIZE(ar5416Bank7_9160), 2);
803 if (AR_SREV_9160_11(ah)) {
804 INIT_INI_ARRAY(&ahp->ah_iniAddac,
806 ARRAY_SIZE(ar5416Addac_91601_1), 2);
808 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac_9160,
809 ARRAY_SIZE(ar5416Addac_9160), 2);
811 } else if (AR_SREV_9100_OR_LATER(ah)) {
812 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes_9100,
813 ARRAY_SIZE(ar5416Modes_9100), 6);
814 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common_9100,
815 ARRAY_SIZE(ar5416Common_9100), 2);
816 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0_9100,
817 ARRAY_SIZE(ar5416Bank0_9100), 2);
818 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain_9100,
819 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
820 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1_9100,
821 ARRAY_SIZE(ar5416Bank1_9100), 2);
822 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2_9100,
823 ARRAY_SIZE(ar5416Bank2_9100), 2);
824 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3_9100,
825 ARRAY_SIZE(ar5416Bank3_9100), 3);
826 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6_9100,
827 ARRAY_SIZE(ar5416Bank6_9100), 3);
828 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC_9100,
829 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
830 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7_9100,
831 ARRAY_SIZE(ar5416Bank7_9100), 2);
832 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac_9100,
833 ARRAY_SIZE(ar5416Addac_9100), 2);
835 INIT_INI_ARRAY(&ahp->ah_iniModes, ar5416Modes,
836 ARRAY_SIZE(ar5416Modes), 6);
837 INIT_INI_ARRAY(&ahp->ah_iniCommon, ar5416Common,
838 ARRAY_SIZE(ar5416Common), 2);
839 INIT_INI_ARRAY(&ahp->ah_iniBank0, ar5416Bank0,
840 ARRAY_SIZE(ar5416Bank0), 2);
841 INIT_INI_ARRAY(&ahp->ah_iniBB_RfGain, ar5416BB_RfGain,
842 ARRAY_SIZE(ar5416BB_RfGain), 3);
843 INIT_INI_ARRAY(&ahp->ah_iniBank1, ar5416Bank1,
844 ARRAY_SIZE(ar5416Bank1), 2);
845 INIT_INI_ARRAY(&ahp->ah_iniBank2, ar5416Bank2,
846 ARRAY_SIZE(ar5416Bank2), 2);
847 INIT_INI_ARRAY(&ahp->ah_iniBank3, ar5416Bank3,
848 ARRAY_SIZE(ar5416Bank3), 3);
849 INIT_INI_ARRAY(&ahp->ah_iniBank6, ar5416Bank6,
850 ARRAY_SIZE(ar5416Bank6), 3);
851 INIT_INI_ARRAY(&ahp->ah_iniBank6TPC, ar5416Bank6TPC,
852 ARRAY_SIZE(ar5416Bank6TPC), 3);
853 INIT_INI_ARRAY(&ahp->ah_iniBank7, ar5416Bank7,
854 ARRAY_SIZE(ar5416Bank7), 2);
855 INIT_INI_ARRAY(&ahp->ah_iniAddac, ar5416Addac,
856 ARRAY_SIZE(ar5416Addac), 2);
859 if (ah->ah_isPciExpress)
860 ath9k_hw_configpcipowersave(ah, 0);
862 ath9k_hw_disablepcie(ah);
864 ecode = ath9k_hw_post_attach(ah);
869 if (AR_SREV_9280_20(ah))
870 ath9k_hw_init_rxgain_ini(ah);
873 if (AR_SREV_9280_20(ah))
874 ath9k_hw_init_txgain_ini(ah);
876 if (ah->ah_devid == AR9280_DEVID_PCI) {
877 for (i = 0; i < ahp->ah_iniModes.ia_rows; i++) {
878 u32 reg = INI_RA(&ahp->ah_iniModes, i, 0);
880 for (j = 1; j < ahp->ah_iniModes.ia_columns; j++) {
881 u32 val = INI_RA(&ahp->ah_iniModes, i, j);
883 INI_RA(&ahp->ah_iniModes, i, j) =
884 ath9k_hw_ini_fixup(ah,
891 if (!ath9k_hw_fill_cap_info(ah)) {
892 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
893 "failed ath9k_hw_fill_cap_info\n");
898 ecode = ath9k_hw_init_macaddr(ah);
900 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
901 "failed initializing mac address\n");
905 if (AR_SREV_9285(ah))
906 ah->ah_txTrigLevel = (AR_FTRIG_256B >> AR_FTRIG_S);
908 ah->ah_txTrigLevel = (AR_FTRIG_512B >> AR_FTRIG_S);
910 ath9k_init_nfcal_hist_buffer(ah);
915 ath9k_hw_detach((struct ath_hal *) ahp);
922 static void ath9k_hw_init_bb(struct ath_hal *ah,
923 struct ath9k_channel *chan)
927 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
929 synthDelay = (4 * synthDelay) / 22;
933 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
935 udelay(synthDelay + BASE_ACTIVATE_DELAY);
938 static void ath9k_hw_init_qos(struct ath_hal *ah)
940 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
941 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
943 REG_WRITE(ah, AR_QOS_NO_ACK,
944 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
945 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
946 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
948 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
949 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
950 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
951 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
952 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
955 static void ath9k_hw_init_pll(struct ath_hal *ah,
956 struct ath9k_channel *chan)
960 if (AR_SREV_9100(ah)) {
961 if (chan && IS_CHAN_5GHZ(chan))
966 if (AR_SREV_9280_10_OR_LATER(ah)) {
967 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
969 if (chan && IS_CHAN_HALF_RATE(chan))
970 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
971 else if (chan && IS_CHAN_QUARTER_RATE(chan))
972 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
974 if (chan && IS_CHAN_5GHZ(chan)) {
975 pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
978 if (AR_SREV_9280_20(ah)) {
979 if (((chan->channel % 20) == 0)
980 || ((chan->channel % 10) == 0))
986 pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
989 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
991 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
993 if (chan && IS_CHAN_HALF_RATE(chan))
994 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
995 else if (chan && IS_CHAN_QUARTER_RATE(chan))
996 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
998 if (chan && IS_CHAN_5GHZ(chan))
999 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1001 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1003 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1005 if (chan && IS_CHAN_HALF_RATE(chan))
1006 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1007 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1008 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1010 if (chan && IS_CHAN_5GHZ(chan))
1011 pll |= SM(0xa, AR_RTC_PLL_DIV);
1013 pll |= SM(0xb, AR_RTC_PLL_DIV);
1016 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
1018 udelay(RTC_PLL_SETTLE_DELAY);
1020 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1023 static void ath9k_hw_init_chain_masks(struct ath_hal *ah)
1025 struct ath_hal_5416 *ahp = AH5416(ah);
1026 int rx_chainmask, tx_chainmask;
1028 rx_chainmask = ahp->ah_rxchainmask;
1029 tx_chainmask = ahp->ah_txchainmask;
1031 switch (rx_chainmask) {
1033 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1034 AR_PHY_SWAP_ALT_CHAIN);
1036 if (((ah)->ah_macVersion <= AR_SREV_VERSION_9160)) {
1037 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
1038 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
1044 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1045 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1051 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
1052 if (tx_chainmask == 0x5) {
1053 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
1054 AR_PHY_SWAP_ALT_CHAIN);
1056 if (AR_SREV_9100(ah))
1057 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
1058 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
1061 static void ath9k_hw_init_interrupt_masks(struct ath_hal *ah,
1062 enum nl80211_iftype opmode)
1064 struct ath_hal_5416 *ahp = AH5416(ah);
1066 ahp->ah_maskReg = AR_IMR_TXERR |
1072 if (ahp->ah_intrMitigation)
1073 ahp->ah_maskReg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
1075 ahp->ah_maskReg |= AR_IMR_RXOK;
1077 ahp->ah_maskReg |= AR_IMR_TXOK;
1079 if (opmode == NL80211_IFTYPE_AP)
1080 ahp->ah_maskReg |= AR_IMR_MIB;
1082 REG_WRITE(ah, AR_IMR, ahp->ah_maskReg);
1083 REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
1085 if (!AR_SREV_9100(ah)) {
1086 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1087 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1088 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1092 static bool ath9k_hw_set_ack_timeout(struct ath_hal *ah, u32 us)
1094 struct ath_hal_5416 *ahp = AH5416(ah);
1096 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
1097 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
1098 ahp->ah_acktimeout = (u32) -1;
1101 REG_RMW_FIELD(ah, AR_TIME_OUT,
1102 AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
1103 ahp->ah_acktimeout = us;
1108 static bool ath9k_hw_set_cts_timeout(struct ath_hal *ah, u32 us)
1110 struct ath_hal_5416 *ahp = AH5416(ah);
1112 if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
1113 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
1114 ahp->ah_ctstimeout = (u32) -1;
1117 REG_RMW_FIELD(ah, AR_TIME_OUT,
1118 AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
1119 ahp->ah_ctstimeout = us;
1124 static bool ath9k_hw_set_global_txtimeout(struct ath_hal *ah, u32 tu)
1126 struct ath_hal_5416 *ahp = AH5416(ah);
1129 DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
1130 "bad global tx timeout %u\n", tu);
1131 ahp->ah_globaltxtimeout = (u32) -1;
1134 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
1135 ahp->ah_globaltxtimeout = tu;
1140 static void ath9k_hw_init_user_settings(struct ath_hal *ah)
1142 struct ath_hal_5416 *ahp = AH5416(ah);
1144 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ahp->ah_miscMode 0x%x\n",
1147 if (ahp->ah_miscMode != 0)
1148 REG_WRITE(ah, AR_PCU_MISC,
1149 REG_READ(ah, AR_PCU_MISC) | ahp->ah_miscMode);
1150 if (ahp->ah_slottime != (u32) -1)
1151 ath9k_hw_setslottime(ah, ahp->ah_slottime);
1152 if (ahp->ah_acktimeout != (u32) -1)
1153 ath9k_hw_set_ack_timeout(ah, ahp->ah_acktimeout);
1154 if (ahp->ah_ctstimeout != (u32) -1)
1155 ath9k_hw_set_cts_timeout(ah, ahp->ah_ctstimeout);
1156 if (ahp->ah_globaltxtimeout != (u32) -1)
1157 ath9k_hw_set_global_txtimeout(ah, ahp->ah_globaltxtimeout);
1160 const char *ath9k_hw_probe(u16 vendorid, u16 devid)
1162 return vendorid == ATHEROS_VENDOR_ID ?
1163 ath9k_hw_devname(devid) : NULL;
1166 void ath9k_hw_detach(struct ath_hal *ah)
1168 if (!AR_SREV_9100(ah))
1169 ath9k_hw_ani_detach(ah);
1171 ath9k_hw_rfdetach(ah);
1172 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
1176 struct ath_hal *ath9k_hw_attach(u16 devid, struct ath_softc *sc,
1177 void __iomem *mem, int *error)
1179 struct ath_hal *ah = NULL;
1182 case AR5416_DEVID_PCI:
1183 case AR5416_DEVID_PCIE:
1184 case AR5416_AR9100_DEVID:
1185 case AR9160_DEVID_PCI:
1186 case AR9280_DEVID_PCI:
1187 case AR9280_DEVID_PCIE:
1188 case AR9285_DEVID_PCIE:
1189 ah = ath9k_hw_do_attach(devid, sc, mem, error);
1203 static void ath9k_hw_override_ini(struct ath_hal *ah,
1204 struct ath9k_channel *chan)
1207 * Set the RX_ABORT and RX_DIS and clear if off only after
1208 * RXE is set for MAC. This prevents frames with corrupted
1209 * descriptor status.
1211 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
1214 if (!AR_SREV_5416_V20_OR_LATER(ah) ||
1215 AR_SREV_9280_10_OR_LATER(ah))
1218 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
1221 static u32 ath9k_hw_def_ini_fixup(struct ath_hal *ah,
1222 struct ar5416_eeprom_def *pEepData,
1225 struct base_eep_header *pBase = &(pEepData->baseEepHeader);
1227 switch (ah->ah_devid) {
1228 case AR9280_DEVID_PCI:
1229 if (reg == 0x7894) {
1230 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1231 "ini VAL: %x EEPROM: %x\n", value,
1232 (pBase->version & 0xff));
1234 if ((pBase->version & 0xff) > 0x0a) {
1235 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1238 value &= ~AR_AN_TOP2_PWDCLKIND;
1239 value |= AR_AN_TOP2_PWDCLKIND &
1240 (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
1242 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1243 "PWDCLKIND Earlier Rev\n");
1246 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
1247 "final ini VAL: %x\n", value);
1255 static u32 ath9k_hw_ini_fixup(struct ath_hal *ah,
1256 struct ar5416_eeprom_def *pEepData,
1259 struct ath_hal_5416 *ahp = AH5416(ah);
1261 if (ahp->ah_eep_map == EEP_MAP_4KBITS)
1264 return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
1267 static int ath9k_hw_process_ini(struct ath_hal *ah,
1268 struct ath9k_channel *chan,
1269 enum ath9k_ht_macmode macmode)
1271 int i, regWrites = 0;
1272 struct ath_hal_5416 *ahp = AH5416(ah);
1273 u32 modesIndex, freqIndex;
1276 switch (chan->chanmode) {
1278 case CHANNEL_A_HT20:
1282 case CHANNEL_A_HT40PLUS:
1283 case CHANNEL_A_HT40MINUS:
1288 case CHANNEL_G_HT20:
1293 case CHANNEL_G_HT40PLUS:
1294 case CHANNEL_G_HT40MINUS:
1303 REG_WRITE(ah, AR_PHY(0), 0x00000007);
1305 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
1307 ath9k_hw_set_addac(ah, chan);
1309 if (AR_SREV_5416_V22_OR_LATER(ah)) {
1310 REG_WRITE_ARRAY(&ahp->ah_iniAddac, 1, regWrites);
1312 struct ar5416IniArray temp;
1314 sizeof(u32) * ahp->ah_iniAddac.ia_rows *
1315 ahp->ah_iniAddac.ia_columns;
1317 memcpy(ahp->ah_addac5416_21,
1318 ahp->ah_iniAddac.ia_array, addacSize);
1320 (ahp->ah_addac5416_21)[31 * ahp->ah_iniAddac.ia_columns + 1] = 0;
1322 temp.ia_array = ahp->ah_addac5416_21;
1323 temp.ia_columns = ahp->ah_iniAddac.ia_columns;
1324 temp.ia_rows = ahp->ah_iniAddac.ia_rows;
1325 REG_WRITE_ARRAY(&temp, 1, regWrites);
1328 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
1330 for (i = 0; i < ahp->ah_iniModes.ia_rows; i++) {
1331 u32 reg = INI_RA(&ahp->ah_iniModes, i, 0);
1332 u32 val = INI_RA(&ahp->ah_iniModes, i, modesIndex);
1334 REG_WRITE(ah, reg, val);
1336 if (reg >= 0x7800 && reg < 0x78a0
1337 && ah->ah_config.analog_shiftreg) {
1341 DO_DELAY(regWrites);
1344 if (AR_SREV_9280(ah))
1345 REG_WRITE_ARRAY(&ahp->ah_iniModesRxGain, modesIndex, regWrites);
1347 if (AR_SREV_9280(ah))
1348 REG_WRITE_ARRAY(&ahp->ah_iniModesTxGain, modesIndex, regWrites);
1350 for (i = 0; i < ahp->ah_iniCommon.ia_rows; i++) {
1351 u32 reg = INI_RA(&ahp->ah_iniCommon, i, 0);
1352 u32 val = INI_RA(&ahp->ah_iniCommon, i, 1);
1354 REG_WRITE(ah, reg, val);
1356 if (reg >= 0x7800 && reg < 0x78a0
1357 && ah->ah_config.analog_shiftreg) {
1361 DO_DELAY(regWrites);
1364 ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
1366 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
1367 REG_WRITE_ARRAY(&ahp->ah_iniModesAdditional, modesIndex,
1371 ath9k_hw_override_ini(ah, chan);
1372 ath9k_hw_set_regs(ah, chan, macmode);
1373 ath9k_hw_init_chain_masks(ah);
1375 status = ath9k_hw_set_txpower(ah, chan,
1376 ath9k_regd_get_ctl(ah, chan),
1377 ath9k_regd_get_antenna_allowed(ah,
1379 chan->maxRegTxPower * 2,
1380 min((u32) MAX_RATE_POWER,
1381 (u32) ah->ah_powerLimit));
1383 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
1384 "error init'ing transmit power\n");
1388 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
1389 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
1390 "ar5416SetRfRegs failed\n");
1397 /****************************************/
1398 /* Reset and Channel Switching Routines */
1399 /****************************************/
1401 static void ath9k_hw_set_rfmode(struct ath_hal *ah, struct ath9k_channel *chan)
1408 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
1409 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
1411 if (!AR_SREV_9280_10_OR_LATER(ah))
1412 rfMode |= (IS_CHAN_5GHZ(chan)) ?
1413 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
1415 if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
1416 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
1418 REG_WRITE(ah, AR_PHY_MODE, rfMode);
1421 static void ath9k_hw_mark_phy_inactive(struct ath_hal *ah)
1423 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
1426 static inline void ath9k_hw_set_dma(struct ath_hal *ah)
1430 regval = REG_READ(ah, AR_AHB_MODE);
1431 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1433 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1434 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1436 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->ah_txTrigLevel);
1438 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1439 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1441 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1443 if (AR_SREV_9285(ah)) {
1444 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1445 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
1447 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1448 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1452 static void ath9k_hw_set_operating_mode(struct ath_hal *ah, int opmode)
1456 val = REG_READ(ah, AR_STA_ID1);
1457 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1459 case NL80211_IFTYPE_AP:
1460 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1461 | AR_STA_ID1_KSRCH_MODE);
1462 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1464 case NL80211_IFTYPE_ADHOC:
1465 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1466 | AR_STA_ID1_KSRCH_MODE);
1467 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1469 case NL80211_IFTYPE_STATION:
1470 case NL80211_IFTYPE_MONITOR:
1471 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1476 static inline void ath9k_hw_get_delta_slope_vals(struct ath_hal *ah,
1481 u32 coef_exp, coef_man;
1483 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1484 if ((coef_scaled >> coef_exp) & 0x1)
1487 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1489 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1491 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1492 *coef_exponent = coef_exp - 16;
1495 static void ath9k_hw_set_delta_slope(struct ath_hal *ah,
1496 struct ath9k_channel *chan)
1498 u32 coef_scaled, ds_coef_exp, ds_coef_man;
1499 u32 clockMhzScaled = 0x64000000;
1500 struct chan_centers centers;
1502 if (IS_CHAN_HALF_RATE(chan))
1503 clockMhzScaled = clockMhzScaled >> 1;
1504 else if (IS_CHAN_QUARTER_RATE(chan))
1505 clockMhzScaled = clockMhzScaled >> 2;
1507 ath9k_hw_get_channel_centers(ah, chan, ¢ers);
1508 coef_scaled = clockMhzScaled / centers.synth_center;
1510 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1513 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1514 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
1515 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
1516 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
1518 coef_scaled = (9 * coef_scaled) / 10;
1520 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
1523 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1524 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
1525 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
1526 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
1529 static bool ath9k_hw_set_reset(struct ath_hal *ah, int type)
1534 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1535 AR_RTC_FORCE_WAKE_ON_INT);
1537 if (AR_SREV_9100(ah)) {
1538 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1539 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1541 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1543 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1544 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
1545 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
1546 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1548 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1551 rst_flags = AR_RTC_RC_MAC_WARM;
1552 if (type == ATH9K_RESET_COLD)
1553 rst_flags |= AR_RTC_RC_MAC_COLD;
1556 REG_WRITE(ah, AR_RTC_RC, rst_flags);
1559 REG_WRITE(ah, AR_RTC_RC, 0);
1560 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0)) {
1561 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
1562 "RTC stuck in MAC reset\n");
1566 if (!AR_SREV_9100(ah))
1567 REG_WRITE(ah, AR_RC, 0);
1569 ath9k_hw_init_pll(ah, NULL);
1571 if (AR_SREV_9100(ah))
1577 static bool ath9k_hw_set_reset_power_on(struct ath_hal *ah)
1579 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1580 AR_RTC_FORCE_WAKE_ON_INT);
1582 REG_WRITE(ah, AR_RTC_RESET, 0);
1583 REG_WRITE(ah, AR_RTC_RESET, 1);
1585 if (!ath9k_hw_wait(ah,
1588 AR_RTC_STATUS_ON)) {
1589 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
1593 ath9k_hw_read_revisions(ah);
1595 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1598 static bool ath9k_hw_set_reset_reg(struct ath_hal *ah, u32 type)
1600 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1601 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1604 case ATH9K_RESET_POWER_ON:
1605 return ath9k_hw_set_reset_power_on(ah);
1607 case ATH9K_RESET_WARM:
1608 case ATH9K_RESET_COLD:
1609 return ath9k_hw_set_reset(ah, type);
1616 static void ath9k_hw_set_regs(struct ath_hal *ah, struct ath9k_channel *chan,
1617 enum ath9k_ht_macmode macmode)
1620 u32 enableDacFifo = 0;
1621 struct ath_hal_5416 *ahp = AH5416(ah);
1623 if (AR_SREV_9285_10_OR_LATER(ah))
1624 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
1625 AR_PHY_FC_ENABLE_DAC_FIFO);
1627 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
1628 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
1630 if (IS_CHAN_HT40(chan)) {
1631 phymode |= AR_PHY_FC_DYN2040_EN;
1633 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
1634 (chan->chanmode == CHANNEL_G_HT40PLUS))
1635 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
1637 if (ahp->ah_extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
1638 phymode |= AR_PHY_FC_DYN2040_EXT_CH;
1640 REG_WRITE(ah, AR_PHY_TURBO, phymode);
1642 ath9k_hw_set11nmac2040(ah, macmode);
1644 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
1645 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
1648 static bool ath9k_hw_chip_reset(struct ath_hal *ah,
1649 struct ath9k_channel *chan)
1651 struct ath_hal_5416 *ahp = AH5416(ah);
1653 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
1656 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
1659 ahp->ah_chipFullSleep = false;
1661 ath9k_hw_init_pll(ah, chan);
1663 ath9k_hw_set_rfmode(ah, chan);
1668 static bool ath9k_hw_channel_change(struct ath_hal *ah,
1669 struct ath9k_channel *chan,
1670 enum ath9k_ht_macmode macmode)
1672 u32 synthDelay, qnum;
1674 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1675 if (ath9k_hw_numtxpending(ah, qnum)) {
1676 DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
1677 "Transmit frames pending on queue %d\n", qnum);
1682 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
1683 if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
1684 AR_PHY_RFBUS_GRANT_EN)) {
1685 DPRINTF(ah->ah_sc, ATH_DBG_REG_IO,
1686 "Could not kill baseband RX\n");
1690 ath9k_hw_set_regs(ah, chan, macmode);
1692 if (AR_SREV_9280_10_OR_LATER(ah)) {
1693 if (!(ath9k_hw_ar9280_set_channel(ah, chan))) {
1694 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
1695 "failed to set channel\n");
1699 if (!(ath9k_hw_set_channel(ah, chan))) {
1700 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
1701 "failed to set channel\n");
1706 if (ath9k_hw_set_txpower(ah, chan,
1707 ath9k_regd_get_ctl(ah, chan),
1708 ath9k_regd_get_antenna_allowed(ah, chan),
1709 chan->maxRegTxPower * 2,
1710 min((u32) MAX_RATE_POWER,
1711 (u32) ah->ah_powerLimit)) != 0) {
1712 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
1713 "error init'ing transmit power\n");
1717 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
1718 if (IS_CHAN_B(chan))
1719 synthDelay = (4 * synthDelay) / 22;
1723 udelay(synthDelay + BASE_ACTIVATE_DELAY);
1725 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1727 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1728 ath9k_hw_set_delta_slope(ah, chan);
1730 if (AR_SREV_9280_10_OR_LATER(ah))
1731 ath9k_hw_9280_spur_mitigate(ah, chan);
1733 ath9k_hw_spur_mitigate(ah, chan);
1735 if (!chan->oneTimeCalsDone)
1736 chan->oneTimeCalsDone = true;
1741 static void ath9k_hw_9280_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan)
1743 int bb_spur = AR_NO_SPUR;
1746 int bb_spur_off, spur_subchannel_sd;
1748 int spur_delta_phase;
1750 int upper, lower, cur_vit_mask;
1753 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
1754 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
1756 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
1757 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
1759 int inc[4] = { 0, 100, 0, 0 };
1760 struct chan_centers centers;
1767 bool is2GHz = IS_CHAN_2GHZ(chan);
1769 memset(&mask_m, 0, sizeof(int8_t) * 123);
1770 memset(&mask_p, 0, sizeof(int8_t) * 123);
1772 ath9k_hw_get_channel_centers(ah, chan, ¢ers);
1773 freq = centers.synth_center;
1775 ah->ah_config.spurmode = SPUR_ENABLE_EEPROM;
1776 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
1777 cur_bb_spur = ath9k_hw_eeprom_get_spur_chan(ah, i, is2GHz);
1780 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
1782 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
1784 if (AR_NO_SPUR == cur_bb_spur)
1786 cur_bb_spur = cur_bb_spur - freq;
1788 if (IS_CHAN_HT40(chan)) {
1789 if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
1790 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
1791 bb_spur = cur_bb_spur;
1794 } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
1795 (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
1796 bb_spur = cur_bb_spur;
1801 if (AR_NO_SPUR == bb_spur) {
1802 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1803 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1806 REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
1807 AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
1810 bin = bb_spur * 320;
1812 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
1814 newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
1815 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
1816 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
1817 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
1818 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
1820 newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
1821 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
1822 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
1823 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
1824 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
1825 REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
1827 if (IS_CHAN_HT40(chan)) {
1829 spur_subchannel_sd = 1;
1830 bb_spur_off = bb_spur + 10;
1832 spur_subchannel_sd = 0;
1833 bb_spur_off = bb_spur - 10;
1836 spur_subchannel_sd = 0;
1837 bb_spur_off = bb_spur;
1840 if (IS_CHAN_HT40(chan))
1842 ((bb_spur * 262144) /
1843 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1846 ((bb_spur * 524288) /
1847 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
1849 denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
1850 spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
1852 newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
1853 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
1854 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
1855 REG_WRITE(ah, AR_PHY_TIMING11, newVal);
1857 newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
1858 REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
1864 for (i = 0; i < 4; i++) {
1868 for (bp = 0; bp < 30; bp++) {
1869 if ((cur_bin > lower) && (cur_bin < upper)) {
1870 pilot_mask = pilot_mask | 0x1 << bp;
1871 chan_mask = chan_mask | 0x1 << bp;
1876 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
1877 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
1880 cur_vit_mask = 6100;
1884 for (i = 0; i < 123; i++) {
1885 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
1887 /* workaround for gcc bug #37014 */
1888 volatile int tmp_v = abs(cur_vit_mask - bin);
1894 if (cur_vit_mask < 0)
1895 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
1897 mask_p[cur_vit_mask / 100] = mask_amt;
1899 cur_vit_mask -= 100;
1902 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
1903 | (mask_m[48] << 26) | (mask_m[49] << 24)
1904 | (mask_m[50] << 22) | (mask_m[51] << 20)
1905 | (mask_m[52] << 18) | (mask_m[53] << 16)
1906 | (mask_m[54] << 14) | (mask_m[55] << 12)
1907 | (mask_m[56] << 10) | (mask_m[57] << 8)
1908 | (mask_m[58] << 6) | (mask_m[59] << 4)
1909 | (mask_m[60] << 2) | (mask_m[61] << 0);
1910 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
1911 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
1913 tmp_mask = (mask_m[31] << 28)
1914 | (mask_m[32] << 26) | (mask_m[33] << 24)
1915 | (mask_m[34] << 22) | (mask_m[35] << 20)
1916 | (mask_m[36] << 18) | (mask_m[37] << 16)
1917 | (mask_m[48] << 14) | (mask_m[39] << 12)
1918 | (mask_m[40] << 10) | (mask_m[41] << 8)
1919 | (mask_m[42] << 6) | (mask_m[43] << 4)
1920 | (mask_m[44] << 2) | (mask_m[45] << 0);
1921 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
1922 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
1924 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
1925 | (mask_m[18] << 26) | (mask_m[18] << 24)
1926 | (mask_m[20] << 22) | (mask_m[20] << 20)
1927 | (mask_m[22] << 18) | (mask_m[22] << 16)
1928 | (mask_m[24] << 14) | (mask_m[24] << 12)
1929 | (mask_m[25] << 10) | (mask_m[26] << 8)
1930 | (mask_m[27] << 6) | (mask_m[28] << 4)
1931 | (mask_m[29] << 2) | (mask_m[30] << 0);
1932 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
1933 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
1935 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
1936 | (mask_m[2] << 26) | (mask_m[3] << 24)
1937 | (mask_m[4] << 22) | (mask_m[5] << 20)
1938 | (mask_m[6] << 18) | (mask_m[7] << 16)
1939 | (mask_m[8] << 14) | (mask_m[9] << 12)
1940 | (mask_m[10] << 10) | (mask_m[11] << 8)
1941 | (mask_m[12] << 6) | (mask_m[13] << 4)
1942 | (mask_m[14] << 2) | (mask_m[15] << 0);
1943 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
1944 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
1946 tmp_mask = (mask_p[15] << 28)
1947 | (mask_p[14] << 26) | (mask_p[13] << 24)
1948 | (mask_p[12] << 22) | (mask_p[11] << 20)
1949 | (mask_p[10] << 18) | (mask_p[9] << 16)
1950 | (mask_p[8] << 14) | (mask_p[7] << 12)
1951 | (mask_p[6] << 10) | (mask_p[5] << 8)
1952 | (mask_p[4] << 6) | (mask_p[3] << 4)
1953 | (mask_p[2] << 2) | (mask_p[1] << 0);
1954 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
1955 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
1957 tmp_mask = (mask_p[30] << 28)
1958 | (mask_p[29] << 26) | (mask_p[28] << 24)
1959 | (mask_p[27] << 22) | (mask_p[26] << 20)
1960 | (mask_p[25] << 18) | (mask_p[24] << 16)
1961 | (mask_p[23] << 14) | (mask_p[22] << 12)
1962 | (mask_p[21] << 10) | (mask_p[20] << 8)
1963 | (mask_p[19] << 6) | (mask_p[18] << 4)
1964 | (mask_p[17] << 2) | (mask_p[16] << 0);
1965 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
1966 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
1968 tmp_mask = (mask_p[45] << 28)
1969 | (mask_p[44] << 26) | (mask_p[43] << 24)
1970 | (mask_p[42] << 22) | (mask_p[41] << 20)
1971 | (mask_p[40] << 18) | (mask_p[39] << 16)
1972 | (mask_p[38] << 14) | (mask_p[37] << 12)
1973 | (mask_p[36] << 10) | (mask_p[35] << 8)
1974 | (mask_p[34] << 6) | (mask_p[33] << 4)
1975 | (mask_p[32] << 2) | (mask_p[31] << 0);
1976 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
1977 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
1979 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
1980 | (mask_p[59] << 26) | (mask_p[58] << 24)
1981 | (mask_p[57] << 22) | (mask_p[56] << 20)
1982 | (mask_p[55] << 18) | (mask_p[54] << 16)
1983 | (mask_p[53] << 14) | (mask_p[52] << 12)
1984 | (mask_p[51] << 10) | (mask_p[50] << 8)
1985 | (mask_p[49] << 6) | (mask_p[48] << 4)
1986 | (mask_p[47] << 2) | (mask_p[46] << 0);
1987 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
1988 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
1991 static void ath9k_hw_spur_mitigate(struct ath_hal *ah, struct ath9k_channel *chan)
1993 int bb_spur = AR_NO_SPUR;
1996 int spur_delta_phase;
1998 int upper, lower, cur_vit_mask;
2001 int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
2002 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
2004 int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
2005 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
2007 int inc[4] = { 0, 100, 0, 0 };
2014 bool is2GHz = IS_CHAN_2GHZ(chan);
2016 memset(&mask_m, 0, sizeof(int8_t) * 123);
2017 memset(&mask_p, 0, sizeof(int8_t) * 123);
2019 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
2020 cur_bb_spur = ath9k_hw_eeprom_get_spur_chan(ah, i, is2GHz);
2021 if (AR_NO_SPUR == cur_bb_spur)
2023 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
2024 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
2025 bb_spur = cur_bb_spur;
2030 if (AR_NO_SPUR == bb_spur)
2035 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
2036 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
2037 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
2038 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
2039 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
2041 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
2043 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
2044 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
2045 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
2046 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
2047 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
2048 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
2050 spur_delta_phase = ((bb_spur * 524288) / 100) &
2051 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
2053 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
2054 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
2056 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
2057 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
2058 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
2059 REG_WRITE(ah, AR_PHY_TIMING11, new);
2065 for (i = 0; i < 4; i++) {
2069 for (bp = 0; bp < 30; bp++) {
2070 if ((cur_bin > lower) && (cur_bin < upper)) {
2071 pilot_mask = pilot_mask | 0x1 << bp;
2072 chan_mask = chan_mask | 0x1 << bp;
2077 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
2078 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
2081 cur_vit_mask = 6100;
2085 for (i = 0; i < 123; i++) {
2086 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
2088 /* workaround for gcc bug #37014 */
2089 volatile int tmp_v = abs(cur_vit_mask - bin);
2095 if (cur_vit_mask < 0)
2096 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
2098 mask_p[cur_vit_mask / 100] = mask_amt;
2100 cur_vit_mask -= 100;
2103 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
2104 | (mask_m[48] << 26) | (mask_m[49] << 24)
2105 | (mask_m[50] << 22) | (mask_m[51] << 20)
2106 | (mask_m[52] << 18) | (mask_m[53] << 16)
2107 | (mask_m[54] << 14) | (mask_m[55] << 12)
2108 | (mask_m[56] << 10) | (mask_m[57] << 8)
2109 | (mask_m[58] << 6) | (mask_m[59] << 4)
2110 | (mask_m[60] << 2) | (mask_m[61] << 0);
2111 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
2112 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
2114 tmp_mask = (mask_m[31] << 28)
2115 | (mask_m[32] << 26) | (mask_m[33] << 24)
2116 | (mask_m[34] << 22) | (mask_m[35] << 20)
2117 | (mask_m[36] << 18) | (mask_m[37] << 16)
2118 | (mask_m[48] << 14) | (mask_m[39] << 12)
2119 | (mask_m[40] << 10) | (mask_m[41] << 8)
2120 | (mask_m[42] << 6) | (mask_m[43] << 4)
2121 | (mask_m[44] << 2) | (mask_m[45] << 0);
2122 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
2123 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
2125 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
2126 | (mask_m[18] << 26) | (mask_m[18] << 24)
2127 | (mask_m[20] << 22) | (mask_m[20] << 20)
2128 | (mask_m[22] << 18) | (mask_m[22] << 16)
2129 | (mask_m[24] << 14) | (mask_m[24] << 12)
2130 | (mask_m[25] << 10) | (mask_m[26] << 8)
2131 | (mask_m[27] << 6) | (mask_m[28] << 4)
2132 | (mask_m[29] << 2) | (mask_m[30] << 0);
2133 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
2134 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
2136 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
2137 | (mask_m[2] << 26) | (mask_m[3] << 24)
2138 | (mask_m[4] << 22) | (mask_m[5] << 20)
2139 | (mask_m[6] << 18) | (mask_m[7] << 16)
2140 | (mask_m[8] << 14) | (mask_m[9] << 12)
2141 | (mask_m[10] << 10) | (mask_m[11] << 8)
2142 | (mask_m[12] << 6) | (mask_m[13] << 4)
2143 | (mask_m[14] << 2) | (mask_m[15] << 0);
2144 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
2145 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
2147 tmp_mask = (mask_p[15] << 28)
2148 | (mask_p[14] << 26) | (mask_p[13] << 24)
2149 | (mask_p[12] << 22) | (mask_p[11] << 20)
2150 | (mask_p[10] << 18) | (mask_p[9] << 16)
2151 | (mask_p[8] << 14) | (mask_p[7] << 12)
2152 | (mask_p[6] << 10) | (mask_p[5] << 8)
2153 | (mask_p[4] << 6) | (mask_p[3] << 4)
2154 | (mask_p[2] << 2) | (mask_p[1] << 0);
2155 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
2156 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
2158 tmp_mask = (mask_p[30] << 28)
2159 | (mask_p[29] << 26) | (mask_p[28] << 24)
2160 | (mask_p[27] << 22) | (mask_p[26] << 20)
2161 | (mask_p[25] << 18) | (mask_p[24] << 16)
2162 | (mask_p[23] << 14) | (mask_p[22] << 12)
2163 | (mask_p[21] << 10) | (mask_p[20] << 8)
2164 | (mask_p[19] << 6) | (mask_p[18] << 4)
2165 | (mask_p[17] << 2) | (mask_p[16] << 0);
2166 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
2167 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
2169 tmp_mask = (mask_p[45] << 28)
2170 | (mask_p[44] << 26) | (mask_p[43] << 24)
2171 | (mask_p[42] << 22) | (mask_p[41] << 20)
2172 | (mask_p[40] << 18) | (mask_p[39] << 16)
2173 | (mask_p[38] << 14) | (mask_p[37] << 12)
2174 | (mask_p[36] << 10) | (mask_p[35] << 8)
2175 | (mask_p[34] << 6) | (mask_p[33] << 4)
2176 | (mask_p[32] << 2) | (mask_p[31] << 0);
2177 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
2178 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
2180 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
2181 | (mask_p[59] << 26) | (mask_p[58] << 24)
2182 | (mask_p[57] << 22) | (mask_p[56] << 20)
2183 | (mask_p[55] << 18) | (mask_p[54] << 16)
2184 | (mask_p[53] << 14) | (mask_p[52] << 12)
2185 | (mask_p[51] << 10) | (mask_p[50] << 8)
2186 | (mask_p[49] << 6) | (mask_p[48] << 4)
2187 | (mask_p[47] << 2) | (mask_p[46] << 0);
2188 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
2189 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
2192 int ath9k_hw_reset(struct ath_hal *ah, struct ath9k_channel *chan,
2193 bool bChannelChange)
2196 struct ath_softc *sc = ah->ah_sc;
2197 struct ath_hal_5416 *ahp = AH5416(ah);
2198 struct ath9k_channel *curchan = ah->ah_curchan;
2201 int i, rx_chainmask, r;
2203 ahp->ah_extprotspacing = sc->sc_ht_extprotspacing;
2204 ahp->ah_txchainmask = sc->sc_tx_chainmask;
2205 ahp->ah_rxchainmask = sc->sc_rx_chainmask;
2207 if (AR_SREV_9280(ah)) {
2208 ahp->ah_txchainmask &= 0x3;
2209 ahp->ah_rxchainmask &= 0x3;
2212 if (ath9k_regd_check_channel(ah, chan) == NULL) {
2213 DPRINTF(ah->ah_sc, ATH_DBG_CHANNEL,
2214 "invalid channel %u/0x%x; no mapping\n",
2215 chan->channel, chan->channelFlags);
2219 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
2223 ath9k_hw_getnf(ah, curchan);
2225 if (bChannelChange &&
2226 (ahp->ah_chipFullSleep != true) &&
2227 (ah->ah_curchan != NULL) &&
2228 (chan->channel != ah->ah_curchan->channel) &&
2229 ((chan->channelFlags & CHANNEL_ALL) ==
2230 (ah->ah_curchan->channelFlags & CHANNEL_ALL)) &&
2231 (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
2232 !IS_CHAN_A_5MHZ_SPACED(ah->ah_curchan)))) {
2234 if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
2235 ath9k_hw_loadnf(ah, ah->ah_curchan);
2236 ath9k_hw_start_nfcal(ah);
2241 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
2242 if (saveDefAntenna == 0)
2245 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
2247 saveLedState = REG_READ(ah, AR_CFG_LED) &
2248 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
2249 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
2251 ath9k_hw_mark_phy_inactive(ah);
2253 if (!ath9k_hw_chip_reset(ah, chan)) {
2254 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "chip reset failed\n");
2258 if (AR_SREV_9280_10_OR_LATER(ah)) {
2259 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
2260 AR_GPIO_JTAG_DISABLE);
2262 if (test_bit(ATH9K_MODE_11A, ah->ah_caps.wireless_modes)) {
2263 if (IS_CHAN_5GHZ(chan))
2264 ath9k_hw_set_gpio(ah, 9, 0);
2266 ath9k_hw_set_gpio(ah, 9, 1);
2268 ath9k_hw_cfg_output(ah, 9, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
2271 r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
2275 /* Setup MFP options for CCMP */
2276 if (AR_SREV_9280_20_OR_LATER(ah)) {
2277 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
2278 * frames when constructing CCMP AAD. */
2279 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
2281 ah->sw_mgmt_crypto = false;
2282 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
2283 /* Disable hardware crypto for management frames */
2284 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
2285 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
2286 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
2287 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
2288 ah->sw_mgmt_crypto = true;
2290 ah->sw_mgmt_crypto = true;
2292 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
2293 ath9k_hw_set_delta_slope(ah, chan);
2295 if (AR_SREV_9280_10_OR_LATER(ah))
2296 ath9k_hw_9280_spur_mitigate(ah, chan);
2298 ath9k_hw_spur_mitigate(ah, chan);
2300 if (!ath9k_hw_eeprom_set_board_values(ah, chan)) {
2301 DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
2302 "error setting board options\n");
2306 ath9k_hw_decrease_chain_power(ah, chan);
2308 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ahp->ah_macaddr));
2309 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ahp->ah_macaddr + 4)
2311 | AR_STA_ID1_RTS_USE_DEF
2313 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
2314 | ahp->ah_staId1Defaults);
2315 ath9k_hw_set_operating_mode(ah, ah->ah_opmode);
2317 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(ahp->ah_bssidmask));
2318 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(ahp->ah_bssidmask + 4));
2320 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
2322 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(ahp->ah_bssid));
2323 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(ahp->ah_bssid + 4) |
2324 ((ahp->ah_assocId & 0x3fff) << AR_BSS_ID1_AID_S));
2326 REG_WRITE(ah, AR_ISR, ~0);
2328 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
2330 if (AR_SREV_9280_10_OR_LATER(ah)) {
2331 if (!(ath9k_hw_ar9280_set_channel(ah, chan)))
2334 if (!(ath9k_hw_set_channel(ah, chan)))
2338 for (i = 0; i < AR_NUM_DCU; i++)
2339 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
2341 ahp->ah_intrTxqs = 0;
2342 for (i = 0; i < ah->ah_caps.total_queues; i++)
2343 ath9k_hw_resettxqueue(ah, i);
2345 ath9k_hw_init_interrupt_masks(ah, ah->ah_opmode);
2346 ath9k_hw_init_qos(ah);
2348 #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2349 if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
2350 ath9k_enable_rfkill(ah);
2352 ath9k_hw_init_user_settings(ah);
2354 REG_WRITE(ah, AR_STA_ID1,
2355 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
2357 ath9k_hw_set_dma(ah);
2359 REG_WRITE(ah, AR_OBS, 8);
2361 if (ahp->ah_intrMitigation) {
2363 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
2364 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
2367 ath9k_hw_init_bb(ah, chan);
2369 if (!ath9k_hw_init_cal(ah, chan))
2372 rx_chainmask = ahp->ah_rxchainmask;
2373 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
2374 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
2375 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
2378 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
2380 if (AR_SREV_9100(ah)) {
2382 mask = REG_READ(ah, AR_CFG);
2383 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
2384 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2385 "CFG Byte Swap Set 0x%x\n", mask);
2388 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
2389 REG_WRITE(ah, AR_CFG, mask);
2390 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
2391 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
2395 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
2402 /************************/
2403 /* Key Cache Management */
2404 /************************/
2406 bool ath9k_hw_keyreset(struct ath_hal *ah, u16 entry)
2410 if (entry >= ah->ah_caps.keycache_size) {
2411 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2412 "entry %u out of range\n", entry);
2416 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
2418 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
2419 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
2420 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
2421 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
2422 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
2423 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
2424 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
2425 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
2427 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2428 u16 micentry = entry + 64;
2430 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
2431 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2432 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
2433 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2437 if (ah->ah_curchan == NULL)
2443 bool ath9k_hw_keysetmac(struct ath_hal *ah, u16 entry, const u8 *mac)
2447 if (entry >= ah->ah_caps.keycache_size) {
2448 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2449 "entry %u out of range\n", entry);
2454 macHi = (mac[5] << 8) | mac[4];
2455 macLo = (mac[3] << 24) |
2460 macLo |= (macHi & 1) << 31;
2465 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
2466 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
2471 bool ath9k_hw_set_keycache_entry(struct ath_hal *ah, u16 entry,
2472 const struct ath9k_keyval *k,
2473 const u8 *mac, int xorKey)
2475 const struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
2476 u32 key0, key1, key2, key3, key4;
2478 u32 xorMask = xorKey ?
2479 (ATH9K_KEY_XOR << 24 | ATH9K_KEY_XOR << 16 | ATH9K_KEY_XOR << 8
2480 | ATH9K_KEY_XOR) : 0;
2481 struct ath_hal_5416 *ahp = AH5416(ah);
2483 if (entry >= pCap->keycache_size) {
2484 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2485 "entry %u out of range\n", entry);
2489 switch (k->kv_type) {
2490 case ATH9K_CIPHER_AES_OCB:
2491 keyType = AR_KEYTABLE_TYPE_AES;
2493 case ATH9K_CIPHER_AES_CCM:
2494 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
2495 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2496 "AES-CCM not supported by mac rev 0x%x\n",
2500 keyType = AR_KEYTABLE_TYPE_CCM;
2502 case ATH9K_CIPHER_TKIP:
2503 keyType = AR_KEYTABLE_TYPE_TKIP;
2504 if (ATH9K_IS_MIC_ENABLED(ah)
2505 && entry + 64 >= pCap->keycache_size) {
2506 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2507 "entry %u inappropriate for TKIP\n", entry);
2511 case ATH9K_CIPHER_WEP:
2512 if (k->kv_len < LEN_WEP40) {
2513 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2514 "WEP key length %u too small\n", k->kv_len);
2517 if (k->kv_len <= LEN_WEP40)
2518 keyType = AR_KEYTABLE_TYPE_40;
2519 else if (k->kv_len <= LEN_WEP104)
2520 keyType = AR_KEYTABLE_TYPE_104;
2522 keyType = AR_KEYTABLE_TYPE_128;
2524 case ATH9K_CIPHER_CLR:
2525 keyType = AR_KEYTABLE_TYPE_CLR;
2528 DPRINTF(ah->ah_sc, ATH_DBG_KEYCACHE,
2529 "cipher %u not supported\n", k->kv_type);
2533 key0 = get_unaligned_le32(k->kv_val + 0) ^ xorMask;
2534 key1 = (get_unaligned_le16(k->kv_val + 4) ^ xorMask) & 0xffff;
2535 key2 = get_unaligned_le32(k->kv_val + 6) ^ xorMask;
2536 key3 = (get_unaligned_le16(k->kv_val + 10) ^ xorMask) & 0xffff;
2537 key4 = get_unaligned_le32(k->kv_val + 12) ^ xorMask;
2538 if (k->kv_len <= LEN_WEP104)
2541 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
2542 u16 micentry = entry + 64;
2544 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
2545 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
2546 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2547 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2548 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2549 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2550 (void) ath9k_hw_keysetmac(ah, entry, mac);
2552 if (ahp->ah_miscMode & AR_PCU_MIC_NEW_LOC_ENA) {
2553 u32 mic0, mic1, mic2, mic3, mic4;
2555 mic0 = get_unaligned_le32(k->kv_mic + 0);
2556 mic2 = get_unaligned_le32(k->kv_mic + 4);
2557 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
2558 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
2559 mic4 = get_unaligned_le32(k->kv_txmic + 4);
2560 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2561 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
2562 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2563 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
2564 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
2565 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2566 AR_KEYTABLE_TYPE_CLR);
2571 mic0 = get_unaligned_le32(k->kv_mic + 0);
2572 mic2 = get_unaligned_le32(k->kv_mic + 4);
2573 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
2574 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
2575 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
2576 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
2577 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
2578 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
2579 AR_KEYTABLE_TYPE_CLR);
2581 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
2582 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
2583 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2584 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2586 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
2587 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
2588 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
2589 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
2590 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
2591 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
2593 (void) ath9k_hw_keysetmac(ah, entry, mac);
2596 if (ah->ah_curchan == NULL)
2602 bool ath9k_hw_keyisvalid(struct ath_hal *ah, u16 entry)
2604 if (entry < ah->ah_caps.keycache_size) {
2605 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
2606 if (val & AR_KEYTABLE_VALID)
2612 /******************************/
2613 /* Power Management (Chipset) */
2614 /******************************/
2616 static void ath9k_set_power_sleep(struct ath_hal *ah, int setChip)
2618 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2620 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2621 AR_RTC_FORCE_WAKE_EN);
2622 if (!AR_SREV_9100(ah))
2623 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2625 REG_CLR_BIT(ah, (AR_RTC_RESET),
2630 static void ath9k_set_power_network_sleep(struct ath_hal *ah, int setChip)
2632 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2634 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
2636 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2637 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2638 AR_RTC_FORCE_WAKE_ON_INT);
2640 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2641 AR_RTC_FORCE_WAKE_EN);
2646 static bool ath9k_hw_set_power_awake(struct ath_hal *ah,
2653 if ((REG_READ(ah, AR_RTC_STATUS) &
2654 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2655 if (ath9k_hw_set_reset_reg(ah,
2656 ATH9K_RESET_POWER_ON) != true) {
2660 if (AR_SREV_9100(ah))
2661 REG_SET_BIT(ah, AR_RTC_RESET,
2664 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2665 AR_RTC_FORCE_WAKE_EN);
2668 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2669 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2670 if (val == AR_RTC_STATUS_ON)
2673 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2674 AR_RTC_FORCE_WAKE_EN);
2677 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
2678 "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
2683 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2688 bool ath9k_hw_setpower(struct ath_hal *ah,
2689 enum ath9k_power_mode mode)
2691 struct ath_hal_5416 *ahp = AH5416(ah);
2692 static const char *modes[] = {
2698 int status = true, setChip = true;
2700 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT, "%s -> %s (%s)\n",
2701 modes[ah->ah_power_mode], modes[mode],
2702 setChip ? "set chip " : "");
2705 case ATH9K_PM_AWAKE:
2706 status = ath9k_hw_set_power_awake(ah, setChip);
2708 case ATH9K_PM_FULL_SLEEP:
2709 ath9k_set_power_sleep(ah, setChip);
2710 ahp->ah_chipFullSleep = true;
2712 case ATH9K_PM_NETWORK_SLEEP:
2713 ath9k_set_power_network_sleep(ah, setChip);
2716 DPRINTF(ah->ah_sc, ATH_DBG_POWER_MGMT,
2717 "Unknown power mode %u\n", mode);
2720 ah->ah_power_mode = mode;
2725 void ath9k_hw_configpcipowersave(struct ath_hal *ah, int restore)
2727 struct ath_hal_5416 *ahp = AH5416(ah);
2730 if (ah->ah_isPciExpress != true)
2733 if (ah->ah_config.pcie_powersave_enable == 2)
2739 if (AR_SREV_9280_20_OR_LATER(ah)) {
2740 for (i = 0; i < ahp->ah_iniPcieSerdes.ia_rows; i++) {
2741 REG_WRITE(ah, INI_RA(&ahp->ah_iniPcieSerdes, i, 0),
2742 INI_RA(&ahp->ah_iniPcieSerdes, i, 1));
2745 } else if (AR_SREV_9280(ah) &&
2746 (ah->ah_macRev == AR_SREV_REVISION_9280_10)) {
2747 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2748 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2750 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2751 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2752 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2754 if (ah->ah_config.pcie_clock_req)
2755 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2757 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2759 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2760 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2761 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2763 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2767 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2768 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2769 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2770 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2771 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2772 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2773 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2774 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2775 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2776 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2779 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
2781 if (ah->ah_config.pcie_waen) {
2782 REG_WRITE(ah, AR_WA, ah->ah_config.pcie_waen);
2784 if (AR_SREV_9285(ah))
2785 REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
2786 else if (AR_SREV_9280(ah))
2787 REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
2789 REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
2794 /**********************/
2795 /* Interrupt Handling */
2796 /**********************/
2798 bool ath9k_hw_intrpend(struct ath_hal *ah)
2802 if (AR_SREV_9100(ah))
2805 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2806 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2809 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2810 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2811 && (host_isr != AR_INTR_SPURIOUS))
2817 bool ath9k_hw_getisr(struct ath_hal *ah, enum ath9k_int *masked)
2821 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
2823 bool fatal_int = false;
2824 struct ath_hal_5416 *ahp = AH5416(ah);
2826 if (!AR_SREV_9100(ah)) {
2827 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2828 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2829 == AR_RTC_STATUS_ON) {
2830 isr = REG_READ(ah, AR_ISR);
2834 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2835 AR_INTR_SYNC_DEFAULT;
2839 if (!isr && !sync_cause)
2843 isr = REG_READ(ah, AR_ISR);
2847 if (isr & AR_ISR_BCNMISC) {
2849 isr2 = REG_READ(ah, AR_ISR_S2);
2850 if (isr2 & AR_ISR_S2_TIM)
2851 mask2 |= ATH9K_INT_TIM;
2852 if (isr2 & AR_ISR_S2_DTIM)
2853 mask2 |= ATH9K_INT_DTIM;
2854 if (isr2 & AR_ISR_S2_DTIMSYNC)
2855 mask2 |= ATH9K_INT_DTIMSYNC;
2856 if (isr2 & (AR_ISR_S2_CABEND))
2857 mask2 |= ATH9K_INT_CABEND;
2858 if (isr2 & AR_ISR_S2_GTT)
2859 mask2 |= ATH9K_INT_GTT;
2860 if (isr2 & AR_ISR_S2_CST)
2861 mask2 |= ATH9K_INT_CST;
2864 isr = REG_READ(ah, AR_ISR_RAC);
2865 if (isr == 0xffffffff) {
2870 *masked = isr & ATH9K_INT_COMMON;
2872 if (ahp->ah_intrMitigation) {
2873 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2874 *masked |= ATH9K_INT_RX;
2877 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2878 *masked |= ATH9K_INT_RX;
2880 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2884 *masked |= ATH9K_INT_TX;
2886 s0_s = REG_READ(ah, AR_ISR_S0_S);
2887 ahp->ah_intrTxqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2888 ahp->ah_intrTxqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
2890 s1_s = REG_READ(ah, AR_ISR_S1_S);
2891 ahp->ah_intrTxqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2892 ahp->ah_intrTxqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
2895 if (isr & AR_ISR_RXORN) {
2896 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
2897 "receive FIFO overrun interrupt\n");
2900 if (!AR_SREV_9100(ah)) {
2901 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
2902 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2903 if (isr5 & AR_ISR_S5_TIM_TIMER)
2904 *masked |= ATH9K_INT_TIM_TIMER;
2911 if (AR_SREV_9100(ah))
2917 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2921 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
2922 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2923 "received PCI FATAL interrupt\n");
2925 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
2926 DPRINTF(ah->ah_sc, ATH_DBG_ANY,
2927 "received PCI PERR interrupt\n");
2930 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
2931 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
2932 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
2933 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2934 REG_WRITE(ah, AR_RC, 0);
2935 *masked |= ATH9K_INT_FATAL;
2937 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
2938 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
2939 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
2942 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2943 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2949 enum ath9k_int ath9k_hw_intrget(struct ath_hal *ah)
2951 return AH5416(ah)->ah_maskReg;
2954 enum ath9k_int ath9k_hw_set_interrupts(struct ath_hal *ah, enum ath9k_int ints)
2956 struct ath_hal_5416 *ahp = AH5416(ah);
2957 u32 omask = ahp->ah_maskReg;
2959 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
2961 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
2963 if (omask & ATH9K_INT_GLOBAL) {
2964 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
2965 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2966 (void) REG_READ(ah, AR_IER);
2967 if (!AR_SREV_9100(ah)) {
2968 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2969 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2971 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2972 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2976 mask = ints & ATH9K_INT_COMMON;
2979 if (ints & ATH9K_INT_TX) {
2980 if (ahp->ah_txOkInterruptMask)
2981 mask |= AR_IMR_TXOK;
2982 if (ahp->ah_txDescInterruptMask)
2983 mask |= AR_IMR_TXDESC;
2984 if (ahp->ah_txErrInterruptMask)
2985 mask |= AR_IMR_TXERR;
2986 if (ahp->ah_txEolInterruptMask)
2987 mask |= AR_IMR_TXEOL;
2989 if (ints & ATH9K_INT_RX) {
2990 mask |= AR_IMR_RXERR;
2991 if (ahp->ah_intrMitigation)
2992 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2994 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
2995 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
2996 mask |= AR_IMR_GENTMR;
2999 if (ints & (ATH9K_INT_BMISC)) {
3000 mask |= AR_IMR_BCNMISC;
3001 if (ints & ATH9K_INT_TIM)
3002 mask2 |= AR_IMR_S2_TIM;
3003 if (ints & ATH9K_INT_DTIM)
3004 mask2 |= AR_IMR_S2_DTIM;
3005 if (ints & ATH9K_INT_DTIMSYNC)
3006 mask2 |= AR_IMR_S2_DTIMSYNC;
3007 if (ints & ATH9K_INT_CABEND)
3008 mask2 |= (AR_IMR_S2_CABEND);
3011 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
3012 mask |= AR_IMR_BCNMISC;
3013 if (ints & ATH9K_INT_GTT)
3014 mask2 |= AR_IMR_S2_GTT;
3015 if (ints & ATH9K_INT_CST)
3016 mask2 |= AR_IMR_S2_CST;
3019 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
3020 REG_WRITE(ah, AR_IMR, mask);
3021 mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
3023 AR_IMR_S2_DTIMSYNC |
3027 AR_IMR_S2_GTT | AR_IMR_S2_CST);
3028 REG_WRITE(ah, AR_IMR_S2, mask | mask2);
3029 ahp->ah_maskReg = ints;
3031 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
3032 if (ints & ATH9K_INT_TIM_TIMER)
3033 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3035 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
3038 if (ints & ATH9K_INT_GLOBAL) {
3039 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
3040 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
3041 if (!AR_SREV_9100(ah)) {
3042 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
3044 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
3047 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
3048 AR_INTR_SYNC_DEFAULT);
3049 REG_WRITE(ah, AR_INTR_SYNC_MASK,
3050 AR_INTR_SYNC_DEFAULT);
3052 DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
3053 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
3059 /*******************/
3060 /* Beacon Handling */
3061 /*******************/
3063 void ath9k_hw_beaconinit(struct ath_hal *ah, u32 next_beacon, u32 beacon_period)
3065 struct ath_hal_5416 *ahp = AH5416(ah);
3068 ahp->ah_beaconInterval = beacon_period;
3070 switch (ah->ah_opmode) {
3071 case NL80211_IFTYPE_STATION:
3072 case NL80211_IFTYPE_MONITOR:
3073 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3074 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
3075 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
3076 flags |= AR_TBTT_TIMER_EN;
3078 case NL80211_IFTYPE_ADHOC:
3079 REG_SET_BIT(ah, AR_TXCFG,
3080 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
3081 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
3082 TU_TO_USEC(next_beacon +
3083 (ahp->ah_atimWindow ? ahp->
3084 ah_atimWindow : 1)));
3085 flags |= AR_NDP_TIMER_EN;
3086 case NL80211_IFTYPE_AP:
3087 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
3088 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
3089 TU_TO_USEC(next_beacon -
3091 dma_beacon_response_time));
3092 REG_WRITE(ah, AR_NEXT_SWBA,
3093 TU_TO_USEC(next_beacon -
3095 sw_beacon_response_time));
3097 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
3100 DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
3101 "%s: unsupported opmode: %d\n",
3102 __func__, ah->ah_opmode);
3107 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3108 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
3109 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
3110 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
3112 beacon_period &= ~ATH9K_BEACON_ENA;
3113 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
3114 beacon_period &= ~ATH9K_BEACON_RESET_TSF;
3115 ath9k_hw_reset_tsf(ah);
3118 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
3121 void ath9k_hw_set_sta_beacon_timers(struct ath_hal *ah,
3122 const struct ath9k_beacon_state *bs)
3124 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
3125 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
3127 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
3129 REG_WRITE(ah, AR_BEACON_PERIOD,
3130 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3131 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
3132 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
3134 REG_RMW_FIELD(ah, AR_RSSI_THR,
3135 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
3137 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
3139 if (bs->bs_sleepduration > beaconintval)
3140 beaconintval = bs->bs_sleepduration;
3142 dtimperiod = bs->bs_dtimperiod;
3143 if (bs->bs_sleepduration > dtimperiod)
3144 dtimperiod = bs->bs_sleepduration;
3146 if (beaconintval == dtimperiod)
3147 nextTbtt = bs->bs_nextdtim;
3149 nextTbtt = bs->bs_nexttbtt;
3151 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
3152 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
3153 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
3154 DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
3156 REG_WRITE(ah, AR_NEXT_DTIM,
3157 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
3158 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
3160 REG_WRITE(ah, AR_SLEEP1,
3161 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
3162 | AR_SLEEP1_ASSUME_DTIM);
3164 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
3165 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
3167 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
3169 REG_WRITE(ah, AR_SLEEP2,
3170 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
3172 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
3173 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
3175 REG_SET_BIT(ah, AR_TIMER_MODE,
3176 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
3181 /*******************/
3182 /* HW Capabilities */
3183 /*******************/
3185 bool ath9k_hw_fill_cap_info(struct ath_hal *ah)
3187 struct ath_hal_5416 *ahp = AH5416(ah);
3188 struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
3189 u16 capField = 0, eeval;
3191 eeval = ath9k_hw_get_eeprom(ah, EEP_REG_0);
3193 ah->ah_currentRD = eeval;
3195 eeval = ath9k_hw_get_eeprom(ah, EEP_REG_1);
3196 ah->ah_currentRDExt = eeval;
3198 capField = ath9k_hw_get_eeprom(ah, EEP_OP_CAP);
3200 if (ah->ah_opmode != NL80211_IFTYPE_AP &&
3201 ah->ah_subvendorid == AR_SUBVENDOR_ID_NEW_A) {
3202 if (ah->ah_currentRD == 0x64 || ah->ah_currentRD == 0x65)
3203 ah->ah_currentRD += 5;
3204 else if (ah->ah_currentRD == 0x41)
3205 ah->ah_currentRD = 0x43;
3206 DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
3207 "regdomain mapped to 0x%x\n", ah->ah_currentRD);
3210 eeval = ath9k_hw_get_eeprom(ah, EEP_OP_MODE);
3211 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
3213 if (eeval & AR5416_OPFLAGS_11A) {
3214 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
3215 if (ah->ah_config.ht_enable) {
3216 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
3217 set_bit(ATH9K_MODE_11NA_HT20,
3218 pCap->wireless_modes);
3219 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
3220 set_bit(ATH9K_MODE_11NA_HT40PLUS,
3221 pCap->wireless_modes);
3222 set_bit(ATH9K_MODE_11NA_HT40MINUS,
3223 pCap->wireless_modes);
3228 if (eeval & AR5416_OPFLAGS_11G) {
3229 set_bit(ATH9K_MODE_11B, pCap->wireless_modes);
3230 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
3231 if (ah->ah_config.ht_enable) {
3232 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
3233 set_bit(ATH9K_MODE_11NG_HT20,
3234 pCap->wireless_modes);
3235 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
3236 set_bit(ATH9K_MODE_11NG_HT40PLUS,
3237 pCap->wireless_modes);
3238 set_bit(ATH9K_MODE_11NG_HT40MINUS,
3239 pCap->wireless_modes);
3244 pCap->tx_chainmask = ath9k_hw_get_eeprom(ah, EEP_TX_MASK);
3245 if ((ah->ah_isPciExpress)
3246 || (eeval & AR5416_OPFLAGS_11A)) {
3247 pCap->rx_chainmask =
3248 ath9k_hw_get_eeprom(ah, EEP_RX_MASK);
3250 pCap->rx_chainmask =
3251 (ath9k_hw_gpio_get(ah, 0)) ? 0x5 : 0x7;
3254 if (!(AR_SREV_9280(ah) && (ah->ah_macRev == 0)))
3255 ahp->ah_miscMode |= AR_PCU_MIC_NEW_LOC_ENA;
3257 pCap->low_2ghz_chan = 2312;
3258 pCap->high_2ghz_chan = 2732;
3260 pCap->low_5ghz_chan = 4920;
3261 pCap->high_5ghz_chan = 6100;
3263 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
3264 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
3265 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
3267 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
3268 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
3269 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
3271 pCap->hw_caps |= ATH9K_HW_CAP_CHAN_SPREAD;
3273 if (ah->ah_config.ht_enable)
3274 pCap->hw_caps |= ATH9K_HW_CAP_HT;
3276 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
3278 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
3279 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
3280 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
3281 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
3283 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
3284 pCap->total_queues =
3285 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
3287 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
3289 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
3290 pCap->keycache_size =
3291 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
3293 pCap->keycache_size = AR_KEYTABLE_SIZE;
3295 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
3296 pCap->num_mr_retries = 4;
3297 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
3299 if (AR_SREV_9285_10_OR_LATER(ah))
3300 pCap->num_gpio_pins = AR9285_NUM_GPIO;
3301 else if (AR_SREV_9280_10_OR_LATER(ah))
3302 pCap->num_gpio_pins = AR928X_NUM_GPIO;
3304 pCap->num_gpio_pins = AR_NUM_GPIO;
3306 if (AR_SREV_9280_10_OR_LATER(ah)) {
3307 pCap->hw_caps |= ATH9K_HW_CAP_WOW;
3308 pCap->hw_caps |= ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3310 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW;
3311 pCap->hw_caps &= ~ATH9K_HW_CAP_WOW_MATCHPATTERN_EXACT;
3314 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
3315 pCap->hw_caps |= ATH9K_HW_CAP_CST;
3316 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
3318 pCap->rts_aggr_limit = (8 * 1024);
3321 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
3323 #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
3324 ah->ah_rfsilent = ath9k_hw_get_eeprom(ah, EEP_RF_SILENT);
3325 if (ah->ah_rfsilent & EEP_RFSILENT_ENABLED) {
3326 ah->ah_rfkill_gpio =
3327 MS(ah->ah_rfsilent, EEP_RFSILENT_GPIO_SEL);
3328 ah->ah_rfkill_polarity =
3329 MS(ah->ah_rfsilent, EEP_RFSILENT_POLARITY);
3331 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
3335 if ((ah->ah_macVersion == AR_SREV_VERSION_5416_PCI) ||
3336 (ah->ah_macVersion == AR_SREV_VERSION_5416_PCIE) ||
3337 (ah->ah_macVersion == AR_SREV_VERSION_9160) ||
3338 (ah->ah_macVersion == AR_SREV_VERSION_9100) ||
3339 (ah->ah_macVersion == AR_SREV_VERSION_9280))
3340 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
3342 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
3344 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
3345 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
3347 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
3349 if (ah->ah_currentRDExt & (1 << REG_EXT_JAPAN_MIDBAND)) {
3351 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3352 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
3353 AR_EEPROM_EEREGCAP_EN_KK_U2 |
3354 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
3357 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
3358 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
3361 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
3363 pCap->num_antcfg_5ghz =
3364 ath9k_hw_get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
3365 pCap->num_antcfg_2ghz =
3366 ath9k_hw_get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
3368 if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
3369 pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
3370 ah->ah_btactive_gpio = 6;
3371 ah->ah_wlanactive_gpio = 5;
3377 bool ath9k_hw_getcapability(struct ath_hal *ah, enum ath9k_capability_type type,
3378 u32 capability, u32 *result)
3380 struct ath_hal_5416 *ahp = AH5416(ah);
3381 const struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
3384 case ATH9K_CAP_CIPHER:
3385 switch (capability) {
3386 case ATH9K_CIPHER_AES_CCM:
3387 case ATH9K_CIPHER_AES_OCB:
3388 case ATH9K_CIPHER_TKIP:
3389 case ATH9K_CIPHER_WEP:
3390 case ATH9K_CIPHER_MIC:
3391 case ATH9K_CIPHER_CLR:
3396 case ATH9K_CAP_TKIP_MIC:
3397 switch (capability) {
3401 return (ahp->ah_staId1Defaults &
3402 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
3405 case ATH9K_CAP_TKIP_SPLIT:
3406 return (ahp->ah_miscMode & AR_PCU_MIC_NEW_LOC_ENA) ?
3408 case ATH9K_CAP_WME_TKIPMIC:
3410 case ATH9K_CAP_PHYCOUNTERS:
3411 return ahp->ah_hasHwPhyCounters ? 0 : -ENXIO;
3412 case ATH9K_CAP_DIVERSITY:
3413 return (REG_READ(ah, AR_PHY_CCK_DETECT) &
3414 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
3416 case ATH9K_CAP_PHYDIAG:
3418 case ATH9K_CAP_MCAST_KEYSRCH:
3419 switch (capability) {
3423 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
3426 return (ahp->ah_staId1Defaults &
3427 AR_STA_ID1_MCAST_KSRCH) ? true :
3432 case ATH9K_CAP_TSF_ADJUST:
3433 return (ahp->ah_miscMode & AR_PCU_TX_ADD_TSF) ?
3435 case ATH9K_CAP_RFSILENT:
3436 if (capability == 3)
3438 case ATH9K_CAP_ANT_CFG_2GHZ:
3439 *result = pCap->num_antcfg_2ghz;
3441 case ATH9K_CAP_ANT_CFG_5GHZ:
3442 *result = pCap->num_antcfg_5ghz;
3444 case ATH9K_CAP_TXPOW:
3445 switch (capability) {
3449 *result = ah->ah_powerLimit;
3452 *result = ah->ah_maxPowerLevel;
3455 *result = ah->ah_tpScale;
3464 bool ath9k_hw_setcapability(struct ath_hal *ah, enum ath9k_capability_type type,
3465 u32 capability, u32 setting, int *status)
3467 struct ath_hal_5416 *ahp = AH5416(ah);
3471 case ATH9K_CAP_TKIP_MIC:
3473 ahp->ah_staId1Defaults |=
3474 AR_STA_ID1_CRPT_MIC_ENABLE;
3476 ahp->ah_staId1Defaults &=
3477 ~AR_STA_ID1_CRPT_MIC_ENABLE;
3479 case ATH9K_CAP_DIVERSITY:
3480 v = REG_READ(ah, AR_PHY_CCK_DETECT);
3482 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3484 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
3485 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
3487 case ATH9K_CAP_MCAST_KEYSRCH:
3489 ahp->ah_staId1Defaults |= AR_STA_ID1_MCAST_KSRCH;
3491 ahp->ah_staId1Defaults &= ~AR_STA_ID1_MCAST_KSRCH;
3493 case ATH9K_CAP_TSF_ADJUST:
3495 ahp->ah_miscMode |= AR_PCU_TX_ADD_TSF;
3497 ahp->ah_miscMode &= ~AR_PCU_TX_ADD_TSF;
3504 /****************************/
3505 /* GPIO / RFKILL / Antennae */
3506 /****************************/
3508 static void ath9k_hw_gpio_cfg_output_mux(struct ath_hal *ah,
3512 u32 gpio_shift, tmp;
3515 addr = AR_GPIO_OUTPUT_MUX3;
3517 addr = AR_GPIO_OUTPUT_MUX2;
3519 addr = AR_GPIO_OUTPUT_MUX1;
3521 gpio_shift = (gpio % 6) * 5;
3523 if (AR_SREV_9280_20_OR_LATER(ah)
3524 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3525 REG_RMW(ah, addr, (type << gpio_shift),
3526 (0x1f << gpio_shift));
3528 tmp = REG_READ(ah, addr);
3529 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3530 tmp &= ~(0x1f << gpio_shift);
3531 tmp |= (type << gpio_shift);
3532 REG_WRITE(ah, addr, tmp);
3536 void ath9k_hw_cfg_gpio_input(struct ath_hal *ah, u32 gpio)
3540 ASSERT(gpio < ah->ah_caps.num_gpio_pins);
3542 gpio_shift = gpio << 1;
3546 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3547 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3550 u32 ath9k_hw_gpio_get(struct ath_hal *ah, u32 gpio)
3552 #define MS_REG_READ(x, y) \
3553 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3555 if (gpio >= ah->ah_caps.num_gpio_pins)
3558 if (AR_SREV_9285_10_OR_LATER(ah))
3559 return MS_REG_READ(AR9285, gpio) != 0;
3560 else if (AR_SREV_9280_10_OR_LATER(ah))
3561 return MS_REG_READ(AR928X, gpio) != 0;
3563 return MS_REG_READ(AR, gpio) != 0;
3566 void ath9k_hw_cfg_output(struct ath_hal *ah, u32 gpio,
3571 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3573 gpio_shift = 2 * gpio;
3577 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3578 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3581 void ath9k_hw_set_gpio(struct ath_hal *ah, u32 gpio, u32 val)
3583 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3587 #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
3588 void ath9k_enable_rfkill(struct ath_hal *ah)
3590 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3591 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
3593 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
3594 AR_GPIO_INPUT_MUX2_RFSILENT);
3596 ath9k_hw_cfg_gpio_input(ah, ah->ah_rfkill_gpio);
3597 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
3601 int ath9k_hw_select_antconfig(struct ath_hal *ah, u32 cfg)
3603 struct ath9k_channel *chan = ah->ah_curchan;
3604 const struct ath9k_hw_capabilities *pCap = &ah->ah_caps;
3606 u32 halNumAntConfig;
3608 halNumAntConfig = IS_CHAN_2GHZ(chan) ?
3609 pCap->num_antcfg_2ghz : pCap->num_antcfg_5ghz;
3611 if (cfg < halNumAntConfig) {
3612 if (!ath9k_hw_get_eeprom_antenna_cfg(ah, chan,
3613 cfg, &ant_config)) {
3614 REG_WRITE(ah, AR_PHY_SWITCH_COM, ant_config);
3622 u32 ath9k_hw_getdefantenna(struct ath_hal *ah)
3624 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3627 void ath9k_hw_setantenna(struct ath_hal *ah, u32 antenna)
3629 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3632 bool ath9k_hw_setantennaswitch(struct ath_hal *ah,
3633 enum ath9k_ant_setting settings,
3634 struct ath9k_channel *chan,
3639 struct ath_hal_5416 *ahp = AH5416(ah);
3640 static u8 tx_chainmask_cfg, rx_chainmask_cfg;
3642 if (AR_SREV_9280(ah)) {
3643 if (!tx_chainmask_cfg) {
3645 tx_chainmask_cfg = *tx_chainmask;
3646 rx_chainmask_cfg = *rx_chainmask;
3650 case ATH9K_ANT_FIXED_A:
3651 *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3652 *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
3653 *antenna_cfgd = true;
3655 case ATH9K_ANT_FIXED_B:
3656 if (ah->ah_caps.tx_chainmask >
3657 ATH9K_ANTENNA1_CHAINMASK) {
3658 *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3660 *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
3661 *antenna_cfgd = true;
3663 case ATH9K_ANT_VARIABLE:
3664 *tx_chainmask = tx_chainmask_cfg;
3665 *rx_chainmask = rx_chainmask_cfg;
3666 *antenna_cfgd = true;
3672 ahp->ah_diversityControl = settings;
3678 /*********************/
3679 /* General Operation */
3680 /*********************/
3682 u32 ath9k_hw_getrxfilter(struct ath_hal *ah)
3684 u32 bits = REG_READ(ah, AR_RX_FILTER);
3685 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3687 if (phybits & AR_PHY_ERR_RADAR)
3688 bits |= ATH9K_RX_FILTER_PHYRADAR;
3689 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3690 bits |= ATH9K_RX_FILTER_PHYERR;
3695 void ath9k_hw_setrxfilter(struct ath_hal *ah, u32 bits)
3699 REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
3701 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3702 phybits |= AR_PHY_ERR_RADAR;
3703 if (bits & ATH9K_RX_FILTER_PHYERR)
3704 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3705 REG_WRITE(ah, AR_PHY_ERR, phybits);
3708 REG_WRITE(ah, AR_RXCFG,
3709 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3711 REG_WRITE(ah, AR_RXCFG,
3712 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3715 bool ath9k_hw_phy_disable(struct ath_hal *ah)
3717 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
3720 bool ath9k_hw_disable(struct ath_hal *ah)
3722 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
3725 return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
3728 bool ath9k_hw_set_txpowerlimit(struct ath_hal *ah, u32 limit)
3730 struct ath9k_channel *chan = ah->ah_curchan;
3732 ah->ah_powerLimit = min(limit, (u32) MAX_RATE_POWER);
3734 if (ath9k_hw_set_txpower(ah, chan,
3735 ath9k_regd_get_ctl(ah, chan),
3736 ath9k_regd_get_antenna_allowed(ah, chan),
3737 chan->maxRegTxPower * 2,
3738 min((u32) MAX_RATE_POWER,
3739 (u32) ah->ah_powerLimit)) != 0)
3745 void ath9k_hw_getmac(struct ath_hal *ah, u8 *mac)
3747 struct ath_hal_5416 *ahp = AH5416(ah);
3749 memcpy(mac, ahp->ah_macaddr, ETH_ALEN);
3752 bool ath9k_hw_setmac(struct ath_hal *ah, const u8 *mac)
3754 struct ath_hal_5416 *ahp = AH5416(ah);
3756 memcpy(ahp->ah_macaddr, mac, ETH_ALEN);
3761 void ath9k_hw_setopmode(struct ath_hal *ah)
3763 ath9k_hw_set_operating_mode(ah, ah->ah_opmode);
3766 void ath9k_hw_setmcastfilter(struct ath_hal *ah, u32 filter0, u32 filter1)
3768 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3769 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3772 void ath9k_hw_getbssidmask(struct ath_hal *ah, u8 *mask)
3774 struct ath_hal_5416 *ahp = AH5416(ah);
3776 memcpy(mask, ahp->ah_bssidmask, ETH_ALEN);
3779 bool ath9k_hw_setbssidmask(struct ath_hal *ah, const u8 *mask)
3781 struct ath_hal_5416 *ahp = AH5416(ah);
3783 memcpy(ahp->ah_bssidmask, mask, ETH_ALEN);
3785 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(ahp->ah_bssidmask));
3786 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(ahp->ah_bssidmask + 4));
3791 void ath9k_hw_write_associd(struct ath_hal *ah, const u8 *bssid, u16 assocId)
3793 struct ath_hal_5416 *ahp = AH5416(ah);
3795 memcpy(ahp->ah_bssid, bssid, ETH_ALEN);
3796 ahp->ah_assocId = assocId;
3798 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(ahp->ah_bssid));
3799 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(ahp->ah_bssid + 4) |
3800 ((assocId & 0x3fff) << AR_BSS_ID1_AID_S));
3803 u64 ath9k_hw_gettsf64(struct ath_hal *ah)
3807 tsf = REG_READ(ah, AR_TSF_U32);
3808 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3813 void ath9k_hw_reset_tsf(struct ath_hal *ah)
3818 while (REG_READ(ah, AR_SLP32_MODE) & AR_SLP32_TSF_WRITE_STATUS) {
3821 DPRINTF(ah->ah_sc, ATH_DBG_RESET,
3822 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
3827 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
3830 bool ath9k_hw_set_tsfadjust(struct ath_hal *ah, u32 setting)
3832 struct ath_hal_5416 *ahp = AH5416(ah);
3835 ahp->ah_miscMode |= AR_PCU_TX_ADD_TSF;
3837 ahp->ah_miscMode &= ~AR_PCU_TX_ADD_TSF;
3842 bool ath9k_hw_setslottime(struct ath_hal *ah, u32 us)
3844 struct ath_hal_5416 *ahp = AH5416(ah);
3846 if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
3847 DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
3848 ahp->ah_slottime = (u32) -1;
3851 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
3852 ahp->ah_slottime = us;
3857 void ath9k_hw_set11nmac2040(struct ath_hal *ah, enum ath9k_ht_macmode mode)
3861 if (mode == ATH9K_HT_MACMODE_2040 &&
3862 !ah->ah_config.cwm_ignore_extcca)
3863 macmode = AR_2040_JOINED_RX_CLEAR;
3867 REG_WRITE(ah, AR_2040_MODE, macmode);
3870 /***************************/
3871 /* Bluetooth Coexistence */
3872 /***************************/
3874 void ath9k_hw_btcoex_enable(struct ath_hal *ah)
3876 /* connect bt_active to baseband */
3877 REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3878 (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
3879 AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
3881 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
3882 AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
3884 /* Set input mux for bt_active to gpio pin */
3885 REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
3886 AR_GPIO_INPUT_MUX1_BT_ACTIVE,
3887 ah->ah_btactive_gpio);
3889 /* Configure the desired gpio port for input */
3890 ath9k_hw_cfg_gpio_input(ah, ah->ah_btactive_gpio);
3892 /* Configure the desired GPIO port for TX_FRAME output */
3893 ath9k_hw_cfg_output(ah, ah->ah_wlanactive_gpio,
3894 AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);