diff options
author | David S. Miller <davem@davemloft.net> | 2010-06-11 14:34:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-11 14:34:06 -0400 |
commit | 14599f1e341ee219abdd15f4eee5872d6f2d29f1 (patch) | |
tree | 3875181429010e58416ab34e6c06ef42de52e756 /drivers/net/wireless | |
parent | d8d1f30b95a635dbd610dcc5eb641aca8f4768cf (diff) | |
parent | 832c10fd733893f86c63bde1c65b005d5a2fe346 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6
Conflicts:
drivers/net/wireless/wl12xx/wl1271.h
drivers/net/wireless/wl12xx/wl1271_cmd.h
Diffstat (limited to 'drivers/net/wireless')
148 files changed, 6697 insertions, 3403 deletions
diff --git a/drivers/net/wireless/ath/ath5k/Makefile b/drivers/net/wireless/ath/ath5k/Makefile index cc09595b781a..2242a140e4fe 100644 --- a/drivers/net/wireless/ath/ath5k/Makefile +++ b/drivers/net/wireless/ath/ath5k/Makefile | |||
@@ -13,5 +13,6 @@ ath5k-y += base.o | |||
13 | ath5k-y += led.o | 13 | ath5k-y += led.o |
14 | ath5k-y += rfkill.o | 14 | ath5k-y += rfkill.o |
15 | ath5k-y += ani.o | 15 | ath5k-y += ani.o |
16 | ath5k-y += sysfs.o | ||
16 | ath5k-$(CONFIG_ATH5K_DEBUG) += debug.o | 17 | ath5k-$(CONFIG_ATH5K_DEBUG) += debug.o |
17 | obj-$(CONFIG_ATH5K) += ath5k.o | 18 | obj-$(CONFIG_ATH5K) += ath5k.o |
diff --git a/drivers/net/wireless/ath/ath5k/ani.c b/drivers/net/wireless/ath/ath5k/ani.c index f2311ab35504..26dbe65fedb0 100644 --- a/drivers/net/wireless/ath/ath5k/ani.c +++ b/drivers/net/wireless/ath/ath5k/ani.c | |||
@@ -74,8 +74,8 @@ ath5k_ani_set_noise_immunity_level(struct ath5k_hw *ah, int level) | |||
74 | const s8 fr[] = { -78, -80 }; | 74 | const s8 fr[] = { -78, -80 }; |
75 | #endif | 75 | #endif |
76 | if (level < 0 || level >= ARRAY_SIZE(sz)) { | 76 | if (level < 0 || level >= ARRAY_SIZE(sz)) { |
77 | ATH5K_DBG_UNLIMIT(ah->ah_sc, ATH5K_DEBUG_ANI, | 77 | ATH5K_ERR(ah->ah_sc, "noise immuniy level %d out of range", |
78 | "level out of range %d", level); | 78 | level); |
79 | return; | 79 | return; |
80 | } | 80 | } |
81 | 81 | ||
@@ -106,8 +106,8 @@ ath5k_ani_set_spur_immunity_level(struct ath5k_hw *ah, int level) | |||
106 | 106 | ||
107 | if (level < 0 || level >= ARRAY_SIZE(val) || | 107 | if (level < 0 || level >= ARRAY_SIZE(val) || |
108 | level > ah->ah_sc->ani_state.max_spur_level) { | 108 | level > ah->ah_sc->ani_state.max_spur_level) { |
109 | ATH5K_DBG_UNLIMIT(ah->ah_sc, ATH5K_DEBUG_ANI, | 109 | ATH5K_ERR(ah->ah_sc, "spur immunity level %d out of range", |
110 | "level out of range %d", level); | 110 | level); |
111 | return; | 111 | return; |
112 | } | 112 | } |
113 | 113 | ||
@@ -130,8 +130,7 @@ ath5k_ani_set_firstep_level(struct ath5k_hw *ah, int level) | |||
130 | const int val[] = { 0, 4, 8 }; | 130 | const int val[] = { 0, 4, 8 }; |
131 | 131 | ||
132 | if (level < 0 || level >= ARRAY_SIZE(val)) { | 132 | if (level < 0 || level >= ARRAY_SIZE(val)) { |
133 | ATH5K_DBG_UNLIMIT(ah->ah_sc, ATH5K_DEBUG_ANI, | 133 | ATH5K_ERR(ah->ah_sc, "firstep level %d out of range", level); |
134 | "level out of range %d", level); | ||
135 | return; | 134 | return; |
136 | } | 135 | } |
137 | 136 | ||
@@ -481,14 +480,15 @@ ath5k_ani_calibration(struct ath5k_hw *ah) | |||
481 | struct ath5k_ani_state *as = &ah->ah_sc->ani_state; | 480 | struct ath5k_ani_state *as = &ah->ah_sc->ani_state; |
482 | int listen, ofdm_high, ofdm_low, cck_high, cck_low; | 481 | int listen, ofdm_high, ofdm_low, cck_high, cck_low; |
483 | 482 | ||
484 | if (as->ani_mode != ATH5K_ANI_MODE_AUTO) | ||
485 | return; | ||
486 | |||
487 | /* get listen time since last call and add it to the counter because we | 483 | /* get listen time since last call and add it to the counter because we |
488 | * might not have restarted the "ani period" last time */ | 484 | * might not have restarted the "ani period" last time. |
485 | * always do this to calculate the busy time also in manual mode */ | ||
489 | listen = ath5k_hw_ani_get_listen_time(ah, as); | 486 | listen = ath5k_hw_ani_get_listen_time(ah, as); |
490 | as->listen_time += listen; | 487 | as->listen_time += listen; |
491 | 488 | ||
489 | if (as->ani_mode != ATH5K_ANI_MODE_AUTO) | ||
490 | return; | ||
491 | |||
492 | ath5k_ani_save_and_clear_phy_errors(ah, as); | 492 | ath5k_ani_save_and_clear_phy_errors(ah, as); |
493 | 493 | ||
494 | ofdm_high = as->listen_time * ATH5K_ANI_OFDM_TRIG_HIGH / 1000; | 494 | ofdm_high = as->listen_time * ATH5K_ANI_OFDM_TRIG_HIGH / 1000; |
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h index 2785946f659a..cf16318a0a17 100644 --- a/drivers/net/wireless/ath/ath5k/ath5k.h +++ b/drivers/net/wireless/ath/ath5k/ath5k.h | |||
@@ -204,6 +204,7 @@ | |||
204 | #define AR5K_TUNE_TPC_TXPOWER false | 204 | #define AR5K_TUNE_TPC_TXPOWER false |
205 | #define ATH5K_TUNE_CALIBRATION_INTERVAL_FULL 10000 /* 10 sec */ | 205 | #define ATH5K_TUNE_CALIBRATION_INTERVAL_FULL 10000 /* 10 sec */ |
206 | #define ATH5K_TUNE_CALIBRATION_INTERVAL_ANI 1000 /* 1 sec */ | 206 | #define ATH5K_TUNE_CALIBRATION_INTERVAL_ANI 1000 /* 1 sec */ |
207 | #define ATH5K_TUNE_CALIBRATION_INTERVAL_NF 60000 /* 60 sec */ | ||
207 | 208 | ||
208 | #define AR5K_INIT_CARR_SENSE_EN 1 | 209 | #define AR5K_INIT_CARR_SENSE_EN 1 |
209 | 210 | ||
@@ -1118,6 +1119,7 @@ struct ath5k_hw { | |||
1118 | /* Calibration timestamp */ | 1119 | /* Calibration timestamp */ |
1119 | unsigned long ah_cal_next_full; | 1120 | unsigned long ah_cal_next_full; |
1120 | unsigned long ah_cal_next_ani; | 1121 | unsigned long ah_cal_next_ani; |
1122 | unsigned long ah_cal_next_nf; | ||
1121 | 1123 | ||
1122 | /* Calibration mask */ | 1124 | /* Calibration mask */ |
1123 | u8 ah_cal_mask; | 1125 | u8 ah_cal_mask; |
@@ -1148,6 +1150,9 @@ struct ath5k_hw { | |||
1148 | int ath5k_hw_attach(struct ath5k_softc *sc); | 1150 | int ath5k_hw_attach(struct ath5k_softc *sc); |
1149 | void ath5k_hw_detach(struct ath5k_hw *ah); | 1151 | void ath5k_hw_detach(struct ath5k_hw *ah); |
1150 | 1152 | ||
1153 | int ath5k_sysfs_register(struct ath5k_softc *sc); | ||
1154 | void ath5k_sysfs_unregister(struct ath5k_softc *sc); | ||
1155 | |||
1151 | /* LED functions */ | 1156 | /* LED functions */ |
1152 | int ath5k_init_leds(struct ath5k_softc *sc); | 1157 | int ath5k_init_leds(struct ath5k_softc *sc); |
1153 | void ath5k_led_enable(struct ath5k_softc *sc); | 1158 | void ath5k_led_enable(struct ath5k_softc *sc); |
@@ -1270,6 +1275,7 @@ int ath5k_hw_channel(struct ath5k_hw *ah, struct ieee80211_channel *channel); | |||
1270 | void ath5k_hw_init_nfcal_hist(struct ath5k_hw *ah); | 1275 | void ath5k_hw_init_nfcal_hist(struct ath5k_hw *ah); |
1271 | int ath5k_hw_phy_calibrate(struct ath5k_hw *ah, | 1276 | int ath5k_hw_phy_calibrate(struct ath5k_hw *ah, |
1272 | struct ieee80211_channel *channel); | 1277 | struct ieee80211_channel *channel); |
1278 | void ath5k_hw_update_noise_floor(struct ath5k_hw *ah); | ||
1273 | /* Spur mitigation */ | 1279 | /* Spur mitigation */ |
1274 | bool ath5k_hw_chan_has_spur_noise(struct ath5k_hw *ah, | 1280 | bool ath5k_hw_chan_has_spur_noise(struct ath5k_hw *ah, |
1275 | struct ieee80211_channel *channel); | 1281 | struct ieee80211_channel *channel); |
@@ -1280,6 +1286,7 @@ u16 ath5k_hw_radio_revision(struct ath5k_hw *ah, unsigned int chan); | |||
1280 | int ath5k_hw_phy_disable(struct ath5k_hw *ah); | 1286 | int ath5k_hw_phy_disable(struct ath5k_hw *ah); |
1281 | /* Antenna control */ | 1287 | /* Antenna control */ |
1282 | void ath5k_hw_set_antenna_mode(struct ath5k_hw *ah, u8 ant_mode); | 1288 | void ath5k_hw_set_antenna_mode(struct ath5k_hw *ah, u8 ant_mode); |
1289 | void ath5k_hw_set_antenna_switch(struct ath5k_hw *ah, u8 ee_mode); | ||
1283 | /* TX power setup */ | 1290 | /* TX power setup */ |
1284 | int ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, | 1291 | int ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, |
1285 | u8 ee_mode, u8 txpower); | 1292 | u8 ee_mode, u8 txpower); |
diff --git a/drivers/net/wireless/ath/ath5k/attach.c b/drivers/net/wireless/ath/ath5k/attach.c index e0c244b02f05..ef2dc1dd3a5d 100644 --- a/drivers/net/wireless/ath/ath5k/attach.c +++ b/drivers/net/wireless/ath/ath5k/attach.c | |||
@@ -351,8 +351,6 @@ err_free: | |||
351 | */ | 351 | */ |
352 | void ath5k_hw_detach(struct ath5k_hw *ah) | 352 | void ath5k_hw_detach(struct ath5k_hw *ah) |
353 | { | 353 | { |
354 | ATH5K_TRACE(ah->ah_sc); | ||
355 | |||
356 | __set_bit(ATH_STAT_INVALID, ah->ah_sc->status); | 354 | __set_bit(ATH_STAT_INVALID, ah->ah_sc->status); |
357 | 355 | ||
358 | if (ah->ah_rf_banks != NULL) | 356 | if (ah->ah_rf_banks != NULL) |
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 2978359c4366..9d37c1a43a9d 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
@@ -195,7 +195,7 @@ static const struct ieee80211_rate ath5k_rates[] = { | |||
195 | static int __devinit ath5k_pci_probe(struct pci_dev *pdev, | 195 | static int __devinit ath5k_pci_probe(struct pci_dev *pdev, |
196 | const struct pci_device_id *id); | 196 | const struct pci_device_id *id); |
197 | static void __devexit ath5k_pci_remove(struct pci_dev *pdev); | 197 | static void __devexit ath5k_pci_remove(struct pci_dev *pdev); |
198 | #ifdef CONFIG_PM | 198 | #ifdef CONFIG_PM_SLEEP |
199 | static int ath5k_pci_suspend(struct device *dev); | 199 | static int ath5k_pci_suspend(struct device *dev); |
200 | static int ath5k_pci_resume(struct device *dev); | 200 | static int ath5k_pci_resume(struct device *dev); |
201 | 201 | ||
@@ -203,7 +203,7 @@ static SIMPLE_DEV_PM_OPS(ath5k_pm_ops, ath5k_pci_suspend, ath5k_pci_resume); | |||
203 | #define ATH5K_PM_OPS (&ath5k_pm_ops) | 203 | #define ATH5K_PM_OPS (&ath5k_pm_ops) |
204 | #else | 204 | #else |
205 | #define ATH5K_PM_OPS NULL | 205 | #define ATH5K_PM_OPS NULL |
206 | #endif /* CONFIG_PM */ | 206 | #endif /* CONFIG_PM_SLEEP */ |
207 | 207 | ||
208 | static struct pci_driver ath5k_pci_driver = { | 208 | static struct pci_driver ath5k_pci_driver = { |
209 | .name = KBUILD_MODNAME, | 209 | .name = KBUILD_MODNAME, |
@@ -578,7 +578,7 @@ ath5k_pci_probe(struct pci_dev *pdev, | |||
578 | spin_lock_init(&sc->block); | 578 | spin_lock_init(&sc->block); |
579 | 579 | ||
580 | /* Set private data */ | 580 | /* Set private data */ |
581 | pci_set_drvdata(pdev, hw); | 581 | pci_set_drvdata(pdev, sc); |
582 | 582 | ||
583 | /* Setup interrupt handler */ | 583 | /* Setup interrupt handler */ |
584 | ret = request_irq(pdev->irq, ath5k_intr, IRQF_SHARED, "ath", sc); | 584 | ret = request_irq(pdev->irq, ath5k_intr, IRQF_SHARED, "ath", sc); |
@@ -694,25 +694,23 @@ err: | |||
694 | static void __devexit | 694 | static void __devexit |
695 | ath5k_pci_remove(struct pci_dev *pdev) | 695 | ath5k_pci_remove(struct pci_dev *pdev) |
696 | { | 696 | { |
697 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); | 697 | struct ath5k_softc *sc = pci_get_drvdata(pdev); |
698 | struct ath5k_softc *sc = hw->priv; | ||
699 | 698 | ||
700 | ath5k_debug_finish_device(sc); | 699 | ath5k_debug_finish_device(sc); |
701 | ath5k_detach(pdev, hw); | 700 | ath5k_detach(pdev, sc->hw); |
702 | ath5k_hw_detach(sc->ah); | 701 | ath5k_hw_detach(sc->ah); |
703 | kfree(sc->ah); | 702 | kfree(sc->ah); |
704 | free_irq(pdev->irq, sc); | 703 | free_irq(pdev->irq, sc); |
705 | pci_iounmap(pdev, sc->iobase); | 704 | pci_iounmap(pdev, sc->iobase); |
706 | pci_release_region(pdev, 0); | 705 | pci_release_region(pdev, 0); |
707 | pci_disable_device(pdev); | 706 | pci_disable_device(pdev); |
708 | ieee80211_free_hw(hw); | 707 | ieee80211_free_hw(sc->hw); |
709 | } | 708 | } |
710 | 709 | ||
711 | #ifdef CONFIG_PM | 710 | #ifdef CONFIG_PM_SLEEP |
712 | static int ath5k_pci_suspend(struct device *dev) | 711 | static int ath5k_pci_suspend(struct device *dev) |
713 | { | 712 | { |
714 | struct ieee80211_hw *hw = pci_get_drvdata(to_pci_dev(dev)); | 713 | struct ath5k_softc *sc = pci_get_drvdata(to_pci_dev(dev)); |
715 | struct ath5k_softc *sc = hw->priv; | ||
716 | 714 | ||
717 | ath5k_led_off(sc); | 715 | ath5k_led_off(sc); |
718 | return 0; | 716 | return 0; |
@@ -721,8 +719,7 @@ static int ath5k_pci_suspend(struct device *dev) | |||
721 | static int ath5k_pci_resume(struct device *dev) | 719 | static int ath5k_pci_resume(struct device *dev) |
722 | { | 720 | { |
723 | struct pci_dev *pdev = to_pci_dev(dev); | 721 | struct pci_dev *pdev = to_pci_dev(dev); |
724 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); | 722 | struct ath5k_softc *sc = pci_get_drvdata(pdev); |
725 | struct ath5k_softc *sc = hw->priv; | ||
726 | 723 | ||
727 | /* | 724 | /* |
728 | * Suspend/Resume resets the PCI configuration space, so we have to | 725 | * Suspend/Resume resets the PCI configuration space, so we have to |
@@ -734,7 +731,7 @@ static int ath5k_pci_resume(struct device *dev) | |||
734 | ath5k_led_enable(sc); | 731 | ath5k_led_enable(sc); |
735 | return 0; | 732 | return 0; |
736 | } | 733 | } |
737 | #endif /* CONFIG_PM */ | 734 | #endif /* CONFIG_PM_SLEEP */ |
738 | 735 | ||
739 | 736 | ||
740 | /***********************\ | 737 | /***********************\ |
@@ -864,6 +861,8 @@ ath5k_attach(struct pci_dev *pdev, struct ieee80211_hw *hw) | |||
864 | 861 | ||
865 | ath5k_init_leds(sc); | 862 | ath5k_init_leds(sc); |
866 | 863 | ||
864 | ath5k_sysfs_register(sc); | ||
865 | |||
867 | return 0; | 866 | return 0; |
868 | err_queues: | 867 | err_queues: |
869 | ath5k_txq_release(sc); | 868 | ath5k_txq_release(sc); |
@@ -899,6 +898,7 @@ ath5k_detach(struct pci_dev *pdev, struct ieee80211_hw *hw) | |||
899 | ath5k_hw_release_tx_queue(sc->ah, sc->bhalq); | 898 | ath5k_hw_release_tx_queue(sc->ah, sc->bhalq); |
900 | ath5k_unregister_leds(sc); | 899 | ath5k_unregister_leds(sc); |
901 | 900 | ||
901 | ath5k_sysfs_unregister(sc); | ||
902 | /* | 902 | /* |
903 | * NB: can't reclaim these until after ieee80211_ifdetach | 903 | * NB: can't reclaim these until after ieee80211_ifdetach |
904 | * returns because we'll get called back to reclaim node | 904 | * returns because we'll get called back to reclaim node |
@@ -2785,10 +2785,6 @@ ath5k_tasklet_calibrate(unsigned long data) | |||
2785 | /* Only full calibration for now */ | 2785 | /* Only full calibration for now */ |
2786 | ah->ah_cal_mask |= AR5K_CALIBRATION_FULL; | 2786 | ah->ah_cal_mask |= AR5K_CALIBRATION_FULL; |
2787 | 2787 | ||
2788 | /* Stop queues so that calibration | ||
2789 | * doesn't interfere with tx */ | ||
2790 | ieee80211_stop_queues(sc->hw); | ||
2791 | |||
2792 | ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n", | 2788 | ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n", |
2793 | ieee80211_frequency_to_channel(sc->curchan->center_freq), | 2789 | ieee80211_frequency_to_channel(sc->curchan->center_freq), |
2794 | sc->curchan->hw_value); | 2790 | sc->curchan->hw_value); |
@@ -2806,8 +2802,16 @@ ath5k_tasklet_calibrate(unsigned long data) | |||
2806 | ieee80211_frequency_to_channel( | 2802 | ieee80211_frequency_to_channel( |
2807 | sc->curchan->center_freq)); | 2803 | sc->curchan->center_freq)); |
2808 | 2804 | ||
2809 | /* Wake queues */ | 2805 | /* Noise floor calibration interrupts rx/tx path while I/Q calibration |
2810 | ieee80211_wake_queues(sc->hw); | 2806 | * doesn't. We stop the queues so that calibration doesn't interfere |
2807 | * with TX and don't run it as often */ | ||
2808 | if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) { | ||
2809 | ah->ah_cal_next_nf = jiffies + | ||
2810 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF); | ||
2811 | ieee80211_stop_queues(sc->hw); | ||
2812 | ath5k_hw_update_noise_floor(ah); | ||
2813 | ieee80211_wake_queues(sc->hw); | ||
2814 | } | ||
2811 | 2815 | ||
2812 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL; | 2816 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL; |
2813 | } | 2817 | } |
@@ -2926,6 +2930,10 @@ ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan) | |||
2926 | 2930 | ||
2927 | ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode); | 2931 | ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode); |
2928 | 2932 | ||
2933 | ah->ah_cal_next_full = jiffies; | ||
2934 | ah->ah_cal_next_ani = jiffies; | ||
2935 | ah->ah_cal_next_nf = jiffies; | ||
2936 | |||
2929 | /* | 2937 | /* |
2930 | * Change channels and update the h/w rate map if we're switching; | 2938 | * Change channels and update the h/w rate map if we're switching; |
2931 | * e.g. 11a to 11b/g. | 2939 | * e.g. 11a to 11b/g. |
@@ -3140,13 +3148,15 @@ static void ath5k_configure_filter(struct ieee80211_hw *hw, | |||
3140 | 3148 | ||
3141 | if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) { | 3149 | if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) { |
3142 | if (*new_flags & FIF_PROMISC_IN_BSS) { | 3150 | if (*new_flags & FIF_PROMISC_IN_BSS) { |
3143 | rfilt |= AR5K_RX_FILTER_PROM; | ||
3144 | __set_bit(ATH_STAT_PROMISC, sc->status); | 3151 | __set_bit(ATH_STAT_PROMISC, sc->status); |
3145 | } else { | 3152 | } else { |
3146 | __clear_bit(ATH_STAT_PROMISC, sc->status); | 3153 | __clear_bit(ATH_STAT_PROMISC, sc->status); |
3147 | } | 3154 | } |
3148 | } | 3155 | } |
3149 | 3156 | ||
3157 | if (test_bit(ATH_STAT_PROMISC, sc->status)) | ||
3158 | rfilt |= AR5K_RX_FILTER_PROM; | ||
3159 | |||
3150 | /* Note, AR5K_RX_FILTER_MCAST is already enabled */ | 3160 | /* Note, AR5K_RX_FILTER_MCAST is already enabled */ |
3151 | if (*new_flags & FIF_ALLMULTI) { | 3161 | if (*new_flags & FIF_ALLMULTI) { |
3152 | mfilt[0] = ~0; | 3162 | mfilt[0] = ~0; |
diff --git a/drivers/net/wireless/ath/ath5k/caps.c b/drivers/net/wireless/ath/ath5k/caps.c index 74f007126f41..beae519aa735 100644 --- a/drivers/net/wireless/ath/ath5k/caps.c +++ b/drivers/net/wireless/ath/ath5k/caps.c | |||
@@ -34,7 +34,6 @@ int ath5k_hw_set_capabilities(struct ath5k_hw *ah) | |||
34 | { | 34 | { |
35 | u16 ee_header; | 35 | u16 ee_header; |
36 | 36 | ||
37 | ATH5K_TRACE(ah->ah_sc); | ||
38 | /* Capabilities stored in the EEPROM */ | 37 | /* Capabilities stored in the EEPROM */ |
39 | ee_header = ah->ah_capabilities.cap_eeprom.ee_header; | 38 | ee_header = ah->ah_capabilities.cap_eeprom.ee_header; |
40 | 39 | ||
@@ -123,8 +122,6 @@ int ath5k_hw_get_capability(struct ath5k_hw *ah, | |||
123 | enum ath5k_capability_type cap_type, | 122 | enum ath5k_capability_type cap_type, |
124 | u32 capability, u32 *result) | 123 | u32 capability, u32 *result) |
125 | { | 124 | { |
126 | ATH5K_TRACE(ah->ah_sc); | ||
127 | |||
128 | switch (cap_type) { | 125 | switch (cap_type) { |
129 | case AR5K_CAP_NUM_TXQUEUES: | 126 | case AR5K_CAP_NUM_TXQUEUES: |
130 | if (result) { | 127 | if (result) { |
@@ -173,8 +170,6 @@ yes: | |||
173 | int ath5k_hw_enable_pspoll(struct ath5k_hw *ah, u8 *bssid, | 170 | int ath5k_hw_enable_pspoll(struct ath5k_hw *ah, u8 *bssid, |
174 | u16 assoc_id) | 171 | u16 assoc_id) |
175 | { | 172 | { |
176 | ATH5K_TRACE(ah->ah_sc); | ||
177 | |||
178 | if (ah->ah_version == AR5K_AR5210) { | 173 | if (ah->ah_version == AR5K_AR5210) { |
179 | AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, | 174 | AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, |
180 | AR5K_STA_ID1_NO_PSPOLL | AR5K_STA_ID1_DEFAULT_ANTENNA); | 175 | AR5K_STA_ID1_NO_PSPOLL | AR5K_STA_ID1_DEFAULT_ANTENNA); |
@@ -186,8 +181,6 @@ int ath5k_hw_enable_pspoll(struct ath5k_hw *ah, u8 *bssid, | |||
186 | 181 | ||
187 | int ath5k_hw_disable_pspoll(struct ath5k_hw *ah) | 182 | int ath5k_hw_disable_pspoll(struct ath5k_hw *ah) |
188 | { | 183 | { |
189 | ATH5K_TRACE(ah->ah_sc); | ||
190 | |||
191 | if (ah->ah_version == AR5K_AR5210) { | 184 | if (ah->ah_version == AR5K_AR5210) { |
192 | AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, | 185 | AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, |
193 | AR5K_STA_ID1_NO_PSPOLL | AR5K_STA_ID1_DEFAULT_ANTENNA); | 186 | AR5K_STA_ID1_NO_PSPOLL | AR5K_STA_ID1_DEFAULT_ANTENNA); |
diff --git a/drivers/net/wireless/ath/ath5k/debug.c b/drivers/net/wireless/ath/ath5k/debug.c index 6fb5c5ffa5b1..0f2e37d85cbd 100644 --- a/drivers/net/wireless/ath/ath5k/debug.c +++ b/drivers/net/wireless/ath/ath5k/debug.c | |||
@@ -307,7 +307,6 @@ static const struct { | |||
307 | { ATH5K_DEBUG_DUMP_RX, "dumprx", "print received skb content" }, | 307 | { ATH5K_DEBUG_DUMP_RX, "dumprx", "print received skb content" }, |
308 | { ATH5K_DEBUG_DUMP_TX, "dumptx", "print transmit skb content" }, | 308 | { ATH5K_DEBUG_DUMP_TX, "dumptx", "print transmit skb content" }, |
309 | { ATH5K_DEBUG_DUMPBANDS, "dumpbands", "dump bands" }, | 309 | { ATH5K_DEBUG_DUMPBANDS, "dumpbands", "dump bands" }, |
310 | { ATH5K_DEBUG_TRACE, "trace", "trace function calls" }, | ||
311 | { ATH5K_DEBUG_ANI, "ani", "adaptive noise immunity" }, | 310 | { ATH5K_DEBUG_ANI, "ani", "adaptive noise immunity" }, |
312 | { ATH5K_DEBUG_ANY, "all", "show all debug levels" }, | 311 | { ATH5K_DEBUG_ANY, "all", "show all debug levels" }, |
313 | }; | 312 | }; |
@@ -426,6 +425,13 @@ static ssize_t read_file_antenna(struct file *file, char __user *user_buf, | |||
426 | "AR5K_PHY_FAST_ANT_DIV_EN\t%d\n", | 425 | "AR5K_PHY_FAST_ANT_DIV_EN\t%d\n", |
427 | (v & AR5K_PHY_FAST_ANT_DIV_EN) != 0); | 426 | (v & AR5K_PHY_FAST_ANT_DIV_EN) != 0); |
428 | 427 | ||
428 | v = ath5k_hw_reg_read(sc->ah, AR5K_PHY_ANT_SWITCH_TABLE_0); | ||
429 | len += snprintf(buf+len, sizeof(buf)-len, | ||
430 | "\nAR5K_PHY_ANT_SWITCH_TABLE_0\t0x%08x\n", v); | ||
431 | v = ath5k_hw_reg_read(sc->ah, AR5K_PHY_ANT_SWITCH_TABLE_1); | ||
432 | len += snprintf(buf+len, sizeof(buf)-len, | ||
433 | "AR5K_PHY_ANT_SWITCH_TABLE_1\t0x%08x\n", v); | ||
434 | |||
429 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 435 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
430 | } | 436 | } |
431 | 437 | ||
@@ -729,6 +735,66 @@ static const struct file_operations fops_ani = { | |||
729 | }; | 735 | }; |
730 | 736 | ||
731 | 737 | ||
738 | /* debugfs: queues etc */ | ||
739 | |||
740 | static ssize_t read_file_queue(struct file *file, char __user *user_buf, | ||
741 | size_t count, loff_t *ppos) | ||
742 | { | ||
743 | struct ath5k_softc *sc = file->private_data; | ||
744 | char buf[700]; | ||
745 | unsigned int len = 0; | ||
746 | |||
747 | struct ath5k_txq *txq; | ||
748 | struct ath5k_buf *bf, *bf0; | ||
749 | int i, n = 0; | ||
750 | |||
751 | len += snprintf(buf+len, sizeof(buf)-len, | ||
752 | "available txbuffers: %d\n", sc->txbuf_len); | ||
753 | |||
754 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { | ||
755 | txq = &sc->txqs[i]; | ||
756 | |||
757 | len += snprintf(buf+len, sizeof(buf)-len, | ||
758 | "%02d: %ssetup\n", i, txq->setup ? "" : "not "); | ||
759 | |||
760 | if (!txq->setup) | ||
761 | continue; | ||
762 | |||
763 | list_for_each_entry_safe(bf, bf0, &txq->q, list) | ||
764 | n++; | ||
765 | len += snprintf(buf+len, sizeof(buf)-len, " len: %d\n", n); | ||
766 | } | ||
767 | |||
768 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | ||
769 | } | ||
770 | |||
771 | static ssize_t write_file_queue(struct file *file, | ||
772 | const char __user *userbuf, | ||
773 | size_t count, loff_t *ppos) | ||
774 | { | ||
775 | struct ath5k_softc *sc = file->private_data; | ||
776 | char buf[20]; | ||
777 | |||
778 | if (copy_from_user(buf, userbuf, min(count, sizeof(buf)))) | ||
779 | return -EFAULT; | ||
780 | |||
781 | if (strncmp(buf, "start", 5) == 0) | ||
782 | ieee80211_wake_queues(sc->hw); | ||
783 | else if (strncmp(buf, "stop", 4) == 0) | ||
784 | ieee80211_stop_queues(sc->hw); | ||
785 | |||
786 | return count; | ||
787 | } | ||
788 | |||
789 | |||
790 | static const struct file_operations fops_queue = { | ||
791 | .read = read_file_queue, | ||
792 | .write = write_file_queue, | ||
793 | .open = ath5k_debugfs_open, | ||
794 | .owner = THIS_MODULE, | ||
795 | }; | ||
796 | |||
797 | |||
732 | /* init */ | 798 | /* init */ |
733 | 799 | ||
734 | void | 800 | void |
@@ -772,6 +838,11 @@ ath5k_debug_init_device(struct ath5k_softc *sc) | |||
772 | S_IWUSR | S_IRUSR, | 838 | S_IWUSR | S_IRUSR, |
773 | sc->debug.debugfs_phydir, sc, | 839 | sc->debug.debugfs_phydir, sc, |
774 | &fops_ani); | 840 | &fops_ani); |
841 | |||
842 | sc->debug.debugfs_queue = debugfs_create_file("queue", | ||
843 | S_IWUSR | S_IRUSR, | ||
844 | sc->debug.debugfs_phydir, sc, | ||
845 | &fops_queue); | ||
775 | } | 846 | } |
776 | 847 | ||
777 | void | 848 | void |
@@ -790,6 +861,7 @@ ath5k_debug_finish_device(struct ath5k_softc *sc) | |||
790 | debugfs_remove(sc->debug.debugfs_antenna); | 861 | debugfs_remove(sc->debug.debugfs_antenna); |
791 | debugfs_remove(sc->debug.debugfs_frameerrors); | 862 | debugfs_remove(sc->debug.debugfs_frameerrors); |
792 | debugfs_remove(sc->debug.debugfs_ani); | 863 | debugfs_remove(sc->debug.debugfs_ani); |
864 | debugfs_remove(sc->debug.debugfs_queue); | ||
793 | debugfs_remove(sc->debug.debugfs_phydir); | 865 | debugfs_remove(sc->debug.debugfs_phydir); |
794 | } | 866 | } |
795 | 867 | ||
diff --git a/drivers/net/wireless/ath/ath5k/debug.h b/drivers/net/wireless/ath/ath5k/debug.h index ddd5b3a99e8d..606ae94a9157 100644 --- a/drivers/net/wireless/ath/ath5k/debug.h +++ b/drivers/net/wireless/ath/ath5k/debug.h | |||
@@ -77,6 +77,7 @@ struct ath5k_dbg_info { | |||
77 | struct dentry *debugfs_antenna; | 77 | struct dentry *debugfs_antenna; |
78 | struct dentry *debugfs_frameerrors; | 78 | struct dentry *debugfs_frameerrors; |
79 | struct dentry *debugfs_ani; | 79 | struct dentry *debugfs_ani; |
80 | struct dentry *debugfs_queue; | ||
80 | }; | 81 | }; |
81 | 82 | ||
82 | /** | 83 | /** |
@@ -115,18 +116,12 @@ enum ath5k_debug_level { | |||
115 | ATH5K_DEBUG_DUMP_RX = 0x00000100, | 116 | ATH5K_DEBUG_DUMP_RX = 0x00000100, |
116 | ATH5K_DEBUG_DUMP_TX = 0x00000200, | 117 | ATH5K_DEBUG_DUMP_TX = 0x00000200, |
117 | ATH5K_DEBUG_DUMPBANDS = 0x00000400, | 118 | ATH5K_DEBUG_DUMPBANDS = 0x00000400, |
118 | ATH5K_DEBUG_TRACE = 0x00001000, | ||
119 | ATH5K_DEBUG_ANI = 0x00002000, | 119 | ATH5K_DEBUG_ANI = 0x00002000, |
120 | ATH5K_DEBUG_ANY = 0xffffffff | 120 | ATH5K_DEBUG_ANY = 0xffffffff |
121 | }; | 121 | }; |
122 | 122 | ||
123 | #ifdef CONFIG_ATH5K_DEBUG | 123 | #ifdef CONFIG_ATH5K_DEBUG |
124 | 124 | ||
125 | #define ATH5K_TRACE(_sc) do { \ | ||
126 | if (unlikely((_sc)->debug.level & ATH5K_DEBUG_TRACE)) \ | ||
127 | printk(KERN_DEBUG "ath5k trace %s:%d\n", __func__, __LINE__); \ | ||
128 | } while (0) | ||
129 | |||
130 | #define ATH5K_DBG(_sc, _m, _fmt, ...) do { \ | 125 | #define ATH5K_DBG(_sc, _m, _fmt, ...) do { \ |
131 | if (unlikely((_sc)->debug.level & (_m) && net_ratelimit())) \ | 126 | if (unlikely((_sc)->debug.level & (_m) && net_ratelimit())) \ |
132 | ATH5K_PRINTK(_sc, KERN_DEBUG, "(%s:%d): " _fmt, \ | 127 | ATH5K_PRINTK(_sc, KERN_DEBUG, "(%s:%d): " _fmt, \ |
@@ -168,8 +163,6 @@ ath5k_debug_printtxbuf(struct ath5k_softc *sc, struct ath5k_buf *bf); | |||
168 | 163 | ||
169 | #include <linux/compiler.h> | 164 | #include <linux/compiler.h> |
170 | 165 | ||
171 | #define ATH5K_TRACE(_sc) typecheck(struct ath5k_softc *, (_sc)) | ||
172 | |||
173 | static inline void __attribute__ ((format (printf, 3, 4))) | 166 | static inline void __attribute__ ((format (printf, 3, 4))) |
174 | ATH5K_DBG(struct ath5k_softc *sc, unsigned int m, const char *fmt, ...) {} | 167 | ATH5K_DBG(struct ath5k_softc *sc, unsigned int m, const char *fmt, ...) {} |
175 | 168 | ||
diff --git a/drivers/net/wireless/ath/ath5k/desc.c b/drivers/net/wireless/ath/ath5k/desc.c index 7d7b646ab65a..da5dbb63047f 100644 --- a/drivers/net/wireless/ath/ath5k/desc.c +++ b/drivers/net/wireless/ath/ath5k/desc.c | |||
@@ -176,7 +176,6 @@ static int ath5k_hw_setup_4word_tx_desc(struct ath5k_hw *ah, | |||
176 | struct ath5k_hw_4w_tx_ctl *tx_ctl; | 176 | struct ath5k_hw_4w_tx_ctl *tx_ctl; |
177 | unsigned int frame_len; | 177 | unsigned int frame_len; |
178 | 178 | ||
179 | ATH5K_TRACE(ah->ah_sc); | ||
180 | tx_ctl = &desc->ud.ds_tx5212.tx_ctl; | 179 | tx_ctl = &desc->ud.ds_tx5212.tx_ctl; |
181 | 180 | ||
182 | /* | 181 | /* |
@@ -342,8 +341,6 @@ static int ath5k_hw_proc_2word_tx_status(struct ath5k_hw *ah, | |||
342 | struct ath5k_hw_2w_tx_ctl *tx_ctl; | 341 | struct ath5k_hw_2w_tx_ctl *tx_ctl; |
343 | struct ath5k_hw_tx_status *tx_status; | 342 | struct ath5k_hw_tx_status *tx_status; |
344 | 343 | ||
345 | ATH5K_TRACE(ah->ah_sc); | ||
346 | |||
347 | tx_ctl = &desc->ud.ds_tx5210.tx_ctl; | 344 | tx_ctl = &desc->ud.ds_tx5210.tx_ctl; |
348 | tx_status = &desc->ud.ds_tx5210.tx_stat; | 345 | tx_status = &desc->ud.ds_tx5210.tx_stat; |
349 | 346 | ||
@@ -396,8 +393,6 @@ static int ath5k_hw_proc_4word_tx_status(struct ath5k_hw *ah, | |||
396 | struct ath5k_hw_4w_tx_ctl *tx_ctl; | 393 | struct ath5k_hw_4w_tx_ctl *tx_ctl; |
397 | struct ath5k_hw_tx_status *tx_status; | 394 | struct ath5k_hw_tx_status *tx_status; |
398 | 395 | ||
399 | ATH5K_TRACE(ah->ah_sc); | ||
400 | |||
401 | tx_ctl = &desc->ud.ds_tx5212.tx_ctl; | 396 | tx_ctl = &desc->ud.ds_tx5212.tx_ctl; |
402 | tx_status = &desc->ud.ds_tx5212.tx_stat; | 397 | tx_status = &desc->ud.ds_tx5212.tx_stat; |
403 | 398 | ||
@@ -490,7 +485,6 @@ static int ath5k_hw_setup_rx_desc(struct ath5k_hw *ah, struct ath5k_desc *desc, | |||
490 | { | 485 | { |
491 | struct ath5k_hw_rx_ctl *rx_ctl; | 486 | struct ath5k_hw_rx_ctl *rx_ctl; |
492 | 487 | ||
493 | ATH5K_TRACE(ah->ah_sc); | ||
494 | rx_ctl = &desc->ud.ds_rx.rx_ctl; | 488 | rx_ctl = &desc->ud.ds_rx.rx_ctl; |
495 | 489 | ||
496 | /* | 490 | /* |
@@ -593,7 +587,6 @@ static int ath5k_hw_proc_5212_rx_status(struct ath5k_hw *ah, | |||
593 | struct ath5k_hw_rx_status *rx_status; | 587 | struct ath5k_hw_rx_status *rx_status; |
594 | struct ath5k_hw_rx_error *rx_err; | 588 | struct ath5k_hw_rx_error *rx_err; |
595 | 589 | ||
596 | ATH5K_TRACE(ah->ah_sc); | ||
597 | rx_status = &desc->ud.ds_rx.u.rx_stat; | 590 | rx_status = &desc->ud.ds_rx.u.rx_stat; |
598 | 591 | ||
599 | /* Overlay on error */ | 592 | /* Overlay on error */ |
diff --git a/drivers/net/wireless/ath/ath5k/dma.c b/drivers/net/wireless/ath/ath5k/dma.c index 941b51130a6f..484f31870ba8 100644 --- a/drivers/net/wireless/ath/ath5k/dma.c +++ b/drivers/net/wireless/ath/ath5k/dma.c | |||
@@ -48,7 +48,6 @@ | |||
48 | */ | 48 | */ |
49 | void ath5k_hw_start_rx_dma(struct ath5k_hw *ah) | 49 | void ath5k_hw_start_rx_dma(struct ath5k_hw *ah) |
50 | { | 50 | { |
51 | ATH5K_TRACE(ah->ah_sc); | ||
52 | ath5k_hw_reg_write(ah, AR5K_CR_RXE, AR5K_CR); | 51 | ath5k_hw_reg_write(ah, AR5K_CR_RXE, AR5K_CR); |
53 | ath5k_hw_reg_read(ah, AR5K_CR); | 52 | ath5k_hw_reg_read(ah, AR5K_CR); |
54 | } | 53 | } |
@@ -62,7 +61,6 @@ int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah) | |||
62 | { | 61 | { |
63 | unsigned int i; | 62 | unsigned int i; |
64 | 63 | ||
65 | ATH5K_TRACE(ah->ah_sc); | ||
66 | ath5k_hw_reg_write(ah, AR5K_CR_RXD, AR5K_CR); | 64 | ath5k_hw_reg_write(ah, AR5K_CR_RXD, AR5K_CR); |
67 | 65 | ||
68 | /* | 66 | /* |
@@ -96,8 +94,6 @@ u32 ath5k_hw_get_rxdp(struct ath5k_hw *ah) | |||
96 | */ | 94 | */ |
97 | void ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr) | 95 | void ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr) |
98 | { | 96 | { |
99 | ATH5K_TRACE(ah->ah_sc); | ||
100 | |||
101 | ath5k_hw_reg_write(ah, phys_addr, AR5K_RXDP); | 97 | ath5k_hw_reg_write(ah, phys_addr, AR5K_RXDP); |
102 | } | 98 | } |
103 | 99 | ||
@@ -125,7 +121,6 @@ int ath5k_hw_start_tx_dma(struct ath5k_hw *ah, unsigned int queue) | |||
125 | { | 121 | { |
126 | u32 tx_queue; | 122 | u32 tx_queue; |
127 | 123 | ||
128 | ATH5K_TRACE(ah->ah_sc); | ||
129 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 124 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
130 | 125 | ||
131 | /* Return if queue is declared inactive */ | 126 | /* Return if queue is declared inactive */ |
@@ -186,7 +181,6 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue) | |||
186 | unsigned int i = 40; | 181 | unsigned int i = 40; |
187 | u32 tx_queue, pending; | 182 | u32 tx_queue, pending; |
188 | 183 | ||
189 | ATH5K_TRACE(ah->ah_sc); | ||
190 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 184 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
191 | 185 | ||
192 | /* Return if queue is declared inactive */ | 186 | /* Return if queue is declared inactive */ |
@@ -297,7 +291,6 @@ u32 ath5k_hw_get_txdp(struct ath5k_hw *ah, unsigned int queue) | |||
297 | { | 291 | { |
298 | u16 tx_reg; | 292 | u16 tx_reg; |
299 | 293 | ||
300 | ATH5K_TRACE(ah->ah_sc); | ||
301 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 294 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
302 | 295 | ||
303 | /* | 296 | /* |
@@ -340,7 +333,6 @@ int ath5k_hw_set_txdp(struct ath5k_hw *ah, unsigned int queue, u32 phys_addr) | |||
340 | { | 333 | { |
341 | u16 tx_reg; | 334 | u16 tx_reg; |
342 | 335 | ||
343 | ATH5K_TRACE(ah->ah_sc); | ||
344 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 336 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
345 | 337 | ||
346 | /* | 338 | /* |
@@ -400,8 +392,6 @@ int ath5k_hw_update_tx_triglevel(struct ath5k_hw *ah, bool increase) | |||
400 | u32 trigger_level, imr; | 392 | u32 trigger_level, imr; |
401 | int ret = -EIO; | 393 | int ret = -EIO; |
402 | 394 | ||
403 | ATH5K_TRACE(ah->ah_sc); | ||
404 | |||
405 | /* | 395 | /* |
406 | * Disable interrupts by setting the mask | 396 | * Disable interrupts by setting the mask |
407 | */ | 397 | */ |
@@ -451,7 +441,6 @@ done: | |||
451 | */ | 441 | */ |
452 | bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah) | 442 | bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah) |
453 | { | 443 | { |
454 | ATH5K_TRACE(ah->ah_sc); | ||
455 | return ath5k_hw_reg_read(ah, AR5K_INTPEND) == 1 ? 1 : 0; | 444 | return ath5k_hw_reg_read(ah, AR5K_INTPEND) == 1 ? 1 : 0; |
456 | } | 445 | } |
457 | 446 | ||
@@ -475,8 +464,6 @@ int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask) | |||
475 | { | 464 | { |
476 | u32 data; | 465 | u32 data; |
477 | 466 | ||
478 | ATH5K_TRACE(ah->ah_sc); | ||
479 | |||
480 | /* | 467 | /* |
481 | * Read interrupt status from the Interrupt Status register | 468 | * Read interrupt status from the Interrupt Status register |
482 | * on 5210 | 469 | * on 5210 |
diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c b/drivers/net/wireless/ath/ath5k/eeprom.c index ed0263672d6d..ae316fec4a6a 100644 --- a/drivers/net/wireless/ath/ath5k/eeprom.c +++ b/drivers/net/wireless/ath/ath5k/eeprom.c | |||
@@ -35,7 +35,6 @@ static int ath5k_hw_eeprom_read(struct ath5k_hw *ah, u32 offset, u16 *data) | |||
35 | { | 35 | { |
36 | u32 status, timeout; | 36 | u32 status, timeout; |
37 | 37 | ||
38 | ATH5K_TRACE(ah->ah_sc); | ||
39 | /* | 38 | /* |
40 | * Initialize EEPROM access | 39 | * Initialize EEPROM access |
41 | */ | 40 | */ |
@@ -715,7 +714,7 @@ ath5k_eeprom_convert_pcal_info_5111(struct ath5k_hw *ah, int mode, | |||
715 | 714 | ||
716 | /* Only one curve for RF5111 | 715 | /* Only one curve for RF5111 |
717 | * find out which one and place | 716 | * find out which one and place |
718 | * in in pd_curves. | 717 | * in pd_curves. |
719 | * Note: ee_x_gain is reversed here */ | 718 | * Note: ee_x_gain is reversed here */ |
720 | for (idx = 0; idx < AR5K_EEPROM_N_PD_CURVES; idx++) { | 719 | for (idx = 0; idx < AR5K_EEPROM_N_PD_CURVES; idx++) { |
721 | 720 | ||
diff --git a/drivers/net/wireless/ath/ath5k/gpio.c b/drivers/net/wireless/ath/ath5k/gpio.c index 64a27e73d02e..bc90503f4b7a 100644 --- a/drivers/net/wireless/ath/ath5k/gpio.c +++ b/drivers/net/wireless/ath/ath5k/gpio.c | |||
@@ -34,8 +34,6 @@ void ath5k_hw_set_ledstate(struct ath5k_hw *ah, unsigned int state) | |||
34 | /*5210 has different led mode handling*/ | 34 | /*5210 has different led mode handling*/ |
35 | u32 led_5210; | 35 | u32 led_5210; |
36 | 36 | ||
37 | ATH5K_TRACE(ah->ah_sc); | ||
38 | |||
39 | /*Reset led status*/ | 37 | /*Reset led status*/ |
40 | if (ah->ah_version != AR5K_AR5210) | 38 | if (ah->ah_version != AR5K_AR5210) |
41 | AR5K_REG_DISABLE_BITS(ah, AR5K_PCICFG, | 39 | AR5K_REG_DISABLE_BITS(ah, AR5K_PCICFG, |
@@ -82,7 +80,6 @@ void ath5k_hw_set_ledstate(struct ath5k_hw *ah, unsigned int state) | |||
82 | */ | 80 | */ |
83 | int ath5k_hw_set_gpio_input(struct ath5k_hw *ah, u32 gpio) | 81 | int ath5k_hw_set_gpio_input(struct ath5k_hw *ah, u32 gpio) |
84 | { | 82 | { |
85 | ATH5K_TRACE(ah->ah_sc); | ||
86 | if (gpio >= AR5K_NUM_GPIO) | 83 | if (gpio >= AR5K_NUM_GPIO) |
87 | return -EINVAL; | 84 | return -EINVAL; |
88 | 85 | ||
@@ -98,7 +95,6 @@ int ath5k_hw_set_gpio_input(struct ath5k_hw *ah, u32 gpio) | |||
98 | */ | 95 | */ |
99 | int ath5k_hw_set_gpio_output(struct ath5k_hw *ah, u32 gpio) | 96 | int ath5k_hw_set_gpio_output(struct ath5k_hw *ah, u32 gpio) |
100 | { | 97 | { |
101 | ATH5K_TRACE(ah->ah_sc); | ||
102 | if (gpio >= AR5K_NUM_GPIO) | 98 | if (gpio >= AR5K_NUM_GPIO) |
103 | return -EINVAL; | 99 | return -EINVAL; |
104 | 100 | ||
@@ -114,7 +110,6 @@ int ath5k_hw_set_gpio_output(struct ath5k_hw *ah, u32 gpio) | |||
114 | */ | 110 | */ |
115 | u32 ath5k_hw_get_gpio(struct ath5k_hw *ah, u32 gpio) | 111 | u32 ath5k_hw_get_gpio(struct ath5k_hw *ah, u32 gpio) |
116 | { | 112 | { |
117 | ATH5K_TRACE(ah->ah_sc); | ||
118 | if (gpio >= AR5K_NUM_GPIO) | 113 | if (gpio >= AR5K_NUM_GPIO) |
119 | return 0xffffffff; | 114 | return 0xffffffff; |
120 | 115 | ||
@@ -129,7 +124,6 @@ u32 ath5k_hw_get_gpio(struct ath5k_hw *ah, u32 gpio) | |||
129 | int ath5k_hw_set_gpio(struct ath5k_hw *ah, u32 gpio, u32 val) | 124 | int ath5k_hw_set_gpio(struct ath5k_hw *ah, u32 gpio, u32 val) |
130 | { | 125 | { |
131 | u32 data; | 126 | u32 data; |
132 | ATH5K_TRACE(ah->ah_sc); | ||
133 | 127 | ||
134 | if (gpio >= AR5K_NUM_GPIO) | 128 | if (gpio >= AR5K_NUM_GPIO) |
135 | return -EINVAL; | 129 | return -EINVAL; |
@@ -153,7 +147,6 @@ void ath5k_hw_set_gpio_intr(struct ath5k_hw *ah, unsigned int gpio, | |||
153 | { | 147 | { |
154 | u32 data; | 148 | u32 data; |
155 | 149 | ||
156 | ATH5K_TRACE(ah->ah_sc); | ||
157 | if (gpio >= AR5K_NUM_GPIO) | 150 | if (gpio >= AR5K_NUM_GPIO) |
158 | return; | 151 | return; |
159 | 152 | ||
diff --git a/drivers/net/wireless/ath/ath5k/pcu.c b/drivers/net/wireless/ath/ath5k/pcu.c index 5212e275f1c7..86fdb6ddfaaa 100644 --- a/drivers/net/wireless/ath/ath5k/pcu.c +++ b/drivers/net/wireless/ath/ath5k/pcu.c | |||
@@ -59,8 +59,6 @@ int ath5k_hw_set_opmode(struct ath5k_hw *ah, enum nl80211_iftype op_mode) | |||
59 | 59 | ||
60 | beacon_reg = 0; | 60 | beacon_reg = 0; |
61 | 61 | ||
62 | ATH5K_TRACE(ah->ah_sc); | ||
63 | |||
64 | switch (op_mode) { | 62 | switch (op_mode) { |
65 | case NL80211_IFTYPE_ADHOC: | 63 | case NL80211_IFTYPE_ADHOC: |
66 | pcu_reg |= AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_KEYSRCH_MODE; | 64 | pcu_reg |= AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_KEYSRCH_MODE; |
@@ -173,7 +171,6 @@ void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high) | |||
173 | */ | 171 | */ |
174 | static int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout) | 172 | static int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout) |
175 | { | 173 | { |
176 | ATH5K_TRACE(ah->ah_sc); | ||
177 | if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_ACK)) | 174 | if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_ACK)) |
178 | <= timeout) | 175 | <= timeout) |
179 | return -EINVAL; | 176 | return -EINVAL; |
@@ -192,7 +189,6 @@ static int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout) | |||
192 | */ | 189 | */ |
193 | static int ath5k_hw_set_cts_timeout(struct ath5k_hw *ah, unsigned int timeout) | 190 | static int ath5k_hw_set_cts_timeout(struct ath5k_hw *ah, unsigned int timeout) |
194 | { | 191 | { |
195 | ATH5K_TRACE(ah->ah_sc); | ||
196 | if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_CTS)) | 192 | if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_CTS)) |
197 | <= timeout) | 193 | <= timeout) |
198 | return -EINVAL; | 194 | return -EINVAL; |
@@ -297,7 +293,6 @@ int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac) | |||
297 | u32 low_id, high_id; | 293 | u32 low_id, high_id; |
298 | u32 pcu_reg; | 294 | u32 pcu_reg; |
299 | 295 | ||
300 | ATH5K_TRACE(ah->ah_sc); | ||
301 | /* Set new station ID */ | 296 | /* Set new station ID */ |
302 | memcpy(common->macaddr, mac, ETH_ALEN); | 297 | memcpy(common->macaddr, mac, ETH_ALEN); |
303 | 298 | ||
@@ -357,7 +352,6 @@ void ath5k_hw_set_associd(struct ath5k_hw *ah) | |||
357 | void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask) | 352 | void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask) |
358 | { | 353 | { |
359 | struct ath_common *common = ath5k_hw_common(ah); | 354 | struct ath_common *common = ath5k_hw_common(ah); |
360 | ATH5K_TRACE(ah->ah_sc); | ||
361 | 355 | ||
362 | /* Cache bssid mask so that we can restore it | 356 | /* Cache bssid mask so that we can restore it |
363 | * on reset */ | 357 | * on reset */ |
@@ -382,7 +376,6 @@ void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask) | |||
382 | */ | 376 | */ |
383 | void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah) | 377 | void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah) |
384 | { | 378 | { |
385 | ATH5K_TRACE(ah->ah_sc); | ||
386 | AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX); | 379 | AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX); |
387 | } | 380 | } |
388 | 381 | ||
@@ -397,7 +390,6 @@ void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah) | |||
397 | */ | 390 | */ |
398 | void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah) | 391 | void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah) |
399 | { | 392 | { |
400 | ATH5K_TRACE(ah->ah_sc); | ||
401 | AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX); | 393 | AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX); |
402 | } | 394 | } |
403 | 395 | ||
@@ -406,8 +398,6 @@ void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah) | |||
406 | */ | 398 | */ |
407 | void ath5k_hw_set_mcast_filter(struct ath5k_hw *ah, u32 filter0, u32 filter1) | 399 | void ath5k_hw_set_mcast_filter(struct ath5k_hw *ah, u32 filter0, u32 filter1) |
408 | { | 400 | { |
409 | ATH5K_TRACE(ah->ah_sc); | ||
410 | /* Set the multicat filter */ | ||
411 | ath5k_hw_reg_write(ah, filter0, AR5K_MCAST_FILTER0); | 401 | ath5k_hw_reg_write(ah, filter0, AR5K_MCAST_FILTER0); |
412 | ath5k_hw_reg_write(ah, filter1, AR5K_MCAST_FILTER1); | 402 | ath5k_hw_reg_write(ah, filter1, AR5K_MCAST_FILTER1); |
413 | } | 403 | } |
@@ -427,7 +417,6 @@ u32 ath5k_hw_get_rx_filter(struct ath5k_hw *ah) | |||
427 | { | 417 | { |
428 | u32 data, filter = 0; | 418 | u32 data, filter = 0; |
429 | 419 | ||
430 | ATH5K_TRACE(ah->ah_sc); | ||
431 | filter = ath5k_hw_reg_read(ah, AR5K_RX_FILTER); | 420 | filter = ath5k_hw_reg_read(ah, AR5K_RX_FILTER); |
432 | 421 | ||
433 | /*Radar detection for 5212*/ | 422 | /*Radar detection for 5212*/ |
@@ -457,8 +446,6 @@ void ath5k_hw_set_rx_filter(struct ath5k_hw *ah, u32 filter) | |||
457 | { | 446 | { |
458 | u32 data = 0; | 447 | u32 data = 0; |
459 | 448 | ||
460 | ATH5K_TRACE(ah->ah_sc); | ||
461 | |||
462 | /* Set PHY error filter register on 5212*/ | 449 | /* Set PHY error filter register on 5212*/ |
463 | if (ah->ah_version == AR5K_AR5212) { | 450 | if (ah->ah_version == AR5K_AR5212) { |
464 | if (filter & AR5K_RX_FILTER_RADARERR) | 451 | if (filter & AR5K_RX_FILTER_RADARERR) |
@@ -533,8 +520,6 @@ u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah) | |||
533 | 520 | ||
534 | WARN_ON( i == ATH5K_MAX_TSF_READ ); | 521 | WARN_ON( i == ATH5K_MAX_TSF_READ ); |
535 | 522 | ||
536 | ATH5K_TRACE(ah->ah_sc); | ||
537 | |||
538 | return (((u64)tsf_upper1 << 32) | tsf_lower); | 523 | return (((u64)tsf_upper1 << 32) | tsf_lower); |
539 | } | 524 | } |
540 | 525 | ||
@@ -548,8 +533,6 @@ u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah) | |||
548 | */ | 533 | */ |
549 | void ath5k_hw_set_tsf64(struct ath5k_hw *ah, u64 tsf64) | 534 | void ath5k_hw_set_tsf64(struct ath5k_hw *ah, u64 tsf64) |
550 | { | 535 | { |
551 | ATH5K_TRACE(ah->ah_sc); | ||
552 | |||
553 | ath5k_hw_reg_write(ah, tsf64 & 0xffffffff, AR5K_TSF_L32); | 536 | ath5k_hw_reg_write(ah, tsf64 & 0xffffffff, AR5K_TSF_L32); |
554 | ath5k_hw_reg_write(ah, (tsf64 >> 32) & 0xffffffff, AR5K_TSF_U32); | 537 | ath5k_hw_reg_write(ah, (tsf64 >> 32) & 0xffffffff, AR5K_TSF_U32); |
555 | } | 538 | } |
@@ -565,8 +548,6 @@ void ath5k_hw_reset_tsf(struct ath5k_hw *ah) | |||
565 | { | 548 | { |
566 | u32 val; | 549 | u32 val; |
567 | 550 | ||
568 | ATH5K_TRACE(ah->ah_sc); | ||
569 | |||
570 | val = ath5k_hw_reg_read(ah, AR5K_BEACON) | AR5K_BEACON_RESET_TSF; | 551 | val = ath5k_hw_reg_read(ah, AR5K_BEACON) | AR5K_BEACON_RESET_TSF; |
571 | 552 | ||
572 | /* | 553 | /* |
@@ -586,7 +567,6 @@ void ath5k_hw_init_beacon(struct ath5k_hw *ah, u32 next_beacon, u32 interval) | |||
586 | { | 567 | { |
587 | u32 timer1, timer2, timer3; | 568 | u32 timer1, timer2, timer3; |
588 | 569 | ||
589 | ATH5K_TRACE(ah->ah_sc); | ||
590 | /* | 570 | /* |
591 | * Set the additional timers by mode | 571 | * Set the additional timers by mode |
592 | */ | 572 | */ |
@@ -674,7 +654,6 @@ int ath5k_hw_reset_key(struct ath5k_hw *ah, u16 entry) | |||
674 | unsigned int i, type; | 654 | unsigned int i, type; |
675 | u16 micentry = entry + AR5K_KEYTABLE_MIC_OFFSET; | 655 | u16 micentry = entry + AR5K_KEYTABLE_MIC_OFFSET; |
676 | 656 | ||
677 | ATH5K_TRACE(ah->ah_sc); | ||
678 | AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE); | 657 | AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE); |
679 | 658 | ||
680 | type = ath5k_hw_reg_read(ah, AR5K_KEYTABLE_TYPE(entry)); | 659 | type = ath5k_hw_reg_read(ah, AR5K_KEYTABLE_TYPE(entry)); |
@@ -749,8 +728,6 @@ int ath5k_hw_set_key(struct ath5k_hw *ah, u16 entry, | |||
749 | bool is_tkip; | 728 | bool is_tkip; |
750 | const u8 *key_ptr; | 729 | const u8 *key_ptr; |
751 | 730 | ||
752 | ATH5K_TRACE(ah->ah_sc); | ||
753 | |||
754 | is_tkip = (key->alg == ALG_TKIP); | 731 | is_tkip = (key->alg == ALG_TKIP); |
755 | 732 | ||
756 | /* | 733 | /* |
@@ -836,7 +813,6 @@ int ath5k_hw_set_key_lladdr(struct ath5k_hw *ah, u16 entry, const u8 *mac) | |||
836 | { | 813 | { |
837 | u32 low_id, high_id; | 814 | u32 low_id, high_id; |
838 | 815 | ||
839 | ATH5K_TRACE(ah->ah_sc); | ||
840 | /* Invalid entry (key table overflow) */ | 816 | /* Invalid entry (key table overflow) */ |
841 | AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE); | 817 | AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE); |
842 | 818 | ||
diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c index 1b81c4778800..73c4fcd142bb 100644 --- a/drivers/net/wireless/ath/ath5k/phy.c +++ b/drivers/net/wireless/ath/ath5k/phy.c | |||
@@ -378,8 +378,6 @@ enum ath5k_rfgain ath5k_hw_gainf_calibrate(struct ath5k_hw *ah) | |||
378 | u32 data, type; | 378 | u32 data, type; |
379 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; | 379 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
380 | 380 | ||
381 | ATH5K_TRACE(ah->ah_sc); | ||
382 | |||
383 | if (ah->ah_rf_banks == NULL || | 381 | if (ah->ah_rf_banks == NULL || |
384 | ah->ah_gain.g_state == AR5K_RFGAIN_INACTIVE) | 382 | ah->ah_gain.g_state == AR5K_RFGAIN_INACTIVE) |
385 | return AR5K_RFGAIN_INACTIVE; | 383 | return AR5K_RFGAIN_INACTIVE; |
@@ -1167,7 +1165,7 @@ static s16 ath5k_hw_get_median_noise_floor(struct ath5k_hw *ah) | |||
1167 | * The median of the values in the history is then loaded into the | 1165 | * The median of the values in the history is then loaded into the |
1168 | * hardware for its own use for RSSI and CCA measurements. | 1166 | * hardware for its own use for RSSI and CCA measurements. |
1169 | */ | 1167 | */ |
1170 | static void ath5k_hw_update_noise_floor(struct ath5k_hw *ah) | 1168 | void ath5k_hw_update_noise_floor(struct ath5k_hw *ah) |
1171 | { | 1169 | { |
1172 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; | 1170 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
1173 | u32 val; | 1171 | u32 val; |
@@ -1248,7 +1246,6 @@ static void ath5k_hw_update_noise_floor(struct ath5k_hw *ah) | |||
1248 | /* | 1246 | /* |
1249 | * Perform a PHY calibration on RF5110 | 1247 | * Perform a PHY calibration on RF5110 |
1250 | * -Fix BPSK/QAM Constellation (I/Q correction) | 1248 | * -Fix BPSK/QAM Constellation (I/Q correction) |
1251 | * -Calculate Noise Floor | ||
1252 | */ | 1249 | */ |
1253 | static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah, | 1250 | static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah, |
1254 | struct ieee80211_channel *channel) | 1251 | struct ieee80211_channel *channel) |
@@ -1335,8 +1332,6 @@ static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah, | |||
1335 | return ret; | 1332 | return ret; |
1336 | } | 1333 | } |
1337 | 1334 | ||
1338 | ath5k_hw_update_noise_floor(ah); | ||
1339 | |||
1340 | /* | 1335 | /* |
1341 | * Re-enable RX/TX and beacons | 1336 | * Re-enable RX/TX and beacons |
1342 | */ | 1337 | */ |
@@ -1348,22 +1343,20 @@ static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah, | |||
1348 | } | 1343 | } |
1349 | 1344 | ||
1350 | /* | 1345 | /* |
1351 | * Perform a PHY calibration on RF5111/5112 and newer chips | 1346 | * Perform I/Q calibration on RF5111/5112 and newer chips |
1352 | */ | 1347 | */ |
1353 | static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah, | 1348 | static int |
1354 | struct ieee80211_channel *channel) | 1349 | ath5k_hw_rf511x_iq_calibrate(struct ath5k_hw *ah) |
1355 | { | 1350 | { |
1356 | u32 i_pwr, q_pwr; | 1351 | u32 i_pwr, q_pwr; |
1357 | s32 iq_corr, i_coff, i_coffd, q_coff, q_coffd; | 1352 | s32 iq_corr, i_coff, i_coffd, q_coff, q_coffd; |
1358 | int i; | 1353 | int i; |
1359 | ATH5K_TRACE(ah->ah_sc); | ||
1360 | 1354 | ||
1361 | if (!ah->ah_calibration || | 1355 | if (!ah->ah_calibration || |
1362 | ath5k_hw_reg_read(ah, AR5K_PHY_IQ) & AR5K_PHY_IQ_RUN) | 1356 | ath5k_hw_reg_read(ah, AR5K_PHY_IQ) & AR5K_PHY_IQ_RUN) |
1363 | goto done; | 1357 | return 0; |
1364 | 1358 | ||
1365 | /* Calibration has finished, get the results and re-run */ | 1359 | /* Calibration has finished, get the results and re-run */ |
1366 | |||
1367 | /* work around empty results which can apparently happen on 5212 */ | 1360 | /* work around empty results which can apparently happen on 5212 */ |
1368 | for (i = 0; i <= 10; i++) { | 1361 | for (i = 0; i <= 10; i++) { |
1369 | iq_corr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_CORR); | 1362 | iq_corr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_CORR); |
@@ -1384,7 +1377,7 @@ static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah, | |||
1384 | 1377 | ||
1385 | /* protect against divide by 0 and loss of sign bits */ | 1378 | /* protect against divide by 0 and loss of sign bits */ |
1386 | if (i_coffd == 0 || q_coffd < 2) | 1379 | if (i_coffd == 0 || q_coffd < 2) |
1387 | goto done; | 1380 | return -1; |
1388 | 1381 | ||
1389 | i_coff = (-iq_corr) / i_coffd; | 1382 | i_coff = (-iq_corr) / i_coffd; |
1390 | i_coff = clamp(i_coff, -32, 31); /* signed 6 bit */ | 1383 | i_coff = clamp(i_coff, -32, 31); /* signed 6 bit */ |
@@ -1410,17 +1403,6 @@ static int ath5k_hw_rf511x_calibrate(struct ath5k_hw *ah, | |||
1410 | AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15); | 1403 | AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15); |
1411 | AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_RUN); | 1404 | AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_RUN); |
1412 | 1405 | ||
1413 | done: | ||
1414 | |||
1415 | /* TODO: Separate noise floor calibration from I/Q calibration | ||
1416 | * since noise floor calibration interrupts rx path while I/Q | ||
1417 | * calibration doesn't. We don't need to run noise floor calibration | ||
1418 | * as often as I/Q calibration.*/ | ||
1419 | ath5k_hw_update_noise_floor(ah); | ||
1420 | |||
1421 | /* Initiate a gain_F calibration */ | ||
1422 | ath5k_hw_request_rfgain_probe(ah); | ||
1423 | |||
1424 | return 0; | 1406 | return 0; |
1425 | } | 1407 | } |
1426 | 1408 | ||
@@ -1434,8 +1416,10 @@ int ath5k_hw_phy_calibrate(struct ath5k_hw *ah, | |||
1434 | 1416 | ||
1435 | if (ah->ah_radio == AR5K_RF5110) | 1417 | if (ah->ah_radio == AR5K_RF5110) |
1436 | ret = ath5k_hw_rf5110_calibrate(ah, channel); | 1418 | ret = ath5k_hw_rf5110_calibrate(ah, channel); |
1437 | else | 1419 | else { |
1438 | ret = ath5k_hw_rf511x_calibrate(ah, channel); | 1420 | ret = ath5k_hw_rf511x_iq_calibrate(ah); |
1421 | ath5k_hw_request_rfgain_probe(ah); | ||
1422 | } | ||
1439 | 1423 | ||
1440 | return ret; | 1424 | return ret; |
1441 | } | 1425 | } |
@@ -1693,7 +1677,6 @@ ath5k_hw_set_spur_mitigation_filter(struct ath5k_hw *ah, | |||
1693 | 1677 | ||
1694 | int ath5k_hw_phy_disable(struct ath5k_hw *ah) | 1678 | int ath5k_hw_phy_disable(struct ath5k_hw *ah) |
1695 | { | 1679 | { |
1696 | ATH5K_TRACE(ah->ah_sc); | ||
1697 | /*Just a try M.F.*/ | 1680 | /*Just a try M.F.*/ |
1698 | ath5k_hw_reg_write(ah, AR5K_PHY_ACT_DISABLE, AR5K_PHY_ACT); | 1681 | ath5k_hw_reg_write(ah, AR5K_PHY_ACT_DISABLE, AR5K_PHY_ACT); |
1699 | 1682 | ||
@@ -1709,8 +1692,6 @@ u16 ath5k_hw_radio_revision(struct ath5k_hw *ah, unsigned int chan) | |||
1709 | u32 srev; | 1692 | u32 srev; |
1710 | u16 ret; | 1693 | u16 ret; |
1711 | 1694 | ||
1712 | ATH5K_TRACE(ah->ah_sc); | ||
1713 | |||
1714 | /* | 1695 | /* |
1715 | * Set the radio chip access register | 1696 | * Set the radio chip access register |
1716 | */ | 1697 | */ |
@@ -1755,8 +1736,6 @@ u16 ath5k_hw_radio_revision(struct ath5k_hw *ah, unsigned int chan) | |||
1755 | static void /*TODO:Boundary check*/ | 1736 | static void /*TODO:Boundary check*/ |
1756 | ath5k_hw_set_def_antenna(struct ath5k_hw *ah, u8 ant) | 1737 | ath5k_hw_set_def_antenna(struct ath5k_hw *ah, u8 ant) |
1757 | { | 1738 | { |
1758 | ATH5K_TRACE(ah->ah_sc); | ||
1759 | |||
1760 | if (ah->ah_version != AR5K_AR5210) | 1739 | if (ah->ah_version != AR5K_AR5210) |
1761 | ath5k_hw_reg_write(ah, ant & 0x7, AR5K_DEFAULT_ANTENNA); | 1740 | ath5k_hw_reg_write(ah, ant & 0x7, AR5K_DEFAULT_ANTENNA); |
1762 | } | 1741 | } |
@@ -1789,19 +1768,50 @@ ath5k_hw_set_fast_div(struct ath5k_hw *ah, u8 ee_mode, bool enable) | |||
1789 | 1768 | ||
1790 | if (enable) { | 1769 | if (enable) { |
1791 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART, | 1770 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART, |
1792 | AR5K_PHY_RESTART_DIV_GC, 0xc); | 1771 | AR5K_PHY_RESTART_DIV_GC, 1); |
1793 | 1772 | ||
1794 | AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV, | 1773 | AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV, |
1795 | AR5K_PHY_FAST_ANT_DIV_EN); | 1774 | AR5K_PHY_FAST_ANT_DIV_EN); |
1796 | } else { | 1775 | } else { |
1797 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART, | 1776 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART, |
1798 | AR5K_PHY_RESTART_DIV_GC, 0x8); | 1777 | AR5K_PHY_RESTART_DIV_GC, 0); |
1799 | 1778 | ||
1800 | AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV, | 1779 | AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV, |
1801 | AR5K_PHY_FAST_ANT_DIV_EN); | 1780 | AR5K_PHY_FAST_ANT_DIV_EN); |
1802 | } | 1781 | } |
1803 | } | 1782 | } |
1804 | 1783 | ||
1784 | void | ||
1785 | ath5k_hw_set_antenna_switch(struct ath5k_hw *ah, u8 ee_mode) | ||
1786 | { | ||
1787 | u8 ant0, ant1; | ||
1788 | |||
1789 | /* | ||
1790 | * In case a fixed antenna was set as default | ||
1791 | * use the same switch table twice. | ||
1792 | */ | ||
1793 | if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_A) | ||
1794 | ant0 = ant1 = AR5K_ANT_SWTABLE_A; | ||
1795 | else if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_B) | ||
1796 | ant0 = ant1 = AR5K_ANT_SWTABLE_B; | ||
1797 | else { | ||
1798 | ant0 = AR5K_ANT_SWTABLE_A; | ||
1799 | ant1 = AR5K_ANT_SWTABLE_B; | ||
1800 | } | ||
1801 | |||
1802 | /* Set antenna idle switch table */ | ||
1803 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_ANT_CTL, | ||
1804 | AR5K_PHY_ANT_CTL_SWTABLE_IDLE, | ||
1805 | (ah->ah_ant_ctl[ee_mode][AR5K_ANT_CTL] | | ||
1806 | AR5K_PHY_ANT_CTL_TXRX_EN)); | ||
1807 | |||
1808 | /* Set antenna switch tables */ | ||
1809 | ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant0], | ||
1810 | AR5K_PHY_ANT_SWITCH_TABLE_0); | ||
1811 | ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant1], | ||
1812 | AR5K_PHY_ANT_SWITCH_TABLE_1); | ||
1813 | } | ||
1814 | |||
1805 | /* | 1815 | /* |
1806 | * Set antenna operating mode | 1816 | * Set antenna operating mode |
1807 | */ | 1817 | */ |
@@ -1814,9 +1824,14 @@ ath5k_hw_set_antenna_mode(struct ath5k_hw *ah, u8 ant_mode) | |||
1814 | u8 def_ant, tx_ant, ee_mode; | 1824 | u8 def_ant, tx_ant, ee_mode; |
1815 | u32 sta_id1 = 0; | 1825 | u32 sta_id1 = 0; |
1816 | 1826 | ||
1817 | def_ant = ah->ah_def_ant; | 1827 | /* if channel is not initialized yet we can't set the antennas |
1828 | * so just store the mode. it will be set on the next reset */ | ||
1829 | if (channel == NULL) { | ||
1830 | ah->ah_ant_mode = ant_mode; | ||
1831 | return; | ||
1832 | } | ||
1818 | 1833 | ||
1819 | ATH5K_TRACE(ah->ah_sc); | 1834 | def_ant = ah->ah_def_ant; |
1820 | 1835 | ||
1821 | switch (channel->hw_value & CHANNEL_MODES) { | 1836 | switch (channel->hw_value & CHANNEL_MODES) { |
1822 | case CHANNEL_A: | 1837 | case CHANNEL_A: |
@@ -1916,6 +1931,7 @@ ath5k_hw_set_antenna_mode(struct ath5k_hw *ah, u8 ant_mode) | |||
1916 | if (sta_id1) | 1931 | if (sta_id1) |
1917 | AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, sta_id1); | 1932 | AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, sta_id1); |
1918 | 1933 | ||
1934 | ath5k_hw_set_antenna_switch(ah, ee_mode); | ||
1919 | /* Note: set diversity before default antenna | 1935 | /* Note: set diversity before default antenna |
1920 | * because it won't work correctly */ | 1936 | * because it won't work correctly */ |
1921 | ath5k_hw_set_fast_div(ah, ee_mode, fast_div); | 1937 | ath5k_hw_set_fast_div(ah, ee_mode, fast_div); |
@@ -2981,7 +2997,6 @@ ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, | |||
2981 | u8 type; | 2997 | u8 type; |
2982 | int ret; | 2998 | int ret; |
2983 | 2999 | ||
2984 | ATH5K_TRACE(ah->ah_sc); | ||
2985 | if (txpower > AR5K_TUNE_MAX_TXPOWER) { | 3000 | if (txpower > AR5K_TUNE_MAX_TXPOWER) { |
2986 | ATH5K_ERR(ah->ah_sc, "invalid tx power: %u\n", txpower); | 3001 | ATH5K_ERR(ah->ah_sc, "invalid tx power: %u\n", txpower); |
2987 | return -EINVAL; | 3002 | return -EINVAL; |
@@ -3077,8 +3092,6 @@ int ath5k_hw_set_txpower_limit(struct ath5k_hw *ah, u8 txpower) | |||
3077 | struct ieee80211_channel *channel = ah->ah_current_channel; | 3092 | struct ieee80211_channel *channel = ah->ah_current_channel; |
3078 | u8 ee_mode; | 3093 | u8 ee_mode; |
3079 | 3094 | ||
3080 | ATH5K_TRACE(ah->ah_sc); | ||
3081 | |||
3082 | switch (channel->hw_value & CHANNEL_MODES) { | 3095 | switch (channel->hw_value & CHANNEL_MODES) { |
3083 | case CHANNEL_A: | 3096 | case CHANNEL_A: |
3084 | case CHANNEL_T: | 3097 | case CHANNEL_T: |
diff --git a/drivers/net/wireless/ath/ath5k/qcu.c b/drivers/net/wireless/ath/ath5k/qcu.c index f5831da33f7b..4186ff4c6e9c 100644 --- a/drivers/net/wireless/ath/ath5k/qcu.c +++ b/drivers/net/wireless/ath/ath5k/qcu.c | |||
@@ -31,7 +31,6 @@ Queue Control Unit, DFS Control Unit Functions | |||
31 | int ath5k_hw_get_tx_queueprops(struct ath5k_hw *ah, int queue, | 31 | int ath5k_hw_get_tx_queueprops(struct ath5k_hw *ah, int queue, |
32 | struct ath5k_txq_info *queue_info) | 32 | struct ath5k_txq_info *queue_info) |
33 | { | 33 | { |
34 | ATH5K_TRACE(ah->ah_sc); | ||
35 | memcpy(queue_info, &ah->ah_txq[queue], sizeof(struct ath5k_txq_info)); | 34 | memcpy(queue_info, &ah->ah_txq[queue], sizeof(struct ath5k_txq_info)); |
36 | return 0; | 35 | return 0; |
37 | } | 36 | } |
@@ -42,7 +41,6 @@ int ath5k_hw_get_tx_queueprops(struct ath5k_hw *ah, int queue, | |||
42 | int ath5k_hw_set_tx_queueprops(struct ath5k_hw *ah, int queue, | 41 | int ath5k_hw_set_tx_queueprops(struct ath5k_hw *ah, int queue, |
43 | const struct ath5k_txq_info *queue_info) | 42 | const struct ath5k_txq_info *queue_info) |
44 | { | 43 | { |
45 | ATH5K_TRACE(ah->ah_sc); | ||
46 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 44 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
47 | 45 | ||
48 | if (ah->ah_txq[queue].tqi_type == AR5K_TX_QUEUE_INACTIVE) | 46 | if (ah->ah_txq[queue].tqi_type == AR5K_TX_QUEUE_INACTIVE) |
@@ -69,8 +67,6 @@ int ath5k_hw_setup_tx_queue(struct ath5k_hw *ah, enum ath5k_tx_queue queue_type, | |||
69 | unsigned int queue; | 67 | unsigned int queue; |
70 | int ret; | 68 | int ret; |
71 | 69 | ||
72 | ATH5K_TRACE(ah->ah_sc); | ||
73 | |||
74 | /* | 70 | /* |
75 | * Get queue by type | 71 | * Get queue by type |
76 | */ | 72 | */ |
@@ -149,7 +145,6 @@ int ath5k_hw_setup_tx_queue(struct ath5k_hw *ah, enum ath5k_tx_queue queue_type, | |||
149 | u32 ath5k_hw_num_tx_pending(struct ath5k_hw *ah, unsigned int queue) | 145 | u32 ath5k_hw_num_tx_pending(struct ath5k_hw *ah, unsigned int queue) |
150 | { | 146 | { |
151 | u32 pending; | 147 | u32 pending; |
152 | ATH5K_TRACE(ah->ah_sc); | ||
153 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 148 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
154 | 149 | ||
155 | /* Return if queue is declared inactive */ | 150 | /* Return if queue is declared inactive */ |
@@ -177,7 +172,6 @@ u32 ath5k_hw_num_tx_pending(struct ath5k_hw *ah, unsigned int queue) | |||
177 | */ | 172 | */ |
178 | void ath5k_hw_release_tx_queue(struct ath5k_hw *ah, unsigned int queue) | 173 | void ath5k_hw_release_tx_queue(struct ath5k_hw *ah, unsigned int queue) |
179 | { | 174 | { |
180 | ATH5K_TRACE(ah->ah_sc); | ||
181 | if (WARN_ON(queue >= ah->ah_capabilities.cap_queues.q_tx_num)) | 175 | if (WARN_ON(queue >= ah->ah_capabilities.cap_queues.q_tx_num)) |
182 | return; | 176 | return; |
183 | 177 | ||
@@ -195,7 +189,6 @@ int ath5k_hw_reset_tx_queue(struct ath5k_hw *ah, unsigned int queue) | |||
195 | u32 cw_min, cw_max, retry_lg, retry_sh; | 189 | u32 cw_min, cw_max, retry_lg, retry_sh; |
196 | struct ath5k_txq_info *tq = &ah->ah_txq[queue]; | 190 | struct ath5k_txq_info *tq = &ah->ah_txq[queue]; |
197 | 191 | ||
198 | ATH5K_TRACE(ah->ah_sc); | ||
199 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); | 192 | AR5K_ASSERT_ENTRY(queue, ah->ah_capabilities.cap_queues.q_tx_num); |
200 | 193 | ||
201 | tq = &ah->ah_txq[queue]; | 194 | tq = &ah->ah_txq[queue]; |
@@ -523,8 +516,6 @@ int ath5k_hw_set_slot_time(struct ath5k_hw *ah, unsigned int slot_time) | |||
523 | { | 516 | { |
524 | u32 slot_time_clock = ath5k_hw_htoclock(ah, slot_time); | 517 | u32 slot_time_clock = ath5k_hw_htoclock(ah, slot_time); |
525 | 518 | ||
526 | ATH5K_TRACE(ah->ah_sc); | ||
527 | |||
528 | if (slot_time < 6 || slot_time_clock > AR5K_SLOT_TIME_MAX) | 519 | if (slot_time < 6 || slot_time_clock > AR5K_SLOT_TIME_MAX) |
529 | return -EINVAL; | 520 | return -EINVAL; |
530 | 521 | ||
diff --git a/drivers/net/wireless/ath/ath5k/reset.c b/drivers/net/wireless/ath/ath5k/reset.c index 307f80e83f94..498aa28ea9e6 100644 --- a/drivers/net/wireless/ath/ath5k/reset.c +++ b/drivers/net/wireless/ath/ath5k/reset.c | |||
@@ -201,8 +201,6 @@ static int ath5k_hw_nic_reset(struct ath5k_hw *ah, u32 val) | |||
201 | int ret; | 201 | int ret; |
202 | u32 mask = val ? val : ~0U; | 202 | u32 mask = val ? val : ~0U; |
203 | 203 | ||
204 | ATH5K_TRACE(ah->ah_sc); | ||
205 | |||
206 | /* Read-and-clear RX Descriptor Pointer*/ | 204 | /* Read-and-clear RX Descriptor Pointer*/ |
207 | ath5k_hw_reg_read(ah, AR5K_RXDP); | 205 | ath5k_hw_reg_read(ah, AR5K_RXDP); |
208 | 206 | ||
@@ -246,7 +244,6 @@ static int ath5k_hw_set_power(struct ath5k_hw *ah, enum ath5k_power_mode mode, | |||
246 | unsigned int i; | 244 | unsigned int i; |
247 | u32 staid, data; | 245 | u32 staid, data; |
248 | 246 | ||
249 | ATH5K_TRACE(ah->ah_sc); | ||
250 | staid = ath5k_hw_reg_read(ah, AR5K_STA_ID1); | 247 | staid = ath5k_hw_reg_read(ah, AR5K_STA_ID1); |
251 | 248 | ||
252 | switch (mode) { | 249 | switch (mode) { |
@@ -393,8 +390,6 @@ int ath5k_hw_nic_wakeup(struct ath5k_hw *ah, int flags, bool initial) | |||
393 | mode = 0; | 390 | mode = 0; |
394 | clock = 0; | 391 | clock = 0; |
395 | 392 | ||
396 | ATH5K_TRACE(ah->ah_sc); | ||
397 | |||
398 | /* Wakeup the device */ | 393 | /* Wakeup the device */ |
399 | ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0); | 394 | ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0); |
400 | if (ret) { | 395 | if (ret) { |
@@ -734,7 +729,7 @@ static void ath5k_hw_tweak_initval_settings(struct ath5k_hw *ah, | |||
734 | } | 729 | } |
735 | 730 | ||
736 | static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah, | 731 | static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah, |
737 | struct ieee80211_channel *channel, u8 *ant, u8 ee_mode) | 732 | struct ieee80211_channel *channel, u8 ee_mode) |
738 | { | 733 | { |
739 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; | 734 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
740 | s16 cck_ofdm_pwr_delta; | 735 | s16 cck_ofdm_pwr_delta; |
@@ -768,17 +763,9 @@ static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah, | |||
768 | ee->ee_cck_ofdm_gain_delta; | 763 | ee->ee_cck_ofdm_gain_delta; |
769 | } | 764 | } |
770 | 765 | ||
771 | /* Set antenna idle switch table */ | 766 | /* XXX: necessary here? is called from ath5k_hw_set_antenna_mode() |
772 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_ANT_CTL, | 767 | * too */ |
773 | AR5K_PHY_ANT_CTL_SWTABLE_IDLE, | 768 | ath5k_hw_set_antenna_switch(ah, ee_mode); |
774 | (ah->ah_ant_ctl[ee_mode][0] | | ||
775 | AR5K_PHY_ANT_CTL_TXRX_EN)); | ||
776 | |||
777 | /* Set antenna switch tables */ | ||
778 | ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant[0]], | ||
779 | AR5K_PHY_ANT_SWITCH_TABLE_0); | ||
780 | ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant[1]], | ||
781 | AR5K_PHY_ANT_SWITCH_TABLE_1); | ||
782 | 769 | ||
783 | /* Noise floor threshold */ | 770 | /* Noise floor threshold */ |
784 | ath5k_hw_reg_write(ah, | 771 | ath5k_hw_reg_write(ah, |
@@ -855,7 +842,6 @@ static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah, | |||
855 | AR5K_PHY_NF_THRESH62, | 842 | AR5K_PHY_NF_THRESH62, |
856 | ee->ee_thr_62[ee_mode]); | 843 | ee->ee_thr_62[ee_mode]); |
857 | 844 | ||
858 | |||
859 | /* False detect backoff for channels | 845 | /* False detect backoff for channels |
860 | * that have spur noise. Write the new | 846 | * that have spur noise. Write the new |
861 | * cyclic power RSSI threshold. */ | 847 | * cyclic power RSSI threshold. */ |
@@ -891,14 +877,11 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, | |||
891 | struct ieee80211_channel *channel, bool change_channel) | 877 | struct ieee80211_channel *channel, bool change_channel) |
892 | { | 878 | { |
893 | struct ath_common *common = ath5k_hw_common(ah); | 879 | struct ath_common *common = ath5k_hw_common(ah); |
894 | u32 s_seq[10], s_ant, s_led[3], staid1_flags, tsf_up, tsf_lo; | 880 | u32 s_seq[10], s_led[3], staid1_flags, tsf_up, tsf_lo; |
895 | u32 phy_tst1; | 881 | u32 phy_tst1; |
896 | u8 mode, freq, ee_mode, ant[2]; | 882 | u8 mode, freq, ee_mode; |
897 | int i, ret; | 883 | int i, ret; |
898 | 884 | ||
899 | ATH5K_TRACE(ah->ah_sc); | ||
900 | |||
901 | s_ant = 0; | ||
902 | ee_mode = 0; | 885 | ee_mode = 0; |
903 | staid1_flags = 0; | 886 | staid1_flags = 0; |
904 | tsf_up = 0; | 887 | tsf_up = 0; |
@@ -995,9 +978,6 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, | |||
995 | } | 978 | } |
996 | } | 979 | } |
997 | 980 | ||
998 | /* Save default antenna */ | ||
999 | s_ant = ath5k_hw_reg_read(ah, AR5K_DEFAULT_ANTENNA); | ||
1000 | |||
1001 | if (ah->ah_version == AR5K_AR5212) { | 981 | if (ah->ah_version == AR5K_AR5212) { |
1002 | /* Restore normal 32/40MHz clock operation | 982 | /* Restore normal 32/40MHz clock operation |
1003 | * to avoid register access delay on certain | 983 | * to avoid register access delay on certain |
@@ -1094,22 +1074,17 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, | |||
1094 | /* Write OFDM timings on 5212*/ | 1074 | /* Write OFDM timings on 5212*/ |
1095 | if (ah->ah_version == AR5K_AR5212 && | 1075 | if (ah->ah_version == AR5K_AR5212 && |
1096 | channel->hw_value & CHANNEL_OFDM) { | 1076 | channel->hw_value & CHANNEL_OFDM) { |
1097 | struct ath5k_eeprom_info *ee = | ||
1098 | &ah->ah_capabilities.cap_eeprom; | ||
1099 | 1077 | ||
1100 | ret = ath5k_hw_write_ofdm_timings(ah, channel); | 1078 | ret = ath5k_hw_write_ofdm_timings(ah, channel); |
1101 | if (ret) | 1079 | if (ret) |
1102 | return ret; | 1080 | return ret; |
1103 | 1081 | ||
1104 | /* Note: According to docs we can have a newer | 1082 | /* Spur info is available only from EEPROM versions |
1105 | * EEPROM on old hardware, so we need to verify | 1083 | * bigger than 5.3 but but the EEPOM routines will use |
1106 | * that our hardware is new enough to have spur | 1084 | * static values for older versions */ |
1107 | * mitigation registers (delta phase etc) */ | 1085 | if (ah->ah_mac_srev >= AR5K_SREV_AR5424) |
1108 | if (ah->ah_mac_srev >= AR5K_SREV_AR5424 || | ||
1109 | (ah->ah_mac_srev >= AR5K_SREV_AR5424 && | ||
1110 | ee->ee_version >= AR5K_EEPROM_VERSION_5_3)) | ||
1111 | ath5k_hw_set_spur_mitigation_filter(ah, | 1086 | ath5k_hw_set_spur_mitigation_filter(ah, |
1112 | channel); | 1087 | channel); |
1113 | } | 1088 | } |
1114 | 1089 | ||
1115 | /*Enable/disable 802.11b mode on 5111 | 1090 | /*Enable/disable 802.11b mode on 5111 |
@@ -1123,21 +1098,8 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, | |||
1123 | AR5K_TXCFG_B_MODE); | 1098 | AR5K_TXCFG_B_MODE); |
1124 | } | 1099 | } |
1125 | 1100 | ||
1126 | /* | ||
1127 | * In case a fixed antenna was set as default | ||
1128 | * use the same switch table twice. | ||
1129 | */ | ||
1130 | if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_A) | ||
1131 | ant[0] = ant[1] = AR5K_ANT_SWTABLE_A; | ||
1132 | else if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_B) | ||
1133 | ant[0] = ant[1] = AR5K_ANT_SWTABLE_B; | ||
1134 | else { | ||
1135 | ant[0] = AR5K_ANT_SWTABLE_A; | ||
1136 | ant[1] = AR5K_ANT_SWTABLE_B; | ||
1137 | } | ||
1138 | |||
1139 | /* Commit values from EEPROM */ | 1101 | /* Commit values from EEPROM */ |
1140 | ath5k_hw_commit_eeprom_settings(ah, channel, ant, ee_mode); | 1102 | ath5k_hw_commit_eeprom_settings(ah, channel, ee_mode); |
1141 | 1103 | ||
1142 | } else { | 1104 | } else { |
1143 | /* | 1105 | /* |
@@ -1175,8 +1137,6 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, | |||
1175 | ath5k_hw_reg_write(ah, tsf_lo, AR5K_TSF_L32); | 1137 | ath5k_hw_reg_write(ah, tsf_lo, AR5K_TSF_L32); |
1176 | } | 1138 | } |
1177 | } | 1139 | } |
1178 | |||
1179 | ath5k_hw_reg_write(ah, s_ant, AR5K_DEFAULT_ANTENNA); | ||
1180 | } | 1140 | } |
1181 | 1141 | ||
1182 | /* Ledstate */ | 1142 | /* Ledstate */ |
diff --git a/drivers/net/wireless/ath/ath5k/sysfs.c b/drivers/net/wireless/ath/ath5k/sysfs.c new file mode 100644 index 000000000000..90757de7bf59 --- /dev/null +++ b/drivers/net/wireless/ath/ath5k/sysfs.c | |||
@@ -0,0 +1,116 @@ | |||
1 | #include <linux/device.h> | ||
2 | #include <linux/pci.h> | ||
3 | |||
4 | #include "base.h" | ||
5 | #include "ath5k.h" | ||
6 | #include "reg.h" | ||
7 | |||
8 | #define SIMPLE_SHOW_STORE(name, get, set) \ | ||
9 | static ssize_t ath5k_attr_show_##name(struct device *dev, \ | ||
10 | struct device_attribute *attr, \ | ||
11 | char *buf) \ | ||
12 | { \ | ||
13 | struct ath5k_softc *sc = dev_get_drvdata(dev); \ | ||
14 | return snprintf(buf, PAGE_SIZE, "%d\n", get); \ | ||
15 | } \ | ||
16 | \ | ||
17 | static ssize_t ath5k_attr_store_##name(struct device *dev, \ | ||
18 | struct device_attribute *attr, \ | ||
19 | const char *buf, size_t count) \ | ||
20 | { \ | ||
21 | struct ath5k_softc *sc = dev_get_drvdata(dev); \ | ||
22 | int val; \ | ||
23 | \ | ||
24 | val = (int)simple_strtoul(buf, NULL, 10); \ | ||
25 | set(sc->ah, val); \ | ||
26 | return count; \ | ||
27 | } \ | ||
28 | static DEVICE_ATTR(name, S_IRUGO | S_IWUSR, \ | ||
29 | ath5k_attr_show_##name, ath5k_attr_store_##name) | ||
30 | |||
31 | #define SIMPLE_SHOW(name, get) \ | ||
32 | static ssize_t ath5k_attr_show_##name(struct device *dev, \ | ||
33 | struct device_attribute *attr, \ | ||
34 | char *buf) \ | ||
35 | { \ | ||
36 | struct ath5k_softc *sc = dev_get_drvdata(dev); \ | ||
37 | return snprintf(buf, PAGE_SIZE, "%d\n", get); \ | ||
38 | } \ | ||
39 | static DEVICE_ATTR(name, S_IRUGO, ath5k_attr_show_##name, NULL) | ||
40 | |||
41 | /*** ANI ***/ | ||
42 | |||
43 | SIMPLE_SHOW_STORE(ani_mode, sc->ani_state.ani_mode, ath5k_ani_init); | ||
44 | SIMPLE_SHOW_STORE(noise_immunity_level, sc->ani_state.noise_imm_level, | ||
45 | ath5k_ani_set_noise_immunity_level); | ||
46 | SIMPLE_SHOW_STORE(spur_level, sc->ani_state.spur_level, | ||
47 | ath5k_ani_set_spur_immunity_level); | ||
48 | SIMPLE_SHOW_STORE(firstep_level, sc->ani_state.firstep_level, | ||
49 | ath5k_ani_set_firstep_level); | ||
50 | SIMPLE_SHOW_STORE(ofdm_weak_signal_detection, sc->ani_state.ofdm_weak_sig, | ||
51 | ath5k_ani_set_ofdm_weak_signal_detection); | ||
52 | SIMPLE_SHOW_STORE(cck_weak_signal_detection, sc->ani_state.cck_weak_sig, | ||
53 | ath5k_ani_set_cck_weak_signal_detection); | ||
54 | SIMPLE_SHOW(spur_level_max, sc->ani_state.max_spur_level); | ||
55 | |||
56 | static ssize_t ath5k_attr_show_noise_immunity_level_max(struct device *dev, | ||
57 | struct device_attribute *attr, | ||
58 | char *buf) | ||
59 | { | ||
60 | return snprintf(buf, PAGE_SIZE, "%d\n", ATH5K_ANI_MAX_NOISE_IMM_LVL); | ||
61 | } | ||
62 | static DEVICE_ATTR(noise_immunity_level_max, S_IRUGO, | ||
63 | ath5k_attr_show_noise_immunity_level_max, NULL); | ||
64 | |||
65 | static ssize_t ath5k_attr_show_firstep_level_max(struct device *dev, | ||
66 | struct device_attribute *attr, | ||
67 | char *buf) | ||
68 | { | ||
69 | return snprintf(buf, PAGE_SIZE, "%d\n", ATH5K_ANI_MAX_FIRSTEP_LVL); | ||
70 | } | ||
71 | static DEVICE_ATTR(firstep_level_max, S_IRUGO, | ||
72 | ath5k_attr_show_firstep_level_max, NULL); | ||
73 | |||
74 | static struct attribute *ath5k_sysfs_entries_ani[] = { | ||
75 | &dev_attr_ani_mode.attr, | ||
76 | &dev_attr_noise_immunity_level.attr, | ||
77 | &dev_attr_spur_level.attr, | ||
78 | &dev_attr_firstep_level.attr, | ||
79 | &dev_attr_ofdm_weak_signal_detection.attr, | ||
80 | &dev_attr_cck_weak_signal_detection.attr, | ||
81 | &dev_attr_noise_immunity_level_max.attr, | ||
82 | &dev_attr_spur_level_max.attr, | ||
83 | &dev_attr_firstep_level_max.attr, | ||
84 | NULL | ||
85 | }; | ||
86 | |||
87 | static struct attribute_group ath5k_attribute_group_ani = { | ||
88 | .name = "ani", | ||
89 | .attrs = ath5k_sysfs_entries_ani, | ||
90 | }; | ||
91 | |||
92 | |||
93 | /*** register / unregister ***/ | ||
94 | |||
95 | int | ||
96 | ath5k_sysfs_register(struct ath5k_softc *sc) | ||
97 | { | ||
98 | struct device *dev = &sc->pdev->dev; | ||
99 | int err; | ||
100 | |||
101 | err = sysfs_create_group(&dev->kobj, &ath5k_attribute_group_ani); | ||
102 | if (err) { | ||
103 | ATH5K_ERR(sc, "failed to create sysfs group\n"); | ||
104 | return err; | ||
105 | } | ||
106 | |||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | void | ||
111 | ath5k_sysfs_unregister(struct ath5k_softc *sc) | ||
112 | { | ||
113 | struct device *dev = &sc->pdev->dev; | ||
114 | |||
115 | sysfs_remove_group(&dev->kobj, &ath5k_attribute_group_ani); | ||
116 | } | ||
diff --git a/drivers/net/wireless/ath/ath9k/ani.c b/drivers/net/wireless/ath/ath9k/ani.c index ba8b20f01594..3da820ffc65e 100644 --- a/drivers/net/wireless/ath/ath9k/ani.c +++ b/drivers/net/wireless/ath/ath9k/ani.c | |||
@@ -495,6 +495,7 @@ void ath9k_hw_disable_mib_counters(struct ath_hw *ah) | |||
495 | REG_WRITE(ah, AR_FILT_OFDM, 0); | 495 | REG_WRITE(ah, AR_FILT_OFDM, 0); |
496 | REG_WRITE(ah, AR_FILT_CCK, 0); | 496 | REG_WRITE(ah, AR_FILT_CCK, 0); |
497 | } | 497 | } |
498 | EXPORT_SYMBOL(ath9k_hw_disable_mib_counters); | ||
498 | 499 | ||
499 | u32 ath9k_hw_GetMibCycleCountsPct(struct ath_hw *ah, | 500 | u32 ath9k_hw_GetMibCycleCountsPct(struct ath_hw *ah, |
500 | u32 *rxc_pcnt, | 501 | u32 *rxc_pcnt, |
diff --git a/drivers/net/wireless/ath/ath9k/ar5008_phy.c b/drivers/net/wireless/ath/ath9k/ar5008_phy.c index b2c17c98bb38..96018d53f48e 100644 --- a/drivers/net/wireless/ath/ath9k/ar5008_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar5008_phy.c | |||
@@ -742,17 +742,6 @@ static int ar5008_hw_process_ini(struct ath_hw *ah, | |||
742 | return -EINVAL; | 742 | return -EINVAL; |
743 | } | 743 | } |
744 | 744 | ||
745 | if (AR_SREV_9287_12_OR_LATER(ah)) { | ||
746 | /* Enable ASYNC FIFO */ | ||
747 | REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
748 | AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL); | ||
749 | REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO); | ||
750 | REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
751 | AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET); | ||
752 | REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
753 | AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET); | ||
754 | } | ||
755 | |||
756 | /* | 745 | /* |
757 | * Set correct baseband to analog shift setting to | 746 | * Set correct baseband to analog shift setting to |
758 | * access analog chips. | 747 | * access analog chips. |
diff --git a/drivers/net/wireless/ath/ath9k/ar9002_hw.c b/drivers/net/wireless/ath/ath9k/ar9002_hw.c index a8a8cdc04afa..7ba9dd68cc05 100644 --- a/drivers/net/wireless/ath/ath9k/ar9002_hw.c +++ b/drivers/net/wireless/ath/ath9k/ar9002_hw.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include "ar5008_initvals.h" | 18 | #include "ar5008_initvals.h" |
19 | #include "ar9001_initvals.h" | 19 | #include "ar9001_initvals.h" |
20 | #include "ar9002_initvals.h" | 20 | #include "ar9002_initvals.h" |
21 | #include "ar9002_phy.h" | ||
21 | 22 | ||
22 | /* General hardware code for the A5008/AR9001/AR9002 hadware families */ | 23 | /* General hardware code for the A5008/AR9001/AR9002 hadware families */ |
23 | 24 | ||
@@ -436,55 +437,84 @@ static void ar9002_hw_configpcipowersave(struct ath_hw *ah, | |||
436 | } | 437 | } |
437 | 438 | ||
438 | udelay(1000); | 439 | udelay(1000); |
440 | } | ||
439 | 441 | ||
440 | /* set bit 19 to allow forcing of pcie core into L1 state */ | 442 | if (power_off) { |
441 | REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA); | 443 | /* clear bit 19 to disable L1 */ |
444 | REG_CLR_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA); | ||
442 | 445 | ||
443 | /* Several PCIe massages to ensure proper behaviour */ | 446 | val = REG_READ(ah, AR_WA); |
447 | |||
448 | /* | ||
449 | * Set PCIe workaround bits | ||
450 | * In AR9280 and AR9285, bit 14 in WA register (disable L1) | ||
451 | * should only be set when device enters D3 and be | ||
452 | * cleared when device comes back to D0. | ||
453 | */ | ||
454 | if (ah->config.pcie_waen) { | ||
455 | if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE) | ||
456 | val |= AR_WA_D3_L1_DISABLE; | ||
457 | } else { | ||
458 | if (((AR_SREV_9285(ah) || | ||
459 | AR_SREV_9271(ah) || | ||
460 | AR_SREV_9287(ah)) && | ||
461 | (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) || | ||
462 | (AR_SREV_9280(ah) && | ||
463 | (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) { | ||
464 | val |= AR_WA_D3_L1_DISABLE; | ||
465 | } | ||
466 | } | ||
467 | |||
468 | if (AR_SREV_9280(ah) || AR_SREV_9285(ah) || AR_SREV_9287(ah)) { | ||
469 | /* | ||
470 | * Disable bit 6 and 7 before entering D3 to | ||
471 | * prevent system hang. | ||
472 | */ | ||
473 | val &= ~(AR_WA_BIT6 | AR_WA_BIT7); | ||
474 | } | ||
475 | |||
476 | if (AR_SREV_9285E_20(ah)) | ||
477 | val |= AR_WA_BIT23; | ||
478 | |||
479 | REG_WRITE(ah, AR_WA, val); | ||
480 | } else { | ||
444 | if (ah->config.pcie_waen) { | 481 | if (ah->config.pcie_waen) { |
445 | val = ah->config.pcie_waen; | 482 | val = ah->config.pcie_waen; |
446 | if (!power_off) | 483 | if (!power_off) |
447 | val &= (~AR_WA_D3_L1_DISABLE); | 484 | val &= (~AR_WA_D3_L1_DISABLE); |
448 | } else { | 485 | } else { |
449 | if (AR_SREV_9285(ah) || AR_SREV_9271(ah) || | 486 | if (AR_SREV_9285(ah) || |
487 | AR_SREV_9271(ah) || | ||
450 | AR_SREV_9287(ah)) { | 488 | AR_SREV_9287(ah)) { |
451 | val = AR9285_WA_DEFAULT; | 489 | val = AR9285_WA_DEFAULT; |
452 | if (!power_off) | 490 | if (!power_off) |
453 | val &= (~AR_WA_D3_L1_DISABLE); | 491 | val &= (~AR_WA_D3_L1_DISABLE); |
454 | } else if (AR_SREV_9280(ah)) { | 492 | } |
493 | else if (AR_SREV_9280(ah)) { | ||
455 | /* | 494 | /* |
456 | * On AR9280 chips bit 22 of 0x4004 needs to be | 495 | * For AR9280 chips, bit 22 of 0x4004 |
457 | * set otherwise card may disappear. | 496 | * needs to be set. |
458 | */ | 497 | */ |
459 | val = AR9280_WA_DEFAULT; | 498 | val = AR9280_WA_DEFAULT; |
460 | if (!power_off) | 499 | if (!power_off) |
461 | val &= (~AR_WA_D3_L1_DISABLE); | 500 | val &= (~AR_WA_D3_L1_DISABLE); |
462 | } else | 501 | } else { |
463 | val = AR_WA_DEFAULT; | 502 | val = AR_WA_DEFAULT; |
503 | } | ||
504 | } | ||
505 | |||
506 | /* WAR for ASPM system hang */ | ||
507 | if (AR_SREV_9280(ah) || AR_SREV_9285(ah) || AR_SREV_9287(ah)) { | ||
508 | val |= (AR_WA_BIT6 | AR_WA_BIT7); | ||
464 | } | 509 | } |
465 | 510 | ||
511 | if (AR_SREV_9285E_20(ah)) | ||
512 | val |= AR_WA_BIT23; | ||
513 | |||
466 | REG_WRITE(ah, AR_WA, val); | 514 | REG_WRITE(ah, AR_WA, val); |
467 | } | ||
468 | 515 | ||
469 | if (power_off) { | 516 | /* set bit 19 to allow forcing of pcie core into L1 state */ |
470 | /* | 517 | REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA); |
471 | * Set PCIe workaround bits | ||
472 | * bit 14 in WA register (disable L1) should only | ||
473 | * be set when device enters D3 and be cleared | ||
474 | * when device comes back to D0. | ||
475 | */ | ||
476 | if (ah->config.pcie_waen) { | ||
477 | if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE) | ||
478 | REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE); | ||
479 | } else { | ||
480 | if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) || | ||
481 | AR_SREV_9287(ah)) && | ||
482 | (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) || | ||
483 | (AR_SREV_9280(ah) && | ||
484 | (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) { | ||
485 | REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE); | ||
486 | } | ||
487 | } | ||
488 | } | 518 | } |
489 | } | 519 | } |
490 | 520 | ||
@@ -536,18 +566,29 @@ int ar9002_hw_rf_claim(struct ath_hw *ah) | |||
536 | return 0; | 566 | return 0; |
537 | } | 567 | } |
538 | 568 | ||
569 | void ar9002_hw_enable_async_fifo(struct ath_hw *ah) | ||
570 | { | ||
571 | if (AR_SREV_9287_13_OR_LATER(ah)) { | ||
572 | REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
573 | AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL); | ||
574 | REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO); | ||
575 | REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
576 | AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET); | ||
577 | REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3, | ||
578 | AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET); | ||
579 | } | ||
580 | } | ||
581 | |||
539 | /* | 582 | /* |
540 | * Enable ASYNC FIFO | ||
541 | * | ||
542 | * If Async FIFO is enabled, the following counters change as MAC now runs | 583 | * If Async FIFO is enabled, the following counters change as MAC now runs |
543 | * at 117 Mhz instead of 88/44MHz when async FIFO is disabled. | 584 | * at 117 Mhz instead of 88/44MHz when async FIFO is disabled. |
544 | * | 585 | * |
545 | * The values below tested for ht40 2 chain. | 586 | * The values below tested for ht40 2 chain. |
546 | * Overwrite the delay/timeouts initialized in process ini. | 587 | * Overwrite the delay/timeouts initialized in process ini. |
547 | */ | 588 | */ |
548 | void ar9002_hw_enable_async_fifo(struct ath_hw *ah) | 589 | void ar9002_hw_update_async_fifo(struct ath_hw *ah) |
549 | { | 590 | { |
550 | if (AR_SREV_9287_12_OR_LATER(ah)) { | 591 | if (AR_SREV_9287_13_OR_LATER(ah)) { |
551 | REG_WRITE(ah, AR_D_GBL_IFS_SIFS, | 592 | REG_WRITE(ah, AR_D_GBL_IFS_SIFS, |
552 | AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR); | 593 | AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR); |
553 | REG_WRITE(ah, AR_D_GBL_IFS_SLOT, | 594 | REG_WRITE(ah, AR_D_GBL_IFS_SLOT, |
@@ -571,9 +612,9 @@ void ar9002_hw_enable_async_fifo(struct ath_hw *ah) | |||
571 | */ | 612 | */ |
572 | void ar9002_hw_enable_wep_aggregation(struct ath_hw *ah) | 613 | void ar9002_hw_enable_wep_aggregation(struct ath_hw *ah) |
573 | { | 614 | { |
574 | if (AR_SREV_9287_12_OR_LATER(ah)) { | 615 | if (AR_SREV_9287_13_OR_LATER(ah)) { |
575 | REG_SET_BIT(ah, AR_PCU_MISC_MODE2, | 616 | REG_SET_BIT(ah, AR_PCU_MISC_MODE2, |
576 | AR_PCU_MISC_MODE2_ENABLE_AGGWEP); | 617 | AR_PCU_MISC_MODE2_ENABLE_AGGWEP); |
577 | } | 618 | } |
578 | } | 619 | } |
579 | 620 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9002_initvals.h b/drivers/net/wireless/ath/ath9k/ar9002_initvals.h index dae7f3304eb8..8ab24ee8564b 100644 --- a/drivers/net/wireless/ath/ath9k/ar9002_initvals.h +++ b/drivers/net/wireless/ath/ath9k/ar9002_initvals.h | |||
@@ -4492,7 +4492,7 @@ static const u32 ar9287PciePhy_clkreq_off_L1_9287_1_1[][2] = { | |||
4492 | }; | 4492 | }; |
4493 | 4493 | ||
4494 | 4494 | ||
4495 | /* AR9271 initialization values automaticaly created: 06/04/09 */ | 4495 | /* AR9271 initialization values automaticaly created: 03/31/10 */ |
4496 | static const u32 ar9271Modes_9271[][6] = { | 4496 | static const u32 ar9271Modes_9271[][6] = { |
4497 | { 0x00001030, 0x00000230, 0x00000460, 0x000002c0, 0x00000160, 0x000001e0 }, | 4497 | { 0x00001030, 0x00000230, 0x00000460, 0x000002c0, 0x00000160, 0x000001e0 }, |
4498 | { 0x00001070, 0x00000168, 0x000002d0, 0x00000318, 0x0000018c, 0x000001e0 }, | 4498 | { 0x00001070, 0x00000168, 0x000002d0, 0x00000318, 0x0000018c, 0x000001e0 }, |
@@ -5011,7 +5011,7 @@ static const u32 ar9271Common_9271[][2] = { | |||
5011 | { 0x0000783c, 0x72ee0a72 }, | 5011 | { 0x0000783c, 0x72ee0a72 }, |
5012 | { 0x00007840, 0xbbfffffc }, | 5012 | { 0x00007840, 0xbbfffffc }, |
5013 | { 0x00007844, 0x000c0db6 }, | 5013 | { 0x00007844, 0x000c0db6 }, |
5014 | { 0x00007848, 0x6db61b6f }, | 5014 | { 0x00007848, 0x6db6246f }, |
5015 | { 0x0000784c, 0x6d9b66db }, | 5015 | { 0x0000784c, 0x6d9b66db }, |
5016 | { 0x00007850, 0x6d8c6dba }, | 5016 | { 0x00007850, 0x6d8c6dba }, |
5017 | { 0x00007854, 0x00040000 }, | 5017 | { 0x00007854, 0x00040000 }, |
@@ -5218,7 +5218,7 @@ static const u32 ar9271Modes_high_power_tx_gain_9271[][6] = { | |||
5218 | { 0x00007824, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff }, | 5218 | { 0x00007824, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff, 0x00d8a7ff }, |
5219 | { 0x0000786c, 0x08609eb6, 0x08609eb6, 0x08609eba, 0x08609eba, 0x08609eb6 }, | 5219 | { 0x0000786c, 0x08609eb6, 0x08609eb6, 0x08609eba, 0x08609eba, 0x08609eb6 }, |
5220 | { 0x00007820, 0x00000c00, 0x00000c00, 0x00000c00, 0x00000c00, 0x00000c00 }, | 5220 | { 0x00007820, 0x00000c00, 0x00000c00, 0x00000c00, 0x00000c00, 0x00000c00 }, |
5221 | { 0x0000a274, 0x0a22a652, 0x0a22a652, 0x0a212652, 0x0a212652, 0x0a22a652 }, | 5221 | { 0x0000a274, 0x0a22a652, 0x0a22a652, 0x0a214652, 0x0a214652, 0x0a22a652 }, |
5222 | { 0x0000a278, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7 }, | 5222 | { 0x0000a278, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7, 0x0e739ce7 }, |
5223 | { 0x0000a27c, 0x05018063, 0x05038063, 0x05018063, 0x05018063, 0x05018063 }, | 5223 | { 0x0000a27c, 0x05018063, 0x05038063, 0x05018063, 0x05018063, 0x05018063 }, |
5224 | { 0x0000a394, 0x06318c63, 0x06318c63, 0x06318c63, 0x06318c63, 0x06318c63 }, | 5224 | { 0x0000a394, 0x06318c63, 0x06318c63, 0x06318c63, 0x06318c63, 0x06318c63 }, |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_initvals.h b/drivers/net/wireless/ath/ath9k/ar9003_2p0_initvals.h index db019dd220b7..f82a00da82b8 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_initvals.h +++ b/drivers/net/wireless/ath/ath9k/ar9003_2p0_initvals.h | |||
@@ -14,8 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #ifndef INITVALS_9003_H | 17 | #ifndef INITVALS_9003_2P0_H |
18 | #define INITVALS_9003_H | 18 | #define INITVALS_9003_2P0_H |
19 | 19 | ||
20 | /* AR9003 2.0 */ | 20 | /* AR9003 2.0 */ |
21 | 21 | ||
@@ -1781,4 +1781,4 @@ static const u32 ar9300PciePhy_clkreq_disable_L1_2p0[][2] = { | |||
1781 | {0x00004044, 0x00000000}, | 1781 | {0x00004044, 0x00000000}, |
1782 | }; | 1782 | }; |
1783 | 1783 | ||
1784 | #endif /* INITVALS_9003_H */ | 1784 | #endif /* INITVALS_9003_2P0_H */ |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h b/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h new file mode 100644 index 000000000000..745150573793 --- /dev/null +++ b/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h | |||
@@ -0,0 +1,1785 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010 Atheros Communications Inc. | ||
3 | * | ||
4 | * Permission to use, copy, modify, and/or distribute this software for any | ||
5 | * purpose with or without fee is hereby granted, provided that the above | ||
6 | * copyright notice and this permission notice appear in all copies. | ||
7 | * | ||
8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
15 | */ | ||
16 | |||
17 | #ifndef INITVALS_9003_2P2_H | ||
18 | #define INITVALS_9003_2P2_H | ||
19 | |||
20 | /* AR9003 2.2 */ | ||
21 | |||
22 | static const u32 ar9300_2p2_radio_postamble[][5] = { | ||
23 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
24 | {0x0001609c, 0x0dd08f29, 0x0dd08f29, 0x0b283f31, 0x0b283f31}, | ||
25 | {0x000160ac, 0xa4653c00, 0xa4653c00, 0x24652800, 0x24652800}, | ||
26 | {0x000160b0, 0x03284f3e, 0x03284f3e, 0x05d08f20, 0x05d08f20}, | ||
27 | {0x0001610c, 0x08000000, 0x00000000, 0x00000000, 0x00000000}, | ||
28 | {0x00016140, 0x10804008, 0x10804008, 0x50804008, 0x50804008}, | ||
29 | {0x0001650c, 0x08000000, 0x00000000, 0x00000000, 0x00000000}, | ||
30 | {0x00016540, 0x10804008, 0x10804008, 0x50804008, 0x50804008}, | ||
31 | {0x0001690c, 0x08000000, 0x00000000, 0x00000000, 0x00000000}, | ||
32 | {0x00016940, 0x10804008, 0x10804008, 0x50804008, 0x50804008}, | ||
33 | }; | ||
34 | |||
35 | static const u32 ar9300Modes_lowest_ob_db_tx_gain_table_2p2[][5] = { | ||
36 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
37 | {0x0000a410, 0x000050d9, 0x000050d9, 0x000050d9, 0x000050d9}, | ||
38 | {0x0000a500, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
39 | {0x0000a504, 0x06000003, 0x06000003, 0x04000002, 0x04000002}, | ||
40 | {0x0000a508, 0x0a000020, 0x0a000020, 0x08000004, 0x08000004}, | ||
41 | {0x0000a50c, 0x10000023, 0x10000023, 0x0b000200, 0x0b000200}, | ||
42 | {0x0000a510, 0x16000220, 0x16000220, 0x0f000202, 0x0f000202}, | ||
43 | {0x0000a514, 0x1c000223, 0x1c000223, 0x12000400, 0x12000400}, | ||
44 | {0x0000a518, 0x21002220, 0x21002220, 0x16000402, 0x16000402}, | ||
45 | {0x0000a51c, 0x27002223, 0x27002223, 0x19000404, 0x19000404}, | ||
46 | {0x0000a520, 0x2b022220, 0x2b022220, 0x1c000603, 0x1c000603}, | ||
47 | {0x0000a524, 0x2f022222, 0x2f022222, 0x21000a02, 0x21000a02}, | ||
48 | {0x0000a528, 0x34022225, 0x34022225, 0x25000a04, 0x25000a04}, | ||
49 | {0x0000a52c, 0x3a02222a, 0x3a02222a, 0x28000a20, 0x28000a20}, | ||
50 | {0x0000a530, 0x3e02222c, 0x3e02222c, 0x2c000e20, 0x2c000e20}, | ||
51 | {0x0000a534, 0x4202242a, 0x4202242a, 0x30000e22, 0x30000e22}, | ||
52 | {0x0000a538, 0x4702244a, 0x4702244a, 0x34000e24, 0x34000e24}, | ||
53 | {0x0000a53c, 0x4b02244c, 0x4b02244c, 0x38001640, 0x38001640}, | ||
54 | {0x0000a540, 0x4e02246c, 0x4e02246c, 0x3c001660, 0x3c001660}, | ||
55 | {0x0000a544, 0x5302266c, 0x5302266c, 0x3f001861, 0x3f001861}, | ||
56 | {0x0000a548, 0x5702286c, 0x5702286c, 0x43001a81, 0x43001a81}, | ||
57 | {0x0000a54c, 0x5c02486b, 0x5c02486b, 0x47001a83, 0x47001a83}, | ||
58 | {0x0000a550, 0x61024a6c, 0x61024a6c, 0x4a001c84, 0x4a001c84}, | ||
59 | {0x0000a554, 0x66026a6c, 0x66026a6c, 0x4e001ce3, 0x4e001ce3}, | ||
60 | {0x0000a558, 0x6b026e6c, 0x6b026e6c, 0x52001ce5, 0x52001ce5}, | ||
61 | {0x0000a55c, 0x7002708c, 0x7002708c, 0x56001ce9, 0x56001ce9}, | ||
62 | {0x0000a560, 0x7302b08a, 0x7302b08a, 0x5a001ceb, 0x5a001ceb}, | ||
63 | {0x0000a564, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
64 | {0x0000a568, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
65 | {0x0000a56c, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
66 | {0x0000a570, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
67 | {0x0000a574, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
68 | {0x0000a578, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
69 | {0x0000a57c, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
70 | {0x0000a580, 0x00800000, 0x00800000, 0x00800000, 0x00800000}, | ||
71 | {0x0000a584, 0x06800003, 0x06800003, 0x04800002, 0x04800002}, | ||
72 | {0x0000a588, 0x0a800020, 0x0a800020, 0x08800004, 0x08800004}, | ||
73 | {0x0000a58c, 0x10800023, 0x10800023, 0x0b800200, 0x0b800200}, | ||
74 | {0x0000a590, 0x16800220, 0x16800220, 0x0f800202, 0x0f800202}, | ||
75 | {0x0000a594, 0x1c800223, 0x1c800223, 0x12800400, 0x12800400}, | ||
76 | {0x0000a598, 0x21802220, 0x21802220, 0x16800402, 0x16800402}, | ||
77 | {0x0000a59c, 0x27802223, 0x27802223, 0x19800404, 0x19800404}, | ||
78 | {0x0000a5a0, 0x2b822220, 0x2b822220, 0x1c800603, 0x1c800603}, | ||
79 | {0x0000a5a4, 0x2f822222, 0x2f822222, 0x21800a02, 0x21800a02}, | ||
80 | {0x0000a5a8, 0x34822225, 0x34822225, 0x25800a04, 0x25800a04}, | ||
81 | {0x0000a5ac, 0x3a82222a, 0x3a82222a, 0x28800a20, 0x28800a20}, | ||
82 | {0x0000a5b0, 0x3e82222c, 0x3e82222c, 0x2c800e20, 0x2c800e20}, | ||
83 | {0x0000a5b4, 0x4282242a, 0x4282242a, 0x30800e22, 0x30800e22}, | ||
84 | {0x0000a5b8, 0x4782244a, 0x4782244a, 0x34800e24, 0x34800e24}, | ||
85 | {0x0000a5bc, 0x4b82244c, 0x4b82244c, 0x38801640, 0x38801640}, | ||
86 | {0x0000a5c0, 0x4e82246c, 0x4e82246c, 0x3c801660, 0x3c801660}, | ||
87 | {0x0000a5c4, 0x5382266c, 0x5382266c, 0x3f801861, 0x3f801861}, | ||
88 | {0x0000a5c8, 0x5782286c, 0x5782286c, 0x43801a81, 0x43801a81}, | ||
89 | {0x0000a5cc, 0x5c82486b, 0x5c82486b, 0x47801a83, 0x47801a83}, | ||
90 | {0x0000a5d0, 0x61824a6c, 0x61824a6c, 0x4a801c84, 0x4a801c84}, | ||
91 | {0x0000a5d4, 0x66826a6c, 0x66826a6c, 0x4e801ce3, 0x4e801ce3}, | ||
92 | {0x0000a5d8, 0x6b826e6c, 0x6b826e6c, 0x52801ce5, 0x52801ce5}, | ||
93 | {0x0000a5dc, 0x7082708c, 0x7082708c, 0x56801ce9, 0x56801ce9}, | ||
94 | {0x0000a5e0, 0x7382b08a, 0x7382b08a, 0x5a801ceb, 0x5a801ceb}, | ||
95 | {0x0000a5e4, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
96 | {0x0000a5e8, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
97 | {0x0000a5ec, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
98 | {0x0000a5f0, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
99 | {0x0000a5f4, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
100 | {0x0000a5f8, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
101 | {0x0000a5fc, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
102 | {0x00016044, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
103 | {0x00016048, 0x62480001, 0x62480001, 0x62480001, 0x62480001}, | ||
104 | {0x00016068, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
105 | {0x00016444, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
106 | {0x00016448, 0x62480001, 0x62480001, 0x62480001, 0x62480001}, | ||
107 | {0x00016468, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
108 | {0x00016844, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
109 | {0x00016848, 0x62480001, 0x62480001, 0x62480001, 0x62480001}, | ||
110 | {0x00016868, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
111 | }; | ||
112 | |||
113 | static const u32 ar9300Modes_fast_clock_2p2[][3] = { | ||
114 | /* Addr 5G_HT20 5G_HT40 */ | ||
115 | {0x00001030, 0x00000268, 0x000004d0}, | ||
116 | {0x00001070, 0x0000018c, 0x00000318}, | ||
117 | {0x000010b0, 0x00000fd0, 0x00001fa0}, | ||
118 | {0x00008014, 0x044c044c, 0x08980898}, | ||
119 | {0x0000801c, 0x148ec02b, 0x148ec057}, | ||
120 | {0x00008318, 0x000044c0, 0x00008980}, | ||
121 | {0x00009e00, 0x03721821, 0x03721821}, | ||
122 | {0x0000a230, 0x0000000b, 0x00000016}, | ||
123 | {0x0000a254, 0x00000898, 0x00001130}, | ||
124 | }; | ||
125 | |||
126 | static const u32 ar9300_2p2_radio_core[][2] = { | ||
127 | /* Addr allmodes */ | ||
128 | {0x00016000, 0x36db6db6}, | ||
129 | {0x00016004, 0x6db6db40}, | ||
130 | {0x00016008, 0x73f00000}, | ||
131 | {0x0001600c, 0x00000000}, | ||
132 | {0x00016040, 0x7f80fff8}, | ||
133 | {0x0001604c, 0x76d005b5}, | ||
134 | {0x00016050, 0x556cf031}, | ||
135 | {0x00016054, 0x13449440}, | ||
136 | {0x00016058, 0x0c51c92c}, | ||
137 | {0x0001605c, 0x3db7fffc}, | ||
138 | {0x00016060, 0xfffffffc}, | ||
139 | {0x00016064, 0x000f0278}, | ||
140 | {0x0001606c, 0x6db60000}, | ||
141 | {0x00016080, 0x00000000}, | ||
142 | {0x00016084, 0x0e48048c}, | ||
143 | {0x00016088, 0x54214514}, | ||
144 | {0x0001608c, 0x119f481e}, | ||
145 | {0x00016090, 0x24926490}, | ||
146 | {0x00016098, 0xd2888888}, | ||
147 | {0x000160a0, 0x0a108ffe}, | ||
148 | {0x000160a4, 0x812fc370}, | ||
149 | {0x000160a8, 0x423c8000}, | ||
150 | {0x000160b4, 0x92480080}, | ||
151 | {0x000160c0, 0x00adb6d0}, | ||
152 | {0x000160c4, 0x6db6db60}, | ||
153 | {0x000160c8, 0x6db6db6c}, | ||
154 | {0x000160cc, 0x01e6c000}, | ||
155 | {0x00016100, 0x3fffbe01}, | ||
156 | {0x00016104, 0xfff80000}, | ||
157 | {0x00016108, 0x00080010}, | ||
158 | {0x00016144, 0x02084080}, | ||
159 | {0x00016148, 0x00000000}, | ||
160 | {0x00016280, 0x058a0001}, | ||
161 | {0x00016284, 0x3d840208}, | ||
162 | {0x00016288, 0x05a20408}, | ||
163 | {0x0001628c, 0x00038c07}, | ||
164 | {0x00016290, 0x00000004}, | ||
165 | {0x00016294, 0x458aa14f}, | ||
166 | {0x00016380, 0x00000000}, | ||
167 | {0x00016384, 0x00000000}, | ||
168 | {0x00016388, 0x00800700}, | ||
169 | {0x0001638c, 0x00800700}, | ||
170 | {0x00016390, 0x00800700}, | ||
171 | {0x00016394, 0x00000000}, | ||
172 | {0x00016398, 0x00000000}, | ||
173 | {0x0001639c, 0x00000000}, | ||
174 | {0x000163a0, 0x00000001}, | ||
175 | {0x000163a4, 0x00000001}, | ||
176 | {0x000163a8, 0x00000000}, | ||
177 | {0x000163ac, 0x00000000}, | ||
178 | {0x000163b0, 0x00000000}, | ||
179 | {0x000163b4, 0x00000000}, | ||
180 | {0x000163b8, 0x00000000}, | ||
181 | {0x000163bc, 0x00000000}, | ||
182 | {0x000163c0, 0x000000a0}, | ||
183 | {0x000163c4, 0x000c0000}, | ||
184 | {0x000163c8, 0x14021402}, | ||
185 | {0x000163cc, 0x00001402}, | ||
186 | {0x000163d0, 0x00000000}, | ||
187 | {0x000163d4, 0x00000000}, | ||
188 | {0x00016400, 0x36db6db6}, | ||
189 | {0x00016404, 0x6db6db40}, | ||
190 | {0x00016408, 0x73f00000}, | ||
191 | {0x0001640c, 0x00000000}, | ||
192 | {0x00016440, 0x7f80fff8}, | ||
193 | {0x0001644c, 0x76d005b5}, | ||
194 | {0x00016450, 0x556cf031}, | ||
195 | {0x00016454, 0x13449440}, | ||
196 | {0x00016458, 0x0c51c92c}, | ||
197 | {0x0001645c, 0x3db7fffc}, | ||
198 | {0x00016460, 0xfffffffc}, | ||
199 | {0x00016464, 0x000f0278}, | ||
200 | {0x0001646c, 0x6db60000}, | ||
201 | {0x00016500, 0x3fffbe01}, | ||
202 | {0x00016504, 0xfff80000}, | ||
203 | {0x00016508, 0x00080010}, | ||
204 | {0x00016544, 0x02084080}, | ||
205 | {0x00016548, 0x00000000}, | ||
206 | {0x00016780, 0x00000000}, | ||
207 | {0x00016784, 0x00000000}, | ||
208 | {0x00016788, 0x00800700}, | ||
209 | {0x0001678c, 0x00800700}, | ||
210 | {0x00016790, 0x00800700}, | ||
211 | {0x00016794, 0x00000000}, | ||
212 | {0x00016798, 0x00000000}, | ||
213 | {0x0001679c, 0x00000000}, | ||
214 | {0x000167a0, 0x00000001}, | ||
215 | {0x000167a4, 0x00000001}, | ||
216 | {0x000167a8, 0x00000000}, | ||
217 | {0x000167ac, 0x00000000}, | ||
218 | {0x000167b0, 0x00000000}, | ||
219 | {0x000167b4, 0x00000000}, | ||
220 | {0x000167b8, 0x00000000}, | ||
221 | {0x000167bc, 0x00000000}, | ||
222 | {0x000167c0, 0x000000a0}, | ||
223 | {0x000167c4, 0x000c0000}, | ||
224 | {0x000167c8, 0x14021402}, | ||
225 | {0x000167cc, 0x00001402}, | ||
226 | {0x000167d0, 0x00000000}, | ||
227 | {0x000167d4, 0x00000000}, | ||
228 | {0x00016800, 0x36db6db6}, | ||
229 | {0x00016804, 0x6db6db40}, | ||
230 | {0x00016808, 0x73f00000}, | ||
231 | {0x0001680c, 0x00000000}, | ||
232 | {0x00016840, 0x7f80fff8}, | ||
233 | {0x0001684c, 0x76d005b5}, | ||
234 | {0x00016850, 0x556cf031}, | ||
235 | {0x00016854, 0x13449440}, | ||
236 | {0x00016858, 0x0c51c92c}, | ||
237 | {0x0001685c, 0x3db7fffc}, | ||
238 | {0x00016860, 0xfffffffc}, | ||
239 | {0x00016864, 0x000f0278}, | ||
240 | {0x0001686c, 0x6db60000}, | ||
241 | {0x00016900, 0x3fffbe01}, | ||
242 | {0x00016904, 0xfff80000}, | ||
243 | {0x00016908, 0x00080010}, | ||
244 | {0x00016944, 0x02084080}, | ||
245 | {0x00016948, 0x00000000}, | ||
246 | {0x00016b80, 0x00000000}, | ||
247 | {0x00016b84, 0x00000000}, | ||
248 | {0x00016b88, 0x00800700}, | ||
249 | {0x00016b8c, 0x00800700}, | ||
250 | {0x00016b90, 0x00800700}, | ||
251 | {0x00016b94, 0x00000000}, | ||
252 | {0x00016b98, 0x00000000}, | ||
253 | {0x00016b9c, 0x00000000}, | ||
254 | {0x00016ba0, 0x00000001}, | ||
255 | {0x00016ba4, 0x00000001}, | ||
256 | {0x00016ba8, 0x00000000}, | ||
257 | {0x00016bac, 0x00000000}, | ||
258 | {0x00016bb0, 0x00000000}, | ||
259 | {0x00016bb4, 0x00000000}, | ||
260 | {0x00016bb8, 0x00000000}, | ||
261 | {0x00016bbc, 0x00000000}, | ||
262 | {0x00016bc0, 0x000000a0}, | ||
263 | {0x00016bc4, 0x000c0000}, | ||
264 | {0x00016bc8, 0x14021402}, | ||
265 | {0x00016bcc, 0x00001402}, | ||
266 | {0x00016bd0, 0x00000000}, | ||
267 | {0x00016bd4, 0x00000000}, | ||
268 | }; | ||
269 | |||
270 | static const u32 ar9300Common_rx_gain_table_merlin_2p2[][2] = { | ||
271 | /* Addr allmodes */ | ||
272 | {0x0000a000, 0x02000101}, | ||
273 | {0x0000a004, 0x02000102}, | ||
274 | {0x0000a008, 0x02000103}, | ||
275 | {0x0000a00c, 0x02000104}, | ||
276 | {0x0000a010, 0x02000200}, | ||
277 | {0x0000a014, 0x02000201}, | ||
278 | {0x0000a018, 0x02000202}, | ||
279 | {0x0000a01c, 0x02000203}, | ||
280 | {0x0000a020, 0x02000204}, | ||
281 | {0x0000a024, 0x02000205}, | ||
282 | {0x0000a028, 0x02000208}, | ||
283 | {0x0000a02c, 0x02000302}, | ||
284 | {0x0000a030, 0x02000303}, | ||
285 | {0x0000a034, 0x02000304}, | ||
286 | {0x0000a038, 0x02000400}, | ||
287 | {0x0000a03c, 0x02010300}, | ||
288 | {0x0000a040, 0x02010301}, | ||
289 | {0x0000a044, 0x02010302}, | ||
290 | {0x0000a048, 0x02000500}, | ||
291 | {0x0000a04c, 0x02010400}, | ||
292 | {0x0000a050, 0x02020300}, | ||
293 | {0x0000a054, 0x02020301}, | ||
294 | {0x0000a058, 0x02020302}, | ||
295 | {0x0000a05c, 0x02020303}, | ||
296 | {0x0000a060, 0x02020400}, | ||
297 | {0x0000a064, 0x02030300}, | ||
298 | {0x0000a068, 0x02030301}, | ||
299 | {0x0000a06c, 0x02030302}, | ||
300 | {0x0000a070, 0x02030303}, | ||
301 | {0x0000a074, 0x02030400}, | ||
302 | {0x0000a078, 0x02040300}, | ||
303 | {0x0000a07c, 0x02040301}, | ||
304 | {0x0000a080, 0x02040302}, | ||
305 | {0x0000a084, 0x02040303}, | ||
306 | {0x0000a088, 0x02030500}, | ||
307 | {0x0000a08c, 0x02040400}, | ||
308 | {0x0000a090, 0x02050203}, | ||
309 | {0x0000a094, 0x02050204}, | ||
310 | {0x0000a098, 0x02050205}, | ||
311 | {0x0000a09c, 0x02040500}, | ||
312 | {0x0000a0a0, 0x02050301}, | ||
313 | {0x0000a0a4, 0x02050302}, | ||
314 | {0x0000a0a8, 0x02050303}, | ||
315 | {0x0000a0ac, 0x02050400}, | ||
316 | {0x0000a0b0, 0x02050401}, | ||
317 | {0x0000a0b4, 0x02050402}, | ||
318 | {0x0000a0b8, 0x02050403}, | ||
319 | {0x0000a0bc, 0x02050500}, | ||
320 | {0x0000a0c0, 0x02050501}, | ||
321 | {0x0000a0c4, 0x02050502}, | ||
322 | {0x0000a0c8, 0x02050503}, | ||
323 | {0x0000a0cc, 0x02050504}, | ||
324 | {0x0000a0d0, 0x02050600}, | ||
325 | {0x0000a0d4, 0x02050601}, | ||
326 | {0x0000a0d8, 0x02050602}, | ||
327 | {0x0000a0dc, 0x02050603}, | ||
328 | {0x0000a0e0, 0x02050604}, | ||
329 | {0x0000a0e4, 0x02050700}, | ||
330 | {0x0000a0e8, 0x02050701}, | ||
331 | {0x0000a0ec, 0x02050702}, | ||
332 | {0x0000a0f0, 0x02050703}, | ||
333 | {0x0000a0f4, 0x02050704}, | ||
334 | {0x0000a0f8, 0x02050705}, | ||
335 | {0x0000a0fc, 0x02050708}, | ||
336 | {0x0000a100, 0x02050709}, | ||
337 | {0x0000a104, 0x0205070a}, | ||
338 | {0x0000a108, 0x0205070b}, | ||
339 | {0x0000a10c, 0x0205070c}, | ||
340 | {0x0000a110, 0x0205070d}, | ||
341 | {0x0000a114, 0x02050710}, | ||
342 | {0x0000a118, 0x02050711}, | ||
343 | {0x0000a11c, 0x02050712}, | ||
344 | {0x0000a120, 0x02050713}, | ||
345 | {0x0000a124, 0x02050714}, | ||
346 | {0x0000a128, 0x02050715}, | ||
347 | {0x0000a12c, 0x02050730}, | ||
348 | {0x0000a130, 0x02050731}, | ||
349 | {0x0000a134, 0x02050732}, | ||
350 | {0x0000a138, 0x02050733}, | ||
351 | {0x0000a13c, 0x02050734}, | ||
352 | {0x0000a140, 0x02050735}, | ||
353 | {0x0000a144, 0x02050750}, | ||
354 | {0x0000a148, 0x02050751}, | ||
355 | {0x0000a14c, 0x02050752}, | ||
356 | {0x0000a150, 0x02050753}, | ||
357 | {0x0000a154, 0x02050754}, | ||
358 | {0x0000a158, 0x02050755}, | ||
359 | {0x0000a15c, 0x02050770}, | ||
360 | {0x0000a160, 0x02050771}, | ||
361 | {0x0000a164, 0x02050772}, | ||
362 | {0x0000a168, 0x02050773}, | ||
363 | {0x0000a16c, 0x02050774}, | ||
364 | {0x0000a170, 0x02050775}, | ||
365 | {0x0000a174, 0x00000776}, | ||
366 | {0x0000a178, 0x00000776}, | ||
367 | {0x0000a17c, 0x00000776}, | ||
368 | {0x0000a180, 0x00000776}, | ||
369 | {0x0000a184, 0x00000776}, | ||
370 | {0x0000a188, 0x00000776}, | ||
371 | {0x0000a18c, 0x00000776}, | ||
372 | {0x0000a190, 0x00000776}, | ||
373 | {0x0000a194, 0x00000776}, | ||
374 | {0x0000a198, 0x00000776}, | ||
375 | {0x0000a19c, 0x00000776}, | ||
376 | {0x0000a1a0, 0x00000776}, | ||
377 | {0x0000a1a4, 0x00000776}, | ||
378 | {0x0000a1a8, 0x00000776}, | ||
379 | {0x0000a1ac, 0x00000776}, | ||
380 | {0x0000a1b0, 0x00000776}, | ||
381 | {0x0000a1b4, 0x00000776}, | ||
382 | {0x0000a1b8, 0x00000776}, | ||
383 | {0x0000a1bc, 0x00000776}, | ||
384 | {0x0000a1c0, 0x00000776}, | ||
385 | {0x0000a1c4, 0x00000776}, | ||
386 | {0x0000a1c8, 0x00000776}, | ||
387 | {0x0000a1cc, 0x00000776}, | ||
388 | {0x0000a1d0, 0x00000776}, | ||
389 | {0x0000a1d4, 0x00000776}, | ||
390 | {0x0000a1d8, 0x00000776}, | ||
391 | {0x0000a1dc, 0x00000776}, | ||
392 | {0x0000a1e0, 0x00000776}, | ||
393 | {0x0000a1e4, 0x00000776}, | ||
394 | {0x0000a1e8, 0x00000776}, | ||
395 | {0x0000a1ec, 0x00000776}, | ||
396 | {0x0000a1f0, 0x00000776}, | ||
397 | {0x0000a1f4, 0x00000776}, | ||
398 | {0x0000a1f8, 0x00000776}, | ||
399 | {0x0000a1fc, 0x00000776}, | ||
400 | {0x0000b000, 0x02000101}, | ||
401 | {0x0000b004, 0x02000102}, | ||
402 | {0x0000b008, 0x02000103}, | ||
403 | {0x0000b00c, 0x02000104}, | ||
404 | {0x0000b010, 0x02000200}, | ||
405 | {0x0000b014, 0x02000201}, | ||
406 | {0x0000b018, 0x02000202}, | ||
407 | {0x0000b01c, 0x02000203}, | ||
408 | {0x0000b020, 0x02000204}, | ||
409 | {0x0000b024, 0x02000205}, | ||
410 | {0x0000b028, 0x02000208}, | ||
411 | {0x0000b02c, 0x02000302}, | ||
412 | {0x0000b030, 0x02000303}, | ||
413 | {0x0000b034, 0x02000304}, | ||
414 | {0x0000b038, 0x02000400}, | ||
415 | {0x0000b03c, 0x02010300}, | ||
416 | {0x0000b040, 0x02010301}, | ||
417 | {0x0000b044, 0x02010302}, | ||
418 | {0x0000b048, 0x02000500}, | ||
419 | {0x0000b04c, 0x02010400}, | ||
420 | {0x0000b050, 0x02020300}, | ||
421 | {0x0000b054, 0x02020301}, | ||
422 | {0x0000b058, 0x02020302}, | ||
423 | {0x0000b05c, 0x02020303}, | ||
424 | {0x0000b060, 0x02020400}, | ||
425 | {0x0000b064, 0x02030300}, | ||
426 | {0x0000b068, 0x02030301}, | ||
427 | {0x0000b06c, 0x02030302}, | ||
428 | {0x0000b070, 0x02030303}, | ||
429 | {0x0000b074, 0x02030400}, | ||
430 | {0x0000b078, 0x02040300}, | ||
431 | {0x0000b07c, 0x02040301}, | ||
432 | {0x0000b080, 0x02040302}, | ||
433 | {0x0000b084, 0x02040303}, | ||
434 | {0x0000b088, 0x02030500}, | ||
435 | {0x0000b08c, 0x02040400}, | ||
436 | {0x0000b090, 0x02050203}, | ||
437 | {0x0000b094, 0x02050204}, | ||
438 | {0x0000b098, 0x02050205}, | ||
439 | {0x0000b09c, 0x02040500}, | ||
440 | {0x0000b0a0, 0x02050301}, | ||
441 | {0x0000b0a4, 0x02050302}, | ||
442 | {0x0000b0a8, 0x02050303}, | ||
443 | {0x0000b0ac, 0x02050400}, | ||
444 | {0x0000b0b0, 0x02050401}, | ||
445 | {0x0000b0b4, 0x02050402}, | ||
446 | {0x0000b0b8, 0x02050403}, | ||
447 | {0x0000b0bc, 0x02050500}, | ||
448 | {0x0000b0c0, 0x02050501}, | ||
449 | {0x0000b0c4, 0x02050502}, | ||
450 | {0x0000b0c8, 0x02050503}, | ||
451 | {0x0000b0cc, 0x02050504}, | ||
452 | {0x0000b0d0, 0x02050600}, | ||
453 | {0x0000b0d4, 0x02050601}, | ||
454 | {0x0000b0d8, 0x02050602}, | ||
455 | {0x0000b0dc, 0x02050603}, | ||
456 | {0x0000b0e0, 0x02050604}, | ||
457 | {0x0000b0e4, 0x02050700}, | ||
458 | {0x0000b0e8, 0x02050701}, | ||
459 | {0x0000b0ec, 0x02050702}, | ||
460 | {0x0000b0f0, 0x02050703}, | ||
461 | {0x0000b0f4, 0x02050704}, | ||
462 | {0x0000b0f8, 0x02050705}, | ||
463 | {0x0000b0fc, 0x02050708}, | ||
464 | {0x0000b100, 0x02050709}, | ||
465 | {0x0000b104, 0x0205070a}, | ||
466 | {0x0000b108, 0x0205070b}, | ||
467 | {0x0000b10c, 0x0205070c}, | ||
468 | {0x0000b110, 0x0205070d}, | ||
469 | {0x0000b114, 0x02050710}, | ||
470 | {0x0000b118, 0x02050711}, | ||
471 | {0x0000b11c, 0x02050712}, | ||
472 | {0x0000b120, 0x02050713}, | ||
473 | {0x0000b124, 0x02050714}, | ||
474 | {0x0000b128, 0x02050715}, | ||
475 | {0x0000b12c, 0x02050730}, | ||
476 | {0x0000b130, 0x02050731}, | ||
477 | {0x0000b134, 0x02050732}, | ||
478 | {0x0000b138, 0x02050733}, | ||
479 | {0x0000b13c, 0x02050734}, | ||
480 | {0x0000b140, 0x02050735}, | ||
481 | {0x0000b144, 0x02050750}, | ||
482 | {0x0000b148, 0x02050751}, | ||
483 | {0x0000b14c, 0x02050752}, | ||
484 | {0x0000b150, 0x02050753}, | ||
485 | {0x0000b154, 0x02050754}, | ||
486 | {0x0000b158, 0x02050755}, | ||
487 | {0x0000b15c, 0x02050770}, | ||
488 | {0x0000b160, 0x02050771}, | ||
489 | {0x0000b164, 0x02050772}, | ||
490 | {0x0000b168, 0x02050773}, | ||
491 | {0x0000b16c, 0x02050774}, | ||
492 | {0x0000b170, 0x02050775}, | ||
493 | {0x0000b174, 0x00000776}, | ||
494 | {0x0000b178, 0x00000776}, | ||
495 | {0x0000b17c, 0x00000776}, | ||
496 | {0x0000b180, 0x00000776}, | ||
497 | {0x0000b184, 0x00000776}, | ||
498 | {0x0000b188, 0x00000776}, | ||
499 | {0x0000b18c, 0x00000776}, | ||
500 | {0x0000b190, 0x00000776}, | ||
501 | {0x0000b194, 0x00000776}, | ||
502 | {0x0000b198, 0x00000776}, | ||
503 | {0x0000b19c, 0x00000776}, | ||
504 | {0x0000b1a0, 0x00000776}, | ||
505 | {0x0000b1a4, 0x00000776}, | ||
506 | {0x0000b1a8, 0x00000776}, | ||
507 | {0x0000b1ac, 0x00000776}, | ||
508 | {0x0000b1b0, 0x00000776}, | ||
509 | {0x0000b1b4, 0x00000776}, | ||
510 | {0x0000b1b8, 0x00000776}, | ||
511 | {0x0000b1bc, 0x00000776}, | ||
512 | {0x0000b1c0, 0x00000776}, | ||
513 | {0x0000b1c4, 0x00000776}, | ||
514 | {0x0000b1c8, 0x00000776}, | ||
515 | {0x0000b1cc, 0x00000776}, | ||
516 | {0x0000b1d0, 0x00000776}, | ||
517 | {0x0000b1d4, 0x00000776}, | ||
518 | {0x0000b1d8, 0x00000776}, | ||
519 | {0x0000b1dc, 0x00000776}, | ||
520 | {0x0000b1e0, 0x00000776}, | ||
521 | {0x0000b1e4, 0x00000776}, | ||
522 | {0x0000b1e8, 0x00000776}, | ||
523 | {0x0000b1ec, 0x00000776}, | ||
524 | {0x0000b1f0, 0x00000776}, | ||
525 | {0x0000b1f4, 0x00000776}, | ||
526 | {0x0000b1f8, 0x00000776}, | ||
527 | {0x0000b1fc, 0x00000776}, | ||
528 | }; | ||
529 | |||
530 | static const u32 ar9300_2p2_mac_postamble[][5] = { | ||
531 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
532 | {0x00001030, 0x00000230, 0x00000460, 0x000002c0, 0x00000160}, | ||
533 | {0x00001070, 0x00000168, 0x000002d0, 0x00000318, 0x0000018c}, | ||
534 | {0x000010b0, 0x00000e60, 0x00001cc0, 0x00007c70, 0x00003e38}, | ||
535 | {0x00008014, 0x03e803e8, 0x07d007d0, 0x10801600, 0x08400b00}, | ||
536 | {0x0000801c, 0x128d8027, 0x128d804f, 0x12e00057, 0x12e0002b}, | ||
537 | {0x00008120, 0x08f04800, 0x08f04800, 0x08f04810, 0x08f04810}, | ||
538 | {0x000081d0, 0x00003210, 0x00003210, 0x0000320a, 0x0000320a}, | ||
539 | {0x00008318, 0x00003e80, 0x00007d00, 0x00006880, 0x00003440}, | ||
540 | }; | ||
541 | |||
542 | static const u32 ar9300_2p2_soc_postamble[][5] = { | ||
543 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
544 | {0x00007010, 0x00000023, 0x00000023, 0x00000023, 0x00000023}, | ||
545 | }; | ||
546 | |||
547 | static const u32 ar9200_merlin_2p2_radio_core[][2] = { | ||
548 | /* Addr allmodes */ | ||
549 | {0x00007800, 0x00040000}, | ||
550 | {0x00007804, 0xdb005012}, | ||
551 | {0x00007808, 0x04924914}, | ||
552 | {0x0000780c, 0x21084210}, | ||
553 | {0x00007810, 0x6d801300}, | ||
554 | {0x00007814, 0x0019beff}, | ||
555 | {0x00007818, 0x07e41000}, | ||
556 | {0x0000781c, 0x00392000}, | ||
557 | {0x00007820, 0x92592480}, | ||
558 | {0x00007824, 0x00040000}, | ||
559 | {0x00007828, 0xdb005012}, | ||
560 | {0x0000782c, 0x04924914}, | ||
561 | {0x00007830, 0x21084210}, | ||
562 | {0x00007834, 0x6d801300}, | ||
563 | {0x00007838, 0x0019beff}, | ||
564 | {0x0000783c, 0x07e40000}, | ||
565 | {0x00007840, 0x00392000}, | ||
566 | {0x00007844, 0x92592480}, | ||
567 | {0x00007848, 0x00100000}, | ||
568 | {0x0000784c, 0x773f0567}, | ||
569 | {0x00007850, 0x54214514}, | ||
570 | {0x00007854, 0x12035828}, | ||
571 | {0x00007858, 0x92592692}, | ||
572 | {0x0000785c, 0x00000000}, | ||
573 | {0x00007860, 0x56400000}, | ||
574 | {0x00007864, 0x0a8e370e}, | ||
575 | {0x00007868, 0xc0102850}, | ||
576 | {0x0000786c, 0x812d4000}, | ||
577 | {0x00007870, 0x807ec400}, | ||
578 | {0x00007874, 0x001b6db0}, | ||
579 | {0x00007878, 0x00376b63}, | ||
580 | {0x0000787c, 0x06db6db6}, | ||
581 | {0x00007880, 0x006d8000}, | ||
582 | {0x00007884, 0xffeffffe}, | ||
583 | {0x00007888, 0xffeffffe}, | ||
584 | {0x0000788c, 0x00010000}, | ||
585 | {0x00007890, 0x02060aeb}, | ||
586 | {0x00007894, 0x5a108000}, | ||
587 | }; | ||
588 | |||
589 | static const u32 ar9300_2p2_baseband_postamble[][5] = { | ||
590 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
591 | {0x00009810, 0xd00a8005, 0xd00a8005, 0xd00a8011, 0xd00a8011}, | ||
592 | {0x00009820, 0x206a022e, 0x206a022e, 0x206a012e, 0x206a012e}, | ||
593 | {0x00009824, 0x5ac640d0, 0x5ac640d0, 0x5ac640d0, 0x5ac640d0}, | ||
594 | {0x00009828, 0x06903081, 0x06903081, 0x06903881, 0x06903881}, | ||
595 | {0x0000982c, 0x05eea6d4, 0x05eea6d4, 0x05eea6d4, 0x05eea6d4}, | ||
596 | {0x00009830, 0x0000059c, 0x0000059c, 0x0000119c, 0x0000119c}, | ||
597 | {0x00009c00, 0x000000c4, 0x000000c4, 0x000000c4, 0x000000c4}, | ||
598 | {0x00009e00, 0x0372161e, 0x0372161e, 0x037216a0, 0x037216a0}, | ||
599 | {0x00009e04, 0x00802020, 0x00802020, 0x00802020, 0x00802020}, | ||
600 | {0x00009e0c, 0x6c4000e2, 0x6d4000e2, 0x6d4000e2, 0x6c4000e2}, | ||
601 | {0x00009e10, 0x7ec88d2e, 0x7ec88d2e, 0x7ec84d2e, 0x7ec84d2e}, | ||
602 | {0x00009e14, 0x31395d5e, 0x3139605e, 0x3139605e, 0x31395d5e}, | ||
603 | {0x00009e18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
604 | {0x00009e1c, 0x0001cf9c, 0x0001cf9c, 0x00021f9c, 0x00021f9c}, | ||
605 | {0x00009e20, 0x000003b5, 0x000003b5, 0x000003ce, 0x000003ce}, | ||
606 | {0x00009e2c, 0x0000001c, 0x0000001c, 0x00000021, 0x00000021}, | ||
607 | {0x00009e44, 0x02321e27, 0x02321e27, 0x02291e27, 0x02291e27}, | ||
608 | {0x00009e48, 0x5030201a, 0x5030201a, 0x50302012, 0x50302012}, | ||
609 | {0x00009fc8, 0x0003f000, 0x0003f000, 0x0001a000, 0x0001a000}, | ||
610 | {0x0000a204, 0x000037c0, 0x000037c4, 0x000037c4, 0x000037c0}, | ||
611 | {0x0000a208, 0x00000104, 0x00000104, 0x00000004, 0x00000004}, | ||
612 | {0x0000a230, 0x0000000a, 0x00000014, 0x00000016, 0x0000000b}, | ||
613 | {0x0000a234, 0x00000fff, 0x10000fff, 0x10000fff, 0x00000fff}, | ||
614 | {0x0000a238, 0xffb81018, 0xffb81018, 0xffb81018, 0xffb81018}, | ||
615 | {0x0000a250, 0x00000000, 0x00000000, 0x00000210, 0x00000108}, | ||
616 | {0x0000a254, 0x000007d0, 0x00000fa0, 0x00001130, 0x00000898}, | ||
617 | {0x0000a258, 0x02020002, 0x02020002, 0x02020002, 0x02020002}, | ||
618 | {0x0000a25c, 0x01000e0e, 0x01000e0e, 0x01000e0e, 0x01000e0e}, | ||
619 | {0x0000a260, 0x0a021501, 0x0a021501, 0x3a021501, 0x3a021501}, | ||
620 | {0x0000a264, 0x00000e0e, 0x00000e0e, 0x00000e0e, 0x00000e0e}, | ||
621 | {0x0000a280, 0x00000007, 0x00000007, 0x0000000b, 0x0000000b}, | ||
622 | {0x0000a284, 0x00000000, 0x00000000, 0x00000150, 0x00000150}, | ||
623 | {0x0000a288, 0x00000110, 0x00000110, 0x00000110, 0x00000110}, | ||
624 | {0x0000a28c, 0x00022222, 0x00022222, 0x00022222, 0x00022222}, | ||
625 | {0x0000a2c4, 0x00158d18, 0x00158d18, 0x00158d18, 0x00158d18}, | ||
626 | {0x0000a2d0, 0x00071981, 0x00071981, 0x00071981, 0x00071982}, | ||
627 | {0x0000a2d8, 0xf999a83a, 0xf999a83a, 0xf999a83a, 0xf999a83a}, | ||
628 | {0x0000a358, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
629 | {0x0000a830, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, | ||
630 | {0x0000ae04, 0x00800000, 0x00800000, 0x00800000, 0x00800000}, | ||
631 | {0x0000ae18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
632 | {0x0000ae1c, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, | ||
633 | {0x0000ae20, 0x000001b5, 0x000001b5, 0x000001ce, 0x000001ce}, | ||
634 | {0x0000b284, 0x00000000, 0x00000000, 0x00000150, 0x00000150}, | ||
635 | {0x0000b830, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, | ||
636 | {0x0000be04, 0x00800000, 0x00800000, 0x00800000, 0x00800000}, | ||
637 | {0x0000be18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
638 | {0x0000be1c, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, | ||
639 | {0x0000be20, 0x000001b5, 0x000001b5, 0x000001ce, 0x000001ce}, | ||
640 | {0x0000c284, 0x00000000, 0x00000000, 0x00000150, 0x00000150}, | ||
641 | }; | ||
642 | |||
643 | static const u32 ar9300_2p2_baseband_core[][2] = { | ||
644 | /* Addr allmodes */ | ||
645 | {0x00009800, 0xafe68e30}, | ||
646 | {0x00009804, 0xfd14e000}, | ||
647 | {0x00009808, 0x9c0a9f6b}, | ||
648 | {0x0000980c, 0x04900000}, | ||
649 | {0x00009814, 0x9280c00a}, | ||
650 | {0x00009818, 0x00000000}, | ||
651 | {0x0000981c, 0x00020028}, | ||
652 | {0x00009834, 0x5f3ca3de}, | ||
653 | {0x00009838, 0x0108ecff}, | ||
654 | {0x0000983c, 0x14750600}, | ||
655 | {0x00009880, 0x201fff00}, | ||
656 | {0x00009884, 0x00001042}, | ||
657 | {0x000098a4, 0x00200400}, | ||
658 | {0x000098b0, 0x52440bbe}, | ||
659 | {0x000098d0, 0x004b6a8e}, | ||
660 | {0x000098d4, 0x00000820}, | ||
661 | {0x000098dc, 0x00000000}, | ||
662 | {0x000098f0, 0x00000000}, | ||
663 | {0x000098f4, 0x00000000}, | ||
664 | {0x00009c04, 0xff55ff55}, | ||
665 | {0x00009c08, 0x0320ff55}, | ||
666 | {0x00009c0c, 0x00000000}, | ||
667 | {0x00009c10, 0x00000000}, | ||
668 | {0x00009c14, 0x00046384}, | ||
669 | {0x00009c18, 0x05b6b440}, | ||
670 | {0x00009c1c, 0x00b6b440}, | ||
671 | {0x00009d00, 0xc080a333}, | ||
672 | {0x00009d04, 0x40206c10}, | ||
673 | {0x00009d08, 0x009c4060}, | ||
674 | {0x00009d0c, 0x9883800a}, | ||
675 | {0x00009d10, 0x01834061}, | ||
676 | {0x00009d14, 0x00c0040b}, | ||
677 | {0x00009d18, 0x00000000}, | ||
678 | {0x00009e08, 0x0038230c}, | ||
679 | {0x00009e24, 0x990bb515}, | ||
680 | {0x00009e28, 0x0c6f0000}, | ||
681 | {0x00009e30, 0x06336f77}, | ||
682 | {0x00009e34, 0x6af6532f}, | ||
683 | {0x00009e38, 0x0cc80c00}, | ||
684 | {0x00009e3c, 0xcf946222}, | ||
685 | {0x00009e40, 0x0d261820}, | ||
686 | {0x00009e4c, 0x00001004}, | ||
687 | {0x00009e50, 0x00ff03f1}, | ||
688 | {0x00009e54, 0x00000000}, | ||
689 | {0x00009fc0, 0x803e4788}, | ||
690 | {0x00009fc4, 0x0001efb5}, | ||
691 | {0x00009fcc, 0x40000014}, | ||
692 | {0x00009fd0, 0x01193b93}, | ||
693 | {0x0000a20c, 0x00000000}, | ||
694 | {0x0000a220, 0x00000000}, | ||
695 | {0x0000a224, 0x00000000}, | ||
696 | {0x0000a228, 0x10002310}, | ||
697 | {0x0000a22c, 0x01036a1e}, | ||
698 | {0x0000a23c, 0x00000000}, | ||
699 | {0x0000a244, 0x0c000000}, | ||
700 | {0x0000a2a0, 0x00000001}, | ||
701 | {0x0000a2c0, 0x00000001}, | ||
702 | {0x0000a2c8, 0x00000000}, | ||
703 | {0x0000a2cc, 0x18c43433}, | ||
704 | {0x0000a2d4, 0x00000000}, | ||
705 | {0x0000a2dc, 0x00000000}, | ||
706 | {0x0000a2e0, 0x00000000}, | ||
707 | {0x0000a2e4, 0x00000000}, | ||
708 | {0x0000a2e8, 0x00000000}, | ||
709 | {0x0000a2ec, 0x00000000}, | ||
710 | {0x0000a2f0, 0x00000000}, | ||
711 | {0x0000a2f4, 0x00000000}, | ||
712 | {0x0000a2f8, 0x00000000}, | ||
713 | {0x0000a344, 0x00000000}, | ||
714 | {0x0000a34c, 0x00000000}, | ||
715 | {0x0000a350, 0x0000a000}, | ||
716 | {0x0000a364, 0x00000000}, | ||
717 | {0x0000a370, 0x00000000}, | ||
718 | {0x0000a390, 0x00000001}, | ||
719 | {0x0000a394, 0x00000444}, | ||
720 | {0x0000a398, 0x001f0e0f}, | ||
721 | {0x0000a39c, 0x0075393f}, | ||
722 | {0x0000a3a0, 0xb79f6427}, | ||
723 | {0x0000a3a4, 0x00000000}, | ||
724 | {0x0000a3a8, 0xaaaaaaaa}, | ||
725 | {0x0000a3ac, 0x3c466478}, | ||
726 | {0x0000a3c0, 0x20202020}, | ||
727 | {0x0000a3c4, 0x22222220}, | ||
728 | {0x0000a3c8, 0x20200020}, | ||
729 | {0x0000a3cc, 0x20202020}, | ||
730 | {0x0000a3d0, 0x20202020}, | ||
731 | {0x0000a3d4, 0x20202020}, | ||
732 | {0x0000a3d8, 0x20202020}, | ||
733 | {0x0000a3dc, 0x20202020}, | ||
734 | {0x0000a3e0, 0x20202020}, | ||
735 | {0x0000a3e4, 0x20202020}, | ||
736 | {0x0000a3e8, 0x20202020}, | ||
737 | {0x0000a3ec, 0x20202020}, | ||
738 | {0x0000a3f0, 0x00000000}, | ||
739 | {0x0000a3f4, 0x00000246}, | ||
740 | {0x0000a3f8, 0x0cdbd380}, | ||
741 | {0x0000a3fc, 0x000f0f01}, | ||
742 | {0x0000a400, 0x8fa91f01}, | ||
743 | {0x0000a404, 0x00000000}, | ||
744 | {0x0000a408, 0x0e79e5c6}, | ||
745 | {0x0000a40c, 0x00820820}, | ||
746 | {0x0000a414, 0x1ce739ce}, | ||
747 | {0x0000a418, 0x2d001dce}, | ||
748 | {0x0000a41c, 0x1ce739ce}, | ||
749 | {0x0000a420, 0x000001ce}, | ||
750 | {0x0000a424, 0x1ce739ce}, | ||
751 | {0x0000a428, 0x000001ce}, | ||
752 | {0x0000a42c, 0x1ce739ce}, | ||
753 | {0x0000a430, 0x1ce739ce}, | ||
754 | {0x0000a434, 0x00000000}, | ||
755 | {0x0000a438, 0x00001801}, | ||
756 | {0x0000a43c, 0x00000000}, | ||
757 | {0x0000a440, 0x00000000}, | ||
758 | {0x0000a444, 0x00000000}, | ||
759 | {0x0000a448, 0x06000080}, | ||
760 | {0x0000a44c, 0x00000001}, | ||
761 | {0x0000a450, 0x00010000}, | ||
762 | {0x0000a458, 0x00000000}, | ||
763 | {0x0000a600, 0x00000000}, | ||
764 | {0x0000a604, 0x00000000}, | ||
765 | {0x0000a608, 0x00000000}, | ||
766 | {0x0000a60c, 0x00000000}, | ||
767 | {0x0000a610, 0x00000000}, | ||
768 | {0x0000a614, 0x00000000}, | ||
769 | {0x0000a618, 0x00000000}, | ||
770 | {0x0000a61c, 0x00000000}, | ||
771 | {0x0000a620, 0x00000000}, | ||
772 | {0x0000a624, 0x00000000}, | ||
773 | {0x0000a628, 0x00000000}, | ||
774 | {0x0000a62c, 0x00000000}, | ||
775 | {0x0000a630, 0x00000000}, | ||
776 | {0x0000a634, 0x00000000}, | ||
777 | {0x0000a638, 0x00000000}, | ||
778 | {0x0000a63c, 0x00000000}, | ||
779 | {0x0000a640, 0x00000000}, | ||
780 | {0x0000a644, 0x3fad9d74}, | ||
781 | {0x0000a648, 0x0048060a}, | ||
782 | {0x0000a64c, 0x00000637}, | ||
783 | {0x0000a670, 0x03020100}, | ||
784 | {0x0000a674, 0x09080504}, | ||
785 | {0x0000a678, 0x0d0c0b0a}, | ||
786 | {0x0000a67c, 0x13121110}, | ||
787 | {0x0000a680, 0x31301514}, | ||
788 | {0x0000a684, 0x35343332}, | ||
789 | {0x0000a688, 0x00000036}, | ||
790 | {0x0000a690, 0x00000838}, | ||
791 | {0x0000a7c0, 0x00000000}, | ||
792 | {0x0000a7c4, 0xfffffffc}, | ||
793 | {0x0000a7c8, 0x00000000}, | ||
794 | {0x0000a7cc, 0x00000000}, | ||
795 | {0x0000a7d0, 0x00000000}, | ||
796 | {0x0000a7d4, 0x00000004}, | ||
797 | {0x0000a7dc, 0x00000001}, | ||
798 | {0x0000a8d0, 0x004b6a8e}, | ||
799 | {0x0000a8d4, 0x00000820}, | ||
800 | {0x0000a8dc, 0x00000000}, | ||
801 | {0x0000a8f0, 0x00000000}, | ||
802 | {0x0000a8f4, 0x00000000}, | ||
803 | {0x0000b2d0, 0x00000080}, | ||
804 | {0x0000b2d4, 0x00000000}, | ||
805 | {0x0000b2dc, 0x00000000}, | ||
806 | {0x0000b2e0, 0x00000000}, | ||
807 | {0x0000b2e4, 0x00000000}, | ||
808 | {0x0000b2e8, 0x00000000}, | ||
809 | {0x0000b2ec, 0x00000000}, | ||
810 | {0x0000b2f0, 0x00000000}, | ||
811 | {0x0000b2f4, 0x00000000}, | ||
812 | {0x0000b2f8, 0x00000000}, | ||
813 | {0x0000b408, 0x0e79e5c0}, | ||
814 | {0x0000b40c, 0x00820820}, | ||
815 | {0x0000b420, 0x00000000}, | ||
816 | {0x0000b8d0, 0x004b6a8e}, | ||
817 | {0x0000b8d4, 0x00000820}, | ||
818 | {0x0000b8dc, 0x00000000}, | ||
819 | {0x0000b8f0, 0x00000000}, | ||
820 | {0x0000b8f4, 0x00000000}, | ||
821 | {0x0000c2d0, 0x00000080}, | ||
822 | {0x0000c2d4, 0x00000000}, | ||
823 | {0x0000c2dc, 0x00000000}, | ||
824 | {0x0000c2e0, 0x00000000}, | ||
825 | {0x0000c2e4, 0x00000000}, | ||
826 | {0x0000c2e8, 0x00000000}, | ||
827 | {0x0000c2ec, 0x00000000}, | ||
828 | {0x0000c2f0, 0x00000000}, | ||
829 | {0x0000c2f4, 0x00000000}, | ||
830 | {0x0000c2f8, 0x00000000}, | ||
831 | {0x0000c408, 0x0e79e5c0}, | ||
832 | {0x0000c40c, 0x00820820}, | ||
833 | {0x0000c420, 0x00000000}, | ||
834 | }; | ||
835 | |||
836 | static const u32 ar9300Modes_high_power_tx_gain_table_2p2[][5] = { | ||
837 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
838 | {0x0000a410, 0x000050d9, 0x000050d9, 0x000050d9, 0x000050d9}, | ||
839 | {0x0000a500, 0x00002220, 0x00002220, 0x00000000, 0x00000000}, | ||
840 | {0x0000a504, 0x06002223, 0x06002223, 0x04000002, 0x04000002}, | ||
841 | {0x0000a508, 0x0a022220, 0x0a022220, 0x08000004, 0x08000004}, | ||
842 | {0x0000a50c, 0x0f022223, 0x0f022223, 0x0b000200, 0x0b000200}, | ||
843 | {0x0000a510, 0x14022620, 0x14022620, 0x0f000202, 0x0f000202}, | ||
844 | {0x0000a514, 0x18022622, 0x18022622, 0x11000400, 0x11000400}, | ||
845 | {0x0000a518, 0x1b022822, 0x1b022822, 0x15000402, 0x15000402}, | ||
846 | {0x0000a51c, 0x20022842, 0x20022842, 0x19000404, 0x19000404}, | ||
847 | {0x0000a520, 0x22022c41, 0x22022c41, 0x1b000603, 0x1b000603}, | ||
848 | {0x0000a524, 0x28023042, 0x28023042, 0x1f000a02, 0x1f000a02}, | ||
849 | {0x0000a528, 0x2c023044, 0x2c023044, 0x23000a04, 0x23000a04}, | ||
850 | {0x0000a52c, 0x2f023644, 0x2f023644, 0x26000a20, 0x26000a20}, | ||
851 | {0x0000a530, 0x34025643, 0x34025643, 0x2a000e20, 0x2a000e20}, | ||
852 | {0x0000a534, 0x38025a44, 0x38025a44, 0x2e000e22, 0x2e000e22}, | ||
853 | {0x0000a538, 0x3b025e45, 0x3b025e45, 0x31000e24, 0x31000e24}, | ||
854 | {0x0000a53c, 0x41025e4a, 0x41025e4a, 0x34001640, 0x34001640}, | ||
855 | {0x0000a540, 0x48025e6c, 0x48025e6c, 0x38001660, 0x38001660}, | ||
856 | {0x0000a544, 0x4e025e8e, 0x4e025e8e, 0x3b001861, 0x3b001861}, | ||
857 | {0x0000a548, 0x53025eb2, 0x53025eb2, 0x3e001a81, 0x3e001a81}, | ||
858 | {0x0000a54c, 0x59025eb5, 0x59025eb5, 0x42001a83, 0x42001a83}, | ||
859 | {0x0000a550, 0x5f025ef6, 0x5f025ef6, 0x44001c84, 0x44001c84}, | ||
860 | {0x0000a554, 0x62025f56, 0x62025f56, 0x48001ce3, 0x48001ce3}, | ||
861 | {0x0000a558, 0x66027f56, 0x66027f56, 0x4c001ce5, 0x4c001ce5}, | ||
862 | {0x0000a55c, 0x6a029f56, 0x6a029f56, 0x50001ce9, 0x50001ce9}, | ||
863 | {0x0000a560, 0x70049f56, 0x70049f56, 0x54001ceb, 0x54001ceb}, | ||
864 | {0x0000a564, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
865 | {0x0000a568, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
866 | {0x0000a56c, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
867 | {0x0000a570, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
868 | {0x0000a574, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
869 | {0x0000a578, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
870 | {0x0000a57c, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
871 | {0x0000a580, 0x00802220, 0x00802220, 0x00800000, 0x00800000}, | ||
872 | {0x0000a584, 0x06802223, 0x06802223, 0x04800002, 0x04800002}, | ||
873 | {0x0000a588, 0x0a822220, 0x0a822220, 0x08800004, 0x08800004}, | ||
874 | {0x0000a58c, 0x0f822223, 0x0f822223, 0x0b800200, 0x0b800200}, | ||
875 | {0x0000a590, 0x14822620, 0x14822620, 0x0f800202, 0x0f800202}, | ||
876 | {0x0000a594, 0x18822622, 0x18822622, 0x11800400, 0x11800400}, | ||
877 | {0x0000a598, 0x1b822822, 0x1b822822, 0x15800402, 0x15800402}, | ||
878 | {0x0000a59c, 0x20822842, 0x20822842, 0x19800404, 0x19800404}, | ||
879 | {0x0000a5a0, 0x22822c41, 0x22822c41, 0x1b800603, 0x1b800603}, | ||
880 | {0x0000a5a4, 0x28823042, 0x28823042, 0x1f800a02, 0x1f800a02}, | ||
881 | {0x0000a5a8, 0x2c823044, 0x2c823044, 0x23800a04, 0x23800a04}, | ||
882 | {0x0000a5ac, 0x2f823644, 0x2f823644, 0x26800a20, 0x26800a20}, | ||
883 | {0x0000a5b0, 0x34825643, 0x34825643, 0x2a800e20, 0x2a800e20}, | ||
884 | {0x0000a5b4, 0x38825a44, 0x38825a44, 0x2e800e22, 0x2e800e22}, | ||
885 | {0x0000a5b8, 0x3b825e45, 0x3b825e45, 0x31800e24, 0x31800e24}, | ||
886 | {0x0000a5bc, 0x41825e4a, 0x41825e4a, 0x34801640, 0x34801640}, | ||
887 | {0x0000a5c0, 0x48825e6c, 0x48825e6c, 0x38801660, 0x38801660}, | ||
888 | {0x0000a5c4, 0x4e825e8e, 0x4e825e8e, 0x3b801861, 0x3b801861}, | ||
889 | {0x0000a5c8, 0x53825eb2, 0x53825eb2, 0x3e801a81, 0x3e801a81}, | ||
890 | {0x0000a5cc, 0x59825eb5, 0x59825eb5, 0x42801a83, 0x42801a83}, | ||
891 | {0x0000a5d0, 0x5f825ef6, 0x5f825ef6, 0x44801c84, 0x44801c84}, | ||
892 | {0x0000a5d4, 0x62825f56, 0x62825f56, 0x48801ce3, 0x48801ce3}, | ||
893 | {0x0000a5d8, 0x66827f56, 0x66827f56, 0x4c801ce5, 0x4c801ce5}, | ||
894 | {0x0000a5dc, 0x6a829f56, 0x6a829f56, 0x50801ce9, 0x50801ce9}, | ||
895 | {0x0000a5e0, 0x70849f56, 0x70849f56, 0x54801ceb, 0x54801ceb}, | ||
896 | {0x0000a5e4, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
897 | {0x0000a5e8, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
898 | {0x0000a5ec, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
899 | {0x0000a5f0, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
900 | {0x0000a5f4, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
901 | {0x0000a5f8, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
902 | {0x0000a5fc, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
903 | {0x00016044, 0x056db2e6, 0x056db2e6, 0x056db2e6, 0x056db2e6}, | ||
904 | {0x00016048, 0xae480001, 0xae480001, 0xae480001, 0xae480001}, | ||
905 | {0x00016068, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c}, | ||
906 | {0x00016444, 0x056db2e6, 0x056db2e6, 0x056db2e6, 0x056db2e6}, | ||
907 | {0x00016448, 0xae480001, 0xae480001, 0xae480001, 0xae480001}, | ||
908 | {0x00016468, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c}, | ||
909 | {0x00016844, 0x056db2e6, 0x056db2e6, 0x056db2e6, 0x056db2e6}, | ||
910 | {0x00016848, 0xae480001, 0xae480001, 0xae480001, 0xae480001}, | ||
911 | {0x00016868, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c, 0x6eb6db6c}, | ||
912 | }; | ||
913 | |||
914 | static const u32 ar9300Modes_high_ob_db_tx_gain_table_2p2[][5] = { | ||
915 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
916 | {0x0000a410, 0x000050d9, 0x000050d9, 0x000050d9, 0x000050d9}, | ||
917 | {0x0000a500, 0x00002220, 0x00002220, 0x00000000, 0x00000000}, | ||
918 | {0x0000a504, 0x06002223, 0x06002223, 0x04000002, 0x04000002}, | ||
919 | {0x0000a508, 0x0a022220, 0x0a022220, 0x08000004, 0x08000004}, | ||
920 | {0x0000a50c, 0x0f022223, 0x0f022223, 0x0b000200, 0x0b000200}, | ||
921 | {0x0000a510, 0x14022620, 0x14022620, 0x0f000202, 0x0f000202}, | ||
922 | {0x0000a514, 0x18022622, 0x18022622, 0x11000400, 0x11000400}, | ||
923 | {0x0000a518, 0x1b022822, 0x1b022822, 0x15000402, 0x15000402}, | ||
924 | {0x0000a51c, 0x20022842, 0x20022842, 0x19000404, 0x19000404}, | ||
925 | {0x0000a520, 0x22022c41, 0x22022c41, 0x1b000603, 0x1b000603}, | ||
926 | {0x0000a524, 0x28023042, 0x28023042, 0x1f000a02, 0x1f000a02}, | ||
927 | {0x0000a528, 0x2c023044, 0x2c023044, 0x23000a04, 0x23000a04}, | ||
928 | {0x0000a52c, 0x2f023644, 0x2f023644, 0x26000a20, 0x26000a20}, | ||
929 | {0x0000a530, 0x34025643, 0x34025643, 0x2a000e20, 0x2a000e20}, | ||
930 | {0x0000a534, 0x38025a44, 0x38025a44, 0x2e000e22, 0x2e000e22}, | ||
931 | {0x0000a538, 0x3b025e45, 0x3b025e45, 0x31000e24, 0x31000e24}, | ||
932 | {0x0000a53c, 0x41025e4a, 0x41025e4a, 0x34001640, 0x34001640}, | ||
933 | {0x0000a540, 0x48025e6c, 0x48025e6c, 0x38001660, 0x38001660}, | ||
934 | {0x0000a544, 0x4e025e8e, 0x4e025e8e, 0x3b001861, 0x3b001861}, | ||
935 | {0x0000a548, 0x53025eb2, 0x53025eb2, 0x3e001a81, 0x3e001a81}, | ||
936 | {0x0000a54c, 0x59025eb5, 0x59025eb5, 0x42001a83, 0x42001a83}, | ||
937 | {0x0000a550, 0x5f025ef6, 0x5f025ef6, 0x44001c84, 0x44001c84}, | ||
938 | {0x0000a554, 0x62025f56, 0x62025f56, 0x48001ce3, 0x48001ce3}, | ||
939 | {0x0000a558, 0x66027f56, 0x66027f56, 0x4c001ce5, 0x4c001ce5}, | ||
940 | {0x0000a55c, 0x6a029f56, 0x6a029f56, 0x50001ce9, 0x50001ce9}, | ||
941 | {0x0000a560, 0x70049f56, 0x70049f56, 0x54001ceb, 0x54001ceb}, | ||
942 | {0x0000a564, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
943 | {0x0000a568, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
944 | {0x0000a56c, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
945 | {0x0000a570, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
946 | {0x0000a574, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
947 | {0x0000a578, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
948 | {0x0000a57c, 0x7504ff56, 0x7504ff56, 0x56001eec, 0x56001eec}, | ||
949 | {0x0000a580, 0x00802220, 0x00802220, 0x00800000, 0x00800000}, | ||
950 | {0x0000a584, 0x06802223, 0x06802223, 0x04800002, 0x04800002}, | ||
951 | {0x0000a588, 0x0a822220, 0x0a822220, 0x08800004, 0x08800004}, | ||
952 | {0x0000a58c, 0x0f822223, 0x0f822223, 0x0b800200, 0x0b800200}, | ||
953 | {0x0000a590, 0x14822620, 0x14822620, 0x0f800202, 0x0f800202}, | ||
954 | {0x0000a594, 0x18822622, 0x18822622, 0x11800400, 0x11800400}, | ||
955 | {0x0000a598, 0x1b822822, 0x1b822822, 0x15800402, 0x15800402}, | ||
956 | {0x0000a59c, 0x20822842, 0x20822842, 0x19800404, 0x19800404}, | ||
957 | {0x0000a5a0, 0x22822c41, 0x22822c41, 0x1b800603, 0x1b800603}, | ||
958 | {0x0000a5a4, 0x28823042, 0x28823042, 0x1f800a02, 0x1f800a02}, | ||
959 | {0x0000a5a8, 0x2c823044, 0x2c823044, 0x23800a04, 0x23800a04}, | ||
960 | {0x0000a5ac, 0x2f823644, 0x2f823644, 0x26800a20, 0x26800a20}, | ||
961 | {0x0000a5b0, 0x34825643, 0x34825643, 0x2a800e20, 0x2a800e20}, | ||
962 | {0x0000a5b4, 0x38825a44, 0x38825a44, 0x2e800e22, 0x2e800e22}, | ||
963 | {0x0000a5b8, 0x3b825e45, 0x3b825e45, 0x31800e24, 0x31800e24}, | ||
964 | {0x0000a5bc, 0x41825e4a, 0x41825e4a, 0x34801640, 0x34801640}, | ||
965 | {0x0000a5c0, 0x48825e6c, 0x48825e6c, 0x38801660, 0x38801660}, | ||
966 | {0x0000a5c4, 0x4e825e8e, 0x4e825e8e, 0x3b801861, 0x3b801861}, | ||
967 | {0x0000a5c8, 0x53825eb2, 0x53825eb2, 0x3e801a81, 0x3e801a81}, | ||
968 | {0x0000a5cc, 0x59825eb5, 0x59825eb5, 0x42801a83, 0x42801a83}, | ||
969 | {0x0000a5d0, 0x5f825ef6, 0x5f825ef6, 0x44801c84, 0x44801c84}, | ||
970 | {0x0000a5d4, 0x62825f56, 0x62825f56, 0x48801ce3, 0x48801ce3}, | ||
971 | {0x0000a5d8, 0x66827f56, 0x66827f56, 0x4c801ce5, 0x4c801ce5}, | ||
972 | {0x0000a5dc, 0x6a829f56, 0x6a829f56, 0x50801ce9, 0x50801ce9}, | ||
973 | {0x0000a5e0, 0x70849f56, 0x70849f56, 0x54801ceb, 0x54801ceb}, | ||
974 | {0x0000a5e4, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
975 | {0x0000a5e8, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
976 | {0x0000a5ec, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
977 | {0x0000a5f0, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
978 | {0x0000a5f4, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
979 | {0x0000a5f8, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
980 | {0x0000a5fc, 0x7584ff56, 0x7584ff56, 0x56801eec, 0x56801eec}, | ||
981 | {0x00016044, 0x056db2e4, 0x056db2e4, 0x056db2e4, 0x056db2e4}, | ||
982 | {0x00016048, 0x8e480001, 0x8e480001, 0x8e480001, 0x8e480001}, | ||
983 | {0x00016068, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
984 | {0x00016444, 0x056db2e4, 0x056db2e4, 0x056db2e4, 0x056db2e4}, | ||
985 | {0x00016448, 0x8e480001, 0x8e480001, 0x8e480001, 0x8e480001}, | ||
986 | {0x00016468, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
987 | {0x00016844, 0x056db2e4, 0x056db2e4, 0x056db2e4, 0x056db2e4}, | ||
988 | {0x00016848, 0x8e480001, 0x8e480001, 0x8e480001, 0x8e480001}, | ||
989 | {0x00016868, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
990 | }; | ||
991 | |||
992 | static const u32 ar9300Common_rx_gain_table_2p2[][2] = { | ||
993 | /* Addr allmodes */ | ||
994 | {0x0000a000, 0x00010000}, | ||
995 | {0x0000a004, 0x00030002}, | ||
996 | {0x0000a008, 0x00050004}, | ||
997 | {0x0000a00c, 0x00810080}, | ||
998 | {0x0000a010, 0x00830082}, | ||
999 | {0x0000a014, 0x01810180}, | ||
1000 | {0x0000a018, 0x01830182}, | ||
1001 | {0x0000a01c, 0x01850184}, | ||
1002 | {0x0000a020, 0x01890188}, | ||
1003 | {0x0000a024, 0x018b018a}, | ||
1004 | {0x0000a028, 0x018d018c}, | ||
1005 | {0x0000a02c, 0x01910190}, | ||
1006 | {0x0000a030, 0x01930192}, | ||
1007 | {0x0000a034, 0x01950194}, | ||
1008 | {0x0000a038, 0x038a0196}, | ||
1009 | {0x0000a03c, 0x038c038b}, | ||
1010 | {0x0000a040, 0x0390038d}, | ||
1011 | {0x0000a044, 0x03920391}, | ||
1012 | {0x0000a048, 0x03940393}, | ||
1013 | {0x0000a04c, 0x03960395}, | ||
1014 | {0x0000a050, 0x00000000}, | ||
1015 | {0x0000a054, 0x00000000}, | ||
1016 | {0x0000a058, 0x00000000}, | ||
1017 | {0x0000a05c, 0x00000000}, | ||
1018 | {0x0000a060, 0x00000000}, | ||
1019 | {0x0000a064, 0x00000000}, | ||
1020 | {0x0000a068, 0x00000000}, | ||
1021 | {0x0000a06c, 0x00000000}, | ||
1022 | {0x0000a070, 0x00000000}, | ||
1023 | {0x0000a074, 0x00000000}, | ||
1024 | {0x0000a078, 0x00000000}, | ||
1025 | {0x0000a07c, 0x00000000}, | ||
1026 | {0x0000a080, 0x22222229}, | ||
1027 | {0x0000a084, 0x1d1d1d1d}, | ||
1028 | {0x0000a088, 0x1d1d1d1d}, | ||
1029 | {0x0000a08c, 0x1d1d1d1d}, | ||
1030 | {0x0000a090, 0x171d1d1d}, | ||
1031 | {0x0000a094, 0x11111717}, | ||
1032 | {0x0000a098, 0x00030311}, | ||
1033 | {0x0000a09c, 0x00000000}, | ||
1034 | {0x0000a0a0, 0x00000000}, | ||
1035 | {0x0000a0a4, 0x00000000}, | ||
1036 | {0x0000a0a8, 0x00000000}, | ||
1037 | {0x0000a0ac, 0x00000000}, | ||
1038 | {0x0000a0b0, 0x00000000}, | ||
1039 | {0x0000a0b4, 0x00000000}, | ||
1040 | {0x0000a0b8, 0x00000000}, | ||
1041 | {0x0000a0bc, 0x00000000}, | ||
1042 | {0x0000a0c0, 0x001f0000}, | ||
1043 | {0x0000a0c4, 0x01000101}, | ||
1044 | {0x0000a0c8, 0x011e011f}, | ||
1045 | {0x0000a0cc, 0x011c011d}, | ||
1046 | {0x0000a0d0, 0x02030204}, | ||
1047 | {0x0000a0d4, 0x02010202}, | ||
1048 | {0x0000a0d8, 0x021f0200}, | ||
1049 | {0x0000a0dc, 0x0302021e}, | ||
1050 | {0x0000a0e0, 0x03000301}, | ||
1051 | {0x0000a0e4, 0x031e031f}, | ||
1052 | {0x0000a0e8, 0x0402031d}, | ||
1053 | {0x0000a0ec, 0x04000401}, | ||
1054 | {0x0000a0f0, 0x041e041f}, | ||
1055 | {0x0000a0f4, 0x0502041d}, | ||
1056 | {0x0000a0f8, 0x05000501}, | ||
1057 | {0x0000a0fc, 0x051e051f}, | ||
1058 | {0x0000a100, 0x06010602}, | ||
1059 | {0x0000a104, 0x061f0600}, | ||
1060 | {0x0000a108, 0x061d061e}, | ||
1061 | {0x0000a10c, 0x07020703}, | ||
1062 | {0x0000a110, 0x07000701}, | ||
1063 | {0x0000a114, 0x00000000}, | ||
1064 | {0x0000a118, 0x00000000}, | ||
1065 | {0x0000a11c, 0x00000000}, | ||
1066 | {0x0000a120, 0x00000000}, | ||
1067 | {0x0000a124, 0x00000000}, | ||
1068 | {0x0000a128, 0x00000000}, | ||
1069 | {0x0000a12c, 0x00000000}, | ||
1070 | {0x0000a130, 0x00000000}, | ||
1071 | {0x0000a134, 0x00000000}, | ||
1072 | {0x0000a138, 0x00000000}, | ||
1073 | {0x0000a13c, 0x00000000}, | ||
1074 | {0x0000a140, 0x001f0000}, | ||
1075 | {0x0000a144, 0x01000101}, | ||
1076 | {0x0000a148, 0x011e011f}, | ||
1077 | {0x0000a14c, 0x011c011d}, | ||
1078 | {0x0000a150, 0x02030204}, | ||
1079 | {0x0000a154, 0x02010202}, | ||
1080 | {0x0000a158, 0x021f0200}, | ||
1081 | {0x0000a15c, 0x0302021e}, | ||
1082 | {0x0000a160, 0x03000301}, | ||
1083 | {0x0000a164, 0x031e031f}, | ||
1084 | {0x0000a168, 0x0402031d}, | ||
1085 | {0x0000a16c, 0x04000401}, | ||
1086 | {0x0000a170, 0x041e041f}, | ||
1087 | {0x0000a174, 0x0502041d}, | ||
1088 | {0x0000a178, 0x05000501}, | ||
1089 | {0x0000a17c, 0x051e051f}, | ||
1090 | {0x0000a180, 0x06010602}, | ||
1091 | {0x0000a184, 0x061f0600}, | ||
1092 | {0x0000a188, 0x061d061e}, | ||
1093 | {0x0000a18c, 0x07020703}, | ||
1094 | {0x0000a190, 0x07000701}, | ||
1095 | {0x0000a194, 0x00000000}, | ||
1096 | {0x0000a198, 0x00000000}, | ||
1097 | {0x0000a19c, 0x00000000}, | ||
1098 | {0x0000a1a0, 0x00000000}, | ||
1099 | {0x0000a1a4, 0x00000000}, | ||
1100 | {0x0000a1a8, 0x00000000}, | ||
1101 | {0x0000a1ac, 0x00000000}, | ||
1102 | {0x0000a1b0, 0x00000000}, | ||
1103 | {0x0000a1b4, 0x00000000}, | ||
1104 | {0x0000a1b8, 0x00000000}, | ||
1105 | {0x0000a1bc, 0x00000000}, | ||
1106 | {0x0000a1c0, 0x00000000}, | ||
1107 | {0x0000a1c4, 0x00000000}, | ||
1108 | {0x0000a1c8, 0x00000000}, | ||
1109 | {0x0000a1cc, 0x00000000}, | ||
1110 | {0x0000a1d0, 0x00000000}, | ||
1111 | {0x0000a1d4, 0x00000000}, | ||
1112 | {0x0000a1d8, 0x00000000}, | ||
1113 | {0x0000a1dc, 0x00000000}, | ||
1114 | {0x0000a1e0, 0x00000000}, | ||
1115 | {0x0000a1e4, 0x00000000}, | ||
1116 | {0x0000a1e8, 0x00000000}, | ||
1117 | {0x0000a1ec, 0x00000000}, | ||
1118 | {0x0000a1f0, 0x00000396}, | ||
1119 | {0x0000a1f4, 0x00000396}, | ||
1120 | {0x0000a1f8, 0x00000396}, | ||
1121 | {0x0000a1fc, 0x00000196}, | ||
1122 | {0x0000b000, 0x00010000}, | ||
1123 | {0x0000b004, 0x00030002}, | ||
1124 | {0x0000b008, 0x00050004}, | ||
1125 | {0x0000b00c, 0x00810080}, | ||
1126 | {0x0000b010, 0x00830082}, | ||
1127 | {0x0000b014, 0x01810180}, | ||
1128 | {0x0000b018, 0x01830182}, | ||
1129 | {0x0000b01c, 0x01850184}, | ||
1130 | {0x0000b020, 0x02810280}, | ||
1131 | {0x0000b024, 0x02830282}, | ||
1132 | {0x0000b028, 0x02850284}, | ||
1133 | {0x0000b02c, 0x02890288}, | ||
1134 | {0x0000b030, 0x028b028a}, | ||
1135 | {0x0000b034, 0x0388028c}, | ||
1136 | {0x0000b038, 0x038a0389}, | ||
1137 | {0x0000b03c, 0x038c038b}, | ||
1138 | {0x0000b040, 0x0390038d}, | ||
1139 | {0x0000b044, 0x03920391}, | ||
1140 | {0x0000b048, 0x03940393}, | ||
1141 | {0x0000b04c, 0x03960395}, | ||
1142 | {0x0000b050, 0x00000000}, | ||
1143 | {0x0000b054, 0x00000000}, | ||
1144 | {0x0000b058, 0x00000000}, | ||
1145 | {0x0000b05c, 0x00000000}, | ||
1146 | {0x0000b060, 0x00000000}, | ||
1147 | {0x0000b064, 0x00000000}, | ||
1148 | {0x0000b068, 0x00000000}, | ||
1149 | {0x0000b06c, 0x00000000}, | ||
1150 | {0x0000b070, 0x00000000}, | ||
1151 | {0x0000b074, 0x00000000}, | ||
1152 | {0x0000b078, 0x00000000}, | ||
1153 | {0x0000b07c, 0x00000000}, | ||
1154 | {0x0000b080, 0x32323232}, | ||
1155 | {0x0000b084, 0x2f2f3232}, | ||
1156 | {0x0000b088, 0x23282a2d}, | ||
1157 | {0x0000b08c, 0x1c1e2123}, | ||
1158 | {0x0000b090, 0x14171919}, | ||
1159 | {0x0000b094, 0x0e0e1214}, | ||
1160 | {0x0000b098, 0x03050707}, | ||
1161 | {0x0000b09c, 0x00030303}, | ||
1162 | {0x0000b0a0, 0x00000000}, | ||
1163 | {0x0000b0a4, 0x00000000}, | ||
1164 | {0x0000b0a8, 0x00000000}, | ||
1165 | {0x0000b0ac, 0x00000000}, | ||
1166 | {0x0000b0b0, 0x00000000}, | ||
1167 | {0x0000b0b4, 0x00000000}, | ||
1168 | {0x0000b0b8, 0x00000000}, | ||
1169 | {0x0000b0bc, 0x00000000}, | ||
1170 | {0x0000b0c0, 0x003f0020}, | ||
1171 | {0x0000b0c4, 0x00400041}, | ||
1172 | {0x0000b0c8, 0x0140005f}, | ||
1173 | {0x0000b0cc, 0x0160015f}, | ||
1174 | {0x0000b0d0, 0x017e017f}, | ||
1175 | {0x0000b0d4, 0x02410242}, | ||
1176 | {0x0000b0d8, 0x025f0240}, | ||
1177 | {0x0000b0dc, 0x027f0260}, | ||
1178 | {0x0000b0e0, 0x0341027e}, | ||
1179 | {0x0000b0e4, 0x035f0340}, | ||
1180 | {0x0000b0e8, 0x037f0360}, | ||
1181 | {0x0000b0ec, 0x04400441}, | ||
1182 | {0x0000b0f0, 0x0460045f}, | ||
1183 | {0x0000b0f4, 0x0541047f}, | ||
1184 | {0x0000b0f8, 0x055f0540}, | ||
1185 | {0x0000b0fc, 0x057f0560}, | ||
1186 | {0x0000b100, 0x06400641}, | ||
1187 | {0x0000b104, 0x0660065f}, | ||
1188 | {0x0000b108, 0x067e067f}, | ||
1189 | {0x0000b10c, 0x07410742}, | ||
1190 | {0x0000b110, 0x075f0740}, | ||
1191 | {0x0000b114, 0x077f0760}, | ||
1192 | {0x0000b118, 0x07800781}, | ||
1193 | {0x0000b11c, 0x07a0079f}, | ||
1194 | {0x0000b120, 0x07c107bf}, | ||
1195 | {0x0000b124, 0x000007c0}, | ||
1196 | {0x0000b128, 0x00000000}, | ||
1197 | {0x0000b12c, 0x00000000}, | ||
1198 | {0x0000b130, 0x00000000}, | ||
1199 | {0x0000b134, 0x00000000}, | ||
1200 | {0x0000b138, 0x00000000}, | ||
1201 | {0x0000b13c, 0x00000000}, | ||
1202 | {0x0000b140, 0x003f0020}, | ||
1203 | {0x0000b144, 0x00400041}, | ||
1204 | {0x0000b148, 0x0140005f}, | ||
1205 | {0x0000b14c, 0x0160015f}, | ||
1206 | {0x0000b150, 0x017e017f}, | ||
1207 | {0x0000b154, 0x02410242}, | ||
1208 | {0x0000b158, 0x025f0240}, | ||
1209 | {0x0000b15c, 0x027f0260}, | ||
1210 | {0x0000b160, 0x0341027e}, | ||
1211 | {0x0000b164, 0x035f0340}, | ||
1212 | {0x0000b168, 0x037f0360}, | ||
1213 | {0x0000b16c, 0x04400441}, | ||
1214 | {0x0000b170, 0x0460045f}, | ||
1215 | {0x0000b174, 0x0541047f}, | ||
1216 | {0x0000b178, 0x055f0540}, | ||
1217 | {0x0000b17c, 0x057f0560}, | ||
1218 | {0x0000b180, 0x06400641}, | ||
1219 | {0x0000b184, 0x0660065f}, | ||
1220 | {0x0000b188, 0x067e067f}, | ||
1221 | {0x0000b18c, 0x07410742}, | ||
1222 | {0x0000b190, 0x075f0740}, | ||
1223 | {0x0000b194, 0x077f0760}, | ||
1224 | {0x0000b198, 0x07800781}, | ||
1225 | {0x0000b19c, 0x07a0079f}, | ||
1226 | {0x0000b1a0, 0x07c107bf}, | ||
1227 | {0x0000b1a4, 0x000007c0}, | ||
1228 | {0x0000b1a8, 0x00000000}, | ||
1229 | {0x0000b1ac, 0x00000000}, | ||
1230 | {0x0000b1b0, 0x00000000}, | ||
1231 | {0x0000b1b4, 0x00000000}, | ||
1232 | {0x0000b1b8, 0x00000000}, | ||
1233 | {0x0000b1bc, 0x00000000}, | ||
1234 | {0x0000b1c0, 0x00000000}, | ||
1235 | {0x0000b1c4, 0x00000000}, | ||
1236 | {0x0000b1c8, 0x00000000}, | ||
1237 | {0x0000b1cc, 0x00000000}, | ||
1238 | {0x0000b1d0, 0x00000000}, | ||
1239 | {0x0000b1d4, 0x00000000}, | ||
1240 | {0x0000b1d8, 0x00000000}, | ||
1241 | {0x0000b1dc, 0x00000000}, | ||
1242 | {0x0000b1e0, 0x00000000}, | ||
1243 | {0x0000b1e4, 0x00000000}, | ||
1244 | {0x0000b1e8, 0x00000000}, | ||
1245 | {0x0000b1ec, 0x00000000}, | ||
1246 | {0x0000b1f0, 0x00000396}, | ||
1247 | {0x0000b1f4, 0x00000396}, | ||
1248 | {0x0000b1f8, 0x00000396}, | ||
1249 | {0x0000b1fc, 0x00000196}, | ||
1250 | }; | ||
1251 | |||
1252 | static const u32 ar9300Modes_low_ob_db_tx_gain_table_2p2[][5] = { | ||
1253 | /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ | ||
1254 | {0x0000a410, 0x000050d9, 0x000050d9, 0x000050d9, 0x000050d9}, | ||
1255 | {0x0000a500, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | ||
1256 | {0x0000a504, 0x06000003, 0x06000003, 0x04000002, 0x04000002}, | ||
1257 | {0x0000a508, 0x0a000020, 0x0a000020, 0x08000004, 0x08000004}, | ||
1258 | {0x0000a50c, 0x10000023, 0x10000023, 0x0b000200, 0x0b000200}, | ||
1259 | {0x0000a510, 0x16000220, 0x16000220, 0x0f000202, 0x0f000202}, | ||
1260 | {0x0000a514, 0x1c000223, 0x1c000223, 0x12000400, 0x12000400}, | ||
1261 | {0x0000a518, 0x21002220, 0x21002220, 0x16000402, 0x16000402}, | ||
1262 | {0x0000a51c, 0x27002223, 0x27002223, 0x19000404, 0x19000404}, | ||
1263 | {0x0000a520, 0x2b022220, 0x2b022220, 0x1c000603, 0x1c000603}, | ||
1264 | {0x0000a524, 0x2f022222, 0x2f022222, 0x21000a02, 0x21000a02}, | ||
1265 | {0x0000a528, 0x34022225, 0x34022225, 0x25000a04, 0x25000a04}, | ||
1266 | {0x0000a52c, 0x3a02222a, 0x3a02222a, 0x28000a20, 0x28000a20}, | ||
1267 | {0x0000a530, 0x3e02222c, 0x3e02222c, 0x2c000e20, 0x2c000e20}, | ||
1268 | {0x0000a534, 0x4202242a, 0x4202242a, 0x30000e22, 0x30000e22}, | ||
1269 | {0x0000a538, 0x4702244a, 0x4702244a, 0x34000e24, 0x34000e24}, | ||
1270 | {0x0000a53c, 0x4b02244c, 0x4b02244c, 0x38001640, 0x38001640}, | ||
1271 | {0x0000a540, 0x4e02246c, 0x4e02246c, 0x3c001660, 0x3c001660}, | ||
1272 | {0x0000a544, 0x5302266c, 0x5302266c, 0x3f001861, 0x3f001861}, | ||
1273 | {0x0000a548, 0x5702286c, 0x5702286c, 0x43001a81, 0x43001a81}, | ||
1274 | {0x0000a54c, 0x5c02486b, 0x5c02486b, 0x47001a83, 0x47001a83}, | ||
1275 | {0x0000a550, 0x61024a6c, 0x61024a6c, 0x4a001c84, 0x4a001c84}, | ||
1276 | {0x0000a554, 0x66026a6c, 0x66026a6c, 0x4e001ce3, 0x4e001ce3}, | ||
1277 | {0x0000a558, 0x6b026e6c, 0x6b026e6c, 0x52001ce5, 0x52001ce5}, | ||
1278 | {0x0000a55c, 0x7002708c, 0x7002708c, 0x56001ce9, 0x56001ce9}, | ||
1279 | {0x0000a560, 0x7302b08a, 0x7302b08a, 0x5a001ceb, 0x5a001ceb}, | ||
1280 | {0x0000a564, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1281 | {0x0000a568, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1282 | {0x0000a56c, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1283 | {0x0000a570, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1284 | {0x0000a574, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1285 | {0x0000a578, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1286 | {0x0000a57c, 0x7702b08c, 0x7702b08c, 0x5d001eec, 0x5d001eec}, | ||
1287 | {0x0000a580, 0x00800000, 0x00800000, 0x00800000, 0x00800000}, | ||
1288 | {0x0000a584, 0x06800003, 0x06800003, 0x04800002, 0x04800002}, | ||
1289 | {0x0000a588, 0x0a800020, 0x0a800020, 0x08800004, 0x08800004}, | ||
1290 | {0x0000a58c, 0x10800023, 0x10800023, 0x0b800200, 0x0b800200}, | ||
1291 | {0x0000a590, 0x16800220, 0x16800220, 0x0f800202, 0x0f800202}, | ||
1292 | {0x0000a594, 0x1c800223, 0x1c800223, 0x12800400, 0x12800400}, | ||
1293 | {0x0000a598, 0x21802220, 0x21802220, 0x16800402, 0x16800402}, | ||
1294 | {0x0000a59c, 0x27802223, 0x27802223, 0x19800404, 0x19800404}, | ||
1295 | {0x0000a5a0, 0x2b822220, 0x2b822220, 0x1c800603, 0x1c800603}, | ||
1296 | {0x0000a5a4, 0x2f822222, 0x2f822222, 0x21800a02, 0x21800a02}, | ||
1297 | {0x0000a5a8, 0x34822225, 0x34822225, 0x25800a04, 0x25800a04}, | ||
1298 | {0x0000a5ac, 0x3a82222a, 0x3a82222a, 0x28800a20, 0x28800a20}, | ||
1299 | {0x0000a5b0, 0x3e82222c, 0x3e82222c, 0x2c800e20, 0x2c800e20}, | ||
1300 | {0x0000a5b4, 0x4282242a, 0x4282242a, 0x30800e22, 0x30800e22}, | ||
1301 | {0x0000a5b8, 0x4782244a, 0x4782244a, 0x34800e24, 0x34800e24}, | ||
1302 | {0x0000a5bc, 0x4b82244c, 0x4b82244c, 0x38801640, 0x38801640}, | ||
1303 | {0x0000a5c0, 0x4e82246c, 0x4e82246c, 0x3c801660, 0x3c801660}, | ||
1304 | {0x0000a5c4, 0x5382266c, 0x5382266c, 0x3f801861, 0x3f801861}, | ||
1305 | {0x0000a5c8, 0x5782286c, 0x5782286c, 0x43801a81, 0x43801a81}, | ||
1306 | {0x0000a5cc, 0x5c82486b, 0x5c82486b, 0x47801a83, 0x47801a83}, | ||
1307 | {0x0000a5d0, 0x61824a6c, 0x61824a6c, 0x4a801c84, 0x4a801c84}, | ||
1308 | {0x0000a5d4, 0x66826a6c, 0x66826a6c, 0x4e801ce3, 0x4e801ce3}, | ||
1309 | {0x0000a5d8, 0x6b826e6c, 0x6b826e6c, 0x52801ce5, 0x52801ce5}, | ||
1310 | {0x0000a5dc, 0x7082708c, 0x7082708c, 0x56801ce9, 0x56801ce9}, | ||
1311 | {0x0000a5e0, 0x7382b08a, 0x7382b08a, 0x5a801ceb, 0x5a801ceb}, | ||
1312 | {0x0000a5e4, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1313 | {0x0000a5e8, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1314 | {0x0000a5ec, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1315 | {0x0000a5f0, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1316 | {0x0000a5f4, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1317 | {0x0000a5f8, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1318 | {0x0000a5fc, 0x7782b08c, 0x7782b08c, 0x5d801eec, 0x5d801eec}, | ||
1319 | {0x00016044, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
1320 | {0x00016048, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, | ||
1321 | {0x00016068, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
1322 | {0x00016444, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
1323 | {0x00016448, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, | ||
1324 | {0x00016468, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
1325 | {0x00016844, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, | ||
1326 | {0x00016848, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, | ||
1327 | {0x00016868, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, | ||
1328 | }; | ||
1329 | |||
1330 | static const u32 ar9300_2p2_mac_core[][2] = { | ||
1331 | /* Addr allmodes */ | ||
1332 | {0x00000008, 0x00000000}, | ||
1333 | {0x00000030, 0x00020085}, | ||
1334 | {0x00000034, 0x00000005}, | ||
1335 | {0x00000040, 0x00000000}, | ||
1336 | {0x00000044, 0x00000000}, | ||
1337 | {0x00000048, 0x00000008}, | ||
1338 | {0x0000004c, 0x00000010}, | ||
1339 | {0x00000050, 0x00000000}, | ||
1340 | {0x00001040, 0x002ffc0f}, | ||
1341 | {0x00001044, 0x002ffc0f}, | ||
1342 | {0x00001048, 0x002ffc0f}, | ||
1343 | {0x0000104c, 0x002ffc0f}, | ||
1344 | {0x00001050, 0x002ffc0f}, | ||
1345 | {0x00001054, 0x002ffc0f}, | ||
1346 | {0x00001058, 0x002ffc0f}, | ||
1347 | {0x0000105c, 0x002ffc0f}, | ||
1348 | {0x00001060, 0x002ffc0f}, | ||
1349 | {0x00001064, 0x002ffc0f}, | ||
1350 | {0x000010f0, 0x00000100}, | ||
1351 | {0x00001270, 0x00000000}, | ||
1352 | {0x000012b0, 0x00000000}, | ||
1353 | {0x000012f0, 0x00000000}, | ||
1354 | {0x0000143c, 0x00000000}, | ||
1355 | {0x0000147c, 0x00000000}, | ||
1356 | {0x00008000, 0x00000000}, | ||
1357 | {0x00008004, 0x00000000}, | ||
1358 | {0x00008008, 0x00000000}, | ||
1359 | {0x0000800c, 0x00000000}, | ||
1360 | {0x00008018, 0x00000000}, | ||
1361 | {0x00008020, 0x00000000}, | ||
1362 | {0x00008038, 0x00000000}, | ||
1363 | {0x0000803c, 0x00000000}, | ||
1364 | {0x00008040, 0x00000000}, | ||
1365 | {0x00008044, 0x00000000}, | ||
1366 | {0x00008048, 0x00000000}, | ||
1367 | {0x0000804c, 0xffffffff}, | ||
1368 | {0x00008054, 0x00000000}, | ||
1369 | {0x00008058, 0x00000000}, | ||
1370 | {0x0000805c, 0x000fc78f}, | ||
1371 | {0x00008060, 0x0000000f}, | ||
1372 | {0x00008064, 0x00000000}, | ||
1373 | {0x00008070, 0x00000310}, | ||
1374 | {0x00008074, 0x00000020}, | ||
1375 | {0x00008078, 0x00000000}, | ||
1376 | {0x0000809c, 0x0000000f}, | ||
1377 | {0x000080a0, 0x00000000}, | ||
1378 | {0x000080a4, 0x02ff0000}, | ||
1379 | {0x000080a8, 0x0e070605}, | ||
1380 | {0x000080ac, 0x0000000d}, | ||
1381 | {0x000080b0, 0x00000000}, | ||
1382 | {0x000080b4, 0x00000000}, | ||
1383 | {0x000080b8, 0x00000000}, | ||
1384 | {0x000080bc, 0x00000000}, | ||
1385 | {0x000080c0, 0x2a800000}, | ||
1386 | {0x000080c4, 0x06900168}, | ||
1387 | {0x000080c8, 0x13881c20}, | ||
1388 | {0x000080cc, 0x01f40000}, | ||
1389 | {0x000080d0, 0x00252500}, | ||
1390 | {0x000080d4, 0x00a00000}, | ||
1391 | {0x000080d8, 0x00400000}, | ||
1392 | {0x000080dc, 0x00000000}, | ||
1393 | {0x000080e0, 0xffffffff}, | ||
1394 | {0x000080e4, 0x0000ffff}, | ||
1395 | {0x000080e8, 0x3f3f3f3f}, | ||
1396 | {0x000080ec, 0x00000000}, | ||
1397 | {0x000080f0, 0x00000000}, | ||
1398 | {0x000080f4, 0x00000000}, | ||
1399 | {0x000080fc, 0x00020000}, | ||
1400 | {0x00008100, 0x00000000}, | ||
1401 | {0x00008108, 0x00000052}, | ||
1402 | {0x0000810c, 0x00000000}, | ||
1403 | {0x00008110, 0x00000000}, | ||
1404 | {0x00008114, 0x000007ff}, | ||
1405 | {0x00008118, 0x000000aa}, | ||
1406 | {0x0000811c, 0x00003210}, | ||
1407 | {0x00008124, 0x00000000}, | ||
1408 | {0x00008128, 0x00000000}, | ||
1409 | {0x0000812c, 0x00000000}, | ||
1410 | {0x00008130, 0x00000000}, | ||
1411 | {0x00008134, 0x00000000}, | ||
1412 | {0x00008138, 0x00000000}, | ||
1413 | {0x0000813c, 0x0000ffff}, | ||
1414 | {0x00008144, 0xffffffff}, | ||
1415 | {0x00008168, 0x00000000}, | ||
1416 | {0x0000816c, 0x00000000}, | ||
1417 | {0x00008170, 0x18486200}, | ||
1418 | {0x00008174, 0x33332210}, | ||
1419 | {0x00008178, 0x00000000}, | ||
1420 | {0x0000817c, 0x00020000}, | ||
1421 | {0x000081c0, 0x00000000}, | ||
1422 | {0x000081c4, 0x33332210}, | ||
1423 | {0x000081c8, 0x00000000}, | ||
1424 | {0x000081cc, 0x00000000}, | ||
1425 | {0x000081d4, 0x00000000}, | ||
1426 | {0x000081ec, 0x00000000}, | ||
1427 | {0x000081f0, 0x00000000}, | ||
1428 | {0x000081f4, 0x00000000}, | ||
1429 | {0x000081f8, 0x00000000}, | ||
1430 | {0x000081fc, 0x00000000}, | ||
1431 | {0x00008240, 0x00100000}, | ||
1432 | {0x00008244, 0x0010f424}, | ||
1433 | {0x00008248, 0x00000800}, | ||
1434 | {0x0000824c, 0x0001e848}, | ||
1435 | {0x00008250, 0x00000000}, | ||
1436 | {0x00008254, 0x00000000}, | ||
1437 | {0x00008258, 0x00000000}, | ||
1438 | {0x0000825c, 0x40000000}, | ||
1439 | {0x00008260, 0x00080922}, | ||
1440 | {0x00008264, 0x9bc00010}, | ||
1441 | {0x00008268, 0xffffffff}, | ||
1442 | {0x0000826c, 0x0000ffff}, | ||
1443 | {0x00008270, 0x00000000}, | ||
1444 | {0x00008274, 0x40000000}, | ||
1445 | {0x00008278, 0x003e4180}, | ||
1446 | {0x0000827c, 0x00000004}, | ||
1447 | {0x00008284, 0x0000002c}, | ||
1448 | {0x00008288, 0x0000002c}, | ||
1449 | {0x0000828c, 0x000000ff}, | ||
1450 | {0x00008294, 0x00000000}, | ||
1451 | {0x00008298, 0x00000000}, | ||
1452 | {0x0000829c, 0x00000000}, | ||
1453 | {0x00008300, 0x00000140}, | ||
1454 | {0x00008314, 0x00000000}, | ||
1455 | {0x0000831c, 0x0000010d}, | ||
1456 | {0x00008328, 0x00000000}, | ||
1457 | {0x0000832c, 0x00000007}, | ||
1458 | {0x00008330, 0x00000302}, | ||
1459 | {0x00008334, 0x00000700}, | ||
1460 | {0x00008338, 0x00ff0000}, | ||
1461 | {0x0000833c, 0x02400000}, | ||
1462 | {0x00008340, 0x000107ff}, | ||
1463 | {0x00008344, 0xaa48105b}, | ||
1464 | {0x00008348, 0x008f0000}, | ||
1465 | {0x0000835c, 0x00000000}, | ||
1466 | {0x00008360, 0xffffffff}, | ||
1467 | {0x00008364, 0xffffffff}, | ||
1468 | {0x00008368, 0x00000000}, | ||
1469 | {0x00008370, 0x00000000}, | ||
1470 | {0x00008374, 0x000000ff}, | ||
1471 | {0x00008378, 0x00000000}, | ||
1472 | {0x0000837c, 0x00000000}, | ||
1473 | {0x00008380, 0xffffffff}, | ||
1474 | {0x00008384, 0xffffffff}, | ||
1475 | {0x00008390, 0xffffffff}, | ||
1476 | {0x00008394, 0xffffffff}, | ||
1477 | {0x00008398, 0x00000000}, | ||
1478 | {0x0000839c, 0x00000000}, | ||
1479 | {0x000083a0, 0x00000000}, | ||
1480 | {0x000083a4, 0x0000fa14}, | ||
1481 | {0x000083a8, 0x000f0c00}, | ||
1482 | {0x000083ac, 0x33332210}, | ||
1483 | {0x000083b0, 0x33332210}, | ||
1484 | {0x000083b4, 0x33332210}, | ||
1485 | {0x000083b8, 0x33332210}, | ||
1486 | {0x000083bc, 0x00000000}, | ||
1487 | {0x000083c0, 0x00000000}, | ||
1488 | {0x000083c4, 0x00000000}, | ||
1489 | {0x000083c8, 0x00000000}, | ||
1490 | {0x000083cc, 0x00000200}, | ||
1491 | {0x000083d0, 0x000301ff}, | ||
1492 | }; | ||
1493 | |||
1494 | static const u32 ar9300Common_wo_xlna_rx_gain_table_2p2[][2] = { | ||
1495 | /* Addr allmodes */ | ||
1496 | {0x0000a000, 0x00010000}, | ||
1497 | {0x0000a004, 0x00030002}, | ||
1498 | {0x0000a008, 0x00050004}, | ||
1499 | {0x0000a00c, 0x00810080}, | ||
1500 | {0x0000a010, 0x00830082}, | ||
1501 | {0x0000a014, 0x01810180}, | ||
1502 | {0x0000a018, 0x01830182}, | ||
1503 | {0x0000a01c, 0x01850184}, | ||
1504 | {0x0000a020, 0x01890188}, | ||
1505 | {0x0000a024, 0x018b018a}, | ||
1506 | {0x0000a028, 0x018d018c}, | ||
1507 | {0x0000a02c, 0x03820190}, | ||
1508 | {0x0000a030, 0x03840383}, | ||
1509 | {0x0000a034, 0x03880385}, | ||
1510 | {0x0000a038, 0x038a0389}, | ||
1511 | {0x0000a03c, 0x038c038b}, | ||
1512 | {0x0000a040, 0x0390038d}, | ||
1513 | {0x0000a044, 0x03920391}, | ||
1514 | {0x0000a048, 0x03940393}, | ||
1515 | {0x0000a04c, 0x03960395}, | ||
1516 | {0x0000a050, 0x00000000}, | ||
1517 | {0x0000a054, 0x00000000}, | ||
1518 | {0x0000a058, 0x00000000}, | ||
1519 | {0x0000a05c, 0x00000000}, | ||
1520 | {0x0000a060, 0x00000000}, | ||
1521 | {0x0000a064, 0x00000000}, | ||
1522 | {0x0000a068, 0x00000000}, | ||
1523 | {0x0000a06c, 0x00000000}, | ||
1524 | {0x0000a070, 0x00000000}, | ||
1525 | {0x0000a074, 0x00000000}, | ||
1526 | {0x0000a078, 0x00000000}, | ||
1527 | {0x0000a07c, 0x00000000}, | ||
1528 | {0x0000a080, 0x29292929}, | ||
1529 | {0x0000a084, 0x29292929}, | ||
1530 | {0x0000a088, 0x29292929}, | ||
1531 | {0x0000a08c, 0x29292929}, | ||
1532 | {0x0000a090, 0x22292929}, | ||
1533 | {0x0000a094, 0x1d1d2222}, | ||
1534 | {0x0000a098, 0x0c111117}, | ||
1535 | {0x0000a09c, 0x00030303}, | ||
1536 | {0x0000a0a0, 0x00000000}, | ||
1537 | {0x0000a0a4, 0x00000000}, | ||
1538 | {0x0000a0a8, 0x00000000}, | ||
1539 | {0x0000a0ac, 0x00000000}, | ||
1540 | {0x0000a0b0, 0x00000000}, | ||
1541 | {0x0000a0b4, 0x00000000}, | ||
1542 | {0x0000a0b8, 0x00000000}, | ||
1543 | {0x0000a0bc, 0x00000000}, | ||
1544 | {0x0000a0c0, 0x001f0000}, | ||
1545 | {0x0000a0c4, 0x01000101}, | ||
1546 | {0x0000a0c8, 0x011e011f}, | ||
1547 | {0x0000a0cc, 0x011c011d}, | ||
1548 | {0x0000a0d0, 0x02030204}, | ||
1549 | {0x0000a0d4, 0x02010202}, | ||
1550 | {0x0000a0d8, 0x021f0200}, | ||
1551 | {0x0000a0dc, 0x0302021e}, | ||
1552 | {0x0000a0e0, 0x03000301}, | ||
1553 | {0x0000a0e4, 0x031e031f}, | ||
1554 | {0x0000a0e8, 0x0402031d}, | ||
1555 | {0x0000a0ec, 0x04000401}, | ||
1556 | {0x0000a0f0, 0x041e041f}, | ||
1557 | {0x0000a0f4, 0x0502041d}, | ||
1558 | {0x0000a0f8, 0x05000501}, | ||
1559 | {0x0000a0fc, 0x051e051f}, | ||
1560 | {0x0000a100, 0x06010602}, | ||
1561 | {0x0000a104, 0x061f0600}, | ||
1562 | {0x0000a108, 0x061d061e}, | ||
1563 | {0x0000a10c, 0x07020703}, | ||
1564 | {0x0000a110, 0x07000701}, | ||
1565 | {0x0000a114, 0x00000000}, | ||
1566 | {0x0000a118, 0x00000000}, | ||
1567 | {0x0000a11c, 0x00000000}, | ||
1568 | {0x0000a120, 0x00000000}, | ||
1569 | {0x0000a124, 0x00000000}, | ||
1570 | {0x0000a128, 0x00000000}, | ||
1571 | {0x0000a12c, 0x00000000}, | ||
1572 | {0x0000a130, 0x00000000}, | ||
1573 | {0x0000a134, 0x00000000}, | ||
1574 | {0x0000a138, 0x00000000}, | ||
1575 | {0x0000a13c, 0x00000000}, | ||
1576 | {0x0000a140, 0x001f0000}, | ||
1577 | {0x0000a144, 0x01000101}, | ||
1578 | {0x0000a148, 0x011e011f}, | ||
1579 | {0x0000a14c, 0x011c011d}, | ||
1580 | {0x0000a150, 0x02030204}, | ||
1581 | {0x0000a154, 0x02010202}, | ||
1582 | {0x0000a158, 0x021f0200}, | ||
1583 | {0x0000a15c, 0x0302021e}, | ||
1584 | {0x0000a160, 0x03000301}, | ||
1585 | {0x0000a164, 0x031e031f}, | ||
1586 | {0x0000a168, 0x0402031d}, | ||
1587 | {0x0000a16c, 0x04000401}, | ||
1588 | {0x0000a170, 0x041e041f}, | ||
1589 | {0x0000a174, 0x0502041d}, | ||
1590 | {0x0000a178, 0x05000501}, | ||
1591 | {0x0000a17c, 0x051e051f}, | ||
1592 | {0x0000a180, 0x06010602}, | ||
1593 | {0x0000a184, 0x061f0600}, | ||
1594 | {0x0000a188, 0x061d061e}, | ||
1595 | {0x0000a18c, 0x07020703}, | ||
1596 | {0x0000a190, 0x07000701}, | ||
1597 | {0x0000a194, 0x00000000}, | ||
1598 | {0x0000a198, 0x00000000}, | ||
1599 | {0x0000a19c, 0x00000000}, | ||
1600 | {0x0000a1a0, 0x00000000}, | ||
1601 | {0x0000a1a4, 0x00000000}, | ||
1602 | {0x0000a1a8, 0x00000000}, | ||
1603 | {0x0000a1ac, 0x00000000}, | ||
1604 | {0x0000a1b0, 0x00000000}, | ||
1605 | {0x0000a1b4, 0x00000000}, | ||
1606 | {0x0000a1b8, 0x00000000}, | ||
1607 | {0x0000a1bc, 0x00000000}, | ||
1608 | {0x0000a1c0, 0x00000000}, | ||
1609 | {0x0000a1c4, 0x00000000}, | ||
1610 | {0x0000a1c8, 0x00000000}, | ||
1611 | {0x0000a1cc, 0x00000000}, | ||
1612 | {0x0000a1d0, 0x00000000}, | ||
1613 | {0x0000a1d4, 0x00000000}, | ||
1614 | {0x0000a1d8, 0x00000000}, | ||
1615 | {0x0000a1dc, 0x00000000}, | ||
1616 | {0x0000a1e0, 0x00000000}, | ||
1617 | {0x0000a1e4, 0x00000000}, | ||
1618 | {0x0000a1e8, 0x00000000}, | ||
1619 | {0x0000a1ec, 0x00000000}, | ||
1620 | {0x0000a1f0, 0x00000396}, | ||
1621 | {0x0000a1f4, 0x00000396}, | ||
1622 | {0x0000a1f8, 0x00000396}, | ||
1623 | {0x0000a1fc, 0x00000196}, | ||
1624 | {0x0000b000, 0x00010000}, | ||
1625 | {0x0000b004, 0x00030002}, | ||
1626 | {0x0000b008, 0x00050004}, | ||
1627 | {0x0000b00c, 0x00810080}, | ||
1628 | {0x0000b010, 0x00830082}, | ||
1629 | {0x0000b014, 0x01810180}, | ||
1630 | {0x0000b018, 0x01830182}, | ||
1631 | {0x0000b01c, 0x01850184}, | ||
1632 | {0x0000b020, 0x02810280}, | ||
1633 | {0x0000b024, 0x02830282}, | ||
1634 | {0x0000b028, 0x02850284}, | ||
1635 | {0x0000b02c, 0x02890288}, | ||
1636 | {0x0000b030, 0x028b028a}, | ||
1637 | {0x0000b034, 0x0388028c}, | ||
1638 | {0x0000b038, 0x038a0389}, | ||
1639 | {0x0000b03c, 0x038c038b}, | ||
1640 | {0x0000b040, 0x0390038d}, | ||
1641 | {0x0000b044, 0x03920391}, | ||
1642 | {0x0000b048, 0x03940393}, | ||
1643 | {0x0000b04c, 0x03960395}, | ||
1644 | {0x0000b050, 0x00000000}, | ||
1645 | {0x0000b054, 0x00000000}, | ||
1646 | {0x0000b058, 0x00000000}, | ||
1647 | {0x0000b05c, 0x00000000}, | ||
1648 | {0x0000b060, 0x00000000}, | ||
1649 | {0x0000b064, 0x00000000}, | ||
1650 | {0x0000b068, 0x00000000}, | ||
1651 | {0x0000b06c, 0x00000000}, | ||
1652 | {0x0000b070, 0x00000000}, | ||
1653 | {0x0000b074, 0x00000000}, | ||
1654 | {0x0000b078, 0x00000000}, | ||
1655 | {0x0000b07c, 0x00000000}, | ||
1656 | {0x0000b080, 0x32323232}, | ||
1657 | {0x0000b084, 0x2f2f3232}, | ||
1658 | {0x0000b088, 0x23282a2d}, | ||
1659 | {0x0000b08c, 0x1c1e2123}, | ||
1660 | {0x0000b090, 0x14171919}, | ||
1661 | {0x0000b094, 0x0e0e1214}, | ||
1662 | {0x0000b098, 0x03050707}, | ||
1663 | {0x0000b09c, 0x00030303}, | ||
1664 | {0x0000b0a0, 0x00000000}, | ||
1665 | {0x0000b0a4, 0x00000000}, | ||
1666 | {0x0000b0a8, 0x00000000}, | ||
1667 | {0x0000b0ac, 0x00000000}, | ||
1668 | {0x0000b0b0, 0x00000000}, | ||
1669 | {0x0000b0b4, 0x00000000}, | ||
1670 | {0x0000b0b8, 0x00000000}, | ||
1671 | {0x0000b0bc, 0x00000000}, | ||
1672 | {0x0000b0c0, 0x003f0020}, | ||
1673 | {0x0000b0c4, 0x00400041}, | ||
1674 | {0x0000b0c8, 0x0140005f}, | ||
1675 | {0x0000b0cc, 0x0160015f}, | ||
1676 | {0x0000b0d0, 0x017e017f}, | ||
1677 | {0x0000b0d4, 0x02410242}, | ||
1678 | {0x0000b0d8, 0x025f0240}, | ||
1679 | {0x0000b0dc, 0x027f0260}, | ||
1680 | {0x0000b0e0, 0x0341027e}, | ||
1681 | {0x0000b0e4, 0x035f0340}, | ||
1682 | {0x0000b0e8, 0x037f0360}, | ||
1683 | {0x0000b0ec, 0x04400441}, | ||
1684 | {0x0000b0f0, 0x0460045f}, | ||
1685 | {0x0000b0f4, 0x0541047f}, | ||
1686 | {0x0000b0f8, 0x055f0540}, | ||
1687 | {0x0000b0fc, 0x057f0560}, | ||
1688 | {0x0000b100, 0x06400641}, | ||
1689 | {0x0000b104, 0x0660065f}, | ||
1690 | {0x0000b108, 0x067e067f}, | ||
1691 | {0x0000b10c, 0x07410742}, | ||
1692 | {0x0000b110, 0x075f0740}, | ||
1693 | {0x0000b114, 0x077f0760}, | ||
1694 | {0x0000b118, 0x07800781}, | ||
1695 | {0x0000b11c, 0x07a0079f}, | ||
1696 | {0x0000b120, 0x07c107bf}, | ||
1697 | {0x0000b124, 0x000007c0}, | ||
1698 | {0x0000b128, 0x00000000}, | ||
1699 | {0x0000b12c, 0x00000000}, | ||
1700 | {0x0000b130, 0x00000000}, | ||
1701 | {0x0000b134, 0x00000000}, | ||
1702 | {0x0000b138, 0x00000000}, | ||
1703 | {0x0000b13c, 0x00000000}, | ||
1704 | {0x0000b140, 0x003f0020}, | ||
1705 | {0x0000b144, 0x00400041}, | ||
1706 | {0x0000b148, 0x0140005f}, | ||
1707 | {0x0000b14c, 0x0160015f}, | ||
1708 | {0x0000b150, 0x017e017f}, | ||
1709 | {0x0000b154, 0x02410242}, | ||
1710 | {0x0000b158, 0x025f0240}, | ||
1711 | {0x0000b15c, 0x027f0260}, | ||
1712 | {0x0000b160, 0x0341027e}, | ||
1713 | {0x0000b164, 0x035f0340}, | ||
1714 | {0x0000b168, 0x037f0360}, | ||
1715 | {0x0000b16c, 0x04400441}, | ||
1716 | {0x0000b170, 0x0460045f}, | ||
1717 | {0x0000b174, 0x0541047f}, | ||
1718 | {0x0000b178, 0x055f0540}, | ||
1719 | {0x0000b17c, 0x057f0560}, | ||
1720 | {0x0000b180, 0x06400641}, | ||
1721 | {0x0000b184, 0x0660065f}, | ||
1722 | {0x0000b188, 0x067e067f}, | ||
1723 | {0x0000b18c, 0x07410742}, | ||
1724 | {0x0000b190, 0x075f0740}, | ||
1725 | {0x0000b194, 0x077f0760}, | ||
1726 | {0x0000b198, 0x07800781}, | ||
1727 | {0x0000b19c, 0x07a0079f}, | ||
1728 | {0x0000b1a0, 0x07c107bf}, | ||
1729 | {0x0000b1a4, 0x000007c0}, | ||
1730 | {0x0000b1a8, 0x00000000}, | ||
1731 | {0x0000b1ac, 0x00000000}, | ||
1732 | {0x0000b1b0, 0x00000000}, | ||
1733 | {0x0000b1b4, 0x00000000}, | ||
1734 | {0x0000b1b8, 0x00000000}, | ||
1735 | {0x0000b1bc, 0x00000000}, | ||
1736 | {0x0000b1c0, 0x00000000}, | ||
1737 | {0x0000b1c4, 0x00000000}, | ||
1738 | {0x0000b1c8, 0x00000000}, | ||
1739 | {0x0000b1cc, 0x00000000}, | ||
1740 | {0x0000b1d0, 0x00000000}, | ||
1741 | {0x0000b1d4, 0x00000000}, | ||
1742 | {0x0000b1d8, 0x00000000}, | ||
1743 | {0x0000b1dc, 0x00000000}, | ||
1744 | {0x0000b1e0, 0x00000000}, | ||
1745 | {0x0000b1e4, 0x00000000}, | ||
1746 | {0x0000b1e8, 0x00000000}, | ||
1747 | {0x0000b1ec, 0x00000000}, | ||
1748 | {0x0000b1f0, 0x00000396}, | ||
1749 | {0x0000b1f4, 0x00000396}, | ||
1750 | {0x0000b1f8, 0x00000396}, | ||
1751 | {0x0000b1fc, 0x00000196}, | ||
1752 | }; | ||
1753 | |||
1754 | static const u32 ar9300_2p2_soc_preamble[][2] = { | ||
1755 | /* Addr allmodes */ | ||
1756 | {0x000040a4, 0x00a0c1c9}, | ||
1757 | {0x00007008, 0x00000000}, | ||
1758 | {0x00007020, 0x00000000}, | ||
1759 | {0x00007034, 0x00000002}, | ||
1760 | {0x00007038, 0x000004c2}, | ||
1761 | {0x00007048, 0x00000008}, | ||
1762 | }; | ||
1763 | |||
1764 | static const u32 ar9300PciePhy_pll_on_clkreq_disable_L1_2p2[][2] = { | ||
1765 | /* Addr allmodes */ | ||
1766 | {0x00004040, 0x08212e5e}, | ||
1767 | {0x00004040, 0x0008003b}, | ||
1768 | {0x00004044, 0x00000000}, | ||
1769 | }; | ||
1770 | |||
1771 | static const u32 ar9300PciePhy_clkreq_enable_L1_2p2[][2] = { | ||
1772 | /* Addr allmodes */ | ||
1773 | {0x00004040, 0x08253e5e}, | ||
1774 | {0x00004040, 0x0008003b}, | ||
1775 | {0x00004044, 0x00000000}, | ||
1776 | }; | ||
1777 | |||
1778 | static const u32 ar9300PciePhy_clkreq_disable_L1_2p2[][2] = { | ||
1779 | /* Addr allmodes */ | ||
1780 | {0x00004040, 0x08213e5e}, | ||
1781 | {0x00004040, 0x0008003b}, | ||
1782 | {0x00004044, 0x00000000}, | ||
1783 | }; | ||
1784 | |||
1785 | #endif /* INITVALS_9003_2P2_H */ | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_calib.c b/drivers/net/wireless/ath/ath9k/ar9003_calib.c index 56a9e5fa6d66..5a0650399136 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_calib.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_calib.c | |||
@@ -739,6 +739,12 @@ static bool ar9003_hw_init_cal(struct ath_hw *ah, | |||
739 | */ | 739 | */ |
740 | ar9003_hw_set_chain_masks(ah, 0x7, 0x7); | 740 | ar9003_hw_set_chain_masks(ah, 0x7, 0x7); |
741 | 741 | ||
742 | /* Do Tx IQ Calibration */ | ||
743 | ar9003_hw_tx_iq_cal(ah); | ||
744 | REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS); | ||
745 | udelay(5); | ||
746 | REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN); | ||
747 | |||
742 | /* Calibrate the AGC */ | 748 | /* Calibrate the AGC */ |
743 | REG_WRITE(ah, AR_PHY_AGC_CONTROL, | 749 | REG_WRITE(ah, AR_PHY_AGC_CONTROL, |
744 | REG_READ(ah, AR_PHY_AGC_CONTROL) | | 750 | REG_READ(ah, AR_PHY_AGC_CONTROL) | |
@@ -753,10 +759,6 @@ static bool ar9003_hw_init_cal(struct ath_hw *ah, | |||
753 | return false; | 759 | return false; |
754 | } | 760 | } |
755 | 761 | ||
756 | /* Do Tx IQ Calibration */ | ||
757 | if (ah->config.tx_iq_calibration) | ||
758 | ar9003_hw_tx_iq_cal(ah); | ||
759 | |||
760 | /* Revert chainmasks to their original values before NF cal */ | 762 | /* Revert chainmasks to their original values before NF cal */ |
761 | ar9003_hw_set_chain_masks(ah, ah->rxchainmask, ah->txchainmask); | 763 | ar9003_hw_set_chain_masks(ah, ah->rxchainmask, ah->txchainmask); |
762 | 764 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_hw.c b/drivers/net/wireless/ath/ath9k/ar9003_hw.c index b15309caf1da..863f61e3a16f 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_hw.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_hw.c | |||
@@ -16,7 +16,8 @@ | |||
16 | 16 | ||
17 | #include "hw.h" | 17 | #include "hw.h" |
18 | #include "ar9003_mac.h" | 18 | #include "ar9003_mac.h" |
19 | #include "ar9003_initvals.h" | 19 | #include "ar9003_2p0_initvals.h" |
20 | #include "ar9003_2p2_initvals.h" | ||
20 | 21 | ||
21 | /* General hardware code for the AR9003 hadware family */ | 22 | /* General hardware code for the AR9003 hadware family */ |
22 | 23 | ||
@@ -31,12 +32,8 @@ static bool ar9003_hw_macversion_supported(u32 macversion) | |||
31 | return false; | 32 | return false; |
32 | } | 33 | } |
33 | 34 | ||
34 | /* AR9003 2.0 - new INI format (pre, core, post arrays per subsystem) */ | 35 | /* AR9003 2.0 */ |
35 | /* | 36 | static void ar9003_2p0_hw_init_mode_regs(struct ath_hw *ah) |
36 | * XXX: move TX/RX gain INI to its own init_mode_gain_regs after | ||
37 | * ensuring it does not affect hardware bring up | ||
38 | */ | ||
39 | static void ar9003_hw_init_mode_regs(struct ath_hw *ah) | ||
40 | { | 37 | { |
41 | /* mac */ | 38 | /* mac */ |
42 | INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0); | 39 | INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0); |
@@ -106,27 +103,128 @@ static void ar9003_hw_init_mode_regs(struct ath_hw *ah) | |||
106 | 3); | 103 | 3); |
107 | } | 104 | } |
108 | 105 | ||
106 | /* AR9003 2.2 */ | ||
107 | static void ar9003_2p2_hw_init_mode_regs(struct ath_hw *ah) | ||
108 | { | ||
109 | /* mac */ | ||
110 | INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0); | ||
111 | INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE], | ||
112 | ar9300_2p2_mac_core, | ||
113 | ARRAY_SIZE(ar9300_2p2_mac_core), 2); | ||
114 | INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST], | ||
115 | ar9300_2p2_mac_postamble, | ||
116 | ARRAY_SIZE(ar9300_2p2_mac_postamble), 5); | ||
117 | |||
118 | /* bb */ | ||
119 | INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], NULL, 0, 0); | ||
120 | INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE], | ||
121 | ar9300_2p2_baseband_core, | ||
122 | ARRAY_SIZE(ar9300_2p2_baseband_core), 2); | ||
123 | INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST], | ||
124 | ar9300_2p2_baseband_postamble, | ||
125 | ARRAY_SIZE(ar9300_2p2_baseband_postamble), 5); | ||
126 | |||
127 | /* radio */ | ||
128 | INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0); | ||
129 | INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE], | ||
130 | ar9300_2p2_radio_core, | ||
131 | ARRAY_SIZE(ar9300_2p2_radio_core), 2); | ||
132 | INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST], | ||
133 | ar9300_2p2_radio_postamble, | ||
134 | ARRAY_SIZE(ar9300_2p2_radio_postamble), 5); | ||
135 | |||
136 | /* soc */ | ||
137 | INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE], | ||
138 | ar9300_2p2_soc_preamble, | ||
139 | ARRAY_SIZE(ar9300_2p2_soc_preamble), 2); | ||
140 | INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0); | ||
141 | INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST], | ||
142 | ar9300_2p2_soc_postamble, | ||
143 | ARRAY_SIZE(ar9300_2p2_soc_postamble), 5); | ||
144 | |||
145 | /* rx/tx gain */ | ||
146 | INIT_INI_ARRAY(&ah->iniModesRxGain, | ||
147 | ar9300Common_rx_gain_table_2p2, | ||
148 | ARRAY_SIZE(ar9300Common_rx_gain_table_2p2), 2); | ||
149 | INIT_INI_ARRAY(&ah->iniModesTxGain, | ||
150 | ar9300Modes_lowest_ob_db_tx_gain_table_2p2, | ||
151 | ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2), | ||
152 | 5); | ||
153 | |||
154 | /* Load PCIE SERDES settings from INI */ | ||
155 | |||
156 | /* Awake Setting */ | ||
157 | |||
158 | INIT_INI_ARRAY(&ah->iniPcieSerdes, | ||
159 | ar9300PciePhy_pll_on_clkreq_disable_L1_2p2, | ||
160 | ARRAY_SIZE(ar9300PciePhy_pll_on_clkreq_disable_L1_2p2), | ||
161 | 2); | ||
162 | |||
163 | /* Sleep Setting */ | ||
164 | |||
165 | INIT_INI_ARRAY(&ah->iniPcieSerdesLowPower, | ||
166 | ar9300PciePhy_clkreq_enable_L1_2p2, | ||
167 | ARRAY_SIZE(ar9300PciePhy_clkreq_enable_L1_2p2), | ||
168 | 2); | ||
169 | |||
170 | /* Fast clock modal settings */ | ||
171 | INIT_INI_ARRAY(&ah->iniModesAdditional, | ||
172 | ar9300Modes_fast_clock_2p2, | ||
173 | ARRAY_SIZE(ar9300Modes_fast_clock_2p2), | ||
174 | 3); | ||
175 | } | ||
176 | |||
177 | /* | ||
178 | * The AR9003 family uses a new INI format (pre, core, post | ||
179 | * arrays per subsystem). | ||
180 | */ | ||
181 | static void ar9003_hw_init_mode_regs(struct ath_hw *ah) | ||
182 | { | ||
183 | if (AR_SREV_9300_20(ah)) | ||
184 | ar9003_2p0_hw_init_mode_regs(ah); | ||
185 | else | ||
186 | ar9003_2p2_hw_init_mode_regs(ah); | ||
187 | } | ||
188 | |||
109 | static void ar9003_tx_gain_table_apply(struct ath_hw *ah) | 189 | static void ar9003_tx_gain_table_apply(struct ath_hw *ah) |
110 | { | 190 | { |
111 | switch (ar9003_hw_get_tx_gain_idx(ah)) { | 191 | switch (ar9003_hw_get_tx_gain_idx(ah)) { |
112 | case 0: | 192 | case 0: |
113 | default: | 193 | default: |
114 | INIT_INI_ARRAY(&ah->iniModesTxGain, | 194 | if (AR_SREV_9300_20(ah)) |
115 | ar9300Modes_lowest_ob_db_tx_gain_table_2p0, | 195 | INIT_INI_ARRAY(&ah->iniModesTxGain, |
116 | ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p0), | 196 | ar9300Modes_lowest_ob_db_tx_gain_table_2p0, |
117 | 5); | 197 | ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p0), |
198 | 5); | ||
199 | else | ||
200 | INIT_INI_ARRAY(&ah->iniModesTxGain, | ||
201 | ar9300Modes_lowest_ob_db_tx_gain_table_2p2, | ||
202 | ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2), | ||
203 | 5); | ||
118 | break; | 204 | break; |
119 | case 1: | 205 | case 1: |
120 | INIT_INI_ARRAY(&ah->iniModesTxGain, | 206 | if (AR_SREV_9300_20(ah)) |
121 | ar9300Modes_high_ob_db_tx_gain_table_2p0, | 207 | INIT_INI_ARRAY(&ah->iniModesTxGain, |
122 | ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p0), | 208 | ar9300Modes_high_ob_db_tx_gain_table_2p0, |
123 | 5); | 209 | ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p0), |
210 | 5); | ||
211 | else | ||
212 | INIT_INI_ARRAY(&ah->iniModesTxGain, | ||
213 | ar9300Modes_high_ob_db_tx_gain_table_2p2, | ||
214 | ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p2), | ||
215 | 5); | ||
124 | break; | 216 | break; |
125 | case 2: | 217 | case 2: |
126 | INIT_INI_ARRAY(&ah->iniModesTxGain, | 218 | if (AR_SREV_9300_20(ah)) |
127 | ar9300Modes_low_ob_db_tx_gain_table_2p0, | 219 | INIT_INI_ARRAY(&ah->iniModesTxGain, |
128 | ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p0), | 220 | ar9300Modes_low_ob_db_tx_gain_table_2p0, |
129 | 5); | 221 | ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p0), |
222 | 5); | ||
223 | else | ||
224 | INIT_INI_ARRAY(&ah->iniModesTxGain, | ||
225 | ar9300Modes_low_ob_db_tx_gain_table_2p2, | ||
226 | ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p2), | ||
227 | 5); | ||
130 | break; | 228 | break; |
131 | } | 229 | } |
132 | } | 230 | } |
@@ -136,15 +234,28 @@ static void ar9003_rx_gain_table_apply(struct ath_hw *ah) | |||
136 | switch (ar9003_hw_get_rx_gain_idx(ah)) { | 234 | switch (ar9003_hw_get_rx_gain_idx(ah)) { |
137 | case 0: | 235 | case 0: |
138 | default: | 236 | default: |
139 | INIT_INI_ARRAY(&ah->iniModesRxGain, ar9300Common_rx_gain_table_2p0, | 237 | if (AR_SREV_9300_20(ah)) |
140 | ARRAY_SIZE(ar9300Common_rx_gain_table_2p0), | 238 | INIT_INI_ARRAY(&ah->iniModesRxGain, |
141 | 2); | 239 | ar9300Common_rx_gain_table_2p0, |
240 | ARRAY_SIZE(ar9300Common_rx_gain_table_2p0), | ||
241 | 2); | ||
242 | else | ||
243 | INIT_INI_ARRAY(&ah->iniModesRxGain, | ||
244 | ar9300Common_rx_gain_table_2p2, | ||
245 | ARRAY_SIZE(ar9300Common_rx_gain_table_2p2), | ||
246 | 2); | ||
142 | break; | 247 | break; |
143 | case 1: | 248 | case 1: |
144 | INIT_INI_ARRAY(&ah->iniModesRxGain, | 249 | if (AR_SREV_9300_20(ah)) |
145 | ar9300Common_wo_xlna_rx_gain_table_2p0, | 250 | INIT_INI_ARRAY(&ah->iniModesRxGain, |
146 | ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p0), | 251 | ar9300Common_wo_xlna_rx_gain_table_2p0, |
147 | 2); | 252 | ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p0), |
253 | 2); | ||
254 | else | ||
255 | INIT_INI_ARRAY(&ah->iniModesRxGain, | ||
256 | ar9300Common_wo_xlna_rx_gain_table_2p2, | ||
257 | ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p2), | ||
258 | 2); | ||
148 | break; | 259 | break; |
149 | } | 260 | } |
150 | } | 261 | } |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_mac.c b/drivers/net/wireless/ath/ath9k/ar9003_mac.c index 37ba37481a47..40731077cbb4 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_mac.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_mac.c | |||
@@ -90,6 +90,8 @@ static bool ar9003_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked) | |||
90 | MAP_ISR_S2_CST); | 90 | MAP_ISR_S2_CST); |
91 | mask2 |= ((isr2 & AR_ISR_S2_TSFOOR) >> | 91 | mask2 |= ((isr2 & AR_ISR_S2_TSFOOR) >> |
92 | MAP_ISR_S2_TSFOOR); | 92 | MAP_ISR_S2_TSFOOR); |
93 | mask2 |= ((isr2 & AR_ISR_S2_BB_WATCHDOG) >> | ||
94 | MAP_ISR_S2_BB_WATCHDOG); | ||
93 | 95 | ||
94 | if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) { | 96 | if (!(pCap->hw_caps & ATH9K_HW_CAP_RAC_SUPPORTED)) { |
95 | REG_WRITE(ah, AR_ISR_S2, isr2); | 97 | REG_WRITE(ah, AR_ISR_S2, isr2); |
@@ -167,6 +169,9 @@ static bool ar9003_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked) | |||
167 | 169 | ||
168 | (void) REG_READ(ah, AR_ISR); | 170 | (void) REG_READ(ah, AR_ISR); |
169 | } | 171 | } |
172 | |||
173 | if (*masked & ATH9K_INT_BB_WATCHDOG) | ||
174 | ar9003_hw_bb_watchdog_read(ah); | ||
170 | } | 175 | } |
171 | 176 | ||
172 | if (sync_cause) { | 177 | if (sync_cause) { |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_mac.h b/drivers/net/wireless/ath/ath9k/ar9003_mac.h index f17558b14539..5a7a286e2773 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_mac.h +++ b/drivers/net/wireless/ath/ath9k/ar9003_mac.h | |||
@@ -47,6 +47,7 @@ | |||
47 | #define MAP_ISR_S2_DTIMSYNC 7 | 47 | #define MAP_ISR_S2_DTIMSYNC 7 |
48 | #define MAP_ISR_S2_DTIM 7 | 48 | #define MAP_ISR_S2_DTIM 7 |
49 | #define MAP_ISR_S2_TSFOOR 4 | 49 | #define MAP_ISR_S2_TSFOOR 4 |
50 | #define MAP_ISR_S2_BB_WATCHDOG 6 | ||
50 | 51 | ||
51 | #define AR9003TXC_CONST(_ds) ((const struct ar9003_txc *) _ds) | 52 | #define AR9003TXC_CONST(_ds) ((const struct ar9003_txc *) _ds) |
52 | 53 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c index 80431a2f6dc1..c714579b5483 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c | |||
@@ -1132,3 +1132,122 @@ void ar9003_hw_attach_phy_ops(struct ath_hw *ah) | |||
1132 | priv_ops->do_getnf = ar9003_hw_do_getnf; | 1132 | priv_ops->do_getnf = ar9003_hw_do_getnf; |
1133 | priv_ops->loadnf = ar9003_hw_loadnf; | 1133 | priv_ops->loadnf = ar9003_hw_loadnf; |
1134 | } | 1134 | } |
1135 | |||
1136 | void ar9003_hw_bb_watchdog_config(struct ath_hw *ah) | ||
1137 | { | ||
1138 | struct ath_common *common = ath9k_hw_common(ah); | ||
1139 | u32 idle_tmo_ms = ah->bb_watchdog_timeout_ms; | ||
1140 | u32 val, idle_count; | ||
1141 | |||
1142 | if (!idle_tmo_ms) { | ||
1143 | /* disable IRQ, disable chip-reset for BB panic */ | ||
1144 | REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2, | ||
1145 | REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) & | ||
1146 | ~(AR_PHY_WATCHDOG_RST_ENABLE | | ||
1147 | AR_PHY_WATCHDOG_IRQ_ENABLE)); | ||
1148 | |||
1149 | /* disable watchdog in non-IDLE mode, disable in IDLE mode */ | ||
1150 | REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1, | ||
1151 | REG_READ(ah, AR_PHY_WATCHDOG_CTL_1) & | ||
1152 | ~(AR_PHY_WATCHDOG_NON_IDLE_ENABLE | | ||
1153 | AR_PHY_WATCHDOG_IDLE_ENABLE)); | ||
1154 | |||
1155 | ath_print(common, ATH_DBG_RESET, "Disabled BB Watchdog\n"); | ||
1156 | return; | ||
1157 | } | ||
1158 | |||
1159 | /* enable IRQ, disable chip-reset for BB watchdog */ | ||
1160 | val = REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) & AR_PHY_WATCHDOG_CNTL2_MASK; | ||
1161 | REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2, | ||
1162 | (val | AR_PHY_WATCHDOG_IRQ_ENABLE) & | ||
1163 | ~AR_PHY_WATCHDOG_RST_ENABLE); | ||
1164 | |||
1165 | /* bound limit to 10 secs */ | ||
1166 | if (idle_tmo_ms > 10000) | ||
1167 | idle_tmo_ms = 10000; | ||
1168 | |||
1169 | /* | ||
1170 | * The time unit for watchdog event is 2^15 44/88MHz cycles. | ||
1171 | * | ||
1172 | * For HT20 we have a time unit of 2^15/44 MHz = .74 ms per tick | ||
1173 | * For HT40 we have a time unit of 2^15/88 MHz = .37 ms per tick | ||
1174 | * | ||
1175 | * Given we use fast clock now in 5 GHz, these time units should | ||
1176 | * be common for both 2 GHz and 5 GHz. | ||
1177 | */ | ||
1178 | idle_count = (100 * idle_tmo_ms) / 74; | ||
1179 | if (ah->curchan && IS_CHAN_HT40(ah->curchan)) | ||
1180 | idle_count = (100 * idle_tmo_ms) / 37; | ||
1181 | |||
1182 | /* | ||
1183 | * enable watchdog in non-IDLE mode, disable in IDLE mode, | ||
1184 | * set idle time-out. | ||
1185 | */ | ||
1186 | REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1, | ||
1187 | AR_PHY_WATCHDOG_NON_IDLE_ENABLE | | ||
1188 | AR_PHY_WATCHDOG_IDLE_MASK | | ||
1189 | (AR_PHY_WATCHDOG_NON_IDLE_MASK & (idle_count << 2))); | ||
1190 | |||
1191 | ath_print(common, ATH_DBG_RESET, | ||
1192 | "Enabled BB Watchdog timeout (%u ms)\n", | ||
1193 | idle_tmo_ms); | ||
1194 | } | ||
1195 | |||
1196 | void ar9003_hw_bb_watchdog_read(struct ath_hw *ah) | ||
1197 | { | ||
1198 | /* | ||
1199 | * we want to avoid printing in ISR context so we save the | ||
1200 | * watchdog status to be printed later in bottom half context. | ||
1201 | */ | ||
1202 | ah->bb_watchdog_last_status = REG_READ(ah, AR_PHY_WATCHDOG_STATUS); | ||
1203 | |||
1204 | /* | ||
1205 | * the watchdog timer should reset on status read but to be sure | ||
1206 | * sure we write 0 to the watchdog status bit. | ||
1207 | */ | ||
1208 | REG_WRITE(ah, AR_PHY_WATCHDOG_STATUS, | ||
1209 | ah->bb_watchdog_last_status & ~AR_PHY_WATCHDOG_STATUS_CLR); | ||
1210 | } | ||
1211 | |||
1212 | void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah) | ||
1213 | { | ||
1214 | struct ath_common *common = ath9k_hw_common(ah); | ||
1215 | u32 rxc_pcnt = 0, rxf_pcnt = 0, txf_pcnt = 0, status; | ||
1216 | |||
1217 | if (likely(!(common->debug_mask & ATH_DBG_RESET))) | ||
1218 | return; | ||
1219 | |||
1220 | status = ah->bb_watchdog_last_status; | ||
1221 | ath_print(common, ATH_DBG_RESET, | ||
1222 | "\n==== BB update: BB status=0x%08x ====\n", status); | ||
1223 | ath_print(common, ATH_DBG_RESET, | ||
1224 | "** BB state: wd=%u det=%u rdar=%u rOFDM=%d " | ||
1225 | "rCCK=%u tOFDM=%u tCCK=%u agc=%u src=%u **\n", | ||
1226 | MS(status, AR_PHY_WATCHDOG_INFO), | ||
1227 | MS(status, AR_PHY_WATCHDOG_DET_HANG), | ||
1228 | MS(status, AR_PHY_WATCHDOG_RADAR_SM), | ||
1229 | MS(status, AR_PHY_WATCHDOG_RX_OFDM_SM), | ||
1230 | MS(status, AR_PHY_WATCHDOG_RX_CCK_SM), | ||
1231 | MS(status, AR_PHY_WATCHDOG_TX_OFDM_SM), | ||
1232 | MS(status, AR_PHY_WATCHDOG_TX_CCK_SM), | ||
1233 | MS(status, AR_PHY_WATCHDOG_AGC_SM), | ||
1234 | MS(status,AR_PHY_WATCHDOG_SRCH_SM)); | ||
1235 | |||
1236 | ath_print(common, ATH_DBG_RESET, | ||
1237 | "** BB WD cntl: cntl1=0x%08x cntl2=0x%08x **\n", | ||
1238 | REG_READ(ah, AR_PHY_WATCHDOG_CTL_1), | ||
1239 | REG_READ(ah, AR_PHY_WATCHDOG_CTL_2)); | ||
1240 | ath_print(common, ATH_DBG_RESET, | ||
1241 | "** BB mode: BB_gen_controls=0x%08x **\n", | ||
1242 | REG_READ(ah, AR_PHY_GEN_CTRL)); | ||
1243 | |||
1244 | if (ath9k_hw_GetMibCycleCountsPct(ah, &rxc_pcnt, &rxf_pcnt, &txf_pcnt)) | ||
1245 | ath_print(common, ATH_DBG_RESET, | ||
1246 | "** BB busy times: rx_clear=%d%%, " | ||
1247 | "rx_frame=%d%%, tx_frame=%d%% **\n", | ||
1248 | rxc_pcnt, rxf_pcnt, txf_pcnt); | ||
1249 | |||
1250 | ath_print(common, ATH_DBG_RESET, | ||
1251 | "==== BB update: done ====\n\n"); | ||
1252 | } | ||
1253 | EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info); | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.h b/drivers/net/wireless/ath/ath9k/ar9003_phy.h index f08cc8bda005..676d3f1123f4 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.h +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.h | |||
@@ -483,10 +483,10 @@ | |||
483 | #define AR_PHY_TX_IQCAL_STATUS_B0 (AR_SM_BASE + 0x48c) | 483 | #define AR_PHY_TX_IQCAL_STATUS_B0 (AR_SM_BASE + 0x48c) |
484 | #define AR_PHY_TX_IQCAL_CORR_COEFF_01_B0 (AR_SM_BASE + 0x450) | 484 | #define AR_PHY_TX_IQCAL_CORR_COEFF_01_B0 (AR_SM_BASE + 0x450) |
485 | 485 | ||
486 | #define AR_PHY_PANIC_WD_STATUS (AR_SM_BASE + 0x5c0) | 486 | #define AR_PHY_WATCHDOG_STATUS (AR_SM_BASE + 0x5c0) |
487 | #define AR_PHY_PANIC_WD_CTL_1 (AR_SM_BASE + 0x5c4) | 487 | #define AR_PHY_WATCHDOG_CTL_1 (AR_SM_BASE + 0x5c4) |
488 | #define AR_PHY_PANIC_WD_CTL_2 (AR_SM_BASE + 0x5c8) | 488 | #define AR_PHY_WATCHDOG_CTL_2 (AR_SM_BASE + 0x5c8) |
489 | #define AR_PHY_BT_CTL (AR_SM_BASE + 0x5cc) | 489 | #define AR_PHY_WATCHDOG_CTL (AR_SM_BASE + 0x5cc) |
490 | #define AR_PHY_ONLY_WARMRESET (AR_SM_BASE + 0x5d0) | 490 | #define AR_PHY_ONLY_WARMRESET (AR_SM_BASE + 0x5d0) |
491 | #define AR_PHY_ONLY_CTL (AR_SM_BASE + 0x5d4) | 491 | #define AR_PHY_ONLY_CTL (AR_SM_BASE + 0x5d4) |
492 | #define AR_PHY_ECO_CTRL (AR_SM_BASE + 0x5dc) | 492 | #define AR_PHY_ECO_CTRL (AR_SM_BASE + 0x5dc) |
@@ -812,35 +812,35 @@ | |||
812 | #define AR_PHY_CAL_MEAS_2_9300_10(_i) (AR_PHY_IQ_ADC_MEAS_2_B0_9300_10 + (AR_PHY_CHAIN_OFFSET * (_i))) | 812 | #define AR_PHY_CAL_MEAS_2_9300_10(_i) (AR_PHY_IQ_ADC_MEAS_2_B0_9300_10 + (AR_PHY_CHAIN_OFFSET * (_i))) |
813 | #define AR_PHY_CAL_MEAS_3_9300_10(_i) (AR_PHY_IQ_ADC_MEAS_3_B0_9300_10 + (AR_PHY_CHAIN_OFFSET * (_i))) | 813 | #define AR_PHY_CAL_MEAS_3_9300_10(_i) (AR_PHY_IQ_ADC_MEAS_3_B0_9300_10 + (AR_PHY_CHAIN_OFFSET * (_i))) |
814 | 814 | ||
815 | #define AR_PHY_BB_PANIC_NON_IDLE_ENABLE 0x00000001 | 815 | #define AR_PHY_WATCHDOG_NON_IDLE_ENABLE 0x00000001 |
816 | #define AR_PHY_BB_PANIC_IDLE_ENABLE 0x00000002 | 816 | #define AR_PHY_WATCHDOG_IDLE_ENABLE 0x00000002 |
817 | #define AR_PHY_BB_PANIC_IDLE_MASK 0xFFFF0000 | 817 | #define AR_PHY_WATCHDOG_IDLE_MASK 0xFFFF0000 |
818 | #define AR_PHY_BB_PANIC_NON_IDLE_MASK 0x0000FFFC | 818 | #define AR_PHY_WATCHDOG_NON_IDLE_MASK 0x0000FFFC |
819 | 819 | ||
820 | #define AR_PHY_BB_PANIC_RST_ENABLE 0x00000002 | 820 | #define AR_PHY_WATCHDOG_RST_ENABLE 0x00000002 |
821 | #define AR_PHY_BB_PANIC_IRQ_ENABLE 0x00000004 | 821 | #define AR_PHY_WATCHDOG_IRQ_ENABLE 0x00000004 |
822 | #define AR_PHY_BB_PANIC_CNTL2_MASK 0xFFFFFFF9 | 822 | #define AR_PHY_WATCHDOG_CNTL2_MASK 0xFFFFFFF9 |
823 | 823 | ||
824 | #define AR_PHY_BB_WD_STATUS 0x00000007 | 824 | #define AR_PHY_WATCHDOG_INFO 0x00000007 |
825 | #define AR_PHY_BB_WD_STATUS_S 0 | 825 | #define AR_PHY_WATCHDOG_INFO_S 0 |
826 | #define AR_PHY_BB_WD_DET_HANG 0x00000008 | 826 | #define AR_PHY_WATCHDOG_DET_HANG 0x00000008 |
827 | #define AR_PHY_BB_WD_DET_HANG_S 3 | 827 | #define AR_PHY_WATCHDOG_DET_HANG_S 3 |
828 | #define AR_PHY_BB_WD_RADAR_SM 0x000000F0 | 828 | #define AR_PHY_WATCHDOG_RADAR_SM 0x000000F0 |
829 | #define AR_PHY_BB_WD_RADAR_SM_S 4 | 829 | #define AR_PHY_WATCHDOG_RADAR_SM_S 4 |
830 | #define AR_PHY_BB_WD_RX_OFDM_SM 0x00000F00 | 830 | #define AR_PHY_WATCHDOG_RX_OFDM_SM 0x00000F00 |
831 | #define AR_PHY_BB_WD_RX_OFDM_SM_S 8 | 831 | #define AR_PHY_WATCHDOG_RX_OFDM_SM_S 8 |
832 | #define AR_PHY_BB_WD_RX_CCK_SM 0x0000F000 | 832 | #define AR_PHY_WATCHDOG_RX_CCK_SM 0x0000F000 |
833 | #define AR_PHY_BB_WD_RX_CCK_SM_S 12 | 833 | #define AR_PHY_WATCHDOG_RX_CCK_SM_S 12 |
834 | #define AR_PHY_BB_WD_TX_OFDM_SM 0x000F0000 | 834 | #define AR_PHY_WATCHDOG_TX_OFDM_SM 0x000F0000 |
835 | #define AR_PHY_BB_WD_TX_OFDM_SM_S 16 | 835 | #define AR_PHY_WATCHDOG_TX_OFDM_SM_S 16 |
836 | #define AR_PHY_BB_WD_TX_CCK_SM 0x00F00000 | 836 | #define AR_PHY_WATCHDOG_TX_CCK_SM 0x00F00000 |
837 | #define AR_PHY_BB_WD_TX_CCK_SM_S 20 | 837 | #define AR_PHY_WATCHDOG_TX_CCK_SM_S 20 |
838 | #define AR_PHY_BB_WD_AGC_SM 0x0F000000 | 838 | #define AR_PHY_WATCHDOG_AGC_SM 0x0F000000 |
839 | #define AR_PHY_BB_WD_AGC_SM_S 24 | 839 | #define AR_PHY_WATCHDOG_AGC_SM_S 24 |
840 | #define AR_PHY_BB_WD_SRCH_SM 0xF0000000 | 840 | #define AR_PHY_WATCHDOG_SRCH_SM 0xF0000000 |
841 | #define AR_PHY_BB_WD_SRCH_SM_S 28 | 841 | #define AR_PHY_WATCHDOG_SRCH_SM_S 28 |
842 | 842 | ||
843 | #define AR_PHY_BB_WD_STATUS_CLR 0x00000008 | 843 | #define AR_PHY_WATCHDOG_STATUS_CLR 0x00000008 |
844 | 844 | ||
845 | void ar9003_hw_set_chain_masks(struct ath_hw *ah, u8 rx, u8 tx); | 845 | void ar9003_hw_set_chain_masks(struct ath_hw *ah, u8 rx, u8 tx); |
846 | 846 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index fbb7dec6ddeb..82aca4b6154c 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h | |||
@@ -136,6 +136,8 @@ void ath_descdma_cleanup(struct ath_softc *sc, struct ath_descdma *dd, | |||
136 | #define ATH_MAX_ANTENNA 3 | 136 | #define ATH_MAX_ANTENNA 3 |
137 | #define ATH_RXBUF 512 | 137 | #define ATH_RXBUF 512 |
138 | #define ATH_TXBUF 512 | 138 | #define ATH_TXBUF 512 |
139 | #define ATH_TXBUF_RESERVE 5 | ||
140 | #define ATH_MAX_QDEPTH (ATH_TXBUF / 4 - ATH_TXBUF_RESERVE) | ||
139 | #define ATH_TXMAXTRY 13 | 141 | #define ATH_TXMAXTRY 13 |
140 | #define ATH_MGT_TXMAXTRY 4 | 142 | #define ATH_MGT_TXMAXTRY 4 |
141 | 143 | ||
@@ -204,6 +206,71 @@ struct ath_txq { | |||
204 | struct list_head txq_fifo_pending; | 206 | struct list_head txq_fifo_pending; |
205 | u8 txq_headidx; | 207 | u8 txq_headidx; |
206 | u8 txq_tailidx; | 208 | u8 txq_tailidx; |
209 | int pending_frames; | ||
210 | }; | ||
211 | |||
212 | struct ath_atx_ac { | ||
213 | int sched; | ||
214 | int qnum; | ||
215 | struct list_head list; | ||
216 | struct list_head tid_q; | ||
217 | }; | ||
218 | |||
219 | struct ath_buf_state { | ||
220 | int bfs_nframes; | ||
221 | u16 bfs_al; | ||
222 | u16 bfs_frmlen; | ||
223 | int bfs_seqno; | ||
224 | int bfs_tidno; | ||
225 | int bfs_retries; | ||
226 | u8 bf_type; | ||
227 | u32 bfs_keyix; | ||
228 | enum ath9k_key_type bfs_keytype; | ||
229 | }; | ||
230 | |||
231 | struct ath_buf { | ||
232 | struct list_head list; | ||
233 | struct ath_buf *bf_lastbf; /* last buf of this unit (a frame or | ||
234 | an aggregate) */ | ||
235 | struct ath_buf *bf_next; /* next subframe in the aggregate */ | ||
236 | struct sk_buff *bf_mpdu; /* enclosing frame structure */ | ||
237 | void *bf_desc; /* virtual addr of desc */ | ||
238 | dma_addr_t bf_daddr; /* physical addr of desc */ | ||
239 | dma_addr_t bf_buf_addr; /* physical addr of data buffer */ | ||
240 | bool bf_stale; | ||
241 | bool bf_isnullfunc; | ||
242 | bool bf_tx_aborted; | ||
243 | u16 bf_flags; | ||
244 | struct ath_buf_state bf_state; | ||
245 | dma_addr_t bf_dmacontext; | ||
246 | struct ath_wiphy *aphy; | ||
247 | struct ath_txq *txq; | ||
248 | }; | ||
249 | |||
250 | struct ath_atx_tid { | ||
251 | struct list_head list; | ||
252 | struct list_head buf_q; | ||
253 | struct ath_node *an; | ||
254 | struct ath_atx_ac *ac; | ||
255 | struct ath_buf *tx_buf[ATH_TID_MAX_BUFS]; | ||
256 | u16 seq_start; | ||
257 | u16 seq_next; | ||
258 | u16 baw_size; | ||
259 | int tidno; | ||
260 | int baw_head; /* first un-acked tx buffer */ | ||
261 | int baw_tail; /* next unused tx buffer slot */ | ||
262 | int sched; | ||
263 | int paused; | ||
264 | u8 state; | ||
265 | }; | ||
266 | |||
267 | struct ath_node { | ||
268 | struct ath_common *common; | ||
269 | struct ath_atx_tid tid[WME_NUM_TID]; | ||
270 | struct ath_atx_ac ac[WME_NUM_AC]; | ||
271 | u16 maxampdu; | ||
272 | u8 mpdudensity; | ||
273 | int last_rssi; | ||
207 | }; | 274 | }; |
208 | 275 | ||
209 | #define AGGR_CLEANUP BIT(1) | 276 | #define AGGR_CLEANUP BIT(1) |
@@ -267,7 +334,6 @@ void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an); | |||
267 | void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq); | 334 | void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq); |
268 | int ath_tx_init(struct ath_softc *sc, int nbufs); | 335 | int ath_tx_init(struct ath_softc *sc, int nbufs); |
269 | void ath_tx_cleanup(struct ath_softc *sc); | 336 | void ath_tx_cleanup(struct ath_softc *sc); |
270 | struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb); | ||
271 | int ath_txq_update(struct ath_softc *sc, int qnum, | 337 | int ath_txq_update(struct ath_softc *sc, int qnum, |
272 | struct ath9k_tx_queue_info *q); | 338 | struct ath9k_tx_queue_info *q); |
273 | int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb, | 339 | int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb, |
diff --git a/drivers/net/wireless/ath/ath9k/common.c b/drivers/net/wireless/ath/ath9k/common.c index 7707341cd0d3..16e2849f644d 100644 --- a/drivers/net/wireless/ath/ath9k/common.c +++ b/drivers/net/wireless/ath/ath9k/common.c | |||
@@ -27,270 +27,6 @@ MODULE_AUTHOR("Atheros Communications"); | |||
27 | MODULE_DESCRIPTION("Shared library for Atheros wireless 802.11n LAN cards."); | 27 | MODULE_DESCRIPTION("Shared library for Atheros wireless 802.11n LAN cards."); |
28 | MODULE_LICENSE("Dual BSD/GPL"); | 28 | MODULE_LICENSE("Dual BSD/GPL"); |
29 | 29 | ||
30 | /* Common RX processing */ | ||
31 | |||
32 | /* Assumes you've already done the endian to CPU conversion */ | ||
33 | static bool ath9k_rx_accept(struct ath_common *common, | ||
34 | struct sk_buff *skb, | ||
35 | struct ieee80211_rx_status *rxs, | ||
36 | struct ath_rx_status *rx_stats, | ||
37 | bool *decrypt_error) | ||
38 | { | ||
39 | struct ath_hw *ah = common->ah; | ||
40 | struct ieee80211_hdr *hdr; | ||
41 | __le16 fc; | ||
42 | |||
43 | hdr = (struct ieee80211_hdr *) skb->data; | ||
44 | fc = hdr->frame_control; | ||
45 | |||
46 | if (!rx_stats->rs_datalen) | ||
47 | return false; | ||
48 | /* | ||
49 | * rs_status follows rs_datalen so if rs_datalen is too large | ||
50 | * we can take a hint that hardware corrupted it, so ignore | ||
51 | * those frames. | ||
52 | */ | ||
53 | if (rx_stats->rs_datalen > common->rx_bufsize) | ||
54 | return false; | ||
55 | |||
56 | /* | ||
57 | * rs_more indicates chained descriptors which can be used | ||
58 | * to link buffers together for a sort of scatter-gather | ||
59 | * operation. | ||
60 | * reject the frame, we don't support scatter-gather yet and | ||
61 | * the frame is probably corrupt anyway | ||
62 | */ | ||
63 | if (rx_stats->rs_more) | ||
64 | return false; | ||
65 | |||
66 | /* | ||
67 | * The rx_stats->rs_status will not be set until the end of the | ||
68 | * chained descriptors so it can be ignored if rs_more is set. The | ||
69 | * rs_more will be false at the last element of the chained | ||
70 | * descriptors. | ||
71 | */ | ||
72 | if (rx_stats->rs_status != 0) { | ||
73 | if (rx_stats->rs_status & ATH9K_RXERR_CRC) | ||
74 | rxs->flag |= RX_FLAG_FAILED_FCS_CRC; | ||
75 | if (rx_stats->rs_status & ATH9K_RXERR_PHY) | ||
76 | return false; | ||
77 | |||
78 | if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) { | ||
79 | *decrypt_error = true; | ||
80 | } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) { | ||
81 | if (ieee80211_is_ctl(fc)) | ||
82 | /* | ||
83 | * Sometimes, we get invalid | ||
84 | * MIC failures on valid control frames. | ||
85 | * Remove these mic errors. | ||
86 | */ | ||
87 | rx_stats->rs_status &= ~ATH9K_RXERR_MIC; | ||
88 | else | ||
89 | rxs->flag |= RX_FLAG_MMIC_ERROR; | ||
90 | } | ||
91 | /* | ||
92 | * Reject error frames with the exception of | ||
93 | * decryption and MIC failures. For monitor mode, | ||
94 | * we also ignore the CRC error. | ||
95 | */ | ||
96 | if (ah->opmode == NL80211_IFTYPE_MONITOR) { | ||
97 | if (rx_stats->rs_status & | ||
98 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | | ||
99 | ATH9K_RXERR_CRC)) | ||
100 | return false; | ||
101 | } else { | ||
102 | if (rx_stats->rs_status & | ||
103 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) { | ||
104 | return false; | ||
105 | } | ||
106 | } | ||
107 | } | ||
108 | return true; | ||
109 | } | ||
110 | |||
111 | static int ath9k_process_rate(struct ath_common *common, | ||
112 | struct ieee80211_hw *hw, | ||
113 | struct ath_rx_status *rx_stats, | ||
114 | struct ieee80211_rx_status *rxs, | ||
115 | struct sk_buff *skb) | ||
116 | { | ||
117 | struct ieee80211_supported_band *sband; | ||
118 | enum ieee80211_band band; | ||
119 | unsigned int i = 0; | ||
120 | |||
121 | band = hw->conf.channel->band; | ||
122 | sband = hw->wiphy->bands[band]; | ||
123 | |||
124 | if (rx_stats->rs_rate & 0x80) { | ||
125 | /* HT rate */ | ||
126 | rxs->flag |= RX_FLAG_HT; | ||
127 | if (rx_stats->rs_flags & ATH9K_RX_2040) | ||
128 | rxs->flag |= RX_FLAG_40MHZ; | ||
129 | if (rx_stats->rs_flags & ATH9K_RX_GI) | ||
130 | rxs->flag |= RX_FLAG_SHORT_GI; | ||
131 | rxs->rate_idx = rx_stats->rs_rate & 0x7f; | ||
132 | return 0; | ||
133 | } | ||
134 | |||
135 | for (i = 0; i < sband->n_bitrates; i++) { | ||
136 | if (sband->bitrates[i].hw_value == rx_stats->rs_rate) { | ||
137 | rxs->rate_idx = i; | ||
138 | return 0; | ||
139 | } | ||
140 | if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) { | ||
141 | rxs->flag |= RX_FLAG_SHORTPRE; | ||
142 | rxs->rate_idx = i; | ||
143 | return 0; | ||
144 | } | ||
145 | } | ||
146 | |||
147 | /* | ||
148 | * No valid hardware bitrate found -- we should not get here | ||
149 | * because hardware has already validated this frame as OK. | ||
150 | */ | ||
151 | ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected " | ||
152 | "0x%02x using 1 Mbit\n", rx_stats->rs_rate); | ||
153 | if ((common->debug_mask & ATH_DBG_XMIT)) | ||
154 | print_hex_dump_bytes("", DUMP_PREFIX_NONE, skb->data, skb->len); | ||
155 | |||
156 | return -EINVAL; | ||
157 | } | ||
158 | |||
159 | static void ath9k_process_rssi(struct ath_common *common, | ||
160 | struct ieee80211_hw *hw, | ||
161 | struct sk_buff *skb, | ||
162 | struct ath_rx_status *rx_stats) | ||
163 | { | ||
164 | struct ath_hw *ah = common->ah; | ||
165 | struct ieee80211_sta *sta; | ||
166 | struct ieee80211_hdr *hdr; | ||
167 | struct ath_node *an; | ||
168 | int last_rssi = ATH_RSSI_DUMMY_MARKER; | ||
169 | __le16 fc; | ||
170 | |||
171 | hdr = (struct ieee80211_hdr *)skb->data; | ||
172 | fc = hdr->frame_control; | ||
173 | |||
174 | rcu_read_lock(); | ||
175 | /* | ||
176 | * XXX: use ieee80211_find_sta! This requires quite a bit of work | ||
177 | * under the current ath9k virtual wiphy implementation as we have | ||
178 | * no way of tying a vif to wiphy. Typically vifs are attached to | ||
179 | * at least one sdata of a wiphy on mac80211 but with ath9k virtual | ||
180 | * wiphy you'd have to iterate over every wiphy and each sdata. | ||
181 | */ | ||
182 | sta = ieee80211_find_sta_by_hw(hw, hdr->addr2); | ||
183 | if (sta) { | ||
184 | an = (struct ath_node *) sta->drv_priv; | ||
185 | if (rx_stats->rs_rssi != ATH9K_RSSI_BAD && | ||
186 | !rx_stats->rs_moreaggr) | ||
187 | ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi); | ||
188 | last_rssi = an->last_rssi; | ||
189 | } | ||
190 | rcu_read_unlock(); | ||
191 | |||
192 | if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER)) | ||
193 | rx_stats->rs_rssi = ATH_EP_RND(last_rssi, | ||
194 | ATH_RSSI_EP_MULTIPLIER); | ||
195 | if (rx_stats->rs_rssi < 0) | ||
196 | rx_stats->rs_rssi = 0; | ||
197 | |||
198 | /* Update Beacon RSSI, this is used by ANI. */ | ||
199 | if (ieee80211_is_beacon(fc)) | ||
200 | ah->stats.avgbrssi = rx_stats->rs_rssi; | ||
201 | } | ||
202 | |||
203 | /* | ||
204 | * For Decrypt or Demic errors, we only mark packet status here and always push | ||
205 | * up the frame up to let mac80211 handle the actual error case, be it no | ||
206 | * decryption key or real decryption error. This let us keep statistics there. | ||
207 | */ | ||
208 | int ath9k_cmn_rx_skb_preprocess(struct ath_common *common, | ||
209 | struct ieee80211_hw *hw, | ||
210 | struct sk_buff *skb, | ||
211 | struct ath_rx_status *rx_stats, | ||
212 | struct ieee80211_rx_status *rx_status, | ||
213 | bool *decrypt_error) | ||
214 | { | ||
215 | struct ath_hw *ah = common->ah; | ||
216 | |||
217 | memset(rx_status, 0, sizeof(struct ieee80211_rx_status)); | ||
218 | |||
219 | /* | ||
220 | * everything but the rate is checked here, the rate check is done | ||
221 | * separately to avoid doing two lookups for a rate for each frame. | ||
222 | */ | ||
223 | if (!ath9k_rx_accept(common, skb, rx_status, rx_stats, decrypt_error)) | ||
224 | return -EINVAL; | ||
225 | |||
226 | ath9k_process_rssi(common, hw, skb, rx_stats); | ||
227 | |||
228 | if (ath9k_process_rate(common, hw, rx_stats, rx_status, skb)) | ||
229 | return -EINVAL; | ||
230 | |||
231 | rx_status->mactime = ath9k_hw_extend_tsf(ah, rx_stats->rs_tstamp); | ||
232 | rx_status->band = hw->conf.channel->band; | ||
233 | rx_status->freq = hw->conf.channel->center_freq; | ||
234 | rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi; | ||
235 | rx_status->antenna = rx_stats->rs_antenna; | ||
236 | rx_status->flag |= RX_FLAG_TSFT; | ||
237 | |||
238 | return 0; | ||
239 | } | ||
240 | EXPORT_SYMBOL(ath9k_cmn_rx_skb_preprocess); | ||
241 | |||
242 | void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, | ||
243 | struct sk_buff *skb, | ||
244 | struct ath_rx_status *rx_stats, | ||
245 | struct ieee80211_rx_status *rxs, | ||
246 | bool decrypt_error) | ||
247 | { | ||
248 | struct ath_hw *ah = common->ah; | ||
249 | struct ieee80211_hdr *hdr; | ||
250 | int hdrlen, padpos, padsize; | ||
251 | u8 keyix; | ||
252 | __le16 fc; | ||
253 | |||
254 | /* see if any padding is done by the hw and remove it */ | ||
255 | hdr = (struct ieee80211_hdr *) skb->data; | ||
256 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); | ||
257 | fc = hdr->frame_control; | ||
258 | padpos = ath9k_cmn_padpos(hdr->frame_control); | ||
259 | |||
260 | /* The MAC header is padded to have 32-bit boundary if the | ||
261 | * packet payload is non-zero. The general calculation for | ||
262 | * padsize would take into account odd header lengths: | ||
263 | * padsize = (4 - padpos % 4) % 4; However, since only | ||
264 | * even-length headers are used, padding can only be 0 or 2 | ||
265 | * bytes and we can optimize this a bit. In addition, we must | ||
266 | * not try to remove padding from short control frames that do | ||
267 | * not have payload. */ | ||
268 | padsize = padpos & 3; | ||
269 | if (padsize && skb->len>=padpos+padsize+FCS_LEN) { | ||
270 | memmove(skb->data + padsize, skb->data, padpos); | ||
271 | skb_pull(skb, padsize); | ||
272 | } | ||
273 | |||
274 | keyix = rx_stats->rs_keyix; | ||
275 | |||
276 | if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && | ||
277 | ieee80211_has_protected(fc)) { | ||
278 | rxs->flag |= RX_FLAG_DECRYPTED; | ||
279 | } else if (ieee80211_has_protected(fc) | ||
280 | && !decrypt_error && skb->len >= hdrlen + 4) { | ||
281 | keyix = skb->data[hdrlen + 3] >> 6; | ||
282 | |||
283 | if (test_bit(keyix, common->keymap)) | ||
284 | rxs->flag |= RX_FLAG_DECRYPTED; | ||
285 | } | ||
286 | if (ah->sw_mgmt_crypto && | ||
287 | (rxs->flag & RX_FLAG_DECRYPTED) && | ||
288 | ieee80211_is_mgmt(fc)) | ||
289 | /* Use software decrypt for management frames. */ | ||
290 | rxs->flag &= ~RX_FLAG_DECRYPTED; | ||
291 | } | ||
292 | EXPORT_SYMBOL(ath9k_cmn_rx_skb_postprocess); | ||
293 | |||
294 | int ath9k_cmn_padpos(__le16 frame_control) | 30 | int ath9k_cmn_padpos(__le16 frame_control) |
295 | { | 31 | { |
296 | int padpos = 24; | 32 | int padpos = 24; |
@@ -475,10 +211,14 @@ static int ath_reserve_key_cache_slot_tkip(struct ath_common *common) | |||
475 | return -1; | 211 | return -1; |
476 | } | 212 | } |
477 | 213 | ||
478 | static int ath_reserve_key_cache_slot(struct ath_common *common) | 214 | static int ath_reserve_key_cache_slot(struct ath_common *common, |
215 | enum ieee80211_key_alg alg) | ||
479 | { | 216 | { |
480 | int i; | 217 | int i; |
481 | 218 | ||
219 | if (alg == ALG_TKIP) | ||
220 | return ath_reserve_key_cache_slot_tkip(common); | ||
221 | |||
482 | /* First, try to find slots that would not be available for TKIP. */ | 222 | /* First, try to find slots that would not be available for TKIP. */ |
483 | if (common->splitmic) { | 223 | if (common->splitmic) { |
484 | for (i = IEEE80211_WEP_NKID; i < common->keymax / 4; i++) { | 224 | for (i = IEEE80211_WEP_NKID; i < common->keymax / 4; i++) { |
@@ -547,6 +287,7 @@ int ath9k_cmn_key_config(struct ath_common *common, | |||
547 | struct ath_hw *ah = common->ah; | 287 | struct ath_hw *ah = common->ah; |
548 | struct ath9k_keyval hk; | 288 | struct ath9k_keyval hk; |
549 | const u8 *mac = NULL; | 289 | const u8 *mac = NULL; |
290 | u8 gmac[ETH_ALEN]; | ||
550 | int ret = 0; | 291 | int ret = 0; |
551 | int idx; | 292 | int idx; |
552 | 293 | ||
@@ -570,9 +311,23 @@ int ath9k_cmn_key_config(struct ath_common *common, | |||
570 | memcpy(hk.kv_val, key->key, key->keylen); | 311 | memcpy(hk.kv_val, key->key, key->keylen); |
571 | 312 | ||
572 | if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { | 313 | if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
573 | /* For now, use the default keys for broadcast keys. This may | 314 | switch (vif->type) { |
574 | * need to change with virtual interfaces. */ | 315 | case NL80211_IFTYPE_AP: |
575 | idx = key->keyidx; | 316 | memcpy(gmac, vif->addr, ETH_ALEN); |
317 | gmac[0] |= 0x01; | ||
318 | mac = gmac; | ||
319 | idx = ath_reserve_key_cache_slot(common, key->alg); | ||
320 | break; | ||
321 | case NL80211_IFTYPE_ADHOC: | ||
322 | memcpy(gmac, sta->addr, ETH_ALEN); | ||
323 | gmac[0] |= 0x01; | ||
324 | mac = gmac; | ||
325 | idx = ath_reserve_key_cache_slot(common, key->alg); | ||
326 | break; | ||
327 | default: | ||
328 | idx = key->keyidx; | ||
329 | break; | ||
330 | } | ||
576 | } else if (key->keyidx) { | 331 | } else if (key->keyidx) { |
577 | if (WARN_ON(!sta)) | 332 | if (WARN_ON(!sta)) |
578 | return -EOPNOTSUPP; | 333 | return -EOPNOTSUPP; |
@@ -589,14 +344,12 @@ int ath9k_cmn_key_config(struct ath_common *common, | |||
589 | return -EOPNOTSUPP; | 344 | return -EOPNOTSUPP; |
590 | mac = sta->addr; | 345 | mac = sta->addr; |
591 | 346 | ||
592 | if (key->alg == ALG_TKIP) | 347 | idx = ath_reserve_key_cache_slot(common, key->alg); |
593 | idx = ath_reserve_key_cache_slot_tkip(common); | ||
594 | else | ||
595 | idx = ath_reserve_key_cache_slot(common); | ||
596 | if (idx < 0) | ||
597 | return -ENOSPC; /* no free key cache entries */ | ||
598 | } | 348 | } |
599 | 349 | ||
350 | if (idx < 0) | ||
351 | return -ENOSPC; /* no free key cache entries */ | ||
352 | |||
600 | if (key->alg == ALG_TKIP) | 353 | if (key->alg == ALG_TKIP) |
601 | ret = ath_setkey_tkip(common, idx, key->key, &hk, mac, | 354 | ret = ath_setkey_tkip(common, idx, key->key, &hk, mac, |
602 | vif->type == NL80211_IFTYPE_AP); | 355 | vif->type == NL80211_IFTYPE_AP); |
@@ -644,6 +397,19 @@ void ath9k_cmn_key_delete(struct ath_common *common, | |||
644 | } | 397 | } |
645 | EXPORT_SYMBOL(ath9k_cmn_key_delete); | 398 | EXPORT_SYMBOL(ath9k_cmn_key_delete); |
646 | 399 | ||
400 | int ath9k_cmn_count_streams(unsigned int chainmask, int max) | ||
401 | { | ||
402 | int streams = 0; | ||
403 | |||
404 | do { | ||
405 | if (++streams == max) | ||
406 | break; | ||
407 | } while ((chainmask = chainmask & (chainmask - 1))); | ||
408 | |||
409 | return streams; | ||
410 | } | ||
411 | EXPORT_SYMBOL(ath9k_cmn_count_streams); | ||
412 | |||
647 | static int __init ath9k_cmn_init(void) | 413 | static int __init ath9k_cmn_init(void) |
648 | { | 414 | { |
649 | return 0; | 415 | return 0; |
diff --git a/drivers/net/wireless/ath/ath9k/common.h b/drivers/net/wireless/ath/ath9k/common.h index e08f7e5a26e0..97809d39c73f 100644 --- a/drivers/net/wireless/ath/ath9k/common.h +++ b/drivers/net/wireless/ath/ath9k/common.h | |||
@@ -52,82 +52,6 @@ | |||
52 | #define ATH_EP_RND(x, mul) \ | 52 | #define ATH_EP_RND(x, mul) \ |
53 | ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul)) | 53 | ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul)) |
54 | 54 | ||
55 | struct ath_atx_ac { | ||
56 | int sched; | ||
57 | int qnum; | ||
58 | struct list_head list; | ||
59 | struct list_head tid_q; | ||
60 | }; | ||
61 | |||
62 | struct ath_buf_state { | ||
63 | int bfs_nframes; | ||
64 | u16 bfs_al; | ||
65 | u16 bfs_frmlen; | ||
66 | int bfs_seqno; | ||
67 | int bfs_tidno; | ||
68 | int bfs_retries; | ||
69 | u8 bf_type; | ||
70 | u32 bfs_keyix; | ||
71 | enum ath9k_key_type bfs_keytype; | ||
72 | }; | ||
73 | |||
74 | struct ath_buf { | ||
75 | struct list_head list; | ||
76 | struct ath_buf *bf_lastbf; /* last buf of this unit (a frame or | ||
77 | an aggregate) */ | ||
78 | struct ath_buf *bf_next; /* next subframe in the aggregate */ | ||
79 | struct sk_buff *bf_mpdu; /* enclosing frame structure */ | ||
80 | void *bf_desc; /* virtual addr of desc */ | ||
81 | dma_addr_t bf_daddr; /* physical addr of desc */ | ||
82 | dma_addr_t bf_buf_addr; /* physical addr of data buffer */ | ||
83 | bool bf_stale; | ||
84 | bool bf_isnullfunc; | ||
85 | bool bf_tx_aborted; | ||
86 | u16 bf_flags; | ||
87 | struct ath_buf_state bf_state; | ||
88 | dma_addr_t bf_dmacontext; | ||
89 | struct ath_wiphy *aphy; | ||
90 | }; | ||
91 | |||
92 | struct ath_atx_tid { | ||
93 | struct list_head list; | ||
94 | struct list_head buf_q; | ||
95 | struct ath_node *an; | ||
96 | struct ath_atx_ac *ac; | ||
97 | struct ath_buf *tx_buf[ATH_TID_MAX_BUFS]; | ||
98 | u16 seq_start; | ||
99 | u16 seq_next; | ||
100 | u16 baw_size; | ||
101 | int tidno; | ||
102 | int baw_head; /* first un-acked tx buffer */ | ||
103 | int baw_tail; /* next unused tx buffer slot */ | ||
104 | int sched; | ||
105 | int paused; | ||
106 | u8 state; | ||
107 | }; | ||
108 | |||
109 | struct ath_node { | ||
110 | struct ath_common *common; | ||
111 | struct ath_atx_tid tid[WME_NUM_TID]; | ||
112 | struct ath_atx_ac ac[WME_NUM_AC]; | ||
113 | u16 maxampdu; | ||
114 | u8 mpdudensity; | ||
115 | int last_rssi; | ||
116 | }; | ||
117 | |||
118 | int ath9k_cmn_rx_skb_preprocess(struct ath_common *common, | ||
119 | struct ieee80211_hw *hw, | ||
120 | struct sk_buff *skb, | ||
121 | struct ath_rx_status *rx_stats, | ||
122 | struct ieee80211_rx_status *rx_status, | ||
123 | bool *decrypt_error); | ||
124 | |||
125 | void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, | ||
126 | struct sk_buff *skb, | ||
127 | struct ath_rx_status *rx_stats, | ||
128 | struct ieee80211_rx_status *rxs, | ||
129 | bool decrypt_error); | ||
130 | |||
131 | int ath9k_cmn_padpos(__le16 frame_control); | 55 | int ath9k_cmn_padpos(__le16 frame_control); |
132 | int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb); | 56 | int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb); |
133 | void ath9k_cmn_update_ichannel(struct ieee80211_hw *hw, | 57 | void ath9k_cmn_update_ichannel(struct ieee80211_hw *hw, |
@@ -140,3 +64,4 @@ int ath9k_cmn_key_config(struct ath_common *common, | |||
140 | struct ieee80211_key_conf *key); | 64 | struct ieee80211_key_conf *key); |
141 | void ath9k_cmn_key_delete(struct ath_common *common, | 65 | void ath9k_cmn_key_delete(struct ath_common *common, |
142 | struct ieee80211_key_conf *key); | 66 | struct ieee80211_key_conf *key); |
67 | int ath9k_cmn_count_streams(unsigned int chainmask, int max); | ||
diff --git a/drivers/net/wireless/ath/ath9k/debug.c b/drivers/net/wireless/ath/ath9k/debug.c index 29898f8d1893..a127bdba5f90 100644 --- a/drivers/net/wireless/ath/ath9k/debug.c +++ b/drivers/net/wireless/ath/ath9k/debug.c | |||
@@ -42,7 +42,7 @@ static ssize_t read_file_debug(struct file *file, char __user *user_buf, | |||
42 | char buf[32]; | 42 | char buf[32]; |
43 | unsigned int len; | 43 | unsigned int len; |
44 | 44 | ||
45 | len = snprintf(buf, sizeof(buf), "0x%08x\n", common->debug_mask); | 45 | len = sprintf(buf, "0x%08x\n", common->debug_mask); |
46 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 46 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
47 | } | 47 | } |
48 | 48 | ||
@@ -57,7 +57,7 @@ static ssize_t write_file_debug(struct file *file, const char __user *user_buf, | |||
57 | 57 | ||
58 | len = min(count, sizeof(buf) - 1); | 58 | len = min(count, sizeof(buf) - 1); |
59 | if (copy_from_user(buf, user_buf, len)) | 59 | if (copy_from_user(buf, user_buf, len)) |
60 | return -EINVAL; | 60 | return -EFAULT; |
61 | 61 | ||
62 | buf[len] = '\0'; | 62 | buf[len] = '\0'; |
63 | if (strict_strtoul(buf, 0, &mask)) | 63 | if (strict_strtoul(buf, 0, &mask)) |
@@ -86,7 +86,7 @@ static ssize_t read_file_tx_chainmask(struct file *file, char __user *user_buf, | |||
86 | char buf[32]; | 86 | char buf[32]; |
87 | unsigned int len; | 87 | unsigned int len; |
88 | 88 | ||
89 | len = snprintf(buf, sizeof(buf), "0x%08x\n", common->tx_chainmask); | 89 | len = sprintf(buf, "0x%08x\n", common->tx_chainmask); |
90 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 90 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
91 | } | 91 | } |
92 | 92 | ||
@@ -101,7 +101,7 @@ static ssize_t write_file_tx_chainmask(struct file *file, const char __user *use | |||
101 | 101 | ||
102 | len = min(count, sizeof(buf) - 1); | 102 | len = min(count, sizeof(buf) - 1); |
103 | if (copy_from_user(buf, user_buf, len)) | 103 | if (copy_from_user(buf, user_buf, len)) |
104 | return -EINVAL; | 104 | return -EFAULT; |
105 | 105 | ||
106 | buf[len] = '\0'; | 106 | buf[len] = '\0'; |
107 | if (strict_strtoul(buf, 0, &mask)) | 107 | if (strict_strtoul(buf, 0, &mask)) |
@@ -128,7 +128,7 @@ static ssize_t read_file_rx_chainmask(struct file *file, char __user *user_buf, | |||
128 | char buf[32]; | 128 | char buf[32]; |
129 | unsigned int len; | 129 | unsigned int len; |
130 | 130 | ||
131 | len = snprintf(buf, sizeof(buf), "0x%08x\n", common->rx_chainmask); | 131 | len = sprintf(buf, "0x%08x\n", common->rx_chainmask); |
132 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 132 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
133 | } | 133 | } |
134 | 134 | ||
@@ -143,7 +143,7 @@ static ssize_t write_file_rx_chainmask(struct file *file, const char __user *use | |||
143 | 143 | ||
144 | len = min(count, sizeof(buf) - 1); | 144 | len = min(count, sizeof(buf) - 1); |
145 | if (copy_from_user(buf, user_buf, len)) | 145 | if (copy_from_user(buf, user_buf, len)) |
146 | return -EINVAL; | 146 | return -EFAULT; |
147 | 147 | ||
148 | buf[len] = '\0'; | 148 | buf[len] = '\0'; |
149 | if (strict_strtoul(buf, 0, &mask)) | 149 | if (strict_strtoul(buf, 0, &mask)) |
@@ -176,7 +176,7 @@ static ssize_t read_file_dma(struct file *file, char __user *user_buf, | |||
176 | 176 | ||
177 | buf = kmalloc(DMA_BUF_LEN, GFP_KERNEL); | 177 | buf = kmalloc(DMA_BUF_LEN, GFP_KERNEL); |
178 | if (!buf) | 178 | if (!buf) |
179 | return 0; | 179 | return -ENOMEM; |
180 | 180 | ||
181 | ath9k_ps_wakeup(sc); | 181 | ath9k_ps_wakeup(sc); |
182 | 182 | ||
@@ -248,6 +248,9 @@ static ssize_t read_file_dma(struct file *file, char __user *user_buf, | |||
248 | 248 | ||
249 | ath9k_ps_restore(sc); | 249 | ath9k_ps_restore(sc); |
250 | 250 | ||
251 | if (len > DMA_BUF_LEN) | ||
252 | len = DMA_BUF_LEN; | ||
253 | |||
251 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); | 254 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); |
252 | kfree(buf); | 255 | kfree(buf); |
253 | return retval; | 256 | return retval; |
@@ -269,6 +272,8 @@ void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status) | |||
269 | sc->debug.stats.istats.rxlp++; | 272 | sc->debug.stats.istats.rxlp++; |
270 | if (status & ATH9K_INT_RXHP) | 273 | if (status & ATH9K_INT_RXHP) |
271 | sc->debug.stats.istats.rxhp++; | 274 | sc->debug.stats.istats.rxhp++; |
275 | if (status & ATH9K_INT_BB_WATCHDOG) | ||
276 | sc->debug.stats.istats.bb_watchdog++; | ||
272 | } else { | 277 | } else { |
273 | if (status & ATH9K_INT_RX) | 278 | if (status & ATH9K_INT_RX) |
274 | sc->debug.stats.istats.rxok++; | 279 | sc->debug.stats.istats.rxok++; |
@@ -319,6 +324,9 @@ static ssize_t read_file_interrupt(struct file *file, char __user *user_buf, | |||
319 | "%8s: %10u\n", "RXLP", sc->debug.stats.istats.rxlp); | 324 | "%8s: %10u\n", "RXLP", sc->debug.stats.istats.rxlp); |
320 | len += snprintf(buf + len, sizeof(buf) - len, | 325 | len += snprintf(buf + len, sizeof(buf) - len, |
321 | "%8s: %10u\n", "RXHP", sc->debug.stats.istats.rxhp); | 326 | "%8s: %10u\n", "RXHP", sc->debug.stats.istats.rxhp); |
327 | len += snprintf(buf + len, sizeof(buf) - len, | ||
328 | "%8s: %10u\n", "WATCHDOG", | ||
329 | sc->debug.stats.istats.bb_watchdog); | ||
322 | } else { | 330 | } else { |
323 | len += snprintf(buf + len, sizeof(buf) - len, | 331 | len += snprintf(buf + len, sizeof(buf) - len, |
324 | "%8s: %10u\n", "RX", sc->debug.stats.istats.rxok); | 332 | "%8s: %10u\n", "RX", sc->debug.stats.istats.rxok); |
@@ -358,6 +366,9 @@ static ssize_t read_file_interrupt(struct file *file, char __user *user_buf, | |||
358 | len += snprintf(buf + len, sizeof(buf) - len, | 366 | len += snprintf(buf + len, sizeof(buf) - len, |
359 | "%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total); | 367 | "%8s: %10u\n", "TOTAL", sc->debug.stats.istats.total); |
360 | 368 | ||
369 | if (len > sizeof(buf)) | ||
370 | len = sizeof(buf); | ||
371 | |||
361 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 372 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
362 | } | 373 | } |
363 | 374 | ||
@@ -397,11 +408,10 @@ static ssize_t read_file_rcstat(struct file *file, char __user *user_buf, | |||
397 | if (sc->cur_rate_table == NULL) | 408 | if (sc->cur_rate_table == NULL) |
398 | return 0; | 409 | return 0; |
399 | 410 | ||
400 | max = 80 + sc->cur_rate_table->rate_cnt * 1024; | 411 | max = 80 + sc->cur_rate_table->rate_cnt * 1024 + 1; |
401 | buf = kmalloc(max + 1, GFP_KERNEL); | 412 | buf = kmalloc(max, GFP_KERNEL); |
402 | if (buf == NULL) | 413 | if (buf == NULL) |
403 | return 0; | 414 | return -ENOMEM; |
404 | buf[max] = 0; | ||
405 | 415 | ||
406 | len += sprintf(buf, "%6s %6s %6s " | 416 | len += sprintf(buf, "%6s %6s %6s " |
407 | "%10s %10s %10s %10s\n", | 417 | "%10s %10s %10s %10s\n", |
@@ -443,6 +453,9 @@ static ssize_t read_file_rcstat(struct file *file, char __user *user_buf, | |||
443 | stats->per); | 453 | stats->per); |
444 | } | 454 | } |
445 | 455 | ||
456 | if (len > max) | ||
457 | len = max; | ||
458 | |||
446 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); | 459 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); |
447 | kfree(buf); | 460 | kfree(buf); |
448 | return retval; | 461 | return retval; |
@@ -505,6 +518,9 @@ static ssize_t read_file_wiphy(struct file *file, char __user *user_buf, | |||
505 | len += snprintf(buf + len, sizeof(buf) - len, | 518 | len += snprintf(buf + len, sizeof(buf) - len, |
506 | "addrmask: %pM\n", addr); | 519 | "addrmask: %pM\n", addr); |
507 | 520 | ||
521 | if (len > sizeof(buf)) | ||
522 | len = sizeof(buf); | ||
523 | |||
508 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 524 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
509 | } | 525 | } |
510 | 526 | ||
@@ -630,7 +646,7 @@ static ssize_t read_file_xmit(struct file *file, char __user *user_buf, | |||
630 | 646 | ||
631 | buf = kzalloc(size, GFP_KERNEL); | 647 | buf = kzalloc(size, GFP_KERNEL); |
632 | if (buf == NULL) | 648 | if (buf == NULL) |
633 | return 0; | 649 | return -ENOMEM; |
634 | 650 | ||
635 | len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO"); | 651 | len += sprintf(buf, "%30s %10s%10s%10s\n\n", "BE", "BK", "VI", "VO"); |
636 | 652 | ||
@@ -648,6 +664,9 @@ static ssize_t read_file_xmit(struct file *file, char __user *user_buf, | |||
648 | PR("DATA Underrun: ", data_underrun); | 664 | PR("DATA Underrun: ", data_underrun); |
649 | PR("DELIM Underrun: ", delim_underrun); | 665 | PR("DELIM Underrun: ", delim_underrun); |
650 | 666 | ||
667 | if (len > size) | ||
668 | len = size; | ||
669 | |||
651 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); | 670 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); |
652 | kfree(buf); | 671 | kfree(buf); |
653 | 672 | ||
@@ -700,7 +719,7 @@ static ssize_t read_file_recv(struct file *file, char __user *user_buf, | |||
700 | 719 | ||
701 | buf = kzalloc(size, GFP_KERNEL); | 720 | buf = kzalloc(size, GFP_KERNEL); |
702 | if (buf == NULL) | 721 | if (buf == NULL) |
703 | return 0; | 722 | return -ENOMEM; |
704 | 723 | ||
705 | len += snprintf(buf + len, size - len, | 724 | len += snprintf(buf + len, size - len, |
706 | "%18s : %10u\n", "CRC ERR", | 725 | "%18s : %10u\n", "CRC ERR", |
@@ -751,6 +770,9 @@ static ssize_t read_file_recv(struct file *file, char __user *user_buf, | |||
751 | PHY_ERR("HT-LENGTH", ATH9K_PHYERR_HT_LENGTH_ILLEGAL); | 770 | PHY_ERR("HT-LENGTH", ATH9K_PHYERR_HT_LENGTH_ILLEGAL); |
752 | PHY_ERR("HT-RATE", ATH9K_PHYERR_HT_RATE_ILLEGAL); | 771 | PHY_ERR("HT-RATE", ATH9K_PHYERR_HT_RATE_ILLEGAL); |
753 | 772 | ||
773 | if (len > size) | ||
774 | len = size; | ||
775 | |||
754 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); | 776 | retval = simple_read_from_buffer(user_buf, count, ppos, buf, len); |
755 | kfree(buf); | 777 | kfree(buf); |
756 | 778 | ||
@@ -802,7 +824,7 @@ static ssize_t read_file_regidx(struct file *file, char __user *user_buf, | |||
802 | char buf[32]; | 824 | char buf[32]; |
803 | unsigned int len; | 825 | unsigned int len; |
804 | 826 | ||
805 | len = snprintf(buf, sizeof(buf), "0x%08x\n", sc->debug.regidx); | 827 | len = sprintf(buf, "0x%08x\n", sc->debug.regidx); |
806 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 828 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
807 | } | 829 | } |
808 | 830 | ||
@@ -816,7 +838,7 @@ static ssize_t write_file_regidx(struct file *file, const char __user *user_buf, | |||
816 | 838 | ||
817 | len = min(count, sizeof(buf) - 1); | 839 | len = min(count, sizeof(buf) - 1); |
818 | if (copy_from_user(buf, user_buf, len)) | 840 | if (copy_from_user(buf, user_buf, len)) |
819 | return -EINVAL; | 841 | return -EFAULT; |
820 | 842 | ||
821 | buf[len] = '\0'; | 843 | buf[len] = '\0'; |
822 | if (strict_strtoul(buf, 0, ®idx)) | 844 | if (strict_strtoul(buf, 0, ®idx)) |
@@ -843,7 +865,7 @@ static ssize_t read_file_regval(struct file *file, char __user *user_buf, | |||
843 | u32 regval; | 865 | u32 regval; |
844 | 866 | ||
845 | regval = REG_READ_D(ah, sc->debug.regidx); | 867 | regval = REG_READ_D(ah, sc->debug.regidx); |
846 | len = snprintf(buf, sizeof(buf), "0x%08x\n", regval); | 868 | len = sprintf(buf, "0x%08x\n", regval); |
847 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 869 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
848 | } | 870 | } |
849 | 871 | ||
@@ -858,7 +880,7 @@ static ssize_t write_file_regval(struct file *file, const char __user *user_buf, | |||
858 | 880 | ||
859 | len = min(count, sizeof(buf) - 1); | 881 | len = min(count, sizeof(buf) - 1); |
860 | if (copy_from_user(buf, user_buf, len)) | 882 | if (copy_from_user(buf, user_buf, len)) |
861 | return -EINVAL; | 883 | return -EFAULT; |
862 | 884 | ||
863 | buf[len] = '\0'; | 885 | buf[len] = '\0'; |
864 | if (strict_strtoul(buf, 0, ®val)) | 886 | if (strict_strtoul(buf, 0, ®val)) |
diff --git a/drivers/net/wireless/ath/ath9k/debug.h b/drivers/net/wireless/ath/ath9k/debug.h index 5147b8709e10..5d21704e87ff 100644 --- a/drivers/net/wireless/ath/ath9k/debug.h +++ b/drivers/net/wireless/ath/ath9k/debug.h | |||
@@ -53,6 +53,7 @@ struct ath_buf; | |||
53 | * @cabend: RX End of CAB traffic | 53 | * @cabend: RX End of CAB traffic |
54 | * @dtimsync: DTIM sync lossage | 54 | * @dtimsync: DTIM sync lossage |
55 | * @dtim: RX Beacon with DTIM | 55 | * @dtim: RX Beacon with DTIM |
56 | * @bb_watchdog: Baseband watchdog | ||
56 | */ | 57 | */ |
57 | struct ath_interrupt_stats { | 58 | struct ath_interrupt_stats { |
58 | u32 total; | 59 | u32 total; |
@@ -76,6 +77,7 @@ struct ath_interrupt_stats { | |||
76 | u32 cabend; | 77 | u32 cabend; |
77 | u32 dtimsync; | 78 | u32 dtimsync; |
78 | u32 dtim; | 79 | u32 dtim; |
80 | u32 bb_watchdog; | ||
79 | }; | 81 | }; |
80 | 82 | ||
81 | struct ath_rc_stats { | 83 | struct ath_rc_stats { |
diff --git a/drivers/net/wireless/ath/ath9k/eeprom.c b/drivers/net/wireless/ath/ath9k/eeprom.c index ca8704a9d7ac..1266333f586d 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom.c +++ b/drivers/net/wireless/ath/ath9k/eeprom.c | |||
@@ -24,6 +24,14 @@ static inline u16 ath9k_hw_fbin2freq(u8 fbin, bool is2GHz) | |||
24 | return (u16) ((is2GHz) ? (2300 + fbin) : (4800 + 5 * fbin)); | 24 | return (u16) ((is2GHz) ? (2300 + fbin) : (4800 + 5 * fbin)); |
25 | } | 25 | } |
26 | 26 | ||
27 | void ath9k_hw_analog_shift_regwrite(struct ath_hw *ah, u32 reg, u32 val) | ||
28 | { | ||
29 | REG_WRITE(ah, reg, val); | ||
30 | |||
31 | if (ah->config.analog_shiftreg) | ||
32 | udelay(100); | ||
33 | } | ||
34 | |||
27 | void ath9k_hw_analog_shift_rmw(struct ath_hw *ah, u32 reg, u32 mask, | 35 | void ath9k_hw_analog_shift_rmw(struct ath_hw *ah, u32 reg, u32 mask, |
28 | u32 shift, u32 val) | 36 | u32 shift, u32 val) |
29 | { | 37 | { |
@@ -250,6 +258,27 @@ u16 ath9k_hw_get_max_edge_power(u16 freq, struct cal_ctl_edges *pRdEdgesPower, | |||
250 | return twiceMaxEdgePower; | 258 | return twiceMaxEdgePower; |
251 | } | 259 | } |
252 | 260 | ||
261 | void ath9k_hw_update_regulatory_maxpower(struct ath_hw *ah) | ||
262 | { | ||
263 | struct ath_common *common = ath9k_hw_common(ah); | ||
264 | struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah); | ||
265 | |||
266 | switch (ar5416_get_ntxchains(ah->txchainmask)) { | ||
267 | case 1: | ||
268 | break; | ||
269 | case 2: | ||
270 | regulatory->max_power_level += INCREASE_MAXPOW_BY_TWO_CHAIN; | ||
271 | break; | ||
272 | case 3: | ||
273 | regulatory->max_power_level += INCREASE_MAXPOW_BY_THREE_CHAIN; | ||
274 | break; | ||
275 | default: | ||
276 | ath_print(common, ATH_DBG_EEPROM, | ||
277 | "Invalid chainmask configuration\n"); | ||
278 | break; | ||
279 | } | ||
280 | } | ||
281 | |||
253 | int ath9k_hw_eeprom_init(struct ath_hw *ah) | 282 | int ath9k_hw_eeprom_init(struct ath_hw *ah) |
254 | { | 283 | { |
255 | int status; | 284 | int status; |
diff --git a/drivers/net/wireless/ath/ath9k/eeprom.h b/drivers/net/wireless/ath/ath9k/eeprom.h index 21354c15a9a9..7da7d73c0847 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom.h +++ b/drivers/net/wireless/ath/ath9k/eeprom.h | |||
@@ -679,6 +679,7 @@ struct eeprom_ops { | |||
679 | u16 (*get_spur_channel)(struct ath_hw *ah, u16 i, bool is2GHz); | 679 | u16 (*get_spur_channel)(struct ath_hw *ah, u16 i, bool is2GHz); |
680 | }; | 680 | }; |
681 | 681 | ||
682 | void ath9k_hw_analog_shift_regwrite(struct ath_hw *ah, u32 reg, u32 val); | ||
682 | void ath9k_hw_analog_shift_rmw(struct ath_hw *ah, u32 reg, u32 mask, | 683 | void ath9k_hw_analog_shift_rmw(struct ath_hw *ah, u32 reg, u32 mask, |
683 | u32 shift, u32 val); | 684 | u32 shift, u32 val); |
684 | int16_t ath9k_hw_interpolate(u16 target, u16 srcLeft, u16 srcRight, | 685 | int16_t ath9k_hw_interpolate(u16 target, u16 srcLeft, u16 srcRight, |
@@ -704,6 +705,7 @@ void ath9k_hw_get_target_powers(struct ath_hw *ah, | |||
704 | u16 numRates, bool isHt40Target); | 705 | u16 numRates, bool isHt40Target); |
705 | u16 ath9k_hw_get_max_edge_power(u16 freq, struct cal_ctl_edges *pRdEdgesPower, | 706 | u16 ath9k_hw_get_max_edge_power(u16 freq, struct cal_ctl_edges *pRdEdgesPower, |
706 | bool is2GHz, int num_band_edges); | 707 | bool is2GHz, int num_band_edges); |
708 | void ath9k_hw_update_regulatory_maxpower(struct ath_hw *ah); | ||
707 | int ath9k_hw_eeprom_init(struct ath_hw *ah); | 709 | int ath9k_hw_eeprom_init(struct ath_hw *ah); |
708 | 710 | ||
709 | #define ar5416_get_ntxchains(_txchainmask) \ | 711 | #define ar5416_get_ntxchains(_txchainmask) \ |
diff --git a/drivers/net/wireless/ath/ath9k/eeprom_4k.c b/drivers/net/wireless/ath/ath9k/eeprom_4k.c index 41a77d1bd439..e25a2abbf561 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom_4k.c +++ b/drivers/net/wireless/ath/ath9k/eeprom_4k.c | |||
@@ -249,6 +249,7 @@ static void ath9k_hw_get_4k_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
249 | struct chan_centers centers; | 249 | struct chan_centers centers; |
250 | #define PD_GAIN_BOUNDARY_DEFAULT 58; | 250 | #define PD_GAIN_BOUNDARY_DEFAULT 58; |
251 | 251 | ||
252 | memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS); | ||
252 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); | 253 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); |
253 | 254 | ||
254 | for (numPiers = 0; numPiers < availPiers; numPiers++) { | 255 | for (numPiers = 0; numPiers < availPiers; numPiers++) { |
diff --git a/drivers/net/wireless/ath/ath9k/eeprom_9287.c b/drivers/net/wireless/ath/ath9k/eeprom_9287.c index b471db5fb82d..39a41053705f 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom_9287.c +++ b/drivers/net/wireless/ath/ath9k/eeprom_9287.c | |||
@@ -17,17 +17,19 @@ | |||
17 | #include "hw.h" | 17 | #include "hw.h" |
18 | #include "ar9002_phy.h" | 18 | #include "ar9002_phy.h" |
19 | 19 | ||
20 | static int ath9k_hw_AR9287_get_eeprom_ver(struct ath_hw *ah) | 20 | #define NUM_EEP_WORDS (sizeof(struct ar9287_eeprom) / sizeof(u16)) |
21 | |||
22 | static int ath9k_hw_ar9287_get_eeprom_ver(struct ath_hw *ah) | ||
21 | { | 23 | { |
22 | return (ah->eeprom.map9287.baseEepHeader.version >> 12) & 0xF; | 24 | return (ah->eeprom.map9287.baseEepHeader.version >> 12) & 0xF; |
23 | } | 25 | } |
24 | 26 | ||
25 | static int ath9k_hw_AR9287_get_eeprom_rev(struct ath_hw *ah) | 27 | static int ath9k_hw_ar9287_get_eeprom_rev(struct ath_hw *ah) |
26 | { | 28 | { |
27 | return (ah->eeprom.map9287.baseEepHeader.version) & 0xFFF; | 29 | return (ah->eeprom.map9287.baseEepHeader.version) & 0xFFF; |
28 | } | 30 | } |
29 | 31 | ||
30 | static bool ath9k_hw_AR9287_fill_eeprom(struct ath_hw *ah) | 32 | static bool ath9k_hw_ar9287_fill_eeprom(struct ath_hw *ah) |
31 | { | 33 | { |
32 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; | 34 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; |
33 | struct ath_common *common = ath9k_hw_common(ah); | 35 | struct ath_common *common = ath9k_hw_common(ah); |
@@ -40,20 +42,20 @@ static bool ath9k_hw_AR9287_fill_eeprom(struct ath_hw *ah) | |||
40 | "Reading from EEPROM, not flash\n"); | 42 | "Reading from EEPROM, not flash\n"); |
41 | } | 43 | } |
42 | 44 | ||
43 | for (addr = 0; addr < sizeof(struct ar9287_eeprom) / sizeof(u16); | 45 | for (addr = 0; addr < NUM_EEP_WORDS; addr++) { |
44 | addr++) { | 46 | if (!ath9k_hw_nvram_read(common, addr + eep_start_loc, |
45 | if (!ath9k_hw_nvram_read(common, | 47 | eep_data)) { |
46 | addr + eep_start_loc, eep_data)) { | ||
47 | ath_print(common, ATH_DBG_EEPROM, | 48 | ath_print(common, ATH_DBG_EEPROM, |
48 | "Unable to read eeprom region\n"); | 49 | "Unable to read eeprom region\n"); |
49 | return false; | 50 | return false; |
50 | } | 51 | } |
51 | eep_data++; | 52 | eep_data++; |
52 | } | 53 | } |
54 | |||
53 | return true; | 55 | return true; |
54 | } | 56 | } |
55 | 57 | ||
56 | static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | 58 | static int ath9k_hw_ar9287_check_eeprom(struct ath_hw *ah) |
57 | { | 59 | { |
58 | u32 sum = 0, el, integer; | 60 | u32 sum = 0, el, integer; |
59 | u16 temp, word, magic, magic2, *eepdata; | 61 | u16 temp, word, magic, magic2, *eepdata; |
@@ -63,8 +65,8 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
63 | struct ath_common *common = ath9k_hw_common(ah); | 65 | struct ath_common *common = ath9k_hw_common(ah); |
64 | 66 | ||
65 | if (!ath9k_hw_use_flash(ah)) { | 67 | if (!ath9k_hw_use_flash(ah)) { |
66 | if (!ath9k_hw_nvram_read(common, | 68 | if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET, |
67 | AR5416_EEPROM_MAGIC_OFFSET, &magic)) { | 69 | &magic)) { |
68 | ath_print(common, ATH_DBG_FATAL, | 70 | ath_print(common, ATH_DBG_FATAL, |
69 | "Reading Magic # failed\n"); | 71 | "Reading Magic # failed\n"); |
70 | return false; | 72 | return false; |
@@ -72,6 +74,7 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
72 | 74 | ||
73 | ath_print(common, ATH_DBG_EEPROM, | 75 | ath_print(common, ATH_DBG_EEPROM, |
74 | "Read Magic = 0x%04X\n", magic); | 76 | "Read Magic = 0x%04X\n", magic); |
77 | |||
75 | if (magic != AR5416_EEPROM_MAGIC) { | 78 | if (magic != AR5416_EEPROM_MAGIC) { |
76 | magic2 = swab16(magic); | 79 | magic2 = swab16(magic); |
77 | 80 | ||
@@ -79,9 +82,7 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
79 | need_swap = true; | 82 | need_swap = true; |
80 | eepdata = (u16 *)(&ah->eeprom); | 83 | eepdata = (u16 *)(&ah->eeprom); |
81 | 84 | ||
82 | for (addr = 0; | 85 | for (addr = 0; addr < NUM_EEP_WORDS; addr++) { |
83 | addr < sizeof(struct ar9287_eeprom) / sizeof(u16); | ||
84 | addr++) { | ||
85 | temp = swab16(*eepdata); | 86 | temp = swab16(*eepdata); |
86 | *eepdata = temp; | 87 | *eepdata = temp; |
87 | eepdata++; | 88 | eepdata++; |
@@ -89,13 +90,14 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
89 | } else { | 90 | } else { |
90 | ath_print(common, ATH_DBG_FATAL, | 91 | ath_print(common, ATH_DBG_FATAL, |
91 | "Invalid EEPROM Magic. " | 92 | "Invalid EEPROM Magic. " |
92 | "endianness mismatch.\n"); | 93 | "Endianness mismatch.\n"); |
93 | return -EINVAL; | 94 | return -EINVAL; |
94 | } | 95 | } |
95 | } | 96 | } |
96 | } | 97 | } |
97 | ath_print(common, ATH_DBG_EEPROM, "need_swap = %s.\n", need_swap ? | 98 | |
98 | "True" : "False"); | 99 | ath_print(common, ATH_DBG_EEPROM, "need_swap = %s.\n", |
100 | need_swap ? "True" : "False"); | ||
99 | 101 | ||
100 | if (need_swap) | 102 | if (need_swap) |
101 | el = swab16(ah->eeprom.map9287.baseEepHeader.length); | 103 | el = swab16(ah->eeprom.map9287.baseEepHeader.length); |
@@ -108,6 +110,7 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
108 | el = el / sizeof(u16); | 110 | el = el / sizeof(u16); |
109 | 111 | ||
110 | eepdata = (u16 *)(&ah->eeprom); | 112 | eepdata = (u16 *)(&ah->eeprom); |
113 | |||
111 | for (i = 0; i < el; i++) | 114 | for (i = 0; i < el; i++) |
112 | sum ^= *eepdata++; | 115 | sum ^= *eepdata++; |
113 | 116 | ||
@@ -161,7 +164,7 @@ static int ath9k_hw_AR9287_check_eeprom(struct ath_hw *ah) | |||
161 | return 0; | 164 | return 0; |
162 | } | 165 | } |
163 | 166 | ||
164 | static u32 ath9k_hw_AR9287_get_eeprom(struct ath_hw *ah, | 167 | static u32 ath9k_hw_ar9287_get_eeprom(struct ath_hw *ah, |
165 | enum eeprom_param param) | 168 | enum eeprom_param param) |
166 | { | 169 | { |
167 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; | 170 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; |
@@ -170,6 +173,7 @@ static u32 ath9k_hw_AR9287_get_eeprom(struct ath_hw *ah, | |||
170 | u16 ver_minor; | 173 | u16 ver_minor; |
171 | 174 | ||
172 | ver_minor = pBase->version & AR9287_EEP_VER_MINOR_MASK; | 175 | ver_minor = pBase->version & AR9287_EEP_VER_MINOR_MASK; |
176 | |||
173 | switch (param) { | 177 | switch (param) { |
174 | case EEP_NFTHRESH_2: | 178 | case EEP_NFTHRESH_2: |
175 | return pModal->noiseFloorThreshCh[0]; | 179 | return pModal->noiseFloorThreshCh[0]; |
@@ -214,29 +218,30 @@ static u32 ath9k_hw_AR9287_get_eeprom(struct ath_hw *ah, | |||
214 | } | 218 | } |
215 | } | 219 | } |
216 | 220 | ||
217 | 221 | static void ath9k_hw_get_ar9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |
218 | static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | 222 | struct ath9k_channel *chan, |
219 | struct ath9k_channel *chan, | 223 | struct cal_data_per_freq_ar9287 *pRawDataSet, |
220 | struct cal_data_per_freq_ar9287 *pRawDataSet, | 224 | u8 *bChans, u16 availPiers, |
221 | u8 *bChans, u16 availPiers, | 225 | u16 tPdGainOverlap, |
222 | u16 tPdGainOverlap, int16_t *pMinCalPower, | 226 | int16_t *pMinCalPower, |
223 | u16 *pPdGainBoundaries, u8 *pPDADCValues, | 227 | u16 *pPdGainBoundaries, |
224 | u16 numXpdGains) | 228 | u8 *pPDADCValues, |
229 | u16 numXpdGains) | ||
225 | { | 230 | { |
226 | #define TMP_VAL_VPD_TABLE \ | 231 | #define TMP_VAL_VPD_TABLE \ |
227 | ((vpdTableI[i][sizeCurrVpdTable - 1] + (ss - maxIndex + 1) * vpdStep)); | 232 | ((vpdTableI[i][sizeCurrVpdTable - 1] + (ss - maxIndex + 1) * vpdStep)); |
228 | 233 | ||
229 | int i, j, k; | 234 | int i, j, k; |
230 | int16_t ss; | 235 | int16_t ss; |
231 | u16 idxL = 0, idxR = 0, numPiers; | 236 | u16 idxL = 0, idxR = 0, numPiers; |
232 | u8 *pVpdL, *pVpdR, *pPwrL, *pPwrR; | 237 | u8 *pVpdL, *pVpdR, *pPwrL, *pPwrR; |
233 | u8 minPwrT4[AR9287_NUM_PD_GAINS]; | 238 | u8 minPwrT4[AR9287_NUM_PD_GAINS]; |
234 | u8 maxPwrT4[AR9287_NUM_PD_GAINS]; | 239 | u8 maxPwrT4[AR9287_NUM_PD_GAINS]; |
235 | int16_t vpdStep; | 240 | int16_t vpdStep; |
236 | int16_t tmpVal; | 241 | int16_t tmpVal; |
237 | u16 sizeCurrVpdTable, maxIndex, tgtIndex; | 242 | u16 sizeCurrVpdTable, maxIndex, tgtIndex; |
238 | bool match; | 243 | bool match; |
239 | int16_t minDelta = 0; | 244 | int16_t minDelta = 0; |
240 | struct chan_centers centers; | 245 | struct chan_centers centers; |
241 | static u8 vpdTableL[AR5416_EEP4K_NUM_PD_GAINS] | 246 | static u8 vpdTableL[AR5416_EEP4K_NUM_PD_GAINS] |
242 | [AR5416_MAX_PWR_RANGE_IN_HALF_DB]; | 247 | [AR5416_MAX_PWR_RANGE_IN_HALF_DB]; |
@@ -245,6 +250,7 @@ static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
245 | static u8 vpdTableI[AR5416_EEP4K_NUM_PD_GAINS] | 250 | static u8 vpdTableI[AR5416_EEP4K_NUM_PD_GAINS] |
246 | [AR5416_MAX_PWR_RANGE_IN_HALF_DB]; | 251 | [AR5416_MAX_PWR_RANGE_IN_HALF_DB]; |
247 | 252 | ||
253 | memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS); | ||
248 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); | 254 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); |
249 | 255 | ||
250 | for (numPiers = 0; numPiers < availPiers; numPiers++) { | 256 | for (numPiers = 0; numPiers < availPiers; numPiers++) { |
@@ -253,18 +259,18 @@ static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
253 | } | 259 | } |
254 | 260 | ||
255 | match = ath9k_hw_get_lower_upper_index( | 261 | match = ath9k_hw_get_lower_upper_index( |
256 | (u8)FREQ2FBIN(centers.synth_center, | 262 | (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)), |
257 | IS_CHAN_2GHZ(chan)), bChans, numPiers, | 263 | bChans, numPiers, &idxL, &idxR); |
258 | &idxL, &idxR); | ||
259 | 264 | ||
260 | if (match) { | 265 | if (match) { |
261 | for (i = 0; i < numXpdGains; i++) { | 266 | for (i = 0; i < numXpdGains; i++) { |
262 | minPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][0]; | 267 | minPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][0]; |
263 | maxPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][4]; | 268 | maxPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][4]; |
264 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], | 269 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], |
265 | pRawDataSet[idxL].pwrPdg[i], | 270 | pRawDataSet[idxL].pwrPdg[i], |
266 | pRawDataSet[idxL].vpdPdg[i], | 271 | pRawDataSet[idxL].vpdPdg[i], |
267 | AR9287_PD_GAIN_ICEPTS, vpdTableI[i]); | 272 | AR9287_PD_GAIN_ICEPTS, |
273 | vpdTableI[i]); | ||
268 | } | 274 | } |
269 | } else { | 275 | } else { |
270 | for (i = 0; i < numXpdGains; i++) { | 276 | for (i = 0; i < numXpdGains; i++) { |
@@ -275,61 +281,59 @@ static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
275 | 281 | ||
276 | minPwrT4[i] = max(pPwrL[0], pPwrR[0]); | 282 | minPwrT4[i] = max(pPwrL[0], pPwrR[0]); |
277 | 283 | ||
278 | maxPwrT4[i] = | 284 | maxPwrT4[i] = min(pPwrL[AR9287_PD_GAIN_ICEPTS - 1], |
279 | min(pPwrL[AR9287_PD_GAIN_ICEPTS - 1], | 285 | pPwrR[AR9287_PD_GAIN_ICEPTS - 1]); |
280 | pPwrR[AR9287_PD_GAIN_ICEPTS - 1]); | ||
281 | 286 | ||
282 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], | 287 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], |
283 | pPwrL, pVpdL, | 288 | pPwrL, pVpdL, |
284 | AR9287_PD_GAIN_ICEPTS, | 289 | AR9287_PD_GAIN_ICEPTS, |
285 | vpdTableL[i]); | 290 | vpdTableL[i]); |
286 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], | 291 | ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i], |
287 | pPwrR, pVpdR, | 292 | pPwrR, pVpdR, |
288 | AR9287_PD_GAIN_ICEPTS, | 293 | AR9287_PD_GAIN_ICEPTS, |
289 | vpdTableR[i]); | 294 | vpdTableR[i]); |
290 | 295 | ||
291 | for (j = 0; j <= (maxPwrT4[i] - minPwrT4[i]) / 2; j++) { | 296 | for (j = 0; j <= (maxPwrT4[i] - minPwrT4[i]) / 2; j++) { |
292 | vpdTableI[i][j] = | 297 | vpdTableI[i][j] = (u8)(ath9k_hw_interpolate( |
293 | (u8)(ath9k_hw_interpolate((u16) | 298 | (u16)FREQ2FBIN(centers. synth_center, |
294 | FREQ2FBIN(centers. synth_center, | 299 | IS_CHAN_2GHZ(chan)), |
295 | IS_CHAN_2GHZ(chan)), | 300 | bChans[idxL], bChans[idxR], |
296 | bChans[idxL], bChans[idxR], | 301 | vpdTableL[i][j], vpdTableR[i][j])); |
297 | vpdTableL[i][j], vpdTableR[i][j])); | ||
298 | } | 302 | } |
299 | } | 303 | } |
300 | } | 304 | } |
301 | *pMinCalPower = (int16_t)(minPwrT4[0] / 2); | ||
302 | 305 | ||
306 | *pMinCalPower = (int16_t)(minPwrT4[0] / 2); | ||
303 | k = 0; | 307 | k = 0; |
308 | |||
304 | for (i = 0; i < numXpdGains; i++) { | 309 | for (i = 0; i < numXpdGains; i++) { |
305 | if (i == (numXpdGains - 1)) | 310 | if (i == (numXpdGains - 1)) |
306 | pPdGainBoundaries[i] = (u16)(maxPwrT4[i] / 2); | 311 | pPdGainBoundaries[i] = |
312 | (u16)(maxPwrT4[i] / 2); | ||
307 | else | 313 | else |
308 | pPdGainBoundaries[i] = (u16)((maxPwrT4[i] + | 314 | pPdGainBoundaries[i] = |
309 | minPwrT4[i+1]) / 4); | 315 | (u16)((maxPwrT4[i] + minPwrT4[i+1]) / 4); |
310 | 316 | ||
311 | pPdGainBoundaries[i] = min((u16)AR5416_MAX_RATE_POWER, | 317 | pPdGainBoundaries[i] = min((u16)AR5416_MAX_RATE_POWER, |
312 | pPdGainBoundaries[i]); | 318 | pPdGainBoundaries[i]); |
313 | 319 | ||
314 | 320 | ||
315 | if ((i == 0) && !AR_SREV_5416_20_OR_LATER(ah)) { | 321 | minDelta = 0; |
316 | minDelta = pPdGainBoundaries[0] - 23; | ||
317 | pPdGainBoundaries[0] = 23; | ||
318 | } else | ||
319 | minDelta = 0; | ||
320 | 322 | ||
321 | if (i == 0) { | 323 | if (i == 0) { |
322 | if (AR_SREV_9280_10_OR_LATER(ah)) | 324 | if (AR_SREV_9280_10_OR_LATER(ah)) |
323 | ss = (int16_t)(0 - (minPwrT4[i] / 2)); | 325 | ss = (int16_t)(0 - (minPwrT4[i] / 2)); |
324 | else | 326 | else |
325 | ss = 0; | 327 | ss = 0; |
326 | } else | 328 | } else { |
327 | ss = (int16_t)((pPdGainBoundaries[i-1] - | 329 | ss = (int16_t)((pPdGainBoundaries[i-1] - |
328 | (minPwrT4[i] / 2)) - | 330 | (minPwrT4[i] / 2)) - |
329 | tPdGainOverlap + 1 + minDelta); | 331 | tPdGainOverlap + 1 + minDelta); |
332 | } | ||
330 | 333 | ||
331 | vpdStep = (int16_t)(vpdTableI[i][1] - vpdTableI[i][0]); | 334 | vpdStep = (int16_t)(vpdTableI[i][1] - vpdTableI[i][0]); |
332 | vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep); | 335 | vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep); |
336 | |||
333 | while ((ss < 0) && (k < (AR9287_NUM_PDADC_VALUES - 1))) { | 337 | while ((ss < 0) && (k < (AR9287_NUM_PDADC_VALUES - 1))) { |
334 | tmpVal = (int16_t)(vpdTableI[i][0] + ss * vpdStep); | 338 | tmpVal = (int16_t)(vpdTableI[i][0] + ss * vpdStep); |
335 | pPDADCValues[k++] = (u8)((tmpVal < 0) ? 0 : tmpVal); | 339 | pPDADCValues[k++] = (u8)((tmpVal < 0) ? 0 : tmpVal); |
@@ -348,12 +352,13 @@ static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
348 | vpdStep = (int16_t)(vpdTableI[i][sizeCurrVpdTable - 1] - | 352 | vpdStep = (int16_t)(vpdTableI[i][sizeCurrVpdTable - 1] - |
349 | vpdTableI[i][sizeCurrVpdTable - 2]); | 353 | vpdTableI[i][sizeCurrVpdTable - 2]); |
350 | vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep); | 354 | vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep); |
355 | |||
351 | if (tgtIndex > maxIndex) { | 356 | if (tgtIndex > maxIndex) { |
352 | while ((ss <= tgtIndex) && | 357 | while ((ss <= tgtIndex) && |
353 | (k < (AR9287_NUM_PDADC_VALUES - 1))) { | 358 | (k < (AR9287_NUM_PDADC_VALUES - 1))) { |
354 | tmpVal = (int16_t) TMP_VAL_VPD_TABLE; | 359 | tmpVal = (int16_t) TMP_VAL_VPD_TABLE; |
355 | pPDADCValues[k++] = (u8)((tmpVal > 255) ? | 360 | pPDADCValues[k++] = |
356 | 255 : tmpVal); | 361 | (u8)((tmpVal > 255) ? 255 : tmpVal); |
357 | ss++; | 362 | ss++; |
358 | } | 363 | } |
359 | } | 364 | } |
@@ -375,10 +380,9 @@ static void ath9k_hw_get_AR9287_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
375 | static void ar9287_eeprom_get_tx_gain_index(struct ath_hw *ah, | 380 | static void ar9287_eeprom_get_tx_gain_index(struct ath_hw *ah, |
376 | struct ath9k_channel *chan, | 381 | struct ath9k_channel *chan, |
377 | struct cal_data_op_loop_ar9287 *pRawDatasetOpLoop, | 382 | struct cal_data_op_loop_ar9287 *pRawDatasetOpLoop, |
378 | u8 *pCalChans, u16 availPiers, | 383 | u8 *pCalChans, u16 availPiers, int8_t *pPwr) |
379 | int8_t *pPwr) | ||
380 | { | 384 | { |
381 | u16 idxL = 0, idxR = 0, numPiers; | 385 | u16 idxL = 0, idxR = 0, numPiers; |
382 | bool match; | 386 | bool match; |
383 | struct chan_centers centers; | 387 | struct chan_centers centers; |
384 | 388 | ||
@@ -390,15 +394,14 @@ static void ar9287_eeprom_get_tx_gain_index(struct ath_hw *ah, | |||
390 | } | 394 | } |
391 | 395 | ||
392 | match = ath9k_hw_get_lower_upper_index( | 396 | match = ath9k_hw_get_lower_upper_index( |
393 | (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)), | 397 | (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)), |
394 | pCalChans, numPiers, | 398 | pCalChans, numPiers, &idxL, &idxR); |
395 | &idxL, &idxR); | ||
396 | 399 | ||
397 | if (match) { | 400 | if (match) { |
398 | *pPwr = (int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0]; | 401 | *pPwr = (int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0]; |
399 | } else { | 402 | } else { |
400 | *pPwr = ((int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0] + | 403 | *pPwr = ((int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0] + |
401 | (int8_t) pRawDatasetOpLoop[idxR].pwrPdg[0][0])/2; | 404 | (int8_t) pRawDatasetOpLoop[idxR].pwrPdg[0][0])/2; |
402 | } | 405 | } |
403 | 406 | ||
404 | } | 407 | } |
@@ -409,16 +412,22 @@ static void ar9287_eeprom_olpc_set_pdadcs(struct ath_hw *ah, | |||
409 | u32 tmpVal; | 412 | u32 tmpVal; |
410 | u32 a; | 413 | u32 a; |
411 | 414 | ||
415 | /* Enable OLPC for chain 0 */ | ||
416 | |||
412 | tmpVal = REG_READ(ah, 0xa270); | 417 | tmpVal = REG_READ(ah, 0xa270); |
413 | tmpVal = tmpVal & 0xFCFFFFFF; | 418 | tmpVal = tmpVal & 0xFCFFFFFF; |
414 | tmpVal = tmpVal | (0x3 << 24); | 419 | tmpVal = tmpVal | (0x3 << 24); |
415 | REG_WRITE(ah, 0xa270, tmpVal); | 420 | REG_WRITE(ah, 0xa270, tmpVal); |
416 | 421 | ||
422 | /* Enable OLPC for chain 1 */ | ||
423 | |||
417 | tmpVal = REG_READ(ah, 0xb270); | 424 | tmpVal = REG_READ(ah, 0xb270); |
418 | tmpVal = tmpVal & 0xFCFFFFFF; | 425 | tmpVal = tmpVal & 0xFCFFFFFF; |
419 | tmpVal = tmpVal | (0x3 << 24); | 426 | tmpVal = tmpVal | (0x3 << 24); |
420 | REG_WRITE(ah, 0xb270, tmpVal); | 427 | REG_WRITE(ah, 0xb270, tmpVal); |
421 | 428 | ||
429 | /* Write the OLPC ref power for chain 0 */ | ||
430 | |||
422 | if (chain == 0) { | 431 | if (chain == 0) { |
423 | tmpVal = REG_READ(ah, 0xa398); | 432 | tmpVal = REG_READ(ah, 0xa398); |
424 | tmpVal = tmpVal & 0xff00ffff; | 433 | tmpVal = tmpVal & 0xff00ffff; |
@@ -427,6 +436,8 @@ static void ar9287_eeprom_olpc_set_pdadcs(struct ath_hw *ah, | |||
427 | REG_WRITE(ah, 0xa398, tmpVal); | 436 | REG_WRITE(ah, 0xa398, tmpVal); |
428 | } | 437 | } |
429 | 438 | ||
439 | /* Write the OLPC ref power for chain 1 */ | ||
440 | |||
430 | if (chain == 1) { | 441 | if (chain == 1) { |
431 | tmpVal = REG_READ(ah, 0xb398); | 442 | tmpVal = REG_READ(ah, 0xb398); |
432 | tmpVal = tmpVal & 0xff00ffff; | 443 | tmpVal = tmpVal & 0xff00ffff; |
@@ -436,28 +447,29 @@ static void ar9287_eeprom_olpc_set_pdadcs(struct ath_hw *ah, | |||
436 | } | 447 | } |
437 | } | 448 | } |
438 | 449 | ||
439 | static void ath9k_hw_set_AR9287_power_cal_table(struct ath_hw *ah, | 450 | static void ath9k_hw_set_ar9287_power_cal_table(struct ath_hw *ah, |
440 | struct ath9k_channel *chan, | 451 | struct ath9k_channel *chan, |
441 | int16_t *pTxPowerIndexOffset) | 452 | int16_t *pTxPowerIndexOffset) |
442 | { | 453 | { |
443 | struct ath_common *common = ath9k_hw_common(ah); | ||
444 | struct cal_data_per_freq_ar9287 *pRawDataset; | 454 | struct cal_data_per_freq_ar9287 *pRawDataset; |
445 | struct cal_data_op_loop_ar9287 *pRawDatasetOpenLoop; | 455 | struct cal_data_op_loop_ar9287 *pRawDatasetOpenLoop; |
446 | u8 *pCalBChans = NULL; | 456 | u8 *pCalBChans = NULL; |
447 | u16 pdGainOverlap_t2; | 457 | u16 pdGainOverlap_t2; |
448 | u8 pdadcValues[AR9287_NUM_PDADC_VALUES]; | 458 | u8 pdadcValues[AR9287_NUM_PDADC_VALUES]; |
449 | u16 gainBoundaries[AR9287_PD_GAINS_IN_MASK]; | 459 | u16 gainBoundaries[AR9287_PD_GAINS_IN_MASK]; |
450 | u16 numPiers = 0, i, j; | 460 | u16 numPiers = 0, i, j; |
451 | int16_t tMinCalPower; | 461 | int16_t tMinCalPower; |
452 | u16 numXpdGain, xpdMask; | 462 | u16 numXpdGain, xpdMask; |
453 | u16 xpdGainValues[AR9287_NUM_PD_GAINS] = {0, 0, 0, 0}; | 463 | u16 xpdGainValues[AR9287_NUM_PD_GAINS] = {0, 0, 0, 0}; |
454 | u32 reg32, regOffset, regChainOffset; | 464 | u32 reg32, regOffset, regChainOffset, regval; |
455 | int16_t modalIdx, diff = 0; | 465 | int16_t modalIdx, diff = 0; |
456 | struct ar9287_eeprom *pEepData = &ah->eeprom.map9287; | 466 | struct ar9287_eeprom *pEepData = &ah->eeprom.map9287; |
467 | |||
457 | modalIdx = IS_CHAN_2GHZ(chan) ? 1 : 0; | 468 | modalIdx = IS_CHAN_2GHZ(chan) ? 1 : 0; |
458 | xpdMask = pEepData->modalHeader.xpdGain; | 469 | xpdMask = pEepData->modalHeader.xpdGain; |
470 | |||
459 | if ((pEepData->baseEepHeader.version & AR9287_EEP_VER_MINOR_MASK) >= | 471 | if ((pEepData->baseEepHeader.version & AR9287_EEP_VER_MINOR_MASK) >= |
460 | AR9287_EEP_MINOR_VER_2) | 472 | AR9287_EEP_MINOR_VER_2) |
461 | pdGainOverlap_t2 = pEepData->modalHeader.pdGainOverlap; | 473 | pdGainOverlap_t2 = pEepData->modalHeader.pdGainOverlap; |
462 | else | 474 | else |
463 | pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5), | 475 | pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5), |
@@ -466,15 +478,16 @@ static void ath9k_hw_set_AR9287_power_cal_table(struct ath_hw *ah, | |||
466 | if (IS_CHAN_2GHZ(chan)) { | 478 | if (IS_CHAN_2GHZ(chan)) { |
467 | pCalBChans = pEepData->calFreqPier2G; | 479 | pCalBChans = pEepData->calFreqPier2G; |
468 | numPiers = AR9287_NUM_2G_CAL_PIERS; | 480 | numPiers = AR9287_NUM_2G_CAL_PIERS; |
469 | if (ath9k_hw_AR9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { | 481 | if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { |
470 | pRawDatasetOpenLoop = | 482 | pRawDatasetOpenLoop = |
471 | (struct cal_data_op_loop_ar9287 *) | 483 | (struct cal_data_op_loop_ar9287 *)pEepData->calPierData2G[0]; |
472 | pEepData->calPierData2G[0]; | ||
473 | ah->initPDADC = pRawDatasetOpenLoop->vpdPdg[0][0]; | 484 | ah->initPDADC = pRawDatasetOpenLoop->vpdPdg[0][0]; |
474 | } | 485 | } |
475 | } | 486 | } |
476 | 487 | ||
477 | numXpdGain = 0; | 488 | numXpdGain = 0; |
489 | |||
490 | /* Calculate the value of xpdgains from the xpdGain Mask */ | ||
478 | for (i = 1; i <= AR9287_PD_GAINS_IN_MASK; i++) { | 491 | for (i = 1; i <= AR9287_PD_GAINS_IN_MASK; i++) { |
479 | if ((xpdMask >> (AR9287_PD_GAINS_IN_MASK - i)) & 1) { | 492 | if ((xpdMask >> (AR9287_PD_GAINS_IN_MASK - i)) & 1) { |
480 | if (numXpdGain >= AR9287_NUM_PD_GAINS) | 493 | if (numXpdGain >= AR9287_NUM_PD_GAINS) |
@@ -496,99 +509,80 @@ static void ath9k_hw_set_AR9287_power_cal_table(struct ath_hw *ah, | |||
496 | 509 | ||
497 | for (i = 0; i < AR9287_MAX_CHAINS; i++) { | 510 | for (i = 0; i < AR9287_MAX_CHAINS; i++) { |
498 | regChainOffset = i * 0x1000; | 511 | regChainOffset = i * 0x1000; |
512 | |||
499 | if (pEepData->baseEepHeader.txMask & (1 << i)) { | 513 | if (pEepData->baseEepHeader.txMask & (1 << i)) { |
500 | pRawDatasetOpenLoop = (struct cal_data_op_loop_ar9287 *) | 514 | pRawDatasetOpenLoop = |
501 | pEepData->calPierData2G[i]; | 515 | (struct cal_data_op_loop_ar9287 *)pEepData->calPierData2G[i]; |
502 | if (ath9k_hw_AR9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { | 516 | |
517 | if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { | ||
503 | int8_t txPower; | 518 | int8_t txPower; |
504 | ar9287_eeprom_get_tx_gain_index(ah, chan, | 519 | ar9287_eeprom_get_tx_gain_index(ah, chan, |
505 | pRawDatasetOpenLoop, | 520 | pRawDatasetOpenLoop, |
506 | pCalBChans, numPiers, | 521 | pCalBChans, numPiers, |
507 | &txPower); | 522 | &txPower); |
508 | ar9287_eeprom_olpc_set_pdadcs(ah, txPower, i); | 523 | ar9287_eeprom_olpc_set_pdadcs(ah, txPower, i); |
509 | } else { | 524 | } else { |
510 | pRawDataset = | 525 | pRawDataset = |
511 | (struct cal_data_per_freq_ar9287 *) | 526 | (struct cal_data_per_freq_ar9287 *) |
512 | pEepData->calPierData2G[i]; | 527 | pEepData->calPierData2G[i]; |
513 | ath9k_hw_get_AR9287_gain_boundaries_pdadcs( | 528 | |
514 | ah, chan, pRawDataset, | 529 | ath9k_hw_get_ar9287_gain_boundaries_pdadcs(ah, chan, |
515 | pCalBChans, numPiers, | 530 | pRawDataset, |
516 | pdGainOverlap_t2, | 531 | pCalBChans, numPiers, |
517 | &tMinCalPower, gainBoundaries, | 532 | pdGainOverlap_t2, |
518 | pdadcValues, numXpdGain); | 533 | &tMinCalPower, |
534 | gainBoundaries, | ||
535 | pdadcValues, | ||
536 | numXpdGain); | ||
519 | } | 537 | } |
520 | 538 | ||
521 | if (i == 0) { | 539 | if (i == 0) { |
522 | if (!ath9k_hw_AR9287_get_eeprom( | 540 | if (!ath9k_hw_ar9287_get_eeprom(ah, |
523 | ah, EEP_OL_PWRCTRL)) { | 541 | EEP_OL_PWRCTRL)) { |
524 | REG_WRITE(ah, AR_PHY_TPCRG5 + | 542 | |
525 | regChainOffset, | 543 | regval = SM(pdGainOverlap_t2, |
526 | SM(pdGainOverlap_t2, | 544 | AR_PHY_TPCRG5_PD_GAIN_OVERLAP) |
527 | AR_PHY_TPCRG5_PD_GAIN_OVERLAP) | | 545 | | SM(gainBoundaries[0], |
528 | SM(gainBoundaries[0], | 546 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_1) |
529 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_1) | 547 | | SM(gainBoundaries[1], |
530 | | SM(gainBoundaries[1], | 548 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_2) |
531 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_2) | 549 | | SM(gainBoundaries[2], |
532 | | SM(gainBoundaries[2], | 550 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_3) |
533 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_3) | 551 | | SM(gainBoundaries[3], |
534 | | SM(gainBoundaries[3], | 552 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_4); |
535 | AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_4)); | 553 | |
554 | REG_WRITE(ah, | ||
555 | AR_PHY_TPCRG5 + regChainOffset, | ||
556 | regval); | ||
536 | } | 557 | } |
537 | } | 558 | } |
538 | 559 | ||
539 | if ((int32_t)AR9287_PWR_TABLE_OFFSET_DB != | 560 | if ((int32_t)AR9287_PWR_TABLE_OFFSET_DB != |
540 | pEepData->baseEepHeader.pwrTableOffset) { | 561 | pEepData->baseEepHeader.pwrTableOffset) { |
541 | diff = (u16) | 562 | diff = (u16)(pEepData->baseEepHeader.pwrTableOffset - |
542 | (pEepData->baseEepHeader.pwrTableOffset | 563 | (int32_t)AR9287_PWR_TABLE_OFFSET_DB); |
543 | - (int32_t)AR9287_PWR_TABLE_OFFSET_DB); | ||
544 | diff *= 2; | 564 | diff *= 2; |
545 | 565 | ||
546 | for (j = 0; | 566 | for (j = 0; j < ((u16)AR9287_NUM_PDADC_VALUES-diff); j++) |
547 | j < ((u16)AR9287_NUM_PDADC_VALUES-diff); | ||
548 | j++) | ||
549 | pdadcValues[j] = pdadcValues[j+diff]; | 567 | pdadcValues[j] = pdadcValues[j+diff]; |
550 | 568 | ||
551 | for (j = (u16)(AR9287_NUM_PDADC_VALUES-diff); | 569 | for (j = (u16)(AR9287_NUM_PDADC_VALUES-diff); |
552 | j < AR9287_NUM_PDADC_VALUES; j++) | 570 | j < AR9287_NUM_PDADC_VALUES; j++) |
553 | pdadcValues[j] = | 571 | pdadcValues[j] = |
554 | pdadcValues[ | 572 | pdadcValues[AR9287_NUM_PDADC_VALUES-diff]; |
555 | AR9287_NUM_PDADC_VALUES-diff]; | ||
556 | } | 573 | } |
557 | 574 | ||
558 | if (!ath9k_hw_AR9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { | 575 | if (!ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { |
559 | regOffset = AR_PHY_BASE + (672 << 2) + | 576 | regOffset = AR_PHY_BASE + |
560 | regChainOffset; | 577 | (672 << 2) + regChainOffset; |
561 | for (j = 0; j < 32; j++) { | ||
562 | reg32 = ((pdadcValues[4*j + 0] | ||
563 | & 0xFF) << 0) | | ||
564 | ((pdadcValues[4*j + 1] | ||
565 | & 0xFF) << 8) | | ||
566 | ((pdadcValues[4*j + 2] | ||
567 | & 0xFF) << 16) | | ||
568 | ((pdadcValues[4*j + 3] | ||
569 | & 0xFF) << 24) ; | ||
570 | REG_WRITE(ah, regOffset, reg32); | ||
571 | 578 | ||
572 | ath_print(common, ATH_DBG_EEPROM, | 579 | for (j = 0; j < 32; j++) { |
573 | "PDADC (%d,%4x): %4.4x " | 580 | reg32 = ((pdadcValues[4*j + 0] & 0xFF) << 0) |
574 | "%8.8x\n", | 581 | | ((pdadcValues[4*j + 1] & 0xFF) << 8) |
575 | i, regChainOffset, regOffset, | 582 | | ((pdadcValues[4*j + 2] & 0xFF) << 16) |
576 | reg32); | 583 | | ((pdadcValues[4*j + 3] & 0xFF) << 24); |
577 | |||
578 | ath_print(common, ATH_DBG_EEPROM, | ||
579 | "PDADC: Chain %d | " | ||
580 | "PDADC %3d Value %3d | " | ||
581 | "PDADC %3d Value %3d | " | ||
582 | "PDADC %3d Value %3d | " | ||
583 | "PDADC %3d Value %3d |\n", | ||
584 | i, 4 * j, pdadcValues[4 * j], | ||
585 | 4 * j + 1, | ||
586 | pdadcValues[4 * j + 1], | ||
587 | 4 * j + 2, | ||
588 | pdadcValues[4 * j + 2], | ||
589 | 4 * j + 3, | ||
590 | pdadcValues[4 * j + 3]); | ||
591 | 584 | ||
585 | REG_WRITE(ah, regOffset, reg32); | ||
592 | regOffset += 4; | 586 | regOffset += 4; |
593 | } | 587 | } |
594 | } | 588 | } |
@@ -598,30 +592,45 @@ static void ath9k_hw_set_AR9287_power_cal_table(struct ath_hw *ah, | |||
598 | *pTxPowerIndexOffset = 0; | 592 | *pTxPowerIndexOffset = 0; |
599 | } | 593 | } |
600 | 594 | ||
601 | static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | 595 | static void ath9k_hw_set_ar9287_power_per_rate_table(struct ath_hw *ah, |
602 | struct ath9k_channel *chan, int16_t *ratesArray, u16 cfgCtl, | 596 | struct ath9k_channel *chan, |
603 | u16 AntennaReduction, u16 twiceMaxRegulatoryPower, | 597 | int16_t *ratesArray, |
604 | u16 powerLimit) | 598 | u16 cfgCtl, |
599 | u16 AntennaReduction, | ||
600 | u16 twiceMaxRegulatoryPower, | ||
601 | u16 powerLimit) | ||
605 | { | 602 | { |
603 | #define CMP_CTL \ | ||
604 | (((cfgCtl & ~CTL_MODE_M) | (pCtlMode[ctlMode] & CTL_MODE_M)) == \ | ||
605 | pEepData->ctlIndex[i]) | ||
606 | |||
607 | #define CMP_NO_CTL \ | ||
608 | (((cfgCtl & ~CTL_MODE_M) | (pCtlMode[ctlMode] & CTL_MODE_M)) == \ | ||
609 | ((pEepData->ctlIndex[i] & CTL_MODE_M) | SD_NO_CTL)) | ||
610 | |||
606 | #define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6 | 611 | #define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6 |
607 | #define REDUCE_SCALED_POWER_BY_THREE_CHAIN 10 | 612 | #define REDUCE_SCALED_POWER_BY_THREE_CHAIN 10 |
613 | |||
608 | struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah); | 614 | struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah); |
609 | u16 twiceMaxEdgePower = AR5416_MAX_RATE_POWER; | 615 | u16 twiceMaxEdgePower = AR5416_MAX_RATE_POWER; |
610 | static const u16 tpScaleReductionTable[5] = | 616 | static const u16 tpScaleReductionTable[5] = |
611 | { 0, 3, 6, 9, AR5416_MAX_RATE_POWER }; | 617 | { 0, 3, 6, 9, AR5416_MAX_RATE_POWER }; |
612 | int i; | 618 | int i; |
613 | int16_t twiceLargestAntenna; | 619 | int16_t twiceLargestAntenna; |
614 | struct cal_ctl_data_ar9287 *rep; | 620 | struct cal_ctl_data_ar9287 *rep; |
615 | struct cal_target_power_leg targetPowerOfdm = {0, {0, 0, 0, 0} }, | 621 | struct cal_target_power_leg targetPowerOfdm = {0, {0, 0, 0, 0} }, |
616 | targetPowerCck = {0, {0, 0, 0, 0} }; | 622 | targetPowerCck = {0, {0, 0, 0, 0} }; |
617 | struct cal_target_power_leg targetPowerOfdmExt = {0, {0, 0, 0, 0} }, | 623 | struct cal_target_power_leg targetPowerOfdmExt = {0, {0, 0, 0, 0} }, |
618 | targetPowerCckExt = {0, {0, 0, 0, 0} }; | 624 | targetPowerCckExt = {0, {0, 0, 0, 0} }; |
619 | struct cal_target_power_ht targetPowerHt20, | 625 | struct cal_target_power_ht targetPowerHt20, |
620 | targetPowerHt40 = {0, {0, 0, 0, 0} }; | 626 | targetPowerHt40 = {0, {0, 0, 0, 0} }; |
621 | u16 scaledPower = 0, minCtlPower, maxRegAllowedPower; | 627 | u16 scaledPower = 0, minCtlPower, maxRegAllowedPower; |
622 | u16 ctlModesFor11g[] = | 628 | u16 ctlModesFor11g[] = {CTL_11B, |
623 | {CTL_11B, CTL_11G, CTL_2GHT20, | 629 | CTL_11G, |
624 | CTL_11B_EXT, CTL_11G_EXT, CTL_2GHT40}; | 630 | CTL_2GHT20, |
631 | CTL_11B_EXT, | ||
632 | CTL_11G_EXT, | ||
633 | CTL_2GHT40}; | ||
625 | u16 numCtlModes = 0, *pCtlMode = NULL, ctlMode, freq; | 634 | u16 numCtlModes = 0, *pCtlMode = NULL, ctlMode, freq; |
626 | struct chan_centers centers; | 635 | struct chan_centers centers; |
627 | int tx_chainmask; | 636 | int tx_chainmask; |
@@ -631,19 +640,28 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
631 | 640 | ||
632 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); | 641 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); |
633 | 642 | ||
643 | /* Compute TxPower reduction due to Antenna Gain */ | ||
634 | twiceLargestAntenna = max(pEepData->modalHeader.antennaGainCh[0], | 644 | twiceLargestAntenna = max(pEepData->modalHeader.antennaGainCh[0], |
635 | pEepData->modalHeader.antennaGainCh[1]); | 645 | pEepData->modalHeader.antennaGainCh[1]); |
646 | twiceLargestAntenna = (int16_t)min((AntennaReduction) - | ||
647 | twiceLargestAntenna, 0); | ||
636 | 648 | ||
637 | twiceLargestAntenna = (int16_t)min((AntennaReduction) - | 649 | /* |
638 | twiceLargestAntenna, 0); | 650 | * scaledPower is the minimum of the user input power level |
639 | 651 | * and the regulatory allowed power level. | |
652 | */ | ||
640 | maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna; | 653 | maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna; |
654 | |||
641 | if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX) | 655 | if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX) |
642 | maxRegAllowedPower -= | 656 | maxRegAllowedPower -= |
643 | (tpScaleReductionTable[(regulatory->tp_scale)] * 2); | 657 | (tpScaleReductionTable[(regulatory->tp_scale)] * 2); |
644 | 658 | ||
645 | scaledPower = min(powerLimit, maxRegAllowedPower); | 659 | scaledPower = min(powerLimit, maxRegAllowedPower); |
646 | 660 | ||
661 | /* | ||
662 | * Reduce scaled Power by number of chains active | ||
663 | * to get the per chain tx power level. | ||
664 | */ | ||
647 | switch (ar5416_get_ntxchains(tx_chainmask)) { | 665 | switch (ar5416_get_ntxchains(tx_chainmask)) { |
648 | case 1: | 666 | case 1: |
649 | break; | 667 | break; |
@@ -656,9 +674,14 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
656 | } | 674 | } |
657 | scaledPower = max((u16)0, scaledPower); | 675 | scaledPower = max((u16)0, scaledPower); |
658 | 676 | ||
677 | /* | ||
678 | * Get TX power from EEPROM. | ||
679 | */ | ||
659 | if (IS_CHAN_2GHZ(chan)) { | 680 | if (IS_CHAN_2GHZ(chan)) { |
681 | /* CTL_11B, CTL_11G, CTL_2GHT20 */ | ||
660 | numCtlModes = | 682 | numCtlModes = |
661 | ARRAY_SIZE(ctlModesFor11g) - SUB_NUM_CTL_MODES_AT_2G_40; | 683 | ARRAY_SIZE(ctlModesFor11g) - SUB_NUM_CTL_MODES_AT_2G_40; |
684 | |||
662 | pCtlMode = ctlModesFor11g; | 685 | pCtlMode = ctlModesFor11g; |
663 | 686 | ||
664 | ath9k_hw_get_legacy_target_powers(ah, chan, | 687 | ath9k_hw_get_legacy_target_powers(ah, chan, |
@@ -675,6 +698,7 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
675 | &targetPowerHt20, 8, false); | 698 | &targetPowerHt20, 8, false); |
676 | 699 | ||
677 | if (IS_CHAN_HT40(chan)) { | 700 | if (IS_CHAN_HT40(chan)) { |
701 | /* All 2G CTLs */ | ||
678 | numCtlModes = ARRAY_SIZE(ctlModesFor11g); | 702 | numCtlModes = ARRAY_SIZE(ctlModesFor11g); |
679 | ath9k_hw_get_target_powers(ah, chan, | 703 | ath9k_hw_get_target_powers(ah, chan, |
680 | pEepData->calTargetPower2GHT40, | 704 | pEepData->calTargetPower2GHT40, |
@@ -692,8 +716,9 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
692 | } | 716 | } |
693 | 717 | ||
694 | for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) { | 718 | for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) { |
695 | bool isHt40CtlMode = (pCtlMode[ctlMode] == CTL_5GHT40) || | 719 | bool isHt40CtlMode = |
696 | (pCtlMode[ctlMode] == CTL_2GHT40); | 720 | (pCtlMode[ctlMode] == CTL_2GHT40) ? true : false; |
721 | |||
697 | if (isHt40CtlMode) | 722 | if (isHt40CtlMode) |
698 | freq = centers.synth_center; | 723 | freq = centers.synth_center; |
699 | else if (pCtlMode[ctlMode] & EXT_ADDITIVE) | 724 | else if (pCtlMode[ctlMode] & EXT_ADDITIVE) |
@@ -701,31 +726,28 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
701 | else | 726 | else |
702 | freq = centers.ctl_center; | 727 | freq = centers.ctl_center; |
703 | 728 | ||
704 | if (ah->eep_ops->get_eeprom_ver(ah) == 14 && | 729 | /* Walk through the CTL indices stored in EEPROM */ |
705 | ah->eep_ops->get_eeprom_rev(ah) <= 2) | ||
706 | twiceMaxEdgePower = AR5416_MAX_RATE_POWER; | ||
707 | |||
708 | for (i = 0; (i < AR9287_NUM_CTLS) && pEepData->ctlIndex[i]; i++) { | 730 | for (i = 0; (i < AR9287_NUM_CTLS) && pEepData->ctlIndex[i]; i++) { |
709 | if ((((cfgCtl & ~CTL_MODE_M) | | 731 | struct cal_ctl_edges *pRdEdgesPower; |
710 | (pCtlMode[ctlMode] & CTL_MODE_M)) == | ||
711 | pEepData->ctlIndex[i]) || | ||
712 | (((cfgCtl & ~CTL_MODE_M) | | ||
713 | (pCtlMode[ctlMode] & CTL_MODE_M)) == | ||
714 | ((pEepData->ctlIndex[i] & | ||
715 | CTL_MODE_M) | SD_NO_CTL))) { | ||
716 | 732 | ||
733 | /* | ||
734 | * Compare test group from regulatory channel list | ||
735 | * with test mode from pCtlMode list | ||
736 | */ | ||
737 | if (CMP_CTL || CMP_NO_CTL) { | ||
717 | rep = &(pEepData->ctlData[i]); | 738 | rep = &(pEepData->ctlData[i]); |
718 | twiceMinEdgePower = ath9k_hw_get_max_edge_power( | 739 | pRdEdgesPower = |
719 | freq, | 740 | rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1]; |
720 | rep->ctlEdges[ar5416_get_ntxchains( | 741 | |
721 | tx_chainmask) - 1], | 742 | twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq, |
722 | IS_CHAN_2GHZ(chan), AR5416_NUM_BAND_EDGES); | 743 | pRdEdgesPower, |
723 | 744 | IS_CHAN_2GHZ(chan), | |
724 | if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) | 745 | AR5416_NUM_BAND_EDGES); |
725 | twiceMaxEdgePower = min( | 746 | |
726 | twiceMaxEdgePower, | 747 | if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) { |
727 | twiceMinEdgePower); | 748 | twiceMaxEdgePower = min(twiceMaxEdgePower, |
728 | else { | 749 | twiceMinEdgePower); |
750 | } else { | ||
729 | twiceMaxEdgePower = twiceMinEdgePower; | 751 | twiceMaxEdgePower = twiceMinEdgePower; |
730 | break; | 752 | break; |
731 | } | 753 | } |
@@ -734,55 +756,48 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
734 | 756 | ||
735 | minCtlPower = (u8)min(twiceMaxEdgePower, scaledPower); | 757 | minCtlPower = (u8)min(twiceMaxEdgePower, scaledPower); |
736 | 758 | ||
759 | /* Apply ctl mode to correct target power set */ | ||
737 | switch (pCtlMode[ctlMode]) { | 760 | switch (pCtlMode[ctlMode]) { |
738 | case CTL_11B: | 761 | case CTL_11B: |
739 | for (i = 0; | 762 | for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) { |
740 | i < ARRAY_SIZE(targetPowerCck.tPow2x); | 763 | targetPowerCck.tPow2x[i] = |
741 | i++) { | 764 | (u8)min((u16)targetPowerCck.tPow2x[i], |
742 | targetPowerCck.tPow2x[i] = (u8)min( | 765 | minCtlPower); |
743 | (u16)targetPowerCck.tPow2x[i], | ||
744 | minCtlPower); | ||
745 | } | 766 | } |
746 | break; | 767 | break; |
747 | case CTL_11A: | 768 | case CTL_11A: |
748 | case CTL_11G: | 769 | case CTL_11G: |
749 | for (i = 0; | 770 | for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) { |
750 | i < ARRAY_SIZE(targetPowerOfdm.tPow2x); | 771 | targetPowerOfdm.tPow2x[i] = |
751 | i++) { | 772 | (u8)min((u16)targetPowerOfdm.tPow2x[i], |
752 | targetPowerOfdm.tPow2x[i] = (u8)min( | 773 | minCtlPower); |
753 | (u16)targetPowerOfdm.tPow2x[i], | ||
754 | minCtlPower); | ||
755 | } | 774 | } |
756 | break; | 775 | break; |
757 | case CTL_5GHT20: | 776 | case CTL_5GHT20: |
758 | case CTL_2GHT20: | 777 | case CTL_2GHT20: |
759 | for (i = 0; | 778 | for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) { |
760 | i < ARRAY_SIZE(targetPowerHt20.tPow2x); | 779 | targetPowerHt20.tPow2x[i] = |
761 | i++) { | 780 | (u8)min((u16)targetPowerHt20.tPow2x[i], |
762 | targetPowerHt20.tPow2x[i] = (u8)min( | 781 | minCtlPower); |
763 | (u16)targetPowerHt20.tPow2x[i], | ||
764 | minCtlPower); | ||
765 | } | 782 | } |
766 | break; | 783 | break; |
767 | case CTL_11B_EXT: | 784 | case CTL_11B_EXT: |
768 | targetPowerCckExt.tPow2x[0] = (u8)min( | 785 | targetPowerCckExt.tPow2x[0] = |
769 | (u16)targetPowerCckExt.tPow2x[0], | 786 | (u8)min((u16)targetPowerCckExt.tPow2x[0], |
770 | minCtlPower); | 787 | minCtlPower); |
771 | break; | 788 | break; |
772 | case CTL_11A_EXT: | 789 | case CTL_11A_EXT: |
773 | case CTL_11G_EXT: | 790 | case CTL_11G_EXT: |
774 | targetPowerOfdmExt.tPow2x[0] = (u8)min( | 791 | targetPowerOfdmExt.tPow2x[0] = |
775 | (u16)targetPowerOfdmExt.tPow2x[0], | 792 | (u8)min((u16)targetPowerOfdmExt.tPow2x[0], |
776 | minCtlPower); | 793 | minCtlPower); |
777 | break; | 794 | break; |
778 | case CTL_5GHT40: | 795 | case CTL_5GHT40: |
779 | case CTL_2GHT40: | 796 | case CTL_2GHT40: |
780 | for (i = 0; | 797 | for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) { |
781 | i < ARRAY_SIZE(targetPowerHt40.tPow2x); | 798 | targetPowerHt40.tPow2x[i] = |
782 | i++) { | 799 | (u8)min((u16)targetPowerHt40.tPow2x[i], |
783 | targetPowerHt40.tPow2x[i] = (u8)min( | 800 | minCtlPower); |
784 | (u16)targetPowerHt40.tPow2x[i], | ||
785 | minCtlPower); | ||
786 | } | 801 | } |
787 | break; | 802 | break; |
788 | default: | 803 | default: |
@@ -790,12 +805,13 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
790 | } | 805 | } |
791 | } | 806 | } |
792 | 807 | ||
808 | /* Now set the rates array */ | ||
809 | |||
793 | ratesArray[rate6mb] = | 810 | ratesArray[rate6mb] = |
794 | ratesArray[rate9mb] = | 811 | ratesArray[rate9mb] = |
795 | ratesArray[rate12mb] = | 812 | ratesArray[rate12mb] = |
796 | ratesArray[rate18mb] = | 813 | ratesArray[rate18mb] = |
797 | ratesArray[rate24mb] = | 814 | ratesArray[rate24mb] = targetPowerOfdm.tPow2x[0]; |
798 | targetPowerOfdm.tPow2x[0]; | ||
799 | 815 | ||
800 | ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1]; | 816 | ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1]; |
801 | ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2]; | 817 | ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2]; |
@@ -807,12 +823,12 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
807 | 823 | ||
808 | if (IS_CHAN_2GHZ(chan)) { | 824 | if (IS_CHAN_2GHZ(chan)) { |
809 | ratesArray[rate1l] = targetPowerCck.tPow2x[0]; | 825 | ratesArray[rate1l] = targetPowerCck.tPow2x[0]; |
810 | ratesArray[rate2s] = ratesArray[rate2l] = | 826 | ratesArray[rate2s] = |
811 | targetPowerCck.tPow2x[1]; | 827 | ratesArray[rate2l] = targetPowerCck.tPow2x[1]; |
812 | ratesArray[rate5_5s] = ratesArray[rate5_5l] = | 828 | ratesArray[rate5_5s] = |
813 | targetPowerCck.tPow2x[2]; | 829 | ratesArray[rate5_5l] = targetPowerCck.tPow2x[2]; |
814 | ratesArray[rate11s] = ratesArray[rate11l] = | 830 | ratesArray[rate11s] = |
815 | targetPowerCck.tPow2x[3]; | 831 | ratesArray[rate11l] = targetPowerCck.tPow2x[3]; |
816 | } | 832 | } |
817 | if (IS_CHAN_HT40(chan)) { | 833 | if (IS_CHAN_HT40(chan)) { |
818 | for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) | 834 | for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) |
@@ -821,28 +837,28 @@ static void ath9k_hw_set_AR9287_power_per_rate_table(struct ath_hw *ah, | |||
821 | ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0]; | 837 | ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0]; |
822 | ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0]; | 838 | ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0]; |
823 | ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0]; | 839 | ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0]; |
840 | |||
824 | if (IS_CHAN_2GHZ(chan)) | 841 | if (IS_CHAN_2GHZ(chan)) |
825 | ratesArray[rateExtCck] = targetPowerCckExt.tPow2x[0]; | 842 | ratesArray[rateExtCck] = targetPowerCckExt.tPow2x[0]; |
826 | } | 843 | } |
827 | 844 | ||
845 | #undef CMP_CTL | ||
846 | #undef CMP_NO_CTL | ||
828 | #undef REDUCE_SCALED_POWER_BY_TWO_CHAIN | 847 | #undef REDUCE_SCALED_POWER_BY_TWO_CHAIN |
829 | #undef REDUCE_SCALED_POWER_BY_THREE_CHAIN | 848 | #undef REDUCE_SCALED_POWER_BY_THREE_CHAIN |
830 | } | 849 | } |
831 | 850 | ||
832 | static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | 851 | static void ath9k_hw_ar9287_set_txpower(struct ath_hw *ah, |
833 | struct ath9k_channel *chan, u16 cfgCtl, | 852 | struct ath9k_channel *chan, u16 cfgCtl, |
834 | u8 twiceAntennaReduction, | 853 | u8 twiceAntennaReduction, |
835 | u8 twiceMaxRegulatoryPower, | 854 | u8 twiceMaxRegulatoryPower, |
836 | u8 powerLimit) | 855 | u8 powerLimit) |
837 | { | 856 | { |
838 | #define INCREASE_MAXPOW_BY_TWO_CHAIN 6 | ||
839 | #define INCREASE_MAXPOW_BY_THREE_CHAIN 10 | ||
840 | struct ath_common *common = ath9k_hw_common(ah); | ||
841 | struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah); | 857 | struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah); |
842 | struct ar9287_eeprom *pEepData = &ah->eeprom.map9287; | 858 | struct ar9287_eeprom *pEepData = &ah->eeprom.map9287; |
843 | struct modal_eep_ar9287_header *pModal = &pEepData->modalHeader; | 859 | struct modal_eep_ar9287_header *pModal = &pEepData->modalHeader; |
844 | int16_t ratesArray[Ar5416RateSize]; | 860 | int16_t ratesArray[Ar5416RateSize]; |
845 | int16_t txPowerIndexOffset = 0; | 861 | int16_t txPowerIndexOffset = 0; |
846 | u8 ht40PowerIncForPdadc = 2; | 862 | u8 ht40PowerIncForPdadc = 2; |
847 | int i; | 863 | int i; |
848 | 864 | ||
@@ -852,13 +868,13 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
852 | AR9287_EEP_MINOR_VER_2) | 868 | AR9287_EEP_MINOR_VER_2) |
853 | ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc; | 869 | ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc; |
854 | 870 | ||
855 | ath9k_hw_set_AR9287_power_per_rate_table(ah, chan, | 871 | ath9k_hw_set_ar9287_power_per_rate_table(ah, chan, |
856 | &ratesArray[0], cfgCtl, | 872 | &ratesArray[0], cfgCtl, |
857 | twiceAntennaReduction, | 873 | twiceAntennaReduction, |
858 | twiceMaxRegulatoryPower, | 874 | twiceMaxRegulatoryPower, |
859 | powerLimit); | 875 | powerLimit); |
860 | 876 | ||
861 | ath9k_hw_set_AR9287_power_cal_table(ah, chan, &txPowerIndexOffset); | 877 | ath9k_hw_set_ar9287_power_cal_table(ah, chan, &txPowerIndexOffset); |
862 | 878 | ||
863 | for (i = 0; i < ARRAY_SIZE(ratesArray); i++) { | 879 | for (i = 0; i < ARRAY_SIZE(ratesArray); i++) { |
864 | ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]); | 880 | ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]); |
@@ -871,6 +887,7 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
871 | ratesArray[i] -= AR9287_PWR_TABLE_OFFSET_DB * 2; | 887 | ratesArray[i] -= AR9287_PWR_TABLE_OFFSET_DB * 2; |
872 | } | 888 | } |
873 | 889 | ||
890 | /* OFDM power per rate */ | ||
874 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE1, | 891 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE1, |
875 | ATH9K_POW_SM(ratesArray[rate18mb], 24) | 892 | ATH9K_POW_SM(ratesArray[rate18mb], 24) |
876 | | ATH9K_POW_SM(ratesArray[rate12mb], 16) | 893 | | ATH9K_POW_SM(ratesArray[rate12mb], 16) |
@@ -883,6 +900,7 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
883 | | ATH9K_POW_SM(ratesArray[rate36mb], 8) | 900 | | ATH9K_POW_SM(ratesArray[rate36mb], 8) |
884 | | ATH9K_POW_SM(ratesArray[rate24mb], 0)); | 901 | | ATH9K_POW_SM(ratesArray[rate24mb], 0)); |
885 | 902 | ||
903 | /* CCK power per rate */ | ||
886 | if (IS_CHAN_2GHZ(chan)) { | 904 | if (IS_CHAN_2GHZ(chan)) { |
887 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE3, | 905 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE3, |
888 | ATH9K_POW_SM(ratesArray[rate2s], 24) | 906 | ATH9K_POW_SM(ratesArray[rate2s], 24) |
@@ -896,6 +914,7 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
896 | | ATH9K_POW_SM(ratesArray[rate5_5l], 0)); | 914 | | ATH9K_POW_SM(ratesArray[rate5_5l], 0)); |
897 | } | 915 | } |
898 | 916 | ||
917 | /* HT20 power per rate */ | ||
899 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE5, | 918 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE5, |
900 | ATH9K_POW_SM(ratesArray[rateHt20_3], 24) | 919 | ATH9K_POW_SM(ratesArray[rateHt20_3], 24) |
901 | | ATH9K_POW_SM(ratesArray[rateHt20_2], 16) | 920 | | ATH9K_POW_SM(ratesArray[rateHt20_2], 16) |
@@ -908,8 +927,9 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
908 | | ATH9K_POW_SM(ratesArray[rateHt20_5], 8) | 927 | | ATH9K_POW_SM(ratesArray[rateHt20_5], 8) |
909 | | ATH9K_POW_SM(ratesArray[rateHt20_4], 0)); | 928 | | ATH9K_POW_SM(ratesArray[rateHt20_4], 0)); |
910 | 929 | ||
930 | /* HT40 power per rate */ | ||
911 | if (IS_CHAN_HT40(chan)) { | 931 | if (IS_CHAN_HT40(chan)) { |
912 | if (ath9k_hw_AR9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { | 932 | if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) { |
913 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE7, | 933 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE7, |
914 | ATH9K_POW_SM(ratesArray[rateHt40_3], 24) | 934 | ATH9K_POW_SM(ratesArray[rateHt40_3], 24) |
915 | | ATH9K_POW_SM(ratesArray[rateHt40_2], 16) | 935 | | ATH9K_POW_SM(ratesArray[rateHt40_2], 16) |
@@ -943,6 +963,7 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
943 | ht40PowerIncForPdadc, 0)); | 963 | ht40PowerIncForPdadc, 0)); |
944 | } | 964 | } |
945 | 965 | ||
966 | /* Dup/Ext power per rate */ | ||
946 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE9, | 967 | REG_WRITE(ah, AR_PHY_POWER_TX_RATE9, |
947 | ATH9K_POW_SM(ratesArray[rateExtOfdm], 24) | 968 | ATH9K_POW_SM(ratesArray[rateExtOfdm], 24) |
948 | | ATH9K_POW_SM(ratesArray[rateExtCck], 16) | 969 | | ATH9K_POW_SM(ratesArray[rateExtCck], 16) |
@@ -960,37 +981,20 @@ static void ath9k_hw_AR9287_set_txpower(struct ath_hw *ah, | |||
960 | ratesArray[i] + AR9287_PWR_TABLE_OFFSET_DB * 2; | 981 | ratesArray[i] + AR9287_PWR_TABLE_OFFSET_DB * 2; |
961 | else | 982 | else |
962 | regulatory->max_power_level = ratesArray[i]; | 983 | regulatory->max_power_level = ratesArray[i]; |
963 | |||
964 | switch (ar5416_get_ntxchains(ah->txchainmask)) { | ||
965 | case 1: | ||
966 | break; | ||
967 | case 2: | ||
968 | regulatory->max_power_level += | ||
969 | INCREASE_MAXPOW_BY_TWO_CHAIN; | ||
970 | break; | ||
971 | case 3: | ||
972 | regulatory->max_power_level += | ||
973 | INCREASE_MAXPOW_BY_THREE_CHAIN; | ||
974 | break; | ||
975 | default: | ||
976 | ath_print(common, ATH_DBG_EEPROM, | ||
977 | "Invalid chainmask configuration\n"); | ||
978 | break; | ||
979 | } | ||
980 | } | 984 | } |
981 | 985 | ||
982 | static void ath9k_hw_AR9287_set_addac(struct ath_hw *ah, | 986 | static void ath9k_hw_ar9287_set_addac(struct ath_hw *ah, |
983 | struct ath9k_channel *chan) | 987 | struct ath9k_channel *chan) |
984 | { | 988 | { |
985 | } | 989 | } |
986 | 990 | ||
987 | static void ath9k_hw_AR9287_set_board_values(struct ath_hw *ah, | 991 | static void ath9k_hw_ar9287_set_board_values(struct ath_hw *ah, |
988 | struct ath9k_channel *chan) | 992 | struct ath9k_channel *chan) |
989 | { | 993 | { |
990 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; | 994 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; |
991 | struct modal_eep_ar9287_header *pModal = &eep->modalHeader; | 995 | struct modal_eep_ar9287_header *pModal = &eep->modalHeader; |
992 | u16 antWrites[AR9287_ANT_16S]; | 996 | u16 antWrites[AR9287_ANT_16S]; |
993 | u32 regChainOffset; | 997 | u32 regChainOffset, regval; |
994 | u8 txRxAttenLocal; | 998 | u8 txRxAttenLocal; |
995 | int i, j, offset_num; | 999 | int i, j, offset_num; |
996 | 1000 | ||
@@ -1077,42 +1081,37 @@ static void ath9k_hw_AR9287_set_board_values(struct ath_hw *ah, | |||
1077 | REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0, | 1081 | REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0, |
1078 | AR_PHY_EXT_CCA0_THRESH62, pModal->thresh62); | 1082 | AR_PHY_EXT_CCA0_THRESH62, pModal->thresh62); |
1079 | 1083 | ||
1080 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, AR9287_AN_RF2G3_DB1, | 1084 | regval = REG_READ(ah, AR9287_AN_RF2G3_CH0); |
1081 | AR9287_AN_RF2G3_DB1_S, pModal->db1); | 1085 | regval &= ~(AR9287_AN_RF2G3_DB1 | |
1082 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, AR9287_AN_RF2G3_DB2, | 1086 | AR9287_AN_RF2G3_DB2 | |
1083 | AR9287_AN_RF2G3_DB2_S, pModal->db2); | 1087 | AR9287_AN_RF2G3_OB_CCK | |
1084 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, | 1088 | AR9287_AN_RF2G3_OB_PSK | |
1085 | AR9287_AN_RF2G3_OB_CCK, | 1089 | AR9287_AN_RF2G3_OB_QAM | |
1086 | AR9287_AN_RF2G3_OB_CCK_S, pModal->ob_cck); | 1090 | AR9287_AN_RF2G3_OB_PAL_OFF); |
1087 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, | 1091 | regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) | |
1088 | AR9287_AN_RF2G3_OB_PSK, | 1092 | SM(pModal->db2, AR9287_AN_RF2G3_DB2) | |
1089 | AR9287_AN_RF2G3_OB_PSK_S, pModal->ob_psk); | 1093 | SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) | |
1090 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, | 1094 | SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) | |
1091 | AR9287_AN_RF2G3_OB_QAM, | 1095 | SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) | |
1092 | AR9287_AN_RF2G3_OB_QAM_S, pModal->ob_qam); | 1096 | SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF)); |
1093 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH0, | 1097 | |
1094 | AR9287_AN_RF2G3_OB_PAL_OFF, | 1098 | ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH0, regval); |
1095 | AR9287_AN_RF2G3_OB_PAL_OFF_S, | 1099 | |
1096 | pModal->ob_pal_off); | 1100 | regval = REG_READ(ah, AR9287_AN_RF2G3_CH1); |
1097 | 1101 | regval &= ~(AR9287_AN_RF2G3_DB1 | | |
1098 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, | 1102 | AR9287_AN_RF2G3_DB2 | |
1099 | AR9287_AN_RF2G3_DB1, AR9287_AN_RF2G3_DB1_S, | 1103 | AR9287_AN_RF2G3_OB_CCK | |
1100 | pModal->db1); | 1104 | AR9287_AN_RF2G3_OB_PSK | |
1101 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, AR9287_AN_RF2G3_DB2, | 1105 | AR9287_AN_RF2G3_OB_QAM | |
1102 | AR9287_AN_RF2G3_DB2_S, pModal->db2); | 1106 | AR9287_AN_RF2G3_OB_PAL_OFF); |
1103 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, | 1107 | regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) | |
1104 | AR9287_AN_RF2G3_OB_CCK, | 1108 | SM(pModal->db2, AR9287_AN_RF2G3_DB2) | |
1105 | AR9287_AN_RF2G3_OB_CCK_S, pModal->ob_cck); | 1109 | SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) | |
1106 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, | 1110 | SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) | |
1107 | AR9287_AN_RF2G3_OB_PSK, | 1111 | SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) | |
1108 | AR9287_AN_RF2G3_OB_PSK_S, pModal->ob_psk); | 1112 | SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF)); |
1109 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, | 1113 | |
1110 | AR9287_AN_RF2G3_OB_QAM, | 1114 | ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH1, regval); |
1111 | AR9287_AN_RF2G3_OB_QAM_S, pModal->ob_qam); | ||
1112 | ath9k_hw_analog_shift_rmw(ah, AR9287_AN_RF2G3_CH1, | ||
1113 | AR9287_AN_RF2G3_OB_PAL_OFF, | ||
1114 | AR9287_AN_RF2G3_OB_PAL_OFF_S, | ||
1115 | pModal->ob_pal_off); | ||
1116 | 1115 | ||
1117 | REG_RMW_FIELD(ah, AR_PHY_RF_CTL2, | 1116 | REG_RMW_FIELD(ah, AR_PHY_RF_CTL2, |
1118 | AR_PHY_TX_END_DATA_START, pModal->txFrameToDataStart); | 1117 | AR_PHY_TX_END_DATA_START, pModal->txFrameToDataStart); |
@@ -1125,13 +1124,13 @@ static void ath9k_hw_AR9287_set_board_values(struct ath_hw *ah, | |||
1125 | pModal->xpaBiasLvl); | 1124 | pModal->xpaBiasLvl); |
1126 | } | 1125 | } |
1127 | 1126 | ||
1128 | static u8 ath9k_hw_AR9287_get_num_ant_config(struct ath_hw *ah, | 1127 | static u8 ath9k_hw_ar9287_get_num_ant_config(struct ath_hw *ah, |
1129 | enum ieee80211_band freq_band) | 1128 | enum ieee80211_band freq_band) |
1130 | { | 1129 | { |
1131 | return 1; | 1130 | return 1; |
1132 | } | 1131 | } |
1133 | 1132 | ||
1134 | static u16 ath9k_hw_AR9287_get_eeprom_antenna_cfg(struct ath_hw *ah, | 1133 | static u16 ath9k_hw_ar9287_get_eeprom_antenna_cfg(struct ath_hw *ah, |
1135 | struct ath9k_channel *chan) | 1134 | struct ath9k_channel *chan) |
1136 | { | 1135 | { |
1137 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; | 1136 | struct ar9287_eeprom *eep = &ah->eeprom.map9287; |
@@ -1140,11 +1139,12 @@ static u16 ath9k_hw_AR9287_get_eeprom_antenna_cfg(struct ath_hw *ah, | |||
1140 | return pModal->antCtrlCommon & 0xFFFF; | 1139 | return pModal->antCtrlCommon & 0xFFFF; |
1141 | } | 1140 | } |
1142 | 1141 | ||
1143 | static u16 ath9k_hw_AR9287_get_spur_channel(struct ath_hw *ah, | 1142 | static u16 ath9k_hw_ar9287_get_spur_channel(struct ath_hw *ah, |
1144 | u16 i, bool is2GHz) | 1143 | u16 i, bool is2GHz) |
1145 | { | 1144 | { |
1146 | #define EEP_MAP9287_SPURCHAN \ | 1145 | #define EEP_MAP9287_SPURCHAN \ |
1147 | (ah->eeprom.map9287.modalHeader.spurChans[i].spurChan) | 1146 | (ah->eeprom.map9287.modalHeader.spurChans[i].spurChan) |
1147 | |||
1148 | struct ath_common *common = ath9k_hw_common(ah); | 1148 | struct ath_common *common = ath9k_hw_common(ah); |
1149 | u16 spur_val = AR_NO_SPUR; | 1149 | u16 spur_val = AR_NO_SPUR; |
1150 | 1150 | ||
@@ -1171,15 +1171,15 @@ static u16 ath9k_hw_AR9287_get_spur_channel(struct ath_hw *ah, | |||
1171 | } | 1171 | } |
1172 | 1172 | ||
1173 | const struct eeprom_ops eep_ar9287_ops = { | 1173 | const struct eeprom_ops eep_ar9287_ops = { |
1174 | .check_eeprom = ath9k_hw_AR9287_check_eeprom, | 1174 | .check_eeprom = ath9k_hw_ar9287_check_eeprom, |
1175 | .get_eeprom = ath9k_hw_AR9287_get_eeprom, | 1175 | .get_eeprom = ath9k_hw_ar9287_get_eeprom, |
1176 | .fill_eeprom = ath9k_hw_AR9287_fill_eeprom, | 1176 | .fill_eeprom = ath9k_hw_ar9287_fill_eeprom, |
1177 | .get_eeprom_ver = ath9k_hw_AR9287_get_eeprom_ver, | 1177 | .get_eeprom_ver = ath9k_hw_ar9287_get_eeprom_ver, |
1178 | .get_eeprom_rev = ath9k_hw_AR9287_get_eeprom_rev, | 1178 | .get_eeprom_rev = ath9k_hw_ar9287_get_eeprom_rev, |
1179 | .get_num_ant_config = ath9k_hw_AR9287_get_num_ant_config, | 1179 | .get_num_ant_config = ath9k_hw_ar9287_get_num_ant_config, |
1180 | .get_eeprom_antenna_cfg = ath9k_hw_AR9287_get_eeprom_antenna_cfg, | 1180 | .get_eeprom_antenna_cfg = ath9k_hw_ar9287_get_eeprom_antenna_cfg, |
1181 | .set_board_values = ath9k_hw_AR9287_set_board_values, | 1181 | .set_board_values = ath9k_hw_ar9287_set_board_values, |
1182 | .set_addac = ath9k_hw_AR9287_set_addac, | 1182 | .set_addac = ath9k_hw_ar9287_set_addac, |
1183 | .set_txpower = ath9k_hw_AR9287_set_txpower, | 1183 | .set_txpower = ath9k_hw_ar9287_set_txpower, |
1184 | .get_spur_channel = ath9k_hw_AR9287_get_spur_channel | 1184 | .get_spur_channel = ath9k_hw_ar9287_get_spur_channel |
1185 | }; | 1185 | }; |
diff --git a/drivers/net/wireless/ath/ath9k/eeprom_def.c b/drivers/net/wireless/ath/ath9k/eeprom_def.c index 7e1ed78d0e64..77b1433312cc 100644 --- a/drivers/net/wireless/ath/ath9k/eeprom_def.c +++ b/drivers/net/wireless/ath/ath9k/eeprom_def.c | |||
@@ -617,6 +617,7 @@ static void ath9k_hw_get_def_gain_boundaries_pdadcs(struct ath_hw *ah, | |||
617 | int16_t minDelta = 0; | 617 | int16_t minDelta = 0; |
618 | struct chan_centers centers; | 618 | struct chan_centers centers; |
619 | 619 | ||
620 | memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS); | ||
620 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); | 621 | ath9k_hw_get_channel_centers(ah, chan, ¢ers); |
621 | 622 | ||
622 | for (numPiers = 0; numPiers < availPiers; numPiers++) { | 623 | for (numPiers = 0; numPiers < availPiers; numPiers++) { |
diff --git a/drivers/net/wireless/ath/ath9k/hif_usb.c b/drivers/net/wireless/ath/ath9k/hif_usb.c index 77b359162d6c..5f3ea7091ae0 100644 --- a/drivers/net/wireless/ath/ath9k/hif_usb.c +++ b/drivers/net/wireless/ath/ath9k/hif_usb.c | |||
@@ -16,12 +16,10 @@ | |||
16 | 16 | ||
17 | #include "htc.h" | 17 | #include "htc.h" |
18 | 18 | ||
19 | #define ATH9K_FW_USB_DEV(devid, fw) \ | ||
20 | { USB_DEVICE(0x0cf3, devid), .driver_info = (unsigned long) fw } | ||
21 | |||
22 | static struct usb_device_id ath9k_hif_usb_ids[] = { | 19 | static struct usb_device_id ath9k_hif_usb_ids[] = { |
23 | ATH9K_FW_USB_DEV(0x9271, "ar9271.fw"), | 20 | { USB_DEVICE(0x0cf3, 0x9271) }, |
24 | ATH9K_FW_USB_DEV(0x1006, "ar9271.fw"), | 21 | { USB_DEVICE(0x0cf3, 0x1006) }, |
22 | { USB_DEVICE(0x0cf3, 0x7010) }, | ||
25 | { }, | 23 | { }, |
26 | }; | 24 | }; |
27 | 25 | ||
@@ -756,6 +754,7 @@ static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev) | |||
756 | size_t len = hif_dev->firmware->size; | 754 | size_t len = hif_dev->firmware->size; |
757 | u32 addr = AR9271_FIRMWARE; | 755 | u32 addr = AR9271_FIRMWARE; |
758 | u8 *buf = kzalloc(4096, GFP_KERNEL); | 756 | u8 *buf = kzalloc(4096, GFP_KERNEL); |
757 | u32 firm_offset; | ||
759 | 758 | ||
760 | if (!buf) | 759 | if (!buf) |
761 | return -ENOMEM; | 760 | return -ENOMEM; |
@@ -779,32 +778,37 @@ static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev) | |||
779 | } | 778 | } |
780 | kfree(buf); | 779 | kfree(buf); |
781 | 780 | ||
781 | if (hif_dev->device_id == 0x7010) | ||
782 | firm_offset = AR7010_FIRMWARE_TEXT; | ||
783 | else | ||
784 | firm_offset = AR9271_FIRMWARE_TEXT; | ||
785 | |||
782 | /* | 786 | /* |
783 | * Issue FW download complete command to firmware. | 787 | * Issue FW download complete command to firmware. |
784 | */ | 788 | */ |
785 | err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0), | 789 | err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0), |
786 | FIRMWARE_DOWNLOAD_COMP, | 790 | FIRMWARE_DOWNLOAD_COMP, |
787 | 0x40 | USB_DIR_OUT, | 791 | 0x40 | USB_DIR_OUT, |
788 | AR9271_FIRMWARE_TEXT >> 8, 0, NULL, 0, HZ); | 792 | firm_offset >> 8, 0, NULL, 0, HZ); |
789 | if (err) | 793 | if (err) |
790 | return -EIO; | 794 | return -EIO; |
791 | 795 | ||
792 | dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n", | 796 | dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n", |
793 | "ar9271.fw", (unsigned long) hif_dev->firmware->size); | 797 | hif_dev->fw_name, (unsigned long) hif_dev->firmware->size); |
794 | 798 | ||
795 | return 0; | 799 | return 0; |
796 | } | 800 | } |
797 | 801 | ||
798 | static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev, | 802 | static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev) |
799 | const char *fw_name) | ||
800 | { | 803 | { |
801 | int ret; | 804 | int ret; |
802 | 805 | ||
803 | /* Request firmware */ | 806 | /* Request firmware */ |
804 | ret = request_firmware(&hif_dev->firmware, fw_name, &hif_dev->udev->dev); | 807 | ret = request_firmware(&hif_dev->firmware, hif_dev->fw_name, |
808 | &hif_dev->udev->dev); | ||
805 | if (ret) { | 809 | if (ret) { |
806 | dev_err(&hif_dev->udev->dev, | 810 | dev_err(&hif_dev->udev->dev, |
807 | "ath9k_htc: Firmware - %s not found\n", fw_name); | 811 | "ath9k_htc: Firmware - %s not found\n", hif_dev->fw_name); |
808 | goto err_fw_req; | 812 | goto err_fw_req; |
809 | } | 813 | } |
810 | 814 | ||
@@ -820,7 +824,8 @@ static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev, | |||
820 | ret = ath9k_hif_usb_download_fw(hif_dev); | 824 | ret = ath9k_hif_usb_download_fw(hif_dev); |
821 | if (ret) { | 825 | if (ret) { |
822 | dev_err(&hif_dev->udev->dev, | 826 | dev_err(&hif_dev->udev->dev, |
823 | "ath9k_htc: Firmware - %s download failed\n", fw_name); | 827 | "ath9k_htc: Firmware - %s download failed\n", |
828 | hif_dev->fw_name); | ||
824 | goto err_fw_download; | 829 | goto err_fw_download; |
825 | } | 830 | } |
826 | 831 | ||
@@ -847,7 +852,6 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface, | |||
847 | { | 852 | { |
848 | struct usb_device *udev = interface_to_usbdev(interface); | 853 | struct usb_device *udev = interface_to_usbdev(interface); |
849 | struct hif_device_usb *hif_dev; | 854 | struct hif_device_usb *hif_dev; |
850 | const char *fw_name = (const char *) id->driver_info; | ||
851 | int ret = 0; | 855 | int ret = 0; |
852 | 856 | ||
853 | hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL); | 857 | hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL); |
@@ -872,7 +876,29 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface, | |||
872 | goto err_htc_hw_alloc; | 876 | goto err_htc_hw_alloc; |
873 | } | 877 | } |
874 | 878 | ||
875 | ret = ath9k_hif_usb_dev_init(hif_dev, fw_name); | 879 | /* Find out which firmware to load */ |
880 | |||
881 | switch(hif_dev->device_id) { | ||
882 | case 0x9271: | ||
883 | case 0x1006: | ||
884 | hif_dev->fw_name = "ar9271.fw"; | ||
885 | break; | ||
886 | case 0x7010: | ||
887 | if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x0202) | ||
888 | hif_dev->fw_name = "ar7010_1_1.fw"; | ||
889 | else | ||
890 | hif_dev->fw_name = "ar7010.fw"; | ||
891 | break; | ||
892 | default: | ||
893 | break; | ||
894 | } | ||
895 | |||
896 | if (!hif_dev->fw_name) { | ||
897 | dev_err(&udev->dev, "Can't determine firmware !\n"); | ||
898 | goto err_htc_hw_alloc; | ||
899 | } | ||
900 | |||
901 | ret = ath9k_hif_usb_dev_init(hif_dev); | ||
876 | if (ret) { | 902 | if (ret) { |
877 | ret = -EINVAL; | 903 | ret = -EINVAL; |
878 | goto err_hif_init_usb; | 904 | goto err_hif_init_usb; |
@@ -907,12 +933,10 @@ static void ath9k_hif_usb_reboot(struct usb_device *udev) | |||
907 | void *buf; | 933 | void *buf; |
908 | int ret; | 934 | int ret; |
909 | 935 | ||
910 | buf = kmalloc(4, GFP_KERNEL); | 936 | buf = kmemdup(&reboot_cmd, 4, GFP_KERNEL); |
911 | if (!buf) | 937 | if (!buf) |
912 | return; | 938 | return; |
913 | 939 | ||
914 | memcpy(buf, &reboot_cmd, 4); | ||
915 | |||
916 | ret = usb_bulk_msg(udev, usb_sndbulkpipe(udev, USB_REG_OUT_PIPE), | 940 | ret = usb_bulk_msg(udev, usb_sndbulkpipe(udev, USB_REG_OUT_PIPE), |
917 | buf, 4, NULL, HZ); | 941 | buf, 4, NULL, HZ); |
918 | if (ret) | 942 | if (ret) |
diff --git a/drivers/net/wireless/ath/ath9k/hif_usb.h b/drivers/net/wireless/ath/ath9k/hif_usb.h index 0aca49b6fcb6..2daf97b11c08 100644 --- a/drivers/net/wireless/ath/ath9k/hif_usb.h +++ b/drivers/net/wireless/ath/ath9k/hif_usb.h | |||
@@ -19,6 +19,7 @@ | |||
19 | 19 | ||
20 | #define AR9271_FIRMWARE 0x501000 | 20 | #define AR9271_FIRMWARE 0x501000 |
21 | #define AR9271_FIRMWARE_TEXT 0x903000 | 21 | #define AR9271_FIRMWARE_TEXT 0x903000 |
22 | #define AR7010_FIRMWARE_TEXT 0x906000 | ||
22 | 23 | ||
23 | #define FIRMWARE_DOWNLOAD 0x30 | 24 | #define FIRMWARE_DOWNLOAD 0x30 |
24 | #define FIRMWARE_DOWNLOAD_COMP 0x31 | 25 | #define FIRMWARE_DOWNLOAD_COMP 0x31 |
@@ -90,6 +91,7 @@ struct hif_device_usb { | |||
90 | struct usb_anchor regout_submitted; | 91 | struct usb_anchor regout_submitted; |
91 | struct usb_anchor rx_submitted; | 92 | struct usb_anchor rx_submitted; |
92 | struct sk_buff *remain_skb; | 93 | struct sk_buff *remain_skb; |
94 | const char *fw_name; | ||
93 | int rx_remain_len; | 95 | int rx_remain_len; |
94 | int rx_pkt_len; | 96 | int rx_pkt_len; |
95 | int rx_transfer_len; | 97 | int rx_transfer_len; |
diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h index c251603ab032..051b8d89b9f2 100644 --- a/drivers/net/wireless/ath/ath9k/htc.h +++ b/drivers/net/wireless/ath/ath9k/htc.h | |||
@@ -257,12 +257,15 @@ struct ath9k_htc_tx_ctl { | |||
257 | #define TX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) | 257 | #define TX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) |
258 | #define RX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.rx_stats.c++) | 258 | #define RX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.rx_stats.c++) |
259 | 259 | ||
260 | #define TX_QSTAT_INC(q) (priv->debug.tx_stats.queue_stats[q]++) | ||
261 | |||
260 | struct ath_tx_stats { | 262 | struct ath_tx_stats { |
261 | u32 buf_queued; | 263 | u32 buf_queued; |
262 | u32 buf_completed; | 264 | u32 buf_completed; |
263 | u32 skb_queued; | 265 | u32 skb_queued; |
264 | u32 skb_completed; | 266 | u32 skb_completed; |
265 | u32 skb_dropped; | 267 | u32 skb_dropped; |
268 | u32 queue_stats[WME_NUM_AC]; | ||
266 | }; | 269 | }; |
267 | 270 | ||
268 | struct ath_rx_stats { | 271 | struct ath_rx_stats { |
@@ -286,6 +289,8 @@ struct ath9k_debug { | |||
286 | #define TX_STAT_INC(c) do { } while (0) | 289 | #define TX_STAT_INC(c) do { } while (0) |
287 | #define RX_STAT_INC(c) do { } while (0) | 290 | #define RX_STAT_INC(c) do { } while (0) |
288 | 291 | ||
292 | #define TX_QSTAT_INC(c) do { } while (0) | ||
293 | |||
289 | #endif /* CONFIG_ATH9K_HTC_DEBUGFS */ | 294 | #endif /* CONFIG_ATH9K_HTC_DEBUGFS */ |
290 | 295 | ||
291 | #define ATH_LED_PIN_DEF 1 | 296 | #define ATH_LED_PIN_DEF 1 |
@@ -390,13 +395,14 @@ struct ath9k_htc_priv { | |||
390 | int led_off_duration; | 395 | int led_off_duration; |
391 | int led_on_cnt; | 396 | int led_on_cnt; |
392 | int led_off_cnt; | 397 | int led_off_cnt; |
398 | |||
399 | int beaconq; | ||
400 | int cabq; | ||
393 | int hwq_map[ATH9K_WME_AC_VO+1]; | 401 | int hwq_map[ATH9K_WME_AC_VO+1]; |
394 | 402 | ||
395 | #ifdef CONFIG_ATH9K_HTC_DEBUGFS | 403 | #ifdef CONFIG_ATH9K_HTC_DEBUGFS |
396 | struct ath9k_debug debug; | 404 | struct ath9k_debug debug; |
397 | #endif | 405 | #endif |
398 | struct ath9k_htc_target_rate tgt_rate; | ||
399 | |||
400 | struct mutex mutex; | 406 | struct mutex mutex; |
401 | }; | 407 | }; |
402 | 408 | ||
@@ -405,6 +411,7 @@ static inline void ath_read_cachesize(struct ath_common *common, int *csz) | |||
405 | common->bus_ops->read_cachesize(common, csz); | 411 | common->bus_ops->read_cachesize(common, csz); |
406 | } | 412 | } |
407 | 413 | ||
414 | void ath9k_htc_beaconq_config(struct ath9k_htc_priv *priv); | ||
408 | void ath9k_htc_beacon_config(struct ath9k_htc_priv *priv, | 415 | void ath9k_htc_beacon_config(struct ath9k_htc_priv *priv, |
409 | struct ieee80211_vif *vif); | 416 | struct ieee80211_vif *vif); |
410 | void ath9k_htc_swba(struct ath9k_htc_priv *priv, u8 beacon_pending); | 417 | void ath9k_htc_swba(struct ath9k_htc_priv *priv, u8 beacon_pending); |
@@ -426,6 +433,7 @@ int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb); | |||
426 | void ath9k_tx_cleanup(struct ath9k_htc_priv *priv); | 433 | void ath9k_tx_cleanup(struct ath9k_htc_priv *priv); |
427 | bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, | 434 | bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, |
428 | enum ath9k_tx_queue_subtype qtype); | 435 | enum ath9k_tx_queue_subtype qtype); |
436 | int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv); | ||
429 | int get_hw_qnum(u16 queue, int *hwq_map); | 437 | int get_hw_qnum(u16 queue, int *hwq_map); |
430 | int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum, | 438 | int ath_htc_txq_update(struct ath9k_htc_priv *priv, int qnum, |
431 | struct ath9k_tx_queue_info *qinfo); | 439 | struct ath9k_tx_queue_info *qinfo); |
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_beacon.c b/drivers/net/wireless/ath/ath9k/htc_drv_beacon.c index c10c7d002eb7..12a3bb0a9159 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_beacon.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_beacon.c | |||
@@ -222,6 +222,29 @@ void ath9k_htc_swba(struct ath9k_htc_priv *priv, u8 beacon_pending) | |||
222 | spin_unlock_bh(&priv->beacon_lock); | 222 | spin_unlock_bh(&priv->beacon_lock); |
223 | } | 223 | } |
224 | 224 | ||
225 | /* Currently, only for IBSS */ | ||
226 | void ath9k_htc_beaconq_config(struct ath9k_htc_priv *priv) | ||
227 | { | ||
228 | struct ath_hw *ah = priv->ah; | ||
229 | struct ath9k_tx_queue_info qi, qi_be; | ||
230 | int qnum = priv->hwq_map[ATH9K_WME_AC_BE]; | ||
231 | |||
232 | memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); | ||
233 | memset(&qi_be, 0, sizeof(struct ath9k_tx_queue_info)); | ||
234 | |||
235 | ath9k_hw_get_txq_props(ah, qnum, &qi_be); | ||
236 | |||
237 | qi.tqi_aifs = qi_be.tqi_aifs; | ||
238 | qi.tqi_cwmin = 4*qi_be.tqi_cwmin; | ||
239 | qi.tqi_cwmax = qi_be.tqi_cwmax; | ||
240 | |||
241 | if (!ath9k_hw_set_txq_props(ah, priv->beaconq, &qi)) { | ||
242 | ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL, | ||
243 | "Unable to update beacon queue %u!\n", qnum); | ||
244 | } else { | ||
245 | ath9k_hw_resettxqueue(ah, priv->beaconq); | ||
246 | } | ||
247 | } | ||
225 | 248 | ||
226 | void ath9k_htc_beacon_config(struct ath9k_htc_priv *priv, | 249 | void ath9k_htc_beacon_config(struct ath9k_htc_priv *priv, |
227 | struct ieee80211_vif *vif) | 250 | struct ieee80211_vif *vif) |
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_init.c b/drivers/net/wireless/ath/ath9k/htc_drv_init.c index dc015077a8d9..7339439f0bef 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_init.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_init.c | |||
@@ -34,6 +34,13 @@ MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); | |||
34 | .max_power = 20, \ | 34 | .max_power = 20, \ |
35 | } | 35 | } |
36 | 36 | ||
37 | #define CHAN5G(_freq, _idx) { \ | ||
38 | .band = IEEE80211_BAND_5GHZ, \ | ||
39 | .center_freq = (_freq), \ | ||
40 | .hw_value = (_idx), \ | ||
41 | .max_power = 20, \ | ||
42 | } | ||
43 | |||
37 | static struct ieee80211_channel ath9k_2ghz_channels[] = { | 44 | static struct ieee80211_channel ath9k_2ghz_channels[] = { |
38 | CHAN2G(2412, 0), /* Channel 1 */ | 45 | CHAN2G(2412, 0), /* Channel 1 */ |
39 | CHAN2G(2417, 1), /* Channel 2 */ | 46 | CHAN2G(2417, 1), /* Channel 2 */ |
@@ -51,6 +58,37 @@ static struct ieee80211_channel ath9k_2ghz_channels[] = { | |||
51 | CHAN2G(2484, 13), /* Channel 14 */ | 58 | CHAN2G(2484, 13), /* Channel 14 */ |
52 | }; | 59 | }; |
53 | 60 | ||
61 | static struct ieee80211_channel ath9k_5ghz_channels[] = { | ||
62 | /* _We_ call this UNII 1 */ | ||
63 | CHAN5G(5180, 14), /* Channel 36 */ | ||
64 | CHAN5G(5200, 15), /* Channel 40 */ | ||
65 | CHAN5G(5220, 16), /* Channel 44 */ | ||
66 | CHAN5G(5240, 17), /* Channel 48 */ | ||
67 | /* _We_ call this UNII 2 */ | ||
68 | CHAN5G(5260, 18), /* Channel 52 */ | ||
69 | CHAN5G(5280, 19), /* Channel 56 */ | ||
70 | CHAN5G(5300, 20), /* Channel 60 */ | ||
71 | CHAN5G(5320, 21), /* Channel 64 */ | ||
72 | /* _We_ call this "Middle band" */ | ||
73 | CHAN5G(5500, 22), /* Channel 100 */ | ||
74 | CHAN5G(5520, 23), /* Channel 104 */ | ||
75 | CHAN5G(5540, 24), /* Channel 108 */ | ||
76 | CHAN5G(5560, 25), /* Channel 112 */ | ||
77 | CHAN5G(5580, 26), /* Channel 116 */ | ||
78 | CHAN5G(5600, 27), /* Channel 120 */ | ||
79 | CHAN5G(5620, 28), /* Channel 124 */ | ||
80 | CHAN5G(5640, 29), /* Channel 128 */ | ||
81 | CHAN5G(5660, 30), /* Channel 132 */ | ||
82 | CHAN5G(5680, 31), /* Channel 136 */ | ||
83 | CHAN5G(5700, 32), /* Channel 140 */ | ||
84 | /* _We_ call this UNII 3 */ | ||
85 | CHAN5G(5745, 33), /* Channel 149 */ | ||
86 | CHAN5G(5765, 34), /* Channel 153 */ | ||
87 | CHAN5G(5785, 35), /* Channel 157 */ | ||
88 | CHAN5G(5805, 36), /* Channel 161 */ | ||
89 | CHAN5G(5825, 37), /* Channel 165 */ | ||
90 | }; | ||
91 | |||
54 | /* Atheros hardware rate code addition for short premble */ | 92 | /* Atheros hardware rate code addition for short premble */ |
55 | #define SHPCHECK(__hw_rate, __flags) \ | 93 | #define SHPCHECK(__hw_rate, __flags) \ |
56 | ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04) : 0) | 94 | ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04) : 0) |
@@ -141,7 +179,7 @@ static inline int ath9k_htc_connect_svc(struct ath9k_htc_priv *priv, | |||
141 | return htc_connect_service(priv->htc, &req, ep_id); | 179 | return htc_connect_service(priv->htc, &req, ep_id); |
142 | } | 180 | } |
143 | 181 | ||
144 | static int ath9k_init_htc_services(struct ath9k_htc_priv *priv) | 182 | static int ath9k_init_htc_services(struct ath9k_htc_priv *priv, u16 devid) |
145 | { | 183 | { |
146 | int ret; | 184 | int ret; |
147 | 185 | ||
@@ -199,10 +237,33 @@ static int ath9k_init_htc_services(struct ath9k_htc_priv *priv) | |||
199 | if (ret) | 237 | if (ret) |
200 | goto err; | 238 | goto err; |
201 | 239 | ||
240 | /* | ||
241 | * Setup required credits before initializing HTC. | ||
242 | * This is a bit hacky, but, since queuing is done in | ||
243 | * the HIF layer, shouldn't matter much. | ||
244 | */ | ||
245 | |||
246 | switch(devid) { | ||
247 | case 0x9271: | ||
248 | case 0x1006: | ||
249 | priv->htc->credits = 33; | ||
250 | break; | ||
251 | case 0x7010: | ||
252 | priv->htc->credits = 45; | ||
253 | break; | ||
254 | default: | ||
255 | dev_err(priv->dev, "ath9k_htc: Unsupported device id: 0x%x\n", | ||
256 | devid); | ||
257 | goto err; | ||
258 | } | ||
259 | |||
202 | ret = htc_init(priv->htc); | 260 | ret = htc_init(priv->htc); |
203 | if (ret) | 261 | if (ret) |
204 | goto err; | 262 | goto err; |
205 | 263 | ||
264 | dev_info(priv->dev, "ath9k_htc: HTC initialized with %d credits\n", | ||
265 | priv->htc->credits); | ||
266 | |||
206 | return 0; | 267 | return 0; |
207 | 268 | ||
208 | err: | 269 | err: |
@@ -398,17 +459,43 @@ static const struct ath_bus_ops ath9k_usb_bus_ops = { | |||
398 | static void setup_ht_cap(struct ath9k_htc_priv *priv, | 459 | static void setup_ht_cap(struct ath9k_htc_priv *priv, |
399 | struct ieee80211_sta_ht_cap *ht_info) | 460 | struct ieee80211_sta_ht_cap *ht_info) |
400 | { | 461 | { |
462 | struct ath_common *common = ath9k_hw_common(priv->ah); | ||
463 | u8 tx_streams, rx_streams; | ||
464 | int i; | ||
465 | |||
401 | ht_info->ht_supported = true; | 466 | ht_info->ht_supported = true; |
402 | ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | | 467 | ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
403 | IEEE80211_HT_CAP_SM_PS | | 468 | IEEE80211_HT_CAP_SM_PS | |
404 | IEEE80211_HT_CAP_SGI_40 | | 469 | IEEE80211_HT_CAP_SGI_40 | |
405 | IEEE80211_HT_CAP_DSSSCCK40; | 470 | IEEE80211_HT_CAP_DSSSCCK40; |
406 | 471 | ||
472 | if (priv->ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) | ||
473 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; | ||
474 | |||
475 | ht_info->cap |= (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT); | ||
476 | |||
407 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; | 477 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
408 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; | 478 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
409 | 479 | ||
410 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); | 480 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
411 | ht_info->mcs.rx_mask[0] = 0xff; | 481 | |
482 | /* ath9k_htc supports only 1 or 2 stream devices */ | ||
483 | tx_streams = ath9k_cmn_count_streams(common->tx_chainmask, 2); | ||
484 | rx_streams = ath9k_cmn_count_streams(common->rx_chainmask, 2); | ||
485 | |||
486 | ath_print(common, ATH_DBG_CONFIG, | ||
487 | "TX streams %d, RX streams: %d\n", | ||
488 | tx_streams, rx_streams); | ||
489 | |||
490 | if (tx_streams != rx_streams) { | ||
491 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; | ||
492 | ht_info->mcs.tx_params |= ((tx_streams - 1) << | ||
493 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); | ||
494 | } | ||
495 | |||
496 | for (i = 0; i < rx_streams; i++) | ||
497 | ht_info->mcs.rx_mask[i] = 0xff; | ||
498 | |||
412 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED; | 499 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED; |
413 | } | 500 | } |
414 | 501 | ||
@@ -420,6 +507,20 @@ static int ath9k_init_queues(struct ath9k_htc_priv *priv) | |||
420 | for (i = 0; i < ARRAY_SIZE(priv->hwq_map); i++) | 507 | for (i = 0; i < ARRAY_SIZE(priv->hwq_map); i++) |
421 | priv->hwq_map[i] = -1; | 508 | priv->hwq_map[i] = -1; |
422 | 509 | ||
510 | priv->beaconq = ath9k_hw_beaconq_setup(priv->ah); | ||
511 | if (priv->beaconq == -1) { | ||
512 | ath_print(common, ATH_DBG_FATAL, | ||
513 | "Unable to setup BEACON xmit queue\n"); | ||
514 | goto err; | ||
515 | } | ||
516 | |||
517 | priv->cabq = ath9k_htc_cabq_setup(priv); | ||
518 | if (priv->cabq == -1) { | ||
519 | ath_print(common, ATH_DBG_FATAL, | ||
520 | "Unable to setup CAB xmit queue\n"); | ||
521 | goto err; | ||
522 | } | ||
523 | |||
423 | if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_BE)) { | 524 | if (!ath9k_htc_txq_setup(priv, ATH9K_WME_AC_BE)) { |
424 | ath_print(common, ATH_DBG_FATAL, | 525 | ath_print(common, ATH_DBG_FATAL, |
425 | "Unable to setup xmit queue for BE traffic\n"); | 526 | "Unable to setup xmit queue for BE traffic\n"); |
@@ -512,6 +613,17 @@ static void ath9k_init_channels_rates(struct ath9k_htc_priv *priv) | |||
512 | priv->sbands[IEEE80211_BAND_2GHZ].n_bitrates = | 613 | priv->sbands[IEEE80211_BAND_2GHZ].n_bitrates = |
513 | ARRAY_SIZE(ath9k_legacy_rates); | 614 | ARRAY_SIZE(ath9k_legacy_rates); |
514 | } | 615 | } |
616 | |||
617 | if (test_bit(ATH9K_MODE_11A, priv->ah->caps.wireless_modes)) { | ||
618 | priv->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_channels; | ||
619 | priv->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; | ||
620 | priv->sbands[IEEE80211_BAND_5GHZ].n_channels = | ||
621 | ARRAY_SIZE(ath9k_5ghz_channels); | ||
622 | priv->sbands[IEEE80211_BAND_5GHZ].bitrates = | ||
623 | ath9k_legacy_rates + 4; | ||
624 | priv->sbands[IEEE80211_BAND_5GHZ].n_bitrates = | ||
625 | ARRAY_SIZE(ath9k_legacy_rates) - 4; | ||
626 | } | ||
515 | } | 627 | } |
516 | 628 | ||
517 | static void ath9k_init_misc(struct ath9k_htc_priv *priv) | 629 | static void ath9k_init_misc(struct ath9k_htc_priv *priv) |
@@ -643,11 +755,17 @@ static void ath9k_set_hw_capab(struct ath9k_htc_priv *priv, | |||
643 | if (test_bit(ATH9K_MODE_11G, priv->ah->caps.wireless_modes)) | 755 | if (test_bit(ATH9K_MODE_11G, priv->ah->caps.wireless_modes)) |
644 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = | 756 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
645 | &priv->sbands[IEEE80211_BAND_2GHZ]; | 757 | &priv->sbands[IEEE80211_BAND_2GHZ]; |
758 | if (test_bit(ATH9K_MODE_11A, priv->ah->caps.wireless_modes)) | ||
759 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = | ||
760 | &priv->sbands[IEEE80211_BAND_5GHZ]; | ||
646 | 761 | ||
647 | if (priv->ah->caps.hw_caps & ATH9K_HW_CAP_HT) { | 762 | if (priv->ah->caps.hw_caps & ATH9K_HW_CAP_HT) { |
648 | if (test_bit(ATH9K_MODE_11G, priv->ah->caps.wireless_modes)) | 763 | if (test_bit(ATH9K_MODE_11G, priv->ah->caps.wireless_modes)) |
649 | setup_ht_cap(priv, | 764 | setup_ht_cap(priv, |
650 | &priv->sbands[IEEE80211_BAND_2GHZ].ht_cap); | 765 | &priv->sbands[IEEE80211_BAND_2GHZ].ht_cap); |
766 | if (test_bit(ATH9K_MODE_11A, priv->ah->caps.wireless_modes)) | ||
767 | setup_ht_cap(priv, | ||
768 | &priv->sbands[IEEE80211_BAND_5GHZ].ht_cap); | ||
651 | } | 769 | } |
652 | 770 | ||
653 | SET_IEEE80211_PERM_ADDR(hw, common->macaddr); | 771 | SET_IEEE80211_PERM_ADDR(hw, common->macaddr); |
@@ -747,7 +865,7 @@ int ath9k_htc_probe_device(struct htc_target *htc_handle, struct device *dev, | |||
747 | goto err_free; | 865 | goto err_free; |
748 | } | 866 | } |
749 | 867 | ||
750 | ret = ath9k_init_htc_services(priv); | 868 | ret = ath9k_init_htc_services(priv, devid); |
751 | if (ret) | 869 | if (ret) |
752 | goto err_init; | 870 | goto err_init; |
753 | 871 | ||
@@ -790,7 +908,8 @@ int ath9k_htc_resume(struct htc_target *htc_handle) | |||
790 | if (ret) | 908 | if (ret) |
791 | return ret; | 909 | return ret; |
792 | 910 | ||
793 | ret = ath9k_init_htc_services(htc_handle->drv_priv); | 911 | ret = ath9k_init_htc_services(htc_handle->drv_priv, |
912 | htc_handle->drv_priv->ah->hw_version.devid); | ||
794 | return ret; | 913 | return ret; |
795 | } | 914 | } |
796 | #endif | 915 | #endif |
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c index 9d371c18eb41..7aefbc638770 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c | |||
@@ -325,133 +325,122 @@ static int ath9k_htc_update_cap_target(struct ath9k_htc_priv *priv) | |||
325 | tcap.flags_ext = 0x80601000; | 325 | tcap.flags_ext = 0x80601000; |
326 | tcap.ampdu_limit = 0xffff0000; | 326 | tcap.ampdu_limit = 0xffff0000; |
327 | tcap.ampdu_subframes = 20; | 327 | tcap.ampdu_subframes = 20; |
328 | tcap.tx_chainmask_legacy = 1; | 328 | tcap.tx_chainmask_legacy = priv->ah->caps.tx_chainmask; |
329 | tcap.protmode = 1; | 329 | tcap.protmode = 1; |
330 | tcap.tx_chainmask = 1; | 330 | tcap.tx_chainmask = priv->ah->caps.tx_chainmask; |
331 | 331 | ||
332 | WMI_CMD_BUF(WMI_TARGET_IC_UPDATE_CMDID, &tcap); | 332 | WMI_CMD_BUF(WMI_TARGET_IC_UPDATE_CMDID, &tcap); |
333 | 333 | ||
334 | return ret; | 334 | return ret; |
335 | } | 335 | } |
336 | 336 | ||
337 | static int ath9k_htc_init_rate(struct ath9k_htc_priv *priv, | 337 | static void ath9k_htc_setup_rate(struct ath9k_htc_priv *priv, |
338 | struct ieee80211_vif *vif, | 338 | struct ieee80211_sta *sta, |
339 | struct ieee80211_sta *sta) | 339 | struct ath9k_htc_target_rate *trate) |
340 | { | 340 | { |
341 | struct ath_common *common = ath9k_hw_common(priv->ah); | ||
342 | struct ath9k_htc_sta *ista = (struct ath9k_htc_sta *) sta->drv_priv; | 341 | struct ath9k_htc_sta *ista = (struct ath9k_htc_sta *) sta->drv_priv; |
343 | struct ieee80211_supported_band *sband; | 342 | struct ieee80211_supported_band *sband; |
344 | struct ath9k_htc_target_rate trate; | ||
345 | u32 caps = 0; | 343 | u32 caps = 0; |
346 | u8 cmd_rsp; | 344 | int i, j; |
347 | int i, j, ret; | ||
348 | |||
349 | memset(&trate, 0, sizeof(trate)); | ||
350 | 345 | ||
351 | /* Only 2GHz is supported */ | 346 | sband = priv->hw->wiphy->bands[priv->hw->conf.channel->band]; |
352 | sband = priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ]; | ||
353 | 347 | ||
354 | for (i = 0, j = 0; i < sband->n_bitrates; i++) { | 348 | for (i = 0, j = 0; i < sband->n_bitrates; i++) { |
355 | if (sta->supp_rates[sband->band] & BIT(i)) { | 349 | if (sta->supp_rates[sband->band] & BIT(i)) { |
356 | priv->tgt_rate.rates.legacy_rates.rs_rates[j] | 350 | trate->rates.legacy_rates.rs_rates[j] |
357 | = (sband->bitrates[i].bitrate * 2) / 10; | 351 | = (sband->bitrates[i].bitrate * 2) / 10; |
358 | j++; | 352 | j++; |
359 | } | 353 | } |
360 | } | 354 | } |
361 | priv->tgt_rate.rates.legacy_rates.rs_nrates = j; | 355 | trate->rates.legacy_rates.rs_nrates = j; |
362 | 356 | ||
363 | if (sta->ht_cap.ht_supported) { | 357 | if (sta->ht_cap.ht_supported) { |
364 | for (i = 0, j = 0; i < 77; i++) { | 358 | for (i = 0, j = 0; i < 77; i++) { |
365 | if (sta->ht_cap.mcs.rx_mask[i/8] & (1<<(i%8))) | 359 | if (sta->ht_cap.mcs.rx_mask[i/8] & (1<<(i%8))) |
366 | priv->tgt_rate.rates.ht_rates.rs_rates[j++] = i; | 360 | trate->rates.ht_rates.rs_rates[j++] = i; |
367 | if (j == ATH_HTC_RATE_MAX) | 361 | if (j == ATH_HTC_RATE_MAX) |
368 | break; | 362 | break; |
369 | } | 363 | } |
370 | priv->tgt_rate.rates.ht_rates.rs_nrates = j; | 364 | trate->rates.ht_rates.rs_nrates = j; |
371 | 365 | ||
372 | caps = WLAN_RC_HT_FLAG; | 366 | caps = WLAN_RC_HT_FLAG; |
367 | if (priv->ah->caps.tx_chainmask != 1 && | ||
368 | ath9k_hw_getcapability(priv->ah, ATH9K_CAP_DS, 0, NULL)) { | ||
369 | if (sta->ht_cap.mcs.rx_mask[1]) | ||
370 | caps |= WLAN_RC_DS_FLAG; | ||
371 | } | ||
373 | if (sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) | 372 | if (sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) |
374 | caps |= WLAN_RC_40_FLAG; | 373 | caps |= WLAN_RC_40_FLAG; |
375 | if (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40) | 374 | if (conf_is_ht40(&priv->hw->conf) && |
375 | (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40)) | ||
376 | caps |= WLAN_RC_SGI_FLAG; | ||
377 | else if (conf_is_ht20(&priv->hw->conf) && | ||
378 | (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20)) | ||
376 | caps |= WLAN_RC_SGI_FLAG; | 379 | caps |= WLAN_RC_SGI_FLAG; |
377 | |||
378 | } | 380 | } |
379 | 381 | ||
380 | priv->tgt_rate.sta_index = ista->index; | 382 | trate->sta_index = ista->index; |
381 | priv->tgt_rate.isnew = 1; | 383 | trate->isnew = 1; |
382 | trate = priv->tgt_rate; | 384 | trate->capflags = cpu_to_be32(caps); |
383 | priv->tgt_rate.capflags = cpu_to_be32(caps); | 385 | } |
384 | trate.capflags = cpu_to_be32(caps); | ||
385 | 386 | ||
386 | WMI_CMD_BUF(WMI_RC_RATE_UPDATE_CMDID, &trate); | 387 | static int ath9k_htc_send_rate_cmd(struct ath9k_htc_priv *priv, |
388 | struct ath9k_htc_target_rate *trate) | ||
389 | { | ||
390 | struct ath_common *common = ath9k_hw_common(priv->ah); | ||
391 | int ret; | ||
392 | u8 cmd_rsp; | ||
393 | |||
394 | WMI_CMD_BUF(WMI_RC_RATE_UPDATE_CMDID, trate); | ||
387 | if (ret) { | 395 | if (ret) { |
388 | ath_print(common, ATH_DBG_FATAL, | 396 | ath_print(common, ATH_DBG_FATAL, |
389 | "Unable to initialize Rate information on target\n"); | 397 | "Unable to initialize Rate information on target\n"); |
390 | return ret; | ||
391 | } | 398 | } |
392 | 399 | ||
393 | ath_print(common, ATH_DBG_CONFIG, | 400 | return ret; |
394 | "Updated target STA: %pM (caps: 0x%x)\n", sta->addr, caps); | ||
395 | return 0; | ||
396 | } | 401 | } |
397 | 402 | ||
398 | static bool check_rc_update(struct ieee80211_hw *hw, bool *cw40) | 403 | static void ath9k_htc_init_rate(struct ath9k_htc_priv *priv, |
404 | struct ieee80211_sta *sta) | ||
399 | { | 405 | { |
400 | struct ath9k_htc_priv *priv = hw->priv; | 406 | struct ath_common *common = ath9k_hw_common(priv->ah); |
401 | struct ieee80211_conf *conf = &hw->conf; | 407 | struct ath9k_htc_target_rate trate; |
402 | 408 | int ret; | |
403 | if (!conf_is_ht(conf)) | ||
404 | return false; | ||
405 | |||
406 | if (!(priv->op_flags & OP_ASSOCIATED) || | ||
407 | (priv->op_flags & OP_SCANNING)) | ||
408 | return false; | ||
409 | 409 | ||
410 | if (conf_is_ht40(conf)) { | 410 | memset(&trate, 0, sizeof(struct ath9k_htc_target_rate)); |
411 | if (priv->ah->curchan->chanmode & | 411 | ath9k_htc_setup_rate(priv, sta, &trate); |
412 | (CHANNEL_HT40PLUS | CHANNEL_HT40MINUS)) { | 412 | ret = ath9k_htc_send_rate_cmd(priv, &trate); |
413 | return false; | 413 | if (!ret) |
414 | } else { | 414 | ath_print(common, ATH_DBG_CONFIG, |
415 | *cw40 = true; | 415 | "Updated target sta: %pM, rate caps: 0x%X\n", |
416 | return true; | 416 | sta->addr, be32_to_cpu(trate.capflags)); |
417 | } | ||
418 | } else { /* ht20 */ | ||
419 | if (priv->ah->curchan->chanmode & CHANNEL_HT20) | ||
420 | return false; | ||
421 | else | ||
422 | return true; | ||
423 | } | ||
424 | } | 417 | } |
425 | 418 | ||
426 | static void ath9k_htc_rc_update(struct ath9k_htc_priv *priv, bool is_cw40) | 419 | static void ath9k_htc_update_rate(struct ath9k_htc_priv *priv, |
420 | struct ieee80211_vif *vif, | ||
421 | struct ieee80211_bss_conf *bss_conf) | ||
427 | { | 422 | { |
428 | struct ath9k_htc_target_rate trate; | ||
429 | struct ath_common *common = ath9k_hw_common(priv->ah); | 423 | struct ath_common *common = ath9k_hw_common(priv->ah); |
424 | struct ath9k_htc_target_rate trate; | ||
425 | struct ieee80211_sta *sta; | ||
430 | int ret; | 426 | int ret; |
431 | u32 caps = be32_to_cpu(priv->tgt_rate.capflags); | ||
432 | u8 cmd_rsp; | ||
433 | |||
434 | memset(&trate, 0, sizeof(trate)); | ||
435 | 427 | ||
436 | trate = priv->tgt_rate; | 428 | memset(&trate, 0, sizeof(struct ath9k_htc_target_rate)); |
437 | |||
438 | if (is_cw40) | ||
439 | caps |= WLAN_RC_40_FLAG; | ||
440 | else | ||
441 | caps &= ~WLAN_RC_40_FLAG; | ||
442 | 429 | ||
443 | priv->tgt_rate.capflags = cpu_to_be32(caps); | 430 | rcu_read_lock(); |
444 | trate.capflags = cpu_to_be32(caps); | 431 | sta = ieee80211_find_sta(vif, bss_conf->bssid); |
445 | 432 | if (!sta) { | |
446 | WMI_CMD_BUF(WMI_RC_RATE_UPDATE_CMDID, &trate); | 433 | rcu_read_unlock(); |
447 | if (ret) { | ||
448 | ath_print(common, ATH_DBG_FATAL, | ||
449 | "Unable to update Rate information on target\n"); | ||
450 | return; | 434 | return; |
451 | } | 435 | } |
436 | ath9k_htc_setup_rate(priv, sta, &trate); | ||
437 | rcu_read_unlock(); | ||
452 | 438 | ||
453 | ath_print(common, ATH_DBG_CONFIG, "Rate control updated with " | 439 | ret = ath9k_htc_send_rate_cmd(priv, &trate); |
454 | "caps:0x%x on target\n", priv->tgt_rate.capflags); | 440 | if (!ret) |
441 | ath_print(common, ATH_DBG_CONFIG, | ||
442 | "Updated target sta: %pM, rate caps: 0x%X\n", | ||
443 | bss_conf->bssid, be32_to_cpu(trate.capflags)); | ||
455 | } | 444 | } |
456 | 445 | ||
457 | static int ath9k_htc_aggr_oper(struct ath9k_htc_priv *priv, | 446 | static int ath9k_htc_aggr_oper(struct ath9k_htc_priv *priv, |
@@ -617,6 +606,19 @@ static ssize_t read_file_xmit(struct file *file, char __user *user_buf, | |||
617 | "%20s : %10u\n", "SKBs dropped", | 606 | "%20s : %10u\n", "SKBs dropped", |
618 | priv->debug.tx_stats.skb_dropped); | 607 | priv->debug.tx_stats.skb_dropped); |
619 | 608 | ||
609 | len += snprintf(buf + len, sizeof(buf) - len, | ||
610 | "%20s : %10u\n", "BE queued", | ||
611 | priv->debug.tx_stats.queue_stats[WME_AC_BE]); | ||
612 | len += snprintf(buf + len, sizeof(buf) - len, | ||
613 | "%20s : %10u\n", "BK queued", | ||
614 | priv->debug.tx_stats.queue_stats[WME_AC_BK]); | ||
615 | len += snprintf(buf + len, sizeof(buf) - len, | ||
616 | "%20s : %10u\n", "VI queued", | ||
617 | priv->debug.tx_stats.queue_stats[WME_AC_VI]); | ||
618 | len += snprintf(buf + len, sizeof(buf) - len, | ||
619 | "%20s : %10u\n", "VO queued", | ||
620 | priv->debug.tx_stats.queue_stats[WME_AC_VO]); | ||
621 | |||
620 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 622 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
621 | } | 623 | } |
622 | 624 | ||
@@ -1054,6 +1056,95 @@ void ath9k_start_rfkill_poll(struct ath9k_htc_priv *priv) | |||
1054 | wiphy_rfkill_start_polling(priv->hw->wiphy); | 1056 | wiphy_rfkill_start_polling(priv->hw->wiphy); |
1055 | } | 1057 | } |
1056 | 1058 | ||
1059 | static void ath9k_htc_radio_enable(struct ieee80211_hw *hw) | ||
1060 | { | ||
1061 | struct ath9k_htc_priv *priv = hw->priv; | ||
1062 | struct ath_hw *ah = priv->ah; | ||
1063 | struct ath_common *common = ath9k_hw_common(ah); | ||
1064 | int ret; | ||
1065 | u8 cmd_rsp; | ||
1066 | |||
1067 | if (!ah->curchan) | ||
1068 | ah->curchan = ath9k_cmn_get_curchannel(hw, ah); | ||
1069 | |||
1070 | /* Reset the HW */ | ||
1071 | ret = ath9k_hw_reset(ah, ah->curchan, false); | ||
1072 | if (ret) { | ||
1073 | ath_print(common, ATH_DBG_FATAL, | ||
1074 | "Unable to reset hardware; reset status %d " | ||
1075 | "(freq %u MHz)\n", ret, ah->curchan->channel); | ||
1076 | } | ||
1077 | |||
1078 | ath_update_txpow(priv); | ||
1079 | |||
1080 | /* Start RX */ | ||
1081 | WMI_CMD(WMI_START_RECV_CMDID); | ||
1082 | ath9k_host_rx_init(priv); | ||
1083 | |||
1084 | /* Start TX */ | ||
1085 | htc_start(priv->htc); | ||
1086 | spin_lock_bh(&priv->tx_lock); | ||
1087 | priv->tx_queues_stop = false; | ||
1088 | spin_unlock_bh(&priv->tx_lock); | ||
1089 | ieee80211_wake_queues(hw); | ||
1090 | |||
1091 | WMI_CMD(WMI_ENABLE_INTR_CMDID); | ||
1092 | |||
1093 | /* Enable LED */ | ||
1094 | ath9k_hw_cfg_output(ah, ah->led_pin, | ||
1095 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); | ||
1096 | ath9k_hw_set_gpio(ah, ah->led_pin, 0); | ||
1097 | } | ||
1098 | |||
1099 | static void ath9k_htc_radio_disable(struct ieee80211_hw *hw) | ||
1100 | { | ||
1101 | struct ath9k_htc_priv *priv = hw->priv; | ||
1102 | struct ath_hw *ah = priv->ah; | ||
1103 | struct ath_common *common = ath9k_hw_common(ah); | ||
1104 | int ret; | ||
1105 | u8 cmd_rsp; | ||
1106 | |||
1107 | ath9k_htc_ps_wakeup(priv); | ||
1108 | |||
1109 | /* Disable LED */ | ||
1110 | ath9k_hw_set_gpio(ah, ah->led_pin, 1); | ||
1111 | ath9k_hw_cfg_gpio_input(ah, ah->led_pin); | ||
1112 | |||
1113 | WMI_CMD(WMI_DISABLE_INTR_CMDID); | ||
1114 | |||
1115 | /* Stop TX */ | ||
1116 | ieee80211_stop_queues(hw); | ||
1117 | htc_stop(priv->htc); | ||
1118 | WMI_CMD(WMI_DRAIN_TXQ_ALL_CMDID); | ||
1119 | skb_queue_purge(&priv->tx_queue); | ||
1120 | |||
1121 | /* Stop RX */ | ||
1122 | WMI_CMD(WMI_STOP_RECV_CMDID); | ||
1123 | |||
1124 | /* | ||
1125 | * The MIB counters have to be disabled here, | ||
1126 | * since the target doesn't do it. | ||
1127 | */ | ||
1128 | ath9k_hw_disable_mib_counters(ah); | ||
1129 | |||
1130 | if (!ah->curchan) | ||
1131 | ah->curchan = ath9k_cmn_get_curchannel(hw, ah); | ||
1132 | |||
1133 | /* Reset the HW */ | ||
1134 | ret = ath9k_hw_reset(ah, ah->curchan, false); | ||
1135 | if (ret) { | ||
1136 | ath_print(common, ATH_DBG_FATAL, | ||
1137 | "Unable to reset hardware; reset status %d " | ||
1138 | "(freq %u MHz)\n", ret, ah->curchan->channel); | ||
1139 | } | ||
1140 | |||
1141 | /* Disable the PHY */ | ||
1142 | ath9k_hw_phy_disable(ah); | ||
1143 | |||
1144 | ath9k_htc_ps_restore(priv); | ||
1145 | ath9k_htc_setpower(priv, ATH9K_PM_FULL_SLEEP); | ||
1146 | } | ||
1147 | |||
1057 | /**********************/ | 1148 | /**********************/ |
1058 | /* mac80211 Callbacks */ | 1149 | /* mac80211 Callbacks */ |
1059 | /**********************/ | 1150 | /**********************/ |
@@ -1099,7 +1190,7 @@ fail_tx: | |||
1099 | return 0; | 1190 | return 0; |
1100 | } | 1191 | } |
1101 | 1192 | ||
1102 | static int ath9k_htc_radio_enable(struct ieee80211_hw *hw, bool led) | 1193 | static int ath9k_htc_start(struct ieee80211_hw *hw) |
1103 | { | 1194 | { |
1104 | struct ath9k_htc_priv *priv = hw->priv; | 1195 | struct ath9k_htc_priv *priv = hw->priv; |
1105 | struct ath_hw *ah = priv->ah; | 1196 | struct ath_hw *ah = priv->ah; |
@@ -1111,10 +1202,16 @@ static int ath9k_htc_radio_enable(struct ieee80211_hw *hw, bool led) | |||
1111 | __be16 htc_mode; | 1202 | __be16 htc_mode; |
1112 | u8 cmd_rsp; | 1203 | u8 cmd_rsp; |
1113 | 1204 | ||
1205 | mutex_lock(&priv->mutex); | ||
1206 | |||
1114 | ath_print(common, ATH_DBG_CONFIG, | 1207 | ath_print(common, ATH_DBG_CONFIG, |
1115 | "Starting driver with initial channel: %d MHz\n", | 1208 | "Starting driver with initial channel: %d MHz\n", |
1116 | curchan->center_freq); | 1209 | curchan->center_freq); |
1117 | 1210 | ||
1211 | /* Ensure that HW is awake before flushing RX */ | ||
1212 | ath9k_htc_setpower(priv, ATH9K_PM_AWAKE); | ||
1213 | WMI_CMD(WMI_FLUSH_RECV_CMDID); | ||
1214 | |||
1118 | /* setup initial channel */ | 1215 | /* setup initial channel */ |
1119 | init_channel = ath9k_cmn_get_curchannel(hw, ah); | 1216 | init_channel = ath9k_cmn_get_curchannel(hw, ah); |
1120 | 1217 | ||
@@ -1127,6 +1224,7 @@ static int ath9k_htc_radio_enable(struct ieee80211_hw *hw, bool led) | |||
1127 | ath_print(common, ATH_DBG_FATAL, | 1224 | ath_print(common, ATH_DBG_FATAL, |
1128 | "Unable to reset hardware; reset status %d " | 1225 | "Unable to reset hardware; reset status %d " |
1129 | "(freq %u MHz)\n", ret, curchan->center_freq); | 1226 | "(freq %u MHz)\n", ret, curchan->center_freq); |
1227 | mutex_unlock(&priv->mutex); | ||
1130 | return ret; | 1228 | return ret; |
1131 | } | 1229 | } |
1132 | 1230 | ||
@@ -1147,31 +1245,14 @@ static int ath9k_htc_radio_enable(struct ieee80211_hw *hw, bool led) | |||
1147 | priv->tx_queues_stop = false; | 1245 | priv->tx_queues_stop = false; |
1148 | spin_unlock_bh(&priv->tx_lock); | 1246 | spin_unlock_bh(&priv->tx_lock); |
1149 | 1247 | ||
1150 | if (led) { | ||
1151 | /* Enable LED */ | ||
1152 | ath9k_hw_cfg_output(ah, ah->led_pin, | ||
1153 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); | ||
1154 | ath9k_hw_set_gpio(ah, ah->led_pin, 0); | ||
1155 | } | ||
1156 | |||
1157 | ieee80211_wake_queues(hw); | 1248 | ieee80211_wake_queues(hw); |
1158 | 1249 | ||
1159 | return ret; | ||
1160 | } | ||
1161 | |||
1162 | static int ath9k_htc_start(struct ieee80211_hw *hw) | ||
1163 | { | ||
1164 | struct ath9k_htc_priv *priv = hw->priv; | ||
1165 | int ret = 0; | ||
1166 | |||
1167 | mutex_lock(&priv->mutex); | ||
1168 | ret = ath9k_htc_radio_enable(hw, false); | ||
1169 | mutex_unlock(&priv->mutex); | 1250 | mutex_unlock(&priv->mutex); |
1170 | 1251 | ||
1171 | return ret; | 1252 | return ret; |
1172 | } | 1253 | } |
1173 | 1254 | ||
1174 | static void ath9k_htc_radio_disable(struct ieee80211_hw *hw, bool led) | 1255 | static void ath9k_htc_stop(struct ieee80211_hw *hw) |
1175 | { | 1256 | { |
1176 | struct ath9k_htc_priv *priv = hw->priv; | 1257 | struct ath9k_htc_priv *priv = hw->priv; |
1177 | struct ath_hw *ah = priv->ah; | 1258 | struct ath_hw *ah = priv->ah; |
@@ -1179,17 +1260,14 @@ static void ath9k_htc_radio_disable(struct ieee80211_hw *hw, bool led) | |||
1179 | int ret = 0; | 1260 | int ret = 0; |
1180 | u8 cmd_rsp; | 1261 | u8 cmd_rsp; |
1181 | 1262 | ||
1263 | mutex_lock(&priv->mutex); | ||
1264 | |||
1182 | if (priv->op_flags & OP_INVALID) { | 1265 | if (priv->op_flags & OP_INVALID) { |
1183 | ath_print(common, ATH_DBG_ANY, "Device not present\n"); | 1266 | ath_print(common, ATH_DBG_ANY, "Device not present\n"); |
1267 | mutex_unlock(&priv->mutex); | ||
1184 | return; | 1268 | return; |
1185 | } | 1269 | } |
1186 | 1270 | ||
1187 | if (led) { | ||
1188 | /* Disable LED */ | ||
1189 | ath9k_hw_set_gpio(ah, ah->led_pin, 1); | ||
1190 | ath9k_hw_cfg_gpio_input(ah, ah->led_pin); | ||
1191 | } | ||
1192 | |||
1193 | /* Cancel all the running timers/work .. */ | 1271 | /* Cancel all the running timers/work .. */ |
1194 | cancel_work_sync(&priv->ps_work); | 1272 | cancel_work_sync(&priv->ps_work); |
1195 | cancel_delayed_work_sync(&priv->ath9k_ani_work); | 1273 | cancel_delayed_work_sync(&priv->ath9k_ani_work); |
@@ -1202,12 +1280,6 @@ static void ath9k_htc_radio_disable(struct ieee80211_hw *hw, bool led) | |||
1202 | WMI_CMD(WMI_DISABLE_INTR_CMDID); | 1280 | WMI_CMD(WMI_DISABLE_INTR_CMDID); |
1203 | WMI_CMD(WMI_DRAIN_TXQ_ALL_CMDID); | 1281 | WMI_CMD(WMI_DRAIN_TXQ_ALL_CMDID); |
1204 | WMI_CMD(WMI_STOP_RECV_CMDID); | 1282 | WMI_CMD(WMI_STOP_RECV_CMDID); |
1205 | ath9k_hw_phy_disable(ah); | ||
1206 | ath9k_hw_disable(ah); | ||
1207 | ath9k_hw_configpcipowersave(ah, 1, 1); | ||
1208 | ath9k_htc_ps_restore(priv); | ||
1209 | ath9k_htc_setpower(priv, ATH9K_PM_FULL_SLEEP); | ||
1210 | |||
1211 | skb_queue_purge(&priv->tx_queue); | 1283 | skb_queue_purge(&priv->tx_queue); |
1212 | 1284 | ||
1213 | /* Remove monitor interface here */ | 1285 | /* Remove monitor interface here */ |
@@ -1220,21 +1292,18 @@ static void ath9k_htc_radio_disable(struct ieee80211_hw *hw, bool led) | |||
1220 | "Monitor interface removed\n"); | 1292 | "Monitor interface removed\n"); |
1221 | } | 1293 | } |
1222 | 1294 | ||
1295 | ath9k_hw_phy_disable(ah); | ||
1296 | ath9k_hw_disable(ah); | ||
1297 | ath9k_hw_configpcipowersave(ah, 1, 1); | ||
1298 | ath9k_htc_ps_restore(priv); | ||
1299 | ath9k_htc_setpower(priv, ATH9K_PM_FULL_SLEEP); | ||
1300 | |||
1223 | priv->op_flags |= OP_INVALID; | 1301 | priv->op_flags |= OP_INVALID; |
1224 | 1302 | ||
1225 | ath_print(common, ATH_DBG_CONFIG, "Driver halt\n"); | 1303 | ath_print(common, ATH_DBG_CONFIG, "Driver halt\n"); |
1226 | } | ||
1227 | |||
1228 | static void ath9k_htc_stop(struct ieee80211_hw *hw) | ||
1229 | { | ||
1230 | struct ath9k_htc_priv *priv = hw->priv; | ||
1231 | |||
1232 | mutex_lock(&priv->mutex); | ||
1233 | ath9k_htc_radio_disable(hw, false); | ||
1234 | mutex_unlock(&priv->mutex); | 1304 | mutex_unlock(&priv->mutex); |
1235 | } | 1305 | } |
1236 | 1306 | ||
1237 | |||
1238 | static int ath9k_htc_add_interface(struct ieee80211_hw *hw, | 1307 | static int ath9k_htc_add_interface(struct ieee80211_hw *hw, |
1239 | struct ieee80211_vif *vif) | 1308 | struct ieee80211_vif *vif) |
1240 | { | 1309 | { |
@@ -1302,6 +1371,7 @@ static int ath9k_htc_add_interface(struct ieee80211_hw *hw, | |||
1302 | out: | 1371 | out: |
1303 | ath9k_htc_ps_restore(priv); | 1372 | ath9k_htc_ps_restore(priv); |
1304 | mutex_unlock(&priv->mutex); | 1373 | mutex_unlock(&priv->mutex); |
1374 | |||
1305 | return ret; | 1375 | return ret; |
1306 | } | 1376 | } |
1307 | 1377 | ||
@@ -1318,6 +1388,7 @@ static void ath9k_htc_remove_interface(struct ieee80211_hw *hw, | |||
1318 | ath_print(common, ATH_DBG_CONFIG, "Detach Interface\n"); | 1388 | ath_print(common, ATH_DBG_CONFIG, "Detach Interface\n"); |
1319 | 1389 | ||
1320 | mutex_lock(&priv->mutex); | 1390 | mutex_lock(&priv->mutex); |
1391 | ath9k_htc_ps_wakeup(priv); | ||
1321 | 1392 | ||
1322 | memset(&hvif, 0, sizeof(struct ath9k_htc_target_vif)); | 1393 | memset(&hvif, 0, sizeof(struct ath9k_htc_target_vif)); |
1323 | memcpy(&hvif.myaddr, vif->addr, ETH_ALEN); | 1394 | memcpy(&hvif.myaddr, vif->addr, ETH_ALEN); |
@@ -1328,6 +1399,7 @@ static void ath9k_htc_remove_interface(struct ieee80211_hw *hw, | |||
1328 | ath9k_htc_remove_station(priv, vif, NULL); | 1399 | ath9k_htc_remove_station(priv, vif, NULL); |
1329 | priv->vif = NULL; | 1400 | priv->vif = NULL; |
1330 | 1401 | ||
1402 | ath9k_htc_ps_restore(priv); | ||
1331 | mutex_unlock(&priv->mutex); | 1403 | mutex_unlock(&priv->mutex); |
1332 | } | 1404 | } |
1333 | 1405 | ||
@@ -1343,30 +1415,27 @@ static int ath9k_htc_config(struct ieee80211_hw *hw, u32 changed) | |||
1343 | bool enable_radio = false; | 1415 | bool enable_radio = false; |
1344 | bool idle = !!(conf->flags & IEEE80211_CONF_IDLE); | 1416 | bool idle = !!(conf->flags & IEEE80211_CONF_IDLE); |
1345 | 1417 | ||
1418 | mutex_lock(&priv->htc_pm_lock); | ||
1346 | if (!idle && priv->ps_idle) | 1419 | if (!idle && priv->ps_idle) |
1347 | enable_radio = true; | 1420 | enable_radio = true; |
1348 | |||
1349 | priv->ps_idle = idle; | 1421 | priv->ps_idle = idle; |
1422 | mutex_unlock(&priv->htc_pm_lock); | ||
1350 | 1423 | ||
1351 | if (enable_radio) { | 1424 | if (enable_radio) { |
1352 | ath9k_htc_setpower(priv, ATH9K_PM_AWAKE); | ||
1353 | ath9k_htc_radio_enable(hw, true); | ||
1354 | ath_print(common, ATH_DBG_CONFIG, | 1425 | ath_print(common, ATH_DBG_CONFIG, |
1355 | "not-idle: enabling radio\n"); | 1426 | "not-idle: enabling radio\n"); |
1427 | ath9k_htc_setpower(priv, ATH9K_PM_AWAKE); | ||
1428 | ath9k_htc_radio_enable(hw); | ||
1356 | } | 1429 | } |
1357 | } | 1430 | } |
1358 | 1431 | ||
1359 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { | 1432 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
1360 | struct ieee80211_channel *curchan = hw->conf.channel; | 1433 | struct ieee80211_channel *curchan = hw->conf.channel; |
1361 | int pos = curchan->hw_value; | 1434 | int pos = curchan->hw_value; |
1362 | bool is_cw40 = false; | ||
1363 | 1435 | ||
1364 | ath_print(common, ATH_DBG_CONFIG, "Set channel: %d MHz\n", | 1436 | ath_print(common, ATH_DBG_CONFIG, "Set channel: %d MHz\n", |
1365 | curchan->center_freq); | 1437 | curchan->center_freq); |
1366 | 1438 | ||
1367 | if (check_rc_update(hw, &is_cw40)) | ||
1368 | ath9k_htc_rc_update(priv, is_cw40); | ||
1369 | |||
1370 | ath9k_cmn_update_ichannel(hw, &priv->ah->channels[pos]); | 1439 | ath9k_cmn_update_ichannel(hw, &priv->ah->channels[pos]); |
1371 | 1440 | ||
1372 | if (ath9k_htc_set_channel(priv, hw, &priv->ah->channels[pos]) < 0) { | 1441 | if (ath9k_htc_set_channel(priv, hw, &priv->ah->channels[pos]) < 0) { |
@@ -1399,14 +1468,21 @@ static int ath9k_htc_config(struct ieee80211_hw *hw, u32 changed) | |||
1399 | } | 1468 | } |
1400 | } | 1469 | } |
1401 | 1470 | ||
1402 | if (priv->ps_idle) { | 1471 | if (changed & IEEE80211_CONF_CHANGE_IDLE) { |
1472 | mutex_lock(&priv->htc_pm_lock); | ||
1473 | if (!priv->ps_idle) { | ||
1474 | mutex_unlock(&priv->htc_pm_lock); | ||
1475 | goto out; | ||
1476 | } | ||
1477 | mutex_unlock(&priv->htc_pm_lock); | ||
1478 | |||
1403 | ath_print(common, ATH_DBG_CONFIG, | 1479 | ath_print(common, ATH_DBG_CONFIG, |
1404 | "idle: disabling radio\n"); | 1480 | "idle: disabling radio\n"); |
1405 | ath9k_htc_radio_disable(hw, true); | 1481 | ath9k_htc_radio_disable(hw); |
1406 | } | 1482 | } |
1407 | 1483 | ||
1484 | out: | ||
1408 | mutex_unlock(&priv->mutex); | 1485 | mutex_unlock(&priv->mutex); |
1409 | |||
1410 | return 0; | 1486 | return 0; |
1411 | } | 1487 | } |
1412 | 1488 | ||
@@ -1428,8 +1504,8 @@ static void ath9k_htc_configure_filter(struct ieee80211_hw *hw, | |||
1428 | u32 rfilt; | 1504 | u32 rfilt; |
1429 | 1505 | ||
1430 | mutex_lock(&priv->mutex); | 1506 | mutex_lock(&priv->mutex); |
1431 | |||
1432 | ath9k_htc_ps_wakeup(priv); | 1507 | ath9k_htc_ps_wakeup(priv); |
1508 | |||
1433 | changed_flags &= SUPPORTED_FILTERS; | 1509 | changed_flags &= SUPPORTED_FILTERS; |
1434 | *total_flags &= SUPPORTED_FILTERS; | 1510 | *total_flags &= SUPPORTED_FILTERS; |
1435 | 1511 | ||
@@ -1444,30 +1520,38 @@ static void ath9k_htc_configure_filter(struct ieee80211_hw *hw, | |||
1444 | mutex_unlock(&priv->mutex); | 1520 | mutex_unlock(&priv->mutex); |
1445 | } | 1521 | } |
1446 | 1522 | ||
1447 | static void ath9k_htc_sta_notify(struct ieee80211_hw *hw, | 1523 | static int ath9k_htc_sta_add(struct ieee80211_hw *hw, |
1448 | struct ieee80211_vif *vif, | 1524 | struct ieee80211_vif *vif, |
1449 | enum sta_notify_cmd cmd, | 1525 | struct ieee80211_sta *sta) |
1450 | struct ieee80211_sta *sta) | ||
1451 | { | 1526 | { |
1452 | struct ath9k_htc_priv *priv = hw->priv; | 1527 | struct ath9k_htc_priv *priv = hw->priv; |
1453 | int ret; | 1528 | int ret; |
1454 | 1529 | ||
1455 | mutex_lock(&priv->mutex); | 1530 | mutex_lock(&priv->mutex); |
1531 | ath9k_htc_ps_wakeup(priv); | ||
1532 | ret = ath9k_htc_add_station(priv, vif, sta); | ||
1533 | if (!ret) | ||
1534 | ath9k_htc_init_rate(priv, sta); | ||
1535 | ath9k_htc_ps_restore(priv); | ||
1536 | mutex_unlock(&priv->mutex); | ||
1456 | 1537 | ||
1457 | switch (cmd) { | 1538 | return ret; |
1458 | case STA_NOTIFY_ADD: | 1539 | } |
1459 | ret = ath9k_htc_add_station(priv, vif, sta); | ||
1460 | if (!ret) | ||
1461 | ath9k_htc_init_rate(priv, vif, sta); | ||
1462 | break; | ||
1463 | case STA_NOTIFY_REMOVE: | ||
1464 | ath9k_htc_remove_station(priv, vif, sta); | ||
1465 | break; | ||
1466 | default: | ||
1467 | break; | ||
1468 | } | ||
1469 | 1540 | ||
1541 | static int ath9k_htc_sta_remove(struct ieee80211_hw *hw, | ||
1542 | struct ieee80211_vif *vif, | ||
1543 | struct ieee80211_sta *sta) | ||
1544 | { | ||
1545 | struct ath9k_htc_priv *priv = hw->priv; | ||
1546 | int ret; | ||
1547 | |||
1548 | mutex_lock(&priv->mutex); | ||
1549 | ath9k_htc_ps_wakeup(priv); | ||
1550 | ret = ath9k_htc_remove_station(priv, vif, sta); | ||
1551 | ath9k_htc_ps_restore(priv); | ||
1470 | mutex_unlock(&priv->mutex); | 1552 | mutex_unlock(&priv->mutex); |
1553 | |||
1554 | return ret; | ||
1471 | } | 1555 | } |
1472 | 1556 | ||
1473 | static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue, | 1557 | static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue, |
@@ -1482,6 +1566,7 @@ static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue, | |||
1482 | return 0; | 1566 | return 0; |
1483 | 1567 | ||
1484 | mutex_lock(&priv->mutex); | 1568 | mutex_lock(&priv->mutex); |
1569 | ath9k_htc_ps_wakeup(priv); | ||
1485 | 1570 | ||
1486 | memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); | 1571 | memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); |
1487 | 1572 | ||
@@ -1499,9 +1584,16 @@ static int ath9k_htc_conf_tx(struct ieee80211_hw *hw, u16 queue, | |||
1499 | params->cw_max, params->txop); | 1584 | params->cw_max, params->txop); |
1500 | 1585 | ||
1501 | ret = ath_htc_txq_update(priv, qnum, &qi); | 1586 | ret = ath_htc_txq_update(priv, qnum, &qi); |
1502 | if (ret) | 1587 | if (ret) { |
1503 | ath_print(common, ATH_DBG_FATAL, "TXQ Update failed\n"); | 1588 | ath_print(common, ATH_DBG_FATAL, "TXQ Update failed\n"); |
1589 | goto out; | ||
1590 | } | ||
1504 | 1591 | ||
1592 | if ((priv->ah->opmode == NL80211_IFTYPE_ADHOC) && | ||
1593 | (qnum == priv->hwq_map[ATH9K_WME_AC_BE])) | ||
1594 | ath9k_htc_beaconq_config(priv); | ||
1595 | out: | ||
1596 | ath9k_htc_ps_restore(priv); | ||
1505 | mutex_unlock(&priv->mutex); | 1597 | mutex_unlock(&priv->mutex); |
1506 | 1598 | ||
1507 | return ret; | 1599 | return ret; |
@@ -1574,7 +1666,6 @@ static void ath9k_htc_bss_info_changed(struct ieee80211_hw *hw, | |||
1574 | ath_start_ani(priv); | 1666 | ath_start_ani(priv); |
1575 | } else { | 1667 | } else { |
1576 | priv->op_flags &= ~OP_ASSOCIATED; | 1668 | priv->op_flags &= ~OP_ASSOCIATED; |
1577 | cancel_work_sync(&priv->ps_work); | ||
1578 | cancel_delayed_work_sync(&priv->ath9k_ani_work); | 1669 | cancel_delayed_work_sync(&priv->ath9k_ani_work); |
1579 | } | 1670 | } |
1580 | } | 1671 | } |
@@ -1631,6 +1722,9 @@ static void ath9k_htc_bss_info_changed(struct ieee80211_hw *hw, | |||
1631 | ath9k_hw_init_global_settings(ah); | 1722 | ath9k_hw_init_global_settings(ah); |
1632 | } | 1723 | } |
1633 | 1724 | ||
1725 | if (changed & BSS_CHANGED_HT) | ||
1726 | ath9k_htc_update_rate(priv, vif, bss_conf); | ||
1727 | |||
1634 | ath9k_htc_ps_restore(priv); | 1728 | ath9k_htc_ps_restore(priv); |
1635 | mutex_unlock(&priv->mutex); | 1729 | mutex_unlock(&priv->mutex); |
1636 | } | 1730 | } |
@@ -1641,7 +1735,9 @@ static u64 ath9k_htc_get_tsf(struct ieee80211_hw *hw) | |||
1641 | u64 tsf; | 1735 | u64 tsf; |
1642 | 1736 | ||
1643 | mutex_lock(&priv->mutex); | 1737 | mutex_lock(&priv->mutex); |
1738 | ath9k_htc_ps_wakeup(priv); | ||
1644 | tsf = ath9k_hw_gettsf64(priv->ah); | 1739 | tsf = ath9k_hw_gettsf64(priv->ah); |
1740 | ath9k_htc_ps_restore(priv); | ||
1645 | mutex_unlock(&priv->mutex); | 1741 | mutex_unlock(&priv->mutex); |
1646 | 1742 | ||
1647 | return tsf; | 1743 | return tsf; |
@@ -1652,7 +1748,9 @@ static void ath9k_htc_set_tsf(struct ieee80211_hw *hw, u64 tsf) | |||
1652 | struct ath9k_htc_priv *priv = hw->priv; | 1748 | struct ath9k_htc_priv *priv = hw->priv; |
1653 | 1749 | ||
1654 | mutex_lock(&priv->mutex); | 1750 | mutex_lock(&priv->mutex); |
1751 | ath9k_htc_ps_wakeup(priv); | ||
1655 | ath9k_hw_settsf64(priv->ah, tsf); | 1752 | ath9k_hw_settsf64(priv->ah, tsf); |
1753 | ath9k_htc_ps_restore(priv); | ||
1656 | mutex_unlock(&priv->mutex); | 1754 | mutex_unlock(&priv->mutex); |
1657 | } | 1755 | } |
1658 | 1756 | ||
@@ -1660,11 +1758,11 @@ static void ath9k_htc_reset_tsf(struct ieee80211_hw *hw) | |||
1660 | { | 1758 | { |
1661 | struct ath9k_htc_priv *priv = hw->priv; | 1759 | struct ath9k_htc_priv *priv = hw->priv; |
1662 | 1760 | ||
1663 | ath9k_htc_ps_wakeup(priv); | ||
1664 | mutex_lock(&priv->mutex); | 1761 | mutex_lock(&priv->mutex); |
1762 | ath9k_htc_ps_wakeup(priv); | ||
1665 | ath9k_hw_reset_tsf(priv->ah); | 1763 | ath9k_hw_reset_tsf(priv->ah); |
1666 | mutex_unlock(&priv->mutex); | ||
1667 | ath9k_htc_ps_restore(priv); | 1764 | ath9k_htc_ps_restore(priv); |
1765 | mutex_unlock(&priv->mutex); | ||
1668 | } | 1766 | } |
1669 | 1767 | ||
1670 | static int ath9k_htc_ampdu_action(struct ieee80211_hw *hw, | 1768 | static int ath9k_htc_ampdu_action(struct ieee80211_hw *hw, |
@@ -1722,8 +1820,8 @@ static void ath9k_htc_sw_scan_complete(struct ieee80211_hw *hw) | |||
1722 | { | 1820 | { |
1723 | struct ath9k_htc_priv *priv = hw->priv; | 1821 | struct ath9k_htc_priv *priv = hw->priv; |
1724 | 1822 | ||
1725 | ath9k_htc_ps_wakeup(priv); | ||
1726 | mutex_lock(&priv->mutex); | 1823 | mutex_lock(&priv->mutex); |
1824 | ath9k_htc_ps_wakeup(priv); | ||
1727 | spin_lock_bh(&priv->beacon_lock); | 1825 | spin_lock_bh(&priv->beacon_lock); |
1728 | priv->op_flags &= ~OP_SCANNING; | 1826 | priv->op_flags &= ~OP_SCANNING; |
1729 | spin_unlock_bh(&priv->beacon_lock); | 1827 | spin_unlock_bh(&priv->beacon_lock); |
@@ -1731,8 +1829,8 @@ static void ath9k_htc_sw_scan_complete(struct ieee80211_hw *hw) | |||
1731 | if (priv->op_flags & OP_ASSOCIATED) | 1829 | if (priv->op_flags & OP_ASSOCIATED) |
1732 | ath9k_htc_beacon_config(priv, priv->vif); | 1830 | ath9k_htc_beacon_config(priv, priv->vif); |
1733 | ath_start_ani(priv); | 1831 | ath_start_ani(priv); |
1734 | mutex_unlock(&priv->mutex); | ||
1735 | ath9k_htc_ps_restore(priv); | 1832 | ath9k_htc_ps_restore(priv); |
1833 | mutex_unlock(&priv->mutex); | ||
1736 | } | 1834 | } |
1737 | 1835 | ||
1738 | static int ath9k_htc_set_rts_threshold(struct ieee80211_hw *hw, u32 value) | 1836 | static int ath9k_htc_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
@@ -1746,8 +1844,10 @@ static void ath9k_htc_set_coverage_class(struct ieee80211_hw *hw, | |||
1746 | struct ath9k_htc_priv *priv = hw->priv; | 1844 | struct ath9k_htc_priv *priv = hw->priv; |
1747 | 1845 | ||
1748 | mutex_lock(&priv->mutex); | 1846 | mutex_lock(&priv->mutex); |
1847 | ath9k_htc_ps_wakeup(priv); | ||
1749 | priv->ah->coverage_class = coverage_class; | 1848 | priv->ah->coverage_class = coverage_class; |
1750 | ath9k_hw_init_global_settings(priv->ah); | 1849 | ath9k_hw_init_global_settings(priv->ah); |
1850 | ath9k_htc_ps_restore(priv); | ||
1751 | mutex_unlock(&priv->mutex); | 1851 | mutex_unlock(&priv->mutex); |
1752 | } | 1852 | } |
1753 | 1853 | ||
@@ -1759,7 +1859,8 @@ struct ieee80211_ops ath9k_htc_ops = { | |||
1759 | .remove_interface = ath9k_htc_remove_interface, | 1859 | .remove_interface = ath9k_htc_remove_interface, |
1760 | .config = ath9k_htc_config, | 1860 | .config = ath9k_htc_config, |
1761 | .configure_filter = ath9k_htc_configure_filter, | 1861 | .configure_filter = ath9k_htc_configure_filter, |
1762 | .sta_notify = ath9k_htc_sta_notify, | 1862 | .sta_add = ath9k_htc_sta_add, |
1863 | .sta_remove = ath9k_htc_sta_remove, | ||
1763 | .conf_tx = ath9k_htc_conf_tx, | 1864 | .conf_tx = ath9k_htc_conf_tx, |
1764 | .bss_info_changed = ath9k_htc_bss_info_changed, | 1865 | .bss_info_changed = ath9k_htc_bss_info_changed, |
1765 | .set_key = ath9k_htc_set_key, | 1866 | .set_key = ath9k_htc_set_key, |
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c b/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c index 2571b443ac82..f0cca4e36f7d 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c | |||
@@ -20,6 +20,16 @@ | |||
20 | /* TX */ | 20 | /* TX */ |
21 | /******/ | 21 | /******/ |
22 | 22 | ||
23 | #define ATH9K_HTC_INIT_TXQ(subtype) do { \ | ||
24 | qi.tqi_subtype = subtype; \ | ||
25 | qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; \ | ||
26 | qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; \ | ||
27 | qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; \ | ||
28 | qi.tqi_physCompBuf = 0; \ | ||
29 | qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | \ | ||
30 | TXQ_FLAG_TXDESCINT_ENABLE; \ | ||
31 | } while (0) | ||
32 | |||
23 | int get_hw_qnum(u16 queue, int *hwq_map) | 33 | int get_hw_qnum(u16 queue, int *hwq_map) |
24 | { | 34 | { |
25 | switch (queue) { | 35 | switch (queue) { |
@@ -71,7 +81,7 @@ int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb) | |||
71 | struct ath9k_htc_vif *avp; | 81 | struct ath9k_htc_vif *avp; |
72 | struct ath9k_htc_tx_ctl tx_ctl; | 82 | struct ath9k_htc_tx_ctl tx_ctl; |
73 | enum htc_endpoint_id epid; | 83 | enum htc_endpoint_id epid; |
74 | u16 qnum, hw_qnum; | 84 | u16 qnum; |
75 | __le16 fc; | 85 | __le16 fc; |
76 | u8 *tx_fhdr; | 86 | u8 *tx_fhdr; |
77 | u8 sta_idx; | 87 | u8 sta_idx; |
@@ -131,20 +141,23 @@ int ath9k_htc_tx_start(struct ath9k_htc_priv *priv, struct sk_buff *skb) | |||
131 | memcpy(tx_fhdr, (u8 *) &tx_hdr, sizeof(tx_hdr)); | 141 | memcpy(tx_fhdr, (u8 *) &tx_hdr, sizeof(tx_hdr)); |
132 | 142 | ||
133 | qnum = skb_get_queue_mapping(skb); | 143 | qnum = skb_get_queue_mapping(skb); |
134 | hw_qnum = get_hw_qnum(qnum, priv->hwq_map); | ||
135 | 144 | ||
136 | switch (hw_qnum) { | 145 | switch (qnum) { |
137 | case 0: | 146 | case 0: |
138 | epid = priv->data_be_ep; | 147 | TX_QSTAT_INC(WME_AC_VO); |
148 | epid = priv->data_vo_ep; | ||
139 | break; | 149 | break; |
140 | case 2: | 150 | case 1: |
151 | TX_QSTAT_INC(WME_AC_VI); | ||
141 | epid = priv->data_vi_ep; | 152 | epid = priv->data_vi_ep; |
142 | break; | 153 | break; |
143 | case 3: | 154 | case 2: |
144 | epid = priv->data_vo_ep; | 155 | TX_QSTAT_INC(WME_AC_BE); |
156 | epid = priv->data_be_ep; | ||
145 | break; | 157 | break; |
146 | case 1: | 158 | case 3: |
147 | default: | 159 | default: |
160 | TX_QSTAT_INC(WME_AC_BK); | ||
148 | epid = priv->data_bk_ep; | 161 | epid = priv->data_bk_ep; |
149 | break; | 162 | break; |
150 | } | 163 | } |
@@ -293,13 +306,7 @@ bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, | |||
293 | int qnum; | 306 | int qnum; |
294 | 307 | ||
295 | memset(&qi, 0, sizeof(qi)); | 308 | memset(&qi, 0, sizeof(qi)); |
296 | 309 | ATH9K_HTC_INIT_TXQ(subtype); | |
297 | qi.tqi_subtype = subtype; | ||
298 | qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; | ||
299 | qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; | ||
300 | qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; | ||
301 | qi.tqi_physCompBuf = 0; | ||
302 | qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | TXQ_FLAG_TXDESCINT_ENABLE; | ||
303 | 310 | ||
304 | qnum = ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_DATA, &qi); | 311 | qnum = ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_DATA, &qi); |
305 | if (qnum == -1) | 312 | if (qnum == -1) |
@@ -317,6 +324,16 @@ bool ath9k_htc_txq_setup(struct ath9k_htc_priv *priv, | |||
317 | return true; | 324 | return true; |
318 | } | 325 | } |
319 | 326 | ||
327 | int ath9k_htc_cabq_setup(struct ath9k_htc_priv *priv) | ||
328 | { | ||
329 | struct ath9k_tx_queue_info qi; | ||
330 | |||
331 | memset(&qi, 0, sizeof(qi)); | ||
332 | ATH9K_HTC_INIT_TXQ(0); | ||
333 | |||
334 | return ath9k_hw_setuptxqueue(priv->ah, ATH9K_TX_QUEUE_CAB, &qi); | ||
335 | } | ||
336 | |||
320 | /******/ | 337 | /******/ |
321 | /* RX */ | 338 | /* RX */ |
322 | /******/ | 339 | /******/ |
diff --git a/drivers/net/wireless/ath/ath9k/htc_hst.c b/drivers/net/wireless/ath/ath9k/htc_hst.c index 064397fd738e..705c0f342e1c 100644 --- a/drivers/net/wireless/ath/ath9k/htc_hst.c +++ b/drivers/net/wireless/ath/ath9k/htc_hst.c | |||
@@ -89,7 +89,6 @@ static void htc_process_target_rdy(struct htc_target *target, | |||
89 | struct htc_endpoint *endpoint; | 89 | struct htc_endpoint *endpoint; |
90 | struct htc_ready_msg *htc_ready_msg = (struct htc_ready_msg *) buf; | 90 | struct htc_ready_msg *htc_ready_msg = (struct htc_ready_msg *) buf; |
91 | 91 | ||
92 | target->credits = be16_to_cpu(htc_ready_msg->credits); | ||
93 | target->credit_size = be16_to_cpu(htc_ready_msg->credit_size); | 92 | target->credit_size = be16_to_cpu(htc_ready_msg->credit_size); |
94 | 93 | ||
95 | endpoint = &target->endpoint[ENDPOINT0]; | 94 | endpoint = &target->endpoint[ENDPOINT0]; |
@@ -159,7 +158,7 @@ static int htc_config_pipe_credits(struct htc_target *target) | |||
159 | 158 | ||
160 | cp_msg->message_id = cpu_to_be16(HTC_MSG_CONFIG_PIPE_ID); | 159 | cp_msg->message_id = cpu_to_be16(HTC_MSG_CONFIG_PIPE_ID); |
161 | cp_msg->pipe_id = USB_WLAN_TX_PIPE; | 160 | cp_msg->pipe_id = USB_WLAN_TX_PIPE; |
162 | cp_msg->credits = 28; | 161 | cp_msg->credits = target->credits; |
163 | 162 | ||
164 | target->htc_flags |= HTC_OP_CONFIG_PIPE_CREDITS; | 163 | target->htc_flags |= HTC_OP_CONFIG_PIPE_CREDITS; |
165 | 164 | ||
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index c33f17dbe6f1..2adc7e78cebf 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -392,12 +392,6 @@ static void ath9k_hw_init_config(struct ath_hw *ah) | |||
392 | ah->config.rx_intr_mitigation = true; | 392 | ah->config.rx_intr_mitigation = true; |
393 | 393 | ||
394 | /* | 394 | /* |
395 | * Tx IQ Calibration (ah->config.tx_iq_calibration) is only | ||
396 | * used by AR9003, but it is showing reliability issues. | ||
397 | * It will take a while to fix so this is currently disabled. | ||
398 | */ | ||
399 | |||
400 | /* | ||
401 | * We need this for PCI devices only (Cardbus, PCI, miniPCI) | 395 | * We need this for PCI devices only (Cardbus, PCI, miniPCI) |
402 | * _and_ if on non-uniprocessor systems (Multiprocessor/HT). | 396 | * _and_ if on non-uniprocessor systems (Multiprocessor/HT). |
403 | * This means we use it for all AR5416 devices, and the few | 397 | * This means we use it for all AR5416 devices, and the few |
@@ -627,6 +621,7 @@ static int __ath9k_hw_init(struct ath_hw *ah) | |||
627 | ar9003_hw_set_nf_limits(ah); | 621 | ar9003_hw_set_nf_limits(ah); |
628 | 622 | ||
629 | ath9k_init_nfcal_hist_buffer(ah); | 623 | ath9k_init_nfcal_hist_buffer(ah); |
624 | ah->bb_watchdog_timeout_ms = 25; | ||
630 | 625 | ||
631 | common->state = ATH_HW_INITIALIZED; | 626 | common->state = ATH_HW_INITIALIZED; |
632 | 627 | ||
@@ -1303,6 +1298,9 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
1303 | if (AR_SREV_9280_10_OR_LATER(ah)) | 1298 | if (AR_SREV_9280_10_OR_LATER(ah)) |
1304 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE); | 1299 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE); |
1305 | 1300 | ||
1301 | if (!AR_SREV_9300_20_OR_LATER(ah)) | ||
1302 | ar9002_hw_enable_async_fifo(ah); | ||
1303 | |||
1306 | r = ath9k_hw_process_ini(ah, chan); | 1304 | r = ath9k_hw_process_ini(ah, chan); |
1307 | if (r) | 1305 | if (r) |
1308 | return r; | 1306 | return r; |
@@ -1375,7 +1373,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
1375 | ath9k_hw_init_global_settings(ah); | 1373 | ath9k_hw_init_global_settings(ah); |
1376 | 1374 | ||
1377 | if (!AR_SREV_9300_20_OR_LATER(ah)) { | 1375 | if (!AR_SREV_9300_20_OR_LATER(ah)) { |
1378 | ar9002_hw_enable_async_fifo(ah); | 1376 | ar9002_hw_update_async_fifo(ah); |
1379 | ar9002_hw_enable_wep_aggregation(ah); | 1377 | ar9002_hw_enable_wep_aggregation(ah); |
1380 | } | 1378 | } |
1381 | 1379 | ||
@@ -1426,9 +1424,13 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
1426 | "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG)); | 1424 | "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG)); |
1427 | } | 1425 | } |
1428 | } else { | 1426 | } else { |
1429 | /* Configure AR9271 target WLAN */ | 1427 | if (common->bus_ops->ath_bus_type == ATH_USB) { |
1430 | if (AR_SREV_9271(ah)) | 1428 | /* Configure AR9271 target WLAN */ |
1431 | REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB); | 1429 | if (AR_SREV_9271(ah)) |
1430 | REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB); | ||
1431 | else | ||
1432 | REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD); | ||
1433 | } | ||
1432 | #ifdef __BIG_ENDIAN | 1434 | #ifdef __BIG_ENDIAN |
1433 | else | 1435 | else |
1434 | REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD); | 1436 | REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD); |
@@ -1441,6 +1443,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
1441 | if (AR_SREV_9300_20_OR_LATER(ah)) { | 1443 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
1442 | ath9k_hw_loadnf(ah, curchan); | 1444 | ath9k_hw_loadnf(ah, curchan); |
1443 | ath9k_hw_start_nfcal(ah); | 1445 | ath9k_hw_start_nfcal(ah); |
1446 | ar9003_hw_bb_watchdog_config(ah); | ||
1444 | } | 1447 | } |
1445 | 1448 | ||
1446 | return 0; | 1449 | return 0; |
@@ -1489,6 +1492,7 @@ EXPORT_SYMBOL(ath9k_hw_keyreset); | |||
1489 | bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac) | 1492 | bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac) |
1490 | { | 1493 | { |
1491 | u32 macHi, macLo; | 1494 | u32 macHi, macLo; |
1495 | u32 unicast_flag = AR_KEYTABLE_VALID; | ||
1492 | 1496 | ||
1493 | if (entry >= ah->caps.keycache_size) { | 1497 | if (entry >= ah->caps.keycache_size) { |
1494 | ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL, | 1498 | ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL, |
@@ -1497,6 +1501,16 @@ bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac) | |||
1497 | } | 1501 | } |
1498 | 1502 | ||
1499 | if (mac != NULL) { | 1503 | if (mac != NULL) { |
1504 | /* | ||
1505 | * AR_KEYTABLE_VALID indicates that the address is a unicast | ||
1506 | * address, which must match the transmitter address for | ||
1507 | * decrypting frames. | ||
1508 | * Not setting this bit allows the hardware to use the key | ||
1509 | * for multicast frame decryption. | ||
1510 | */ | ||
1511 | if (mac[0] & 0x01) | ||
1512 | unicast_flag = 0; | ||
1513 | |||
1500 | macHi = (mac[5] << 8) | mac[4]; | 1514 | macHi = (mac[5] << 8) | mac[4]; |
1501 | macLo = (mac[3] << 24) | | 1515 | macLo = (mac[3] << 24) | |
1502 | (mac[2] << 16) | | 1516 | (mac[2] << 16) | |
@@ -1509,7 +1523,7 @@ bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac) | |||
1509 | macLo = macHi = 0; | 1523 | macLo = macHi = 0; |
1510 | } | 1524 | } |
1511 | REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo); | 1525 | REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo); |
1512 | REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID); | 1526 | REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag); |
1513 | 1527 | ||
1514 | return true; | 1528 | return true; |
1515 | } | 1529 | } |
@@ -2165,7 +2179,7 @@ int ath9k_hw_fill_cap_info(struct ath_hw *ah) | |||
2165 | pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT; | 2179 | pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT; |
2166 | } | 2180 | } |
2167 | #endif | 2181 | #endif |
2168 | if (AR_SREV_9271(ah)) | 2182 | if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah)) |
2169 | pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP; | 2183 | pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP; |
2170 | else | 2184 | else |
2171 | pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP; | 2185 | pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP; |
@@ -2232,6 +2246,9 @@ int ath9k_hw_fill_cap_info(struct ath_hw *ah) | |||
2232 | if (AR_SREV_9300_20_OR_LATER(ah)) | 2246 | if (AR_SREV_9300_20_OR_LATER(ah)) |
2233 | pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED; | 2247 | pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED; |
2234 | 2248 | ||
2249 | if (AR_SREV_9287_10_OR_LATER(ah) || AR_SREV_9271(ah)) | ||
2250 | pCap->hw_caps |= ATH9K_HW_CAP_SGI_20; | ||
2251 | |||
2235 | return 0; | 2252 | return 0; |
2236 | } | 2253 | } |
2237 | 2254 | ||
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index 77245dff5993..88bf2fca3736 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h | |||
@@ -199,6 +199,7 @@ enum ath9k_hw_caps { | |||
199 | ATH9K_HW_CAP_RAC_SUPPORTED = BIT(18), | 199 | ATH9K_HW_CAP_RAC_SUPPORTED = BIT(18), |
200 | ATH9K_HW_CAP_LDPC = BIT(19), | 200 | ATH9K_HW_CAP_LDPC = BIT(19), |
201 | ATH9K_HW_CAP_FASTCLOCK = BIT(20), | 201 | ATH9K_HW_CAP_FASTCLOCK = BIT(20), |
202 | ATH9K_HW_CAP_SGI_20 = BIT(21), | ||
202 | }; | 203 | }; |
203 | 204 | ||
204 | enum ath9k_capability_type { | 205 | enum ath9k_capability_type { |
@@ -262,7 +263,6 @@ struct ath9k_ops_config { | |||
262 | #define AR_BASE_FREQ_5GHZ 4900 | 263 | #define AR_BASE_FREQ_5GHZ 4900 |
263 | #define AR_SPUR_FEEQ_BOUND_HT40 19 | 264 | #define AR_SPUR_FEEQ_BOUND_HT40 19 |
264 | #define AR_SPUR_FEEQ_BOUND_HT20 10 | 265 | #define AR_SPUR_FEEQ_BOUND_HT20 10 |
265 | bool tx_iq_calibration; /* Only available for >= AR9003 */ | ||
266 | int spurmode; | 266 | int spurmode; |
267 | u16 spurchans[AR_EEPROM_MODAL_SPURS][2]; | 267 | u16 spurchans[AR_EEPROM_MODAL_SPURS][2]; |
268 | u8 max_txtrig_level; | 268 | u8 max_txtrig_level; |
@@ -279,6 +279,7 @@ enum ath9k_int { | |||
279 | ATH9K_INT_TX = 0x00000040, | 279 | ATH9K_INT_TX = 0x00000040, |
280 | ATH9K_INT_TXDESC = 0x00000080, | 280 | ATH9K_INT_TXDESC = 0x00000080, |
281 | ATH9K_INT_TIM_TIMER = 0x00000100, | 281 | ATH9K_INT_TIM_TIMER = 0x00000100, |
282 | ATH9K_INT_BB_WATCHDOG = 0x00000400, | ||
282 | ATH9K_INT_TXURN = 0x00000800, | 283 | ATH9K_INT_TXURN = 0x00000800, |
283 | ATH9K_INT_MIB = 0x00001000, | 284 | ATH9K_INT_MIB = 0x00001000, |
284 | ATH9K_INT_RXPHY = 0x00004000, | 285 | ATH9K_INT_RXPHY = 0x00004000, |
@@ -459,7 +460,7 @@ struct ath9k_hw_version { | |||
459 | #define AR_GENTMR_BIT(_index) (1 << (_index)) | 460 | #define AR_GENTMR_BIT(_index) (1 << (_index)) |
460 | 461 | ||
461 | /* | 462 | /* |
462 | * Using de Bruijin sequence to to look up 1's index in a 32 bit number | 463 | * Using de Bruijin sequence to look up 1's index in a 32 bit number |
463 | * debruijn32 = 0000 0111 0111 1100 1011 0101 0011 0001 | 464 | * debruijn32 = 0000 0111 0111 1100 1011 0101 0011 0001 |
464 | */ | 465 | */ |
465 | #define debruijn32 0x077CB531U | 466 | #define debruijn32 0x077CB531U |
@@ -789,6 +790,9 @@ struct ath_hw { | |||
789 | u32 ts_paddr_end; | 790 | u32 ts_paddr_end; |
790 | u16 ts_tail; | 791 | u16 ts_tail; |
791 | u8 ts_size; | 792 | u8 ts_size; |
793 | |||
794 | u32 bb_watchdog_last_status; | ||
795 | u32 bb_watchdog_timeout_ms; /* in ms, 0 to disable */ | ||
792 | }; | 796 | }; |
793 | 797 | ||
794 | static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah) | 798 | static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah) |
@@ -907,13 +911,17 @@ void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled, | |||
907 | void ar9002_hw_cck_chan14_spread(struct ath_hw *ah); | 911 | void ar9002_hw_cck_chan14_spread(struct ath_hw *ah); |
908 | int ar9002_hw_rf_claim(struct ath_hw *ah); | 912 | int ar9002_hw_rf_claim(struct ath_hw *ah); |
909 | void ar9002_hw_enable_async_fifo(struct ath_hw *ah); | 913 | void ar9002_hw_enable_async_fifo(struct ath_hw *ah); |
914 | void ar9002_hw_update_async_fifo(struct ath_hw *ah); | ||
910 | void ar9002_hw_enable_wep_aggregation(struct ath_hw *ah); | 915 | void ar9002_hw_enable_wep_aggregation(struct ath_hw *ah); |
911 | 916 | ||
912 | /* | 917 | /* |
913 | * Code specifric to AR9003, we stuff these here to avoid callbacks | 918 | * Code specific to AR9003, we stuff these here to avoid callbacks |
914 | * for older families | 919 | * for older families |
915 | */ | 920 | */ |
916 | void ar9003_hw_set_nf_limits(struct ath_hw *ah); | 921 | void ar9003_hw_set_nf_limits(struct ath_hw *ah); |
922 | void ar9003_hw_bb_watchdog_config(struct ath_hw *ah); | ||
923 | void ar9003_hw_bb_watchdog_read(struct ath_hw *ah); | ||
924 | void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah); | ||
917 | 925 | ||
918 | /* Hardware family op attach helpers */ | 926 | /* Hardware family op attach helpers */ |
919 | void ar5008_hw_attach_phy_ops(struct ath_hw *ah); | 927 | void ar5008_hw_attach_phy_ops(struct ath_hw *ah); |
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index d457cb3bd772..18d76ede859d 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c | |||
@@ -175,18 +175,6 @@ static const struct ath_ops ath9k_common_ops = { | |||
175 | .write = ath9k_iowrite32, | 175 | .write = ath9k_iowrite32, |
176 | }; | 176 | }; |
177 | 177 | ||
178 | static int count_streams(unsigned int chainmask, int max) | ||
179 | { | ||
180 | int streams = 0; | ||
181 | |||
182 | do { | ||
183 | if (++streams == max) | ||
184 | break; | ||
185 | } while ((chainmask = chainmask & (chainmask - 1))); | ||
186 | |||
187 | return streams; | ||
188 | } | ||
189 | |||
190 | /**************************/ | 178 | /**************************/ |
191 | /* Initialization */ | 179 | /* Initialization */ |
192 | /**************************/ | 180 | /**************************/ |
@@ -208,6 +196,9 @@ static void setup_ht_cap(struct ath_softc *sc, | |||
208 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_LDPC) | 196 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_LDPC) |
209 | ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING; | 197 | ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING; |
210 | 198 | ||
199 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) | ||
200 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; | ||
201 | |||
211 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; | 202 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
212 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; | 203 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
213 | 204 | ||
@@ -224,8 +215,8 @@ static void setup_ht_cap(struct ath_softc *sc, | |||
224 | 215 | ||
225 | /* set up supported mcs set */ | 216 | /* set up supported mcs set */ |
226 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); | 217 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
227 | tx_streams = count_streams(common->tx_chainmask, max_streams); | 218 | tx_streams = ath9k_cmn_count_streams(common->tx_chainmask, max_streams); |
228 | rx_streams = count_streams(common->rx_chainmask, max_streams); | 219 | rx_streams = ath9k_cmn_count_streams(common->rx_chainmask, max_streams); |
229 | 220 | ||
230 | ath_print(common, ATH_DBG_CONFIG, | 221 | ath_print(common, ATH_DBG_CONFIG, |
231 | "TX streams %d, RX streams: %d\n", | 222 | "TX streams %d, RX streams: %d\n", |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index abfa0493236f..b8b76dd2c11e 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -520,6 +520,12 @@ irqreturn_t ath_isr(int irq, void *dev) | |||
520 | !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA))) | 520 | !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA))) |
521 | goto chip_reset; | 521 | goto chip_reset; |
522 | 522 | ||
523 | if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) && | ||
524 | (status & ATH9K_INT_BB_WATCHDOG)) { | ||
525 | ar9003_hw_bb_watchdog_dbg_info(ah); | ||
526 | goto chip_reset; | ||
527 | } | ||
528 | |||
523 | if (status & ATH9K_INT_SWBA) | 529 | if (status & ATH9K_INT_SWBA) |
524 | tasklet_schedule(&sc->bcon_tasklet); | 530 | tasklet_schedule(&sc->bcon_tasklet); |
525 | 531 | ||
@@ -615,234 +621,6 @@ static u32 ath_get_extchanmode(struct ath_softc *sc, | |||
615 | return chanmode; | 621 | return chanmode; |
616 | } | 622 | } |
617 | 623 | ||
618 | static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, | ||
619 | struct ath9k_keyval *hk, const u8 *addr, | ||
620 | bool authenticator) | ||
621 | { | ||
622 | struct ath_hw *ah = common->ah; | ||
623 | const u8 *key_rxmic; | ||
624 | const u8 *key_txmic; | ||
625 | |||
626 | key_txmic = key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY; | ||
627 | key_rxmic = key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY; | ||
628 | |||
629 | if (addr == NULL) { | ||
630 | /* | ||
631 | * Group key installation - only two key cache entries are used | ||
632 | * regardless of splitmic capability since group key is only | ||
633 | * used either for TX or RX. | ||
634 | */ | ||
635 | if (authenticator) { | ||
636 | memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic)); | ||
637 | memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_mic)); | ||
638 | } else { | ||
639 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); | ||
640 | memcpy(hk->kv_txmic, key_rxmic, sizeof(hk->kv_mic)); | ||
641 | } | ||
642 | return ath9k_hw_set_keycache_entry(ah, keyix, hk, addr); | ||
643 | } | ||
644 | if (!common->splitmic) { | ||
645 | /* TX and RX keys share the same key cache entry. */ | ||
646 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); | ||
647 | memcpy(hk->kv_txmic, key_txmic, sizeof(hk->kv_txmic)); | ||
648 | return ath9k_hw_set_keycache_entry(ah, keyix, hk, addr); | ||
649 | } | ||
650 | |||
651 | /* Separate key cache entries for TX and RX */ | ||
652 | |||
653 | /* TX key goes at first index, RX key at +32. */ | ||
654 | memcpy(hk->kv_mic, key_txmic, sizeof(hk->kv_mic)); | ||
655 | if (!ath9k_hw_set_keycache_entry(ah, keyix, hk, NULL)) { | ||
656 | /* TX MIC entry failed. No need to proceed further */ | ||
657 | ath_print(common, ATH_DBG_FATAL, | ||
658 | "Setting TX MIC Key Failed\n"); | ||
659 | return 0; | ||
660 | } | ||
661 | |||
662 | memcpy(hk->kv_mic, key_rxmic, sizeof(hk->kv_mic)); | ||
663 | /* XXX delete tx key on failure? */ | ||
664 | return ath9k_hw_set_keycache_entry(ah, keyix + 32, hk, addr); | ||
665 | } | ||
666 | |||
667 | static int ath_reserve_key_cache_slot_tkip(struct ath_common *common) | ||
668 | { | ||
669 | int i; | ||
670 | |||
671 | for (i = IEEE80211_WEP_NKID; i < common->keymax / 2; i++) { | ||
672 | if (test_bit(i, common->keymap) || | ||
673 | test_bit(i + 64, common->keymap)) | ||
674 | continue; /* At least one part of TKIP key allocated */ | ||
675 | if (common->splitmic && | ||
676 | (test_bit(i + 32, common->keymap) || | ||
677 | test_bit(i + 64 + 32, common->keymap))) | ||
678 | continue; /* At least one part of TKIP key allocated */ | ||
679 | |||
680 | /* Found a free slot for a TKIP key */ | ||
681 | return i; | ||
682 | } | ||
683 | return -1; | ||
684 | } | ||
685 | |||
686 | static int ath_reserve_key_cache_slot(struct ath_common *common) | ||
687 | { | ||
688 | int i; | ||
689 | |||
690 | /* First, try to find slots that would not be available for TKIP. */ | ||
691 | if (common->splitmic) { | ||
692 | for (i = IEEE80211_WEP_NKID; i < common->keymax / 4; i++) { | ||
693 | if (!test_bit(i, common->keymap) && | ||
694 | (test_bit(i + 32, common->keymap) || | ||
695 | test_bit(i + 64, common->keymap) || | ||
696 | test_bit(i + 64 + 32, common->keymap))) | ||
697 | return i; | ||
698 | if (!test_bit(i + 32, common->keymap) && | ||
699 | (test_bit(i, common->keymap) || | ||
700 | test_bit(i + 64, common->keymap) || | ||
701 | test_bit(i + 64 + 32, common->keymap))) | ||
702 | return i + 32; | ||
703 | if (!test_bit(i + 64, common->keymap) && | ||
704 | (test_bit(i , common->keymap) || | ||
705 | test_bit(i + 32, common->keymap) || | ||
706 | test_bit(i + 64 + 32, common->keymap))) | ||
707 | return i + 64; | ||
708 | if (!test_bit(i + 64 + 32, common->keymap) && | ||
709 | (test_bit(i, common->keymap) || | ||
710 | test_bit(i + 32, common->keymap) || | ||
711 | test_bit(i + 64, common->keymap))) | ||
712 | return i + 64 + 32; | ||
713 | } | ||
714 | } else { | ||
715 | for (i = IEEE80211_WEP_NKID; i < common->keymax / 2; i++) { | ||
716 | if (!test_bit(i, common->keymap) && | ||
717 | test_bit(i + 64, common->keymap)) | ||
718 | return i; | ||
719 | if (test_bit(i, common->keymap) && | ||
720 | !test_bit(i + 64, common->keymap)) | ||
721 | return i + 64; | ||
722 | } | ||
723 | } | ||
724 | |||
725 | /* No partially used TKIP slots, pick any available slot */ | ||
726 | for (i = IEEE80211_WEP_NKID; i < common->keymax; i++) { | ||
727 | /* Do not allow slots that could be needed for TKIP group keys | ||
728 | * to be used. This limitation could be removed if we know that | ||
729 | * TKIP will not be used. */ | ||
730 | if (i >= 64 && i < 64 + IEEE80211_WEP_NKID) | ||
731 | continue; | ||
732 | if (common->splitmic) { | ||
733 | if (i >= 32 && i < 32 + IEEE80211_WEP_NKID) | ||
734 | continue; | ||
735 | if (i >= 64 + 32 && i < 64 + 32 + IEEE80211_WEP_NKID) | ||
736 | continue; | ||
737 | } | ||
738 | |||
739 | if (!test_bit(i, common->keymap)) | ||
740 | return i; /* Found a free slot for a key */ | ||
741 | } | ||
742 | |||
743 | /* No free slot found */ | ||
744 | return -1; | ||
745 | } | ||
746 | |||
747 | static int ath_key_config(struct ath_common *common, | ||
748 | struct ieee80211_vif *vif, | ||
749 | struct ieee80211_sta *sta, | ||
750 | struct ieee80211_key_conf *key) | ||
751 | { | ||
752 | struct ath_hw *ah = common->ah; | ||
753 | struct ath9k_keyval hk; | ||
754 | const u8 *mac = NULL; | ||
755 | int ret = 0; | ||
756 | int idx; | ||
757 | |||
758 | memset(&hk, 0, sizeof(hk)); | ||
759 | |||
760 | switch (key->alg) { | ||
761 | case ALG_WEP: | ||
762 | hk.kv_type = ATH9K_CIPHER_WEP; | ||
763 | break; | ||
764 | case ALG_TKIP: | ||
765 | hk.kv_type = ATH9K_CIPHER_TKIP; | ||
766 | break; | ||
767 | case ALG_CCMP: | ||
768 | hk.kv_type = ATH9K_CIPHER_AES_CCM; | ||
769 | break; | ||
770 | default: | ||
771 | return -EOPNOTSUPP; | ||
772 | } | ||
773 | |||
774 | hk.kv_len = key->keylen; | ||
775 | memcpy(hk.kv_val, key->key, key->keylen); | ||
776 | |||
777 | if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { | ||
778 | /* For now, use the default keys for broadcast keys. This may | ||
779 | * need to change with virtual interfaces. */ | ||
780 | idx = key->keyidx; | ||
781 | } else if (key->keyidx) { | ||
782 | if (WARN_ON(!sta)) | ||
783 | return -EOPNOTSUPP; | ||
784 | mac = sta->addr; | ||
785 | |||
786 | if (vif->type != NL80211_IFTYPE_AP) { | ||
787 | /* Only keyidx 0 should be used with unicast key, but | ||
788 | * allow this for client mode for now. */ | ||
789 | idx = key->keyidx; | ||
790 | } else | ||
791 | return -EIO; | ||
792 | } else { | ||
793 | if (WARN_ON(!sta)) | ||
794 | return -EOPNOTSUPP; | ||
795 | mac = sta->addr; | ||
796 | |||
797 | if (key->alg == ALG_TKIP) | ||
798 | idx = ath_reserve_key_cache_slot_tkip(common); | ||
799 | else | ||
800 | idx = ath_reserve_key_cache_slot(common); | ||
801 | if (idx < 0) | ||
802 | return -ENOSPC; /* no free key cache entries */ | ||
803 | } | ||
804 | |||
805 | if (key->alg == ALG_TKIP) | ||
806 | ret = ath_setkey_tkip(common, idx, key->key, &hk, mac, | ||
807 | vif->type == NL80211_IFTYPE_AP); | ||
808 | else | ||
809 | ret = ath9k_hw_set_keycache_entry(ah, idx, &hk, mac); | ||
810 | |||
811 | if (!ret) | ||
812 | return -EIO; | ||
813 | |||
814 | set_bit(idx, common->keymap); | ||
815 | if (key->alg == ALG_TKIP) { | ||
816 | set_bit(idx + 64, common->keymap); | ||
817 | if (common->splitmic) { | ||
818 | set_bit(idx + 32, common->keymap); | ||
819 | set_bit(idx + 64 + 32, common->keymap); | ||
820 | } | ||
821 | } | ||
822 | |||
823 | return idx; | ||
824 | } | ||
825 | |||
826 | static void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key) | ||
827 | { | ||
828 | struct ath_hw *ah = common->ah; | ||
829 | |||
830 | ath9k_hw_keyreset(ah, key->hw_key_idx); | ||
831 | if (key->hw_key_idx < IEEE80211_WEP_NKID) | ||
832 | return; | ||
833 | |||
834 | clear_bit(key->hw_key_idx, common->keymap); | ||
835 | if (key->alg != ALG_TKIP) | ||
836 | return; | ||
837 | |||
838 | clear_bit(key->hw_key_idx + 64, common->keymap); | ||
839 | if (common->splitmic) { | ||
840 | ath9k_hw_keyreset(ah, key->hw_key_idx + 32); | ||
841 | clear_bit(key->hw_key_idx + 32, common->keymap); | ||
842 | clear_bit(key->hw_key_idx + 64 + 32, common->keymap); | ||
843 | } | ||
844 | } | ||
845 | |||
846 | static void ath9k_bss_assoc_info(struct ath_softc *sc, | 624 | static void ath9k_bss_assoc_info(struct ath_softc *sc, |
847 | struct ieee80211_vif *vif, | 625 | struct ieee80211_vif *vif, |
848 | struct ieee80211_bss_conf *bss_conf) | 626 | struct ieee80211_bss_conf *bss_conf) |
@@ -1195,7 +973,9 @@ static int ath9k_start(struct ieee80211_hw *hw) | |||
1195 | ATH9K_INT_GLOBAL; | 973 | ATH9K_INT_GLOBAL; |
1196 | 974 | ||
1197 | if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) | 975 | if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) |
1198 | ah->imask |= ATH9K_INT_RXHP | ATH9K_INT_RXLP; | 976 | ah->imask |= ATH9K_INT_RXHP | |
977 | ATH9K_INT_RXLP | | ||
978 | ATH9K_INT_BB_WATCHDOG; | ||
1199 | else | 979 | else |
1200 | ah->imask |= ATH9K_INT_RX; | 980 | ah->imask |= ATH9K_INT_RX; |
1201 | 981 | ||
@@ -1245,6 +1025,7 @@ static int ath9k_tx(struct ieee80211_hw *hw, | |||
1245 | struct ath_tx_control txctl; | 1025 | struct ath_tx_control txctl; |
1246 | int padpos, padsize; | 1026 | int padpos, padsize; |
1247 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; | 1027 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
1028 | int qnum; | ||
1248 | 1029 | ||
1249 | if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) { | 1030 | if (aphy->state != ATH_WIPHY_ACTIVE && aphy->state != ATH_WIPHY_SCAN) { |
1250 | ath_print(common, ATH_DBG_XMIT, | 1031 | ath_print(common, ATH_DBG_XMIT, |
@@ -1274,7 +1055,8 @@ static int ath9k_tx(struct ieee80211_hw *hw, | |||
1274 | * completed and if needed, also for RX of buffered frames. | 1055 | * completed and if needed, also for RX of buffered frames. |
1275 | */ | 1056 | */ |
1276 | ath9k_ps_wakeup(sc); | 1057 | ath9k_ps_wakeup(sc); |
1277 | ath9k_hw_setrxabort(sc->sc_ah, 0); | 1058 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) |
1059 | ath9k_hw_setrxabort(sc->sc_ah, 0); | ||
1278 | if (ieee80211_is_pspoll(hdr->frame_control)) { | 1060 | if (ieee80211_is_pspoll(hdr->frame_control)) { |
1279 | ath_print(common, ATH_DBG_PS, | 1061 | ath_print(common, ATH_DBG_PS, |
1280 | "Sending PS-Poll to pick a buffered frame\n"); | 1062 | "Sending PS-Poll to pick a buffered frame\n"); |
@@ -1316,11 +1098,8 @@ static int ath9k_tx(struct ieee80211_hw *hw, | |||
1316 | memmove(skb->data, skb->data + padsize, padpos); | 1098 | memmove(skb->data, skb->data + padsize, padpos); |
1317 | } | 1099 | } |
1318 | 1100 | ||
1319 | /* Check if a tx queue is available */ | 1101 | qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc); |
1320 | 1102 | txctl.txq = &sc->tx.txq[qnum]; | |
1321 | txctl.txq = ath_test_get_txq(sc, skb); | ||
1322 | if (!txctl.txq) | ||
1323 | goto exit; | ||
1324 | 1103 | ||
1325 | ath_print(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb); | 1104 | ath_print(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb); |
1326 | 1105 | ||
@@ -1538,8 +1317,8 @@ void ath9k_enable_ps(struct ath_softc *sc) | |||
1538 | ah->imask |= ATH9K_INT_TIM_TIMER; | 1317 | ah->imask |= ATH9K_INT_TIM_TIMER; |
1539 | ath9k_hw_set_interrupts(ah, ah->imask); | 1318 | ath9k_hw_set_interrupts(ah, ah->imask); |
1540 | } | 1319 | } |
1320 | ath9k_hw_setrxabort(ah, 1); | ||
1541 | } | 1321 | } |
1542 | ath9k_hw_setrxabort(ah, 1); | ||
1543 | } | 1322 | } |
1544 | 1323 | ||
1545 | static int ath9k_config(struct ieee80211_hw *hw, u32 changed) | 1324 | static int ath9k_config(struct ieee80211_hw *hw, u32 changed) |
@@ -1804,7 +1583,7 @@ static int ath9k_set_key(struct ieee80211_hw *hw, | |||
1804 | 1583 | ||
1805 | switch (cmd) { | 1584 | switch (cmd) { |
1806 | case SET_KEY: | 1585 | case SET_KEY: |
1807 | ret = ath_key_config(common, vif, sta, key); | 1586 | ret = ath9k_cmn_key_config(common, vif, sta, key); |
1808 | if (ret >= 0) { | 1587 | if (ret >= 0) { |
1809 | key->hw_key_idx = ret; | 1588 | key->hw_key_idx = ret; |
1810 | /* push IV and Michael MIC generation to stack */ | 1589 | /* push IV and Michael MIC generation to stack */ |
@@ -1817,7 +1596,7 @@ static int ath9k_set_key(struct ieee80211_hw *hw, | |||
1817 | } | 1596 | } |
1818 | break; | 1597 | break; |
1819 | case DISABLE_KEY: | 1598 | case DISABLE_KEY: |
1820 | ath_key_delete(common, key); | 1599 | ath9k_cmn_key_delete(common, key); |
1821 | break; | 1600 | break; |
1822 | default: | 1601 | default: |
1823 | ret = -EINVAL; | 1602 | ret = -EINVAL; |
diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index 8519452c95f1..02b605273ca5 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c | |||
@@ -20,7 +20,7 @@ | |||
20 | #include "ath9k.h" | 20 | #include "ath9k.h" |
21 | 21 | ||
22 | static const struct ath_rate_table ar5416_11na_ratetable = { | 22 | static const struct ath_rate_table ar5416_11na_ratetable = { |
23 | 42, | 23 | 43, |
24 | 8, /* MCS start */ | 24 | 8, /* MCS start */ |
25 | { | 25 | { |
26 | { VALID, VALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */ | 26 | { VALID, VALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */ |
@@ -40,73 +40,75 @@ static const struct ath_rate_table ar5416_11na_ratetable = { | |||
40 | { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */ | 40 | { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */ |
41 | 29300, 7, 108, 4, 7, 7, 7, 7 }, | 41 | 29300, 7, 108, 4, 7, 7, 7, 7 }, |
42 | { VALID_2040, VALID_2040, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */ | 42 | { VALID_2040, VALID_2040, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */ |
43 | 6400, 0, 0, 0, 8, 24, 8, 24 }, | 43 | 6400, 0, 0, 0, 8, 25, 8, 25 }, |
44 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */ | 44 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */ |
45 | 12700, 1, 1, 2, 9, 25, 9, 25 }, | 45 | 12700, 1, 1, 2, 9, 26, 9, 26 }, |
46 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */ | 46 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */ |
47 | 18800, 2, 2, 2, 10, 26, 10, 26 }, | 47 | 18800, 2, 2, 2, 10, 27, 10, 27 }, |
48 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */ | 48 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */ |
49 | 25000, 3, 3, 4, 11, 27, 11, 27 }, | 49 | 25000, 3, 3, 4, 11, 28, 11, 28 }, |
50 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */ | 50 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */ |
51 | 36700, 4, 4, 4, 12, 28, 12, 28 }, | 51 | 36700, 4, 4, 4, 12, 29, 12, 29 }, |
52 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */ | 52 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */ |
53 | 48100, 5, 5, 4, 13, 29, 13, 29 }, | 53 | 48100, 5, 5, 4, 13, 30, 13, 30 }, |
54 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */ | 54 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */ |
55 | 53500, 6, 6, 4, 14, 30, 14, 30 }, | 55 | 53500, 6, 6, 4, 14, 31, 14, 31 }, |
56 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */ | 56 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */ |
57 | 59000, 7, 7, 4, 15, 31, 15, 32 }, | 57 | 59000, 7, 7, 4, 15, 32, 15, 33 }, |
58 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */ | 58 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */ |
59 | 12700, 8, 8, 3, 16, 33, 16, 33 }, | 59 | 12700, 8, 8, 3, 16, 34, 16, 34 }, |
60 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */ | 60 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */ |
61 | 24800, 9, 9, 2, 17, 34, 17, 34 }, | 61 | 24800, 9, 9, 2, 17, 35, 17, 35 }, |
62 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */ | 62 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */ |
63 | 36600, 10, 10, 2, 18, 35, 18, 35 }, | 63 | 36600, 10, 10, 2, 18, 36, 18, 36 }, |
64 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */ | 64 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */ |
65 | 48100, 11, 11, 4, 19, 36, 19, 36 }, | 65 | 48100, 11, 11, 4, 19, 37, 19, 37 }, |
66 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */ | 66 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */ |
67 | 69500, 12, 12, 4, 20, 37, 20, 37 }, | 67 | 69500, 12, 12, 4, 20, 38, 20, 38 }, |
68 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */ | 68 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */ |
69 | 89500, 13, 13, 4, 21, 38, 21, 38 }, | 69 | 89500, 13, 13, 4, 21, 39, 21, 39 }, |
70 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */ | 70 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */ |
71 | 98900, 14, 14, 4, 22, 39, 22, 39 }, | 71 | 98900, 14, 14, 4, 22, 40, 22, 40 }, |
72 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */ | 72 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */ |
73 | 108300, 15, 15, 4, 23, 40, 23, 41 }, | 73 | 108300, 15, 15, 4, 23, 41, 24, 42 }, |
74 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS_HGI, 144400, /* 144.4 Mb */ | ||
75 | 12000, 15, 15, 4, 23, 41, 24, 42 }, | ||
74 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */ | 76 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */ |
75 | 13200, 0, 0, 0, 8, 24, 24, 24 }, | 77 | 13200, 0, 0, 0, 8, 25, 25, 25 }, |
76 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */ | 78 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */ |
77 | 25900, 1, 1, 2, 9, 25, 25, 25 }, | 79 | 25900, 1, 1, 2, 9, 26, 26, 26 }, |
78 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */ | 80 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */ |
79 | 38600, 2, 2, 2, 10, 26, 26, 26 }, | 81 | 38600, 2, 2, 2, 10, 27, 27, 27 }, |
80 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */ | 82 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */ |
81 | 49800, 3, 3, 4, 11, 27, 27, 27 }, | 83 | 49800, 3, 3, 4, 11, 28, 28, 28 }, |
82 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */ | 84 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */ |
83 | 72200, 4, 4, 4, 12, 28, 28, 28 }, | 85 | 72200, 4, 4, 4, 12, 29, 29, 29 }, |
84 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */ | 86 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */ |
85 | 92900, 5, 5, 4, 13, 29, 29, 29 }, | 87 | 92900, 5, 5, 4, 13, 30, 30, 30 }, |
86 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */ | 88 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */ |
87 | 102700, 6, 6, 4, 14, 30, 30, 30 }, | 89 | 102700, 6, 6, 4, 14, 31, 31, 31 }, |
88 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */ | 90 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */ |
89 | 112000, 7, 7, 4, 15, 31, 32, 32 }, | 91 | 112000, 7, 7, 4, 15, 32, 33, 33 }, |
90 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */ | 92 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */ |
91 | 122000, 7, 7, 4, 15, 31, 32, 32 }, | 93 | 122000, 7, 7, 4, 15, 32, 33, 33 }, |
92 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */ | 94 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */ |
93 | 25800, 8, 8, 0, 16, 33, 33, 33 }, | 95 | 25800, 8, 8, 0, 16, 34, 34, 34 }, |
94 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */ | 96 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */ |
95 | 49800, 9, 9, 2, 17, 34, 34, 34 }, | 97 | 49800, 9, 9, 2, 17, 35, 35, 35 }, |
96 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */ | 98 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */ |
97 | 71900, 10, 10, 2, 18, 35, 35, 35 }, | 99 | 71900, 10, 10, 2, 18, 36, 36, 36 }, |
98 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */ | 100 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */ |
99 | 92500, 11, 11, 4, 19, 36, 36, 36 }, | 101 | 92500, 11, 11, 4, 19, 37, 37, 37 }, |
100 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */ | 102 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */ |
101 | 130300, 12, 12, 4, 20, 37, 37, 37 }, | 103 | 130300, 12, 12, 4, 20, 38, 38, 38 }, |
102 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */ | 104 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */ |
103 | 162800, 13, 13, 4, 21, 38, 38, 38 }, | 105 | 162800, 13, 13, 4, 21, 39, 39, 39 }, |
104 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */ | 106 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */ |
105 | 178200, 14, 14, 4, 22, 39, 39, 39 }, | 107 | 178200, 14, 14, 4, 22, 40, 40, 40 }, |
106 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */ | 108 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */ |
107 | 192100, 15, 15, 4, 23, 40, 41, 41 }, | 109 | 192100, 15, 15, 4, 23, 41, 42, 42 }, |
108 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */ | 110 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */ |
109 | 207000, 15, 15, 4, 23, 40, 41, 41 }, | 111 | 207000, 15, 15, 4, 23, 41, 42, 42 }, |
110 | }, | 112 | }, |
111 | 50, /* probe interval */ | 113 | 50, /* probe interval */ |
112 | WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ | 114 | WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ |
@@ -116,7 +118,7 @@ static const struct ath_rate_table ar5416_11na_ratetable = { | |||
116 | * for HT are the 64K max aggregate limit */ | 118 | * for HT are the 64K max aggregate limit */ |
117 | 119 | ||
118 | static const struct ath_rate_table ar5416_11ng_ratetable = { | 120 | static const struct ath_rate_table ar5416_11ng_ratetable = { |
119 | 46, | 121 | 47, |
120 | 12, /* MCS start */ | 122 | 12, /* MCS start */ |
121 | { | 123 | { |
122 | { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 1000, /* 1 Mb */ | 124 | { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 1000, /* 1 Mb */ |
@@ -144,73 +146,75 @@ static const struct ath_rate_table ar5416_11ng_ratetable = { | |||
144 | { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */ | 146 | { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */ |
145 | 30900, 11, 108, 8, 11, 11, 11, 11 }, | 147 | 30900, 11, 108, 8, 11, 11, 11, 11 }, |
146 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */ | 148 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */ |
147 | 6400, 0, 0, 4, 12, 28, 12, 28 }, | 149 | 6400, 0, 0, 4, 12, 29, 12, 29 }, |
148 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */ | 150 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */ |
149 | 12700, 1, 1, 6, 13, 29, 13, 29 }, | 151 | 12700, 1, 1, 6, 13, 30, 13, 30 }, |
150 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */ | 152 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */ |
151 | 18800, 2, 2, 6, 14, 30, 14, 30 }, | 153 | 18800, 2, 2, 6, 14, 31, 14, 31 }, |
152 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */ | 154 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */ |
153 | 25000, 3, 3, 8, 15, 31, 15, 31 }, | 155 | 25000, 3, 3, 8, 15, 32, 15, 32 }, |
154 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */ | 156 | { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */ |
155 | 36700, 4, 4, 8, 16, 32, 16, 32 }, | 157 | 36700, 4, 4, 8, 16, 33, 16, 33 }, |
156 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */ | 158 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */ |
157 | 48100, 5, 5, 8, 17, 33, 17, 33 }, | 159 | 48100, 5, 5, 8, 17, 34, 17, 34 }, |
158 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */ | 160 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */ |
159 | 53500, 6, 6, 8, 18, 34, 18, 34 }, | 161 | 53500, 6, 6, 8, 18, 35, 18, 35 }, |
160 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */ | 162 | { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */ |
161 | 59000, 7, 7, 8, 19, 35, 19, 36 }, | 163 | 59000, 7, 7, 8, 19, 36, 19, 37 }, |
162 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */ | 164 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */ |
163 | 12700, 8, 8, 4, 20, 37, 20, 37 }, | 165 | 12700, 8, 8, 4, 20, 38, 20, 38 }, |
164 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */ | 166 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */ |
165 | 24800, 9, 9, 6, 21, 38, 21, 38 }, | 167 | 24800, 9, 9, 6, 21, 39, 21, 39 }, |
166 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */ | 168 | { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */ |
167 | 36600, 10, 10, 6, 22, 39, 22, 39 }, | 169 | 36600, 10, 10, 6, 22, 40, 22, 40 }, |
168 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */ | 170 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */ |
169 | 48100, 11, 11, 8, 23, 40, 23, 40 }, | 171 | 48100, 11, 11, 8, 23, 41, 23, 41 }, |
170 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */ | 172 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */ |
171 | 69500, 12, 12, 8, 24, 41, 24, 41 }, | 173 | 69500, 12, 12, 8, 24, 42, 24, 42 }, |
172 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */ | 174 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */ |
173 | 89500, 13, 13, 8, 25, 42, 25, 42 }, | 175 | 89500, 13, 13, 8, 25, 43, 25, 43 }, |
174 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */ | 176 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */ |
175 | 98900, 14, 14, 8, 26, 43, 26, 44 }, | 177 | 98900, 14, 14, 8, 26, 44, 26, 44 }, |
176 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */ | 178 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */ |
177 | 108300, 15, 15, 8, 27, 44, 27, 45 }, | 179 | 108300, 15, 15, 8, 27, 45, 28, 46 }, |
180 | { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS_HGI, 144400, /* 130 Mb */ | ||
181 | 120000, 15, 15, 8, 27, 45, 28, 46 }, | ||
178 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */ | 182 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */ |
179 | 13200, 0, 0, 8, 12, 28, 28, 28 }, | 183 | 13200, 0, 0, 8, 12, 29, 29, 29 }, |
180 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */ | 184 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */ |
181 | 25900, 1, 1, 8, 13, 29, 29, 29 }, | 185 | 25900, 1, 1, 8, 13, 30, 30, 30 }, |
182 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */ | 186 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */ |
183 | 38600, 2, 2, 8, 14, 30, 30, 30 }, | 187 | 38600, 2, 2, 8, 14, 31, 31, 31 }, |
184 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */ | 188 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */ |
185 | 49800, 3, 3, 8, 15, 31, 31, 31 }, | 189 | 49800, 3, 3, 8, 15, 32, 32, 32 }, |
186 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */ | 190 | { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */ |
187 | 72200, 4, 4, 8, 16, 32, 32, 32 }, | 191 | 72200, 4, 4, 8, 16, 33, 33, 33 }, |
188 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */ | 192 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */ |
189 | 92900, 5, 5, 8, 17, 33, 33, 33 }, | 193 | 92900, 5, 5, 8, 17, 34, 34, 34 }, |
190 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */ | 194 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */ |
191 | 102700, 6, 6, 8, 18, 34, 34, 34 }, | 195 | 102700, 6, 6, 8, 18, 35, 35, 35 }, |
192 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */ | 196 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */ |
193 | 112000, 7, 7, 8, 19, 35, 36, 36 }, | 197 | 112000, 7, 7, 8, 19, 36, 37, 37 }, |
194 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */ | 198 | { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */ |
195 | 122000, 7, 7, 8, 19, 35, 36, 36 }, | 199 | 122000, 7, 7, 8, 19, 36, 37, 37 }, |
196 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */ | 200 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */ |
197 | 25800, 8, 8, 8, 20, 37, 37, 37 }, | 201 | 25800, 8, 8, 8, 20, 38, 38, 38 }, |
198 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */ | 202 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */ |
199 | 49800, 9, 9, 8, 21, 38, 38, 38 }, | 203 | 49800, 9, 9, 8, 21, 39, 39, 39 }, |
200 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */ | 204 | { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */ |
201 | 71900, 10, 10, 8, 22, 39, 39, 39 }, | 205 | 71900, 10, 10, 8, 22, 40, 40, 40 }, |
202 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */ | 206 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */ |
203 | 92500, 11, 11, 8, 23, 40, 40, 40 }, | 207 | 92500, 11, 11, 8, 23, 41, 41, 41 }, |
204 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */ | 208 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */ |
205 | 130300, 12, 12, 8, 24, 41, 41, 41 }, | 209 | 130300, 12, 12, 8, 24, 42, 42, 42 }, |
206 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */ | 210 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */ |
207 | 162800, 13, 13, 8, 25, 42, 42, 42 }, | 211 | 162800, 13, 13, 8, 25, 43, 43, 43 }, |
208 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */ | 212 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */ |
209 | 178200, 14, 14, 8, 26, 43, 43, 43 }, | 213 | 178200, 14, 14, 8, 26, 44, 44, 44 }, |
210 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */ | 214 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */ |
211 | 192100, 15, 15, 8, 27, 44, 45, 45 }, | 215 | 192100, 15, 15, 8, 27, 45, 46, 46 }, |
212 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */ | 216 | { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */ |
213 | 207000, 15, 15, 8, 27, 44, 45, 45 }, | 217 | 207000, 15, 15, 8, 27, 45, 46, 46 }, |
214 | }, | 218 | }, |
215 | 50, /* probe interval */ | 219 | 50, /* probe interval */ |
216 | WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ | 220 | WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ |
@@ -1193,7 +1197,7 @@ static void ath_rc_init(struct ath_softc *sc, | |||
1193 | } | 1197 | } |
1194 | 1198 | ||
1195 | static u8 ath_rc_build_ht_caps(struct ath_softc *sc, struct ieee80211_sta *sta, | 1199 | static u8 ath_rc_build_ht_caps(struct ath_softc *sc, struct ieee80211_sta *sta, |
1196 | bool is_cw40, bool is_sgi40) | 1200 | bool is_cw40, bool is_sgi) |
1197 | { | 1201 | { |
1198 | u8 caps = 0; | 1202 | u8 caps = 0; |
1199 | 1203 | ||
@@ -1206,8 +1210,9 @@ static u8 ath_rc_build_ht_caps(struct ath_softc *sc, struct ieee80211_sta *sta, | |||
1206 | } | 1210 | } |
1207 | if (is_cw40) | 1211 | if (is_cw40) |
1208 | caps |= WLAN_RC_40_FLAG; | 1212 | caps |= WLAN_RC_40_FLAG; |
1209 | if (is_sgi40) | 1213 | if (is_sgi) |
1210 | caps |= WLAN_RC_SGI_FLAG; | 1214 | caps |= WLAN_RC_SGI_FLAG; |
1215 | |||
1211 | } | 1216 | } |
1212 | 1217 | ||
1213 | return caps; | 1218 | return caps; |
@@ -1300,7 +1305,7 @@ static void ath_rate_init(void *priv, struct ieee80211_supported_band *sband, | |||
1300 | struct ath_softc *sc = priv; | 1305 | struct ath_softc *sc = priv; |
1301 | struct ath_rate_priv *ath_rc_priv = priv_sta; | 1306 | struct ath_rate_priv *ath_rc_priv = priv_sta; |
1302 | const struct ath_rate_table *rate_table; | 1307 | const struct ath_rate_table *rate_table; |
1303 | bool is_cw40, is_sgi40; | 1308 | bool is_cw40, is_sgi = false; |
1304 | int i, j = 0; | 1309 | int i, j = 0; |
1305 | 1310 | ||
1306 | for (i = 0; i < sband->n_bitrates; i++) { | 1311 | for (i = 0; i < sband->n_bitrates; i++) { |
@@ -1323,7 +1328,11 @@ static void ath_rate_init(void *priv, struct ieee80211_supported_band *sband, | |||
1323 | } | 1328 | } |
1324 | 1329 | ||
1325 | is_cw40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40; | 1330 | is_cw40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
1326 | is_sgi40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40; | 1331 | |
1332 | if (is_cw40) | ||
1333 | is_sgi = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40; | ||
1334 | else if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) | ||
1335 | is_sgi = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20; | ||
1327 | 1336 | ||
1328 | /* Choose rate table first */ | 1337 | /* Choose rate table first */ |
1329 | 1338 | ||
@@ -1336,7 +1345,7 @@ static void ath_rate_init(void *priv, struct ieee80211_supported_band *sband, | |||
1336 | rate_table = hw_rate_table[sc->cur_rate_mode]; | 1345 | rate_table = hw_rate_table[sc->cur_rate_mode]; |
1337 | } | 1346 | } |
1338 | 1347 | ||
1339 | ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta, is_cw40, is_sgi40); | 1348 | ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta, is_cw40, is_sgi); |
1340 | ath_rc_init(sc, priv_sta, sband, sta, rate_table); | 1349 | ath_rc_init(sc, priv_sta, sband, sta, rate_table); |
1341 | } | 1350 | } |
1342 | 1351 | ||
@@ -1347,10 +1356,10 @@ static void ath_rate_update(void *priv, struct ieee80211_supported_band *sband, | |||
1347 | struct ath_softc *sc = priv; | 1356 | struct ath_softc *sc = priv; |
1348 | struct ath_rate_priv *ath_rc_priv = priv_sta; | 1357 | struct ath_rate_priv *ath_rc_priv = priv_sta; |
1349 | const struct ath_rate_table *rate_table = NULL; | 1358 | const struct ath_rate_table *rate_table = NULL; |
1350 | bool oper_cw40 = false, oper_sgi40; | 1359 | bool oper_cw40 = false, oper_sgi; |
1351 | bool local_cw40 = (ath_rc_priv->ht_cap & WLAN_RC_40_FLAG) ? | 1360 | bool local_cw40 = (ath_rc_priv->ht_cap & WLAN_RC_40_FLAG) ? |
1352 | true : false; | 1361 | true : false; |
1353 | bool local_sgi40 = (ath_rc_priv->ht_cap & WLAN_RC_SGI_FLAG) ? | 1362 | bool local_sgi = (ath_rc_priv->ht_cap & WLAN_RC_SGI_FLAG) ? |
1354 | true : false; | 1363 | true : false; |
1355 | 1364 | ||
1356 | /* FIXME: Handle AP mode later when we support CWM */ | 1365 | /* FIXME: Handle AP mode later when we support CWM */ |
@@ -1363,15 +1372,21 @@ static void ath_rate_update(void *priv, struct ieee80211_supported_band *sband, | |||
1363 | oper_chan_type == NL80211_CHAN_HT40PLUS) | 1372 | oper_chan_type == NL80211_CHAN_HT40PLUS) |
1364 | oper_cw40 = true; | 1373 | oper_cw40 = true; |
1365 | 1374 | ||
1366 | oper_sgi40 = (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40) ? | 1375 | if (oper_cw40) |
1367 | true : false; | 1376 | oper_sgi = (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40) ? |
1377 | true : false; | ||
1378 | else if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) | ||
1379 | oper_sgi = (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20) ? | ||
1380 | true : false; | ||
1381 | else | ||
1382 | oper_sgi = false; | ||
1368 | 1383 | ||
1369 | if ((local_cw40 != oper_cw40) || (local_sgi40 != oper_sgi40)) { | 1384 | if ((local_cw40 != oper_cw40) || (local_sgi != oper_sgi)) { |
1370 | rate_table = ath_choose_rate_table(sc, sband->band, | 1385 | rate_table = ath_choose_rate_table(sc, sband->band, |
1371 | sta->ht_cap.ht_supported, | 1386 | sta->ht_cap.ht_supported, |
1372 | oper_cw40); | 1387 | oper_cw40); |
1373 | ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta, | 1388 | ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta, |
1374 | oper_cw40, oper_sgi40); | 1389 | oper_cw40, oper_sgi); |
1375 | ath_rc_init(sc, priv_sta, sband, sta, rate_table); | 1390 | ath_rc_init(sc, priv_sta, sband, sta, rate_table); |
1376 | 1391 | ||
1377 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG, | 1392 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG, |
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index ca6065b71b46..d373364ef8a9 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c | |||
@@ -700,12 +700,16 @@ static bool ath_edma_get_buffers(struct ath_softc *sc, | |||
700 | bf = SKB_CB_ATHBUF(skb); | 700 | bf = SKB_CB_ATHBUF(skb); |
701 | BUG_ON(!bf); | 701 | BUG_ON(!bf); |
702 | 702 | ||
703 | dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, | 703 | dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, |
704 | common->rx_bufsize, DMA_FROM_DEVICE); | 704 | common->rx_bufsize, DMA_FROM_DEVICE); |
705 | 705 | ||
706 | ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data); | 706 | ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data); |
707 | if (ret == -EINPROGRESS) | 707 | if (ret == -EINPROGRESS) { |
708 | /*let device gain the buffer again*/ | ||
709 | dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, | ||
710 | common->rx_bufsize, DMA_FROM_DEVICE); | ||
708 | return false; | 711 | return false; |
712 | } | ||
709 | 713 | ||
710 | __skb_unlink(skb, &rx_edma->rx_fifo); | 714 | __skb_unlink(skb, &rx_edma->rx_fifo); |
711 | if (ret == -EINVAL) { | 715 | if (ret == -EINVAL) { |
@@ -814,13 +818,266 @@ static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc, | |||
814 | * 1. accessing the frame | 818 | * 1. accessing the frame |
815 | * 2. requeueing the same buffer to h/w | 819 | * 2. requeueing the same buffer to h/w |
816 | */ | 820 | */ |
817 | dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, | 821 | dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, |
818 | common->rx_bufsize, | 822 | common->rx_bufsize, |
819 | DMA_FROM_DEVICE); | 823 | DMA_FROM_DEVICE); |
820 | 824 | ||
821 | return bf; | 825 | return bf; |
822 | } | 826 | } |
823 | 827 | ||
828 | /* Assumes you've already done the endian to CPU conversion */ | ||
829 | static bool ath9k_rx_accept(struct ath_common *common, | ||
830 | struct ieee80211_hdr *hdr, | ||
831 | struct ieee80211_rx_status *rxs, | ||
832 | struct ath_rx_status *rx_stats, | ||
833 | bool *decrypt_error) | ||
834 | { | ||
835 | struct ath_hw *ah = common->ah; | ||
836 | __le16 fc; | ||
837 | u8 rx_status_len = ah->caps.rx_status_len; | ||
838 | |||
839 | fc = hdr->frame_control; | ||
840 | |||
841 | if (!rx_stats->rs_datalen) | ||
842 | return false; | ||
843 | /* | ||
844 | * rs_status follows rs_datalen so if rs_datalen is too large | ||
845 | * we can take a hint that hardware corrupted it, so ignore | ||
846 | * those frames. | ||
847 | */ | ||
848 | if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len)) | ||
849 | return false; | ||
850 | |||
851 | /* | ||
852 | * rs_more indicates chained descriptors which can be used | ||
853 | * to link buffers together for a sort of scatter-gather | ||
854 | * operation. | ||
855 | * reject the frame, we don't support scatter-gather yet and | ||
856 | * the frame is probably corrupt anyway | ||
857 | */ | ||
858 | if (rx_stats->rs_more) | ||
859 | return false; | ||
860 | |||
861 | /* | ||
862 | * The rx_stats->rs_status will not be set until the end of the | ||
863 | * chained descriptors so it can be ignored if rs_more is set. The | ||
864 | * rs_more will be false at the last element of the chained | ||
865 | * descriptors. | ||
866 | */ | ||
867 | if (rx_stats->rs_status != 0) { | ||
868 | if (rx_stats->rs_status & ATH9K_RXERR_CRC) | ||
869 | rxs->flag |= RX_FLAG_FAILED_FCS_CRC; | ||
870 | if (rx_stats->rs_status & ATH9K_RXERR_PHY) | ||
871 | return false; | ||
872 | |||
873 | if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) { | ||
874 | *decrypt_error = true; | ||
875 | } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) { | ||
876 | if (ieee80211_is_ctl(fc)) | ||
877 | /* | ||
878 | * Sometimes, we get invalid | ||
879 | * MIC failures on valid control frames. | ||
880 | * Remove these mic errors. | ||
881 | */ | ||
882 | rx_stats->rs_status &= ~ATH9K_RXERR_MIC; | ||
883 | else | ||
884 | rxs->flag |= RX_FLAG_MMIC_ERROR; | ||
885 | } | ||
886 | /* | ||
887 | * Reject error frames with the exception of | ||
888 | * decryption and MIC failures. For monitor mode, | ||
889 | * we also ignore the CRC error. | ||
890 | */ | ||
891 | if (ah->opmode == NL80211_IFTYPE_MONITOR) { | ||
892 | if (rx_stats->rs_status & | ||
893 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | | ||
894 | ATH9K_RXERR_CRC)) | ||
895 | return false; | ||
896 | } else { | ||
897 | if (rx_stats->rs_status & | ||
898 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) { | ||
899 | return false; | ||
900 | } | ||
901 | } | ||
902 | } | ||
903 | return true; | ||
904 | } | ||
905 | |||
906 | static int ath9k_process_rate(struct ath_common *common, | ||
907 | struct ieee80211_hw *hw, | ||
908 | struct ath_rx_status *rx_stats, | ||
909 | struct ieee80211_rx_status *rxs) | ||
910 | { | ||
911 | struct ieee80211_supported_band *sband; | ||
912 | enum ieee80211_band band; | ||
913 | unsigned int i = 0; | ||
914 | |||
915 | band = hw->conf.channel->band; | ||
916 | sband = hw->wiphy->bands[band]; | ||
917 | |||
918 | if (rx_stats->rs_rate & 0x80) { | ||
919 | /* HT rate */ | ||
920 | rxs->flag |= RX_FLAG_HT; | ||
921 | if (rx_stats->rs_flags & ATH9K_RX_2040) | ||
922 | rxs->flag |= RX_FLAG_40MHZ; | ||
923 | if (rx_stats->rs_flags & ATH9K_RX_GI) | ||
924 | rxs->flag |= RX_FLAG_SHORT_GI; | ||
925 | rxs->rate_idx = rx_stats->rs_rate & 0x7f; | ||
926 | return 0; | ||
927 | } | ||
928 | |||
929 | for (i = 0; i < sband->n_bitrates; i++) { | ||
930 | if (sband->bitrates[i].hw_value == rx_stats->rs_rate) { | ||
931 | rxs->rate_idx = i; | ||
932 | return 0; | ||
933 | } | ||
934 | if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) { | ||
935 | rxs->flag |= RX_FLAG_SHORTPRE; | ||
936 | rxs->rate_idx = i; | ||
937 | return 0; | ||
938 | } | ||
939 | } | ||
940 | |||
941 | /* | ||
942 | * No valid hardware bitrate found -- we should not get here | ||
943 | * because hardware has already validated this frame as OK. | ||
944 | */ | ||
945 | ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected " | ||
946 | "0x%02x using 1 Mbit\n", rx_stats->rs_rate); | ||
947 | |||
948 | return -EINVAL; | ||
949 | } | ||
950 | |||
951 | static void ath9k_process_rssi(struct ath_common *common, | ||
952 | struct ieee80211_hw *hw, | ||
953 | struct ieee80211_hdr *hdr, | ||
954 | struct ath_rx_status *rx_stats) | ||
955 | { | ||
956 | struct ath_hw *ah = common->ah; | ||
957 | struct ieee80211_sta *sta; | ||
958 | struct ath_node *an; | ||
959 | int last_rssi = ATH_RSSI_DUMMY_MARKER; | ||
960 | __le16 fc; | ||
961 | |||
962 | fc = hdr->frame_control; | ||
963 | |||
964 | rcu_read_lock(); | ||
965 | /* | ||
966 | * XXX: use ieee80211_find_sta! This requires quite a bit of work | ||
967 | * under the current ath9k virtual wiphy implementation as we have | ||
968 | * no way of tying a vif to wiphy. Typically vifs are attached to | ||
969 | * at least one sdata of a wiphy on mac80211 but with ath9k virtual | ||
970 | * wiphy you'd have to iterate over every wiphy and each sdata. | ||
971 | */ | ||
972 | sta = ieee80211_find_sta_by_hw(hw, hdr->addr2); | ||
973 | if (sta) { | ||
974 | an = (struct ath_node *) sta->drv_priv; | ||
975 | if (rx_stats->rs_rssi != ATH9K_RSSI_BAD && | ||
976 | !rx_stats->rs_moreaggr) | ||
977 | ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi); | ||
978 | last_rssi = an->last_rssi; | ||
979 | } | ||
980 | rcu_read_unlock(); | ||
981 | |||
982 | if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER)) | ||
983 | rx_stats->rs_rssi = ATH_EP_RND(last_rssi, | ||
984 | ATH_RSSI_EP_MULTIPLIER); | ||
985 | if (rx_stats->rs_rssi < 0) | ||
986 | rx_stats->rs_rssi = 0; | ||
987 | |||
988 | /* Update Beacon RSSI, this is used by ANI. */ | ||
989 | if (ieee80211_is_beacon(fc)) | ||
990 | ah->stats.avgbrssi = rx_stats->rs_rssi; | ||
991 | } | ||
992 | |||
993 | /* | ||
994 | * For Decrypt or Demic errors, we only mark packet status here and always push | ||
995 | * up the frame up to let mac80211 handle the actual error case, be it no | ||
996 | * decryption key or real decryption error. This let us keep statistics there. | ||
997 | */ | ||
998 | static int ath9k_rx_skb_preprocess(struct ath_common *common, | ||
999 | struct ieee80211_hw *hw, | ||
1000 | struct ieee80211_hdr *hdr, | ||
1001 | struct ath_rx_status *rx_stats, | ||
1002 | struct ieee80211_rx_status *rx_status, | ||
1003 | bool *decrypt_error) | ||
1004 | { | ||
1005 | struct ath_hw *ah = common->ah; | ||
1006 | |||
1007 | memset(rx_status, 0, sizeof(struct ieee80211_rx_status)); | ||
1008 | |||
1009 | /* | ||
1010 | * everything but the rate is checked here, the rate check is done | ||
1011 | * separately to avoid doing two lookups for a rate for each frame. | ||
1012 | */ | ||
1013 | if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error)) | ||
1014 | return -EINVAL; | ||
1015 | |||
1016 | ath9k_process_rssi(common, hw, hdr, rx_stats); | ||
1017 | |||
1018 | if (ath9k_process_rate(common, hw, rx_stats, rx_status)) | ||
1019 | return -EINVAL; | ||
1020 | |||
1021 | rx_status->mactime = ath9k_hw_extend_tsf(ah, rx_stats->rs_tstamp); | ||
1022 | rx_status->band = hw->conf.channel->band; | ||
1023 | rx_status->freq = hw->conf.channel->center_freq; | ||
1024 | rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi; | ||
1025 | rx_status->antenna = rx_stats->rs_antenna; | ||
1026 | rx_status->flag |= RX_FLAG_TSFT; | ||
1027 | |||
1028 | return 0; | ||
1029 | } | ||
1030 | |||
1031 | static void ath9k_rx_skb_postprocess(struct ath_common *common, | ||
1032 | struct sk_buff *skb, | ||
1033 | struct ath_rx_status *rx_stats, | ||
1034 | struct ieee80211_rx_status *rxs, | ||
1035 | bool decrypt_error) | ||
1036 | { | ||
1037 | struct ath_hw *ah = common->ah; | ||
1038 | struct ieee80211_hdr *hdr; | ||
1039 | int hdrlen, padpos, padsize; | ||
1040 | u8 keyix; | ||
1041 | __le16 fc; | ||
1042 | |||
1043 | /* see if any padding is done by the hw and remove it */ | ||
1044 | hdr = (struct ieee80211_hdr *) skb->data; | ||
1045 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); | ||
1046 | fc = hdr->frame_control; | ||
1047 | padpos = ath9k_cmn_padpos(hdr->frame_control); | ||
1048 | |||
1049 | /* The MAC header is padded to have 32-bit boundary if the | ||
1050 | * packet payload is non-zero. The general calculation for | ||
1051 | * padsize would take into account odd header lengths: | ||
1052 | * padsize = (4 - padpos % 4) % 4; However, since only | ||
1053 | * even-length headers are used, padding can only be 0 or 2 | ||
1054 | * bytes and we can optimize this a bit. In addition, we must | ||
1055 | * not try to remove padding from short control frames that do | ||
1056 | * not have payload. */ | ||
1057 | padsize = padpos & 3; | ||
1058 | if (padsize && skb->len>=padpos+padsize+FCS_LEN) { | ||
1059 | memmove(skb->data + padsize, skb->data, padpos); | ||
1060 | skb_pull(skb, padsize); | ||
1061 | } | ||
1062 | |||
1063 | keyix = rx_stats->rs_keyix; | ||
1064 | |||
1065 | if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && | ||
1066 | ieee80211_has_protected(fc)) { | ||
1067 | rxs->flag |= RX_FLAG_DECRYPTED; | ||
1068 | } else if (ieee80211_has_protected(fc) | ||
1069 | && !decrypt_error && skb->len >= hdrlen + 4) { | ||
1070 | keyix = skb->data[hdrlen + 3] >> 6; | ||
1071 | |||
1072 | if (test_bit(keyix, common->keymap)) | ||
1073 | rxs->flag |= RX_FLAG_DECRYPTED; | ||
1074 | } | ||
1075 | if (ah->sw_mgmt_crypto && | ||
1076 | (rxs->flag & RX_FLAG_DECRYPTED) && | ||
1077 | ieee80211_is_mgmt(fc)) | ||
1078 | /* Use software decrypt for management frames. */ | ||
1079 | rxs->flag &= ~RX_FLAG_DECRYPTED; | ||
1080 | } | ||
824 | 1081 | ||
825 | int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) | 1082 | int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) |
826 | { | 1083 | { |
@@ -842,11 +1099,12 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) | |||
842 | enum ath9k_rx_qtype qtype; | 1099 | enum ath9k_rx_qtype qtype; |
843 | bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA); | 1100 | bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA); |
844 | int dma_type; | 1101 | int dma_type; |
1102 | u8 rx_status_len = ah->caps.rx_status_len; | ||
845 | 1103 | ||
846 | if (edma) | 1104 | if (edma) |
847 | dma_type = DMA_FROM_DEVICE; | ||
848 | else | ||
849 | dma_type = DMA_BIDIRECTIONAL; | 1105 | dma_type = DMA_BIDIRECTIONAL; |
1106 | else | ||
1107 | dma_type = DMA_FROM_DEVICE; | ||
850 | 1108 | ||
851 | qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; | 1109 | qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; |
852 | spin_lock_bh(&sc->rx.rxbuflock); | 1110 | spin_lock_bh(&sc->rx.rxbuflock); |
@@ -869,7 +1127,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) | |||
869 | if (!skb) | 1127 | if (!skb) |
870 | continue; | 1128 | continue; |
871 | 1129 | ||
872 | hdr = (struct ieee80211_hdr *) skb->data; | 1130 | hdr = (struct ieee80211_hdr *) (skb->data + rx_status_len); |
873 | rxs = IEEE80211_SKB_RXCB(skb); | 1131 | rxs = IEEE80211_SKB_RXCB(skb); |
874 | 1132 | ||
875 | hw = ath_get_virt_hw(sc, hdr); | 1133 | hw = ath_get_virt_hw(sc, hdr); |
@@ -883,8 +1141,8 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) | |||
883 | if (flush) | 1141 | if (flush) |
884 | goto requeue; | 1142 | goto requeue; |
885 | 1143 | ||
886 | retval = ath9k_cmn_rx_skb_preprocess(common, hw, skb, &rs, | 1144 | retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs, |
887 | rxs, &decrypt_error); | 1145 | rxs, &decrypt_error); |
888 | if (retval) | 1146 | if (retval) |
889 | goto requeue; | 1147 | goto requeue; |
890 | 1148 | ||
@@ -908,8 +1166,8 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) | |||
908 | if (ah->caps.rx_status_len) | 1166 | if (ah->caps.rx_status_len) |
909 | skb_pull(skb, ah->caps.rx_status_len); | 1167 | skb_pull(skb, ah->caps.rx_status_len); |
910 | 1168 | ||
911 | ath9k_cmn_rx_skb_postprocess(common, skb, &rs, | 1169 | ath9k_rx_skb_postprocess(common, skb, &rs, |
912 | rxs, decrypt_error); | 1170 | rxs, decrypt_error); |
913 | 1171 | ||
914 | /* We will now give hardware our shiny new allocated skb */ | 1172 | /* We will now give hardware our shiny new allocated skb */ |
915 | bf->bf_mpdu = requeue_skb; | 1173 | bf->bf_mpdu = requeue_skb; |
diff --git a/drivers/net/wireless/ath/ath9k/reg.h b/drivers/net/wireless/ath/ath9k/reg.h index d4371a43bdaa..3e3ccef438db 100644 --- a/drivers/net/wireless/ath/ath9k/reg.h +++ b/drivers/net/wireless/ath/ath9k/reg.h | |||
@@ -222,6 +222,7 @@ | |||
222 | 222 | ||
223 | #define AR_ISR_S2 0x008c | 223 | #define AR_ISR_S2 0x008c |
224 | #define AR_ISR_S2_QCU_TXURN 0x000003FF | 224 | #define AR_ISR_S2_QCU_TXURN 0x000003FF |
225 | #define AR_ISR_S2_BB_WATCHDOG 0x00010000 | ||
225 | #define AR_ISR_S2_CST 0x00400000 | 226 | #define AR_ISR_S2_CST 0x00400000 |
226 | #define AR_ISR_S2_GTT 0x00800000 | 227 | #define AR_ISR_S2_GTT 0x00800000 |
227 | #define AR_ISR_S2_TIM 0x01000000 | 228 | #define AR_ISR_S2_TIM 0x01000000 |
@@ -699,6 +700,9 @@ | |||
699 | #define AR_RC_HOSTIF 0x00000100 | 700 | #define AR_RC_HOSTIF 0x00000100 |
700 | 701 | ||
701 | #define AR_WA 0x4004 | 702 | #define AR_WA 0x4004 |
703 | #define AR_WA_BIT6 (1 << 6) | ||
704 | #define AR_WA_BIT7 (1 << 7) | ||
705 | #define AR_WA_BIT23 (1 << 23) | ||
702 | #define AR_WA_D3_L1_DISABLE (1 << 14) | 706 | #define AR_WA_D3_L1_DISABLE (1 << 14) |
703 | #define AR9285_WA_DEFAULT 0x004a050b | 707 | #define AR9285_WA_DEFAULT 0x004a050b |
704 | #define AR9280_WA_DEFAULT 0x0040073b | 708 | #define AR9280_WA_DEFAULT 0x0040073b |
@@ -756,32 +760,33 @@ | |||
756 | #define AR_SREV_REVISION2 0x00000F00 | 760 | #define AR_SREV_REVISION2 0x00000F00 |
757 | #define AR_SREV_REVISION2_S 8 | 761 | #define AR_SREV_REVISION2_S 8 |
758 | 762 | ||
759 | #define AR_SREV_VERSION_5416_PCI 0xD | 763 | #define AR_SREV_VERSION_5416_PCI 0xD |
760 | #define AR_SREV_VERSION_5416_PCIE 0xC | 764 | #define AR_SREV_VERSION_5416_PCIE 0xC |
761 | #define AR_SREV_REVISION_5416_10 0 | 765 | #define AR_SREV_REVISION_5416_10 0 |
762 | #define AR_SREV_REVISION_5416_20 1 | 766 | #define AR_SREV_REVISION_5416_20 1 |
763 | #define AR_SREV_REVISION_5416_22 2 | 767 | #define AR_SREV_REVISION_5416_22 2 |
764 | #define AR_SREV_VERSION_9100 0x14 | 768 | #define AR_SREV_VERSION_9100 0x14 |
765 | #define AR_SREV_VERSION_9160 0x40 | 769 | #define AR_SREV_VERSION_9160 0x40 |
766 | #define AR_SREV_REVISION_9160_10 0 | 770 | #define AR_SREV_REVISION_9160_10 0 |
767 | #define AR_SREV_REVISION_9160_11 1 | 771 | #define AR_SREV_REVISION_9160_11 1 |
768 | #define AR_SREV_VERSION_9280 0x80 | 772 | #define AR_SREV_VERSION_9280 0x80 |
769 | #define AR_SREV_REVISION_9280_10 0 | 773 | #define AR_SREV_REVISION_9280_10 0 |
770 | #define AR_SREV_REVISION_9280_20 1 | 774 | #define AR_SREV_REVISION_9280_20 1 |
771 | #define AR_SREV_REVISION_9280_21 2 | 775 | #define AR_SREV_REVISION_9280_21 2 |
772 | #define AR_SREV_VERSION_9285 0xC0 | 776 | #define AR_SREV_VERSION_9285 0xC0 |
773 | #define AR_SREV_REVISION_9285_10 0 | 777 | #define AR_SREV_REVISION_9285_10 0 |
774 | #define AR_SREV_REVISION_9285_11 1 | 778 | #define AR_SREV_REVISION_9285_11 1 |
775 | #define AR_SREV_REVISION_9285_12 2 | 779 | #define AR_SREV_REVISION_9285_12 2 |
776 | #define AR_SREV_VERSION_9287 0x180 | 780 | #define AR_SREV_VERSION_9287 0x180 |
777 | #define AR_SREV_REVISION_9287_10 0 | 781 | #define AR_SREV_REVISION_9287_10 0 |
778 | #define AR_SREV_REVISION_9287_11 1 | 782 | #define AR_SREV_REVISION_9287_11 1 |
779 | #define AR_SREV_REVISION_9287_12 2 | 783 | #define AR_SREV_REVISION_9287_12 2 |
780 | #define AR_SREV_VERSION_9271 0x140 | 784 | #define AR_SREV_REVISION_9287_13 3 |
781 | #define AR_SREV_REVISION_9271_10 0 | 785 | #define AR_SREV_VERSION_9271 0x140 |
782 | #define AR_SREV_REVISION_9271_11 1 | 786 | #define AR_SREV_REVISION_9271_10 0 |
783 | #define AR_SREV_VERSION_9300 0x1c0 | 787 | #define AR_SREV_REVISION_9271_11 1 |
784 | #define AR_SREV_REVISION_9300_20 2 /* 2.0 and 2.1 */ | 788 | #define AR_SREV_VERSION_9300 0x1c0 |
789 | #define AR_SREV_REVISION_9300_20 2 /* 2.0 and 2.1 */ | ||
785 | 790 | ||
786 | #define AR_SREV_5416(_ah) \ | 791 | #define AR_SREV_5416(_ah) \ |
787 | (((_ah)->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) || \ | 792 | (((_ah)->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) || \ |
@@ -859,6 +864,11 @@ | |||
859 | (((_ah)->hw_version.macVersion > AR_SREV_VERSION_9287) || \ | 864 | (((_ah)->hw_version.macVersion > AR_SREV_VERSION_9287) || \ |
860 | (((_ah)->hw_version.macVersion == AR_SREV_VERSION_9287) && \ | 865 | (((_ah)->hw_version.macVersion == AR_SREV_VERSION_9287) && \ |
861 | ((_ah)->hw_version.macRev >= AR_SREV_REVISION_9287_12))) | 866 | ((_ah)->hw_version.macRev >= AR_SREV_REVISION_9287_12))) |
867 | #define AR_SREV_9287_13_OR_LATER(_ah) \ | ||
868 | (((_ah)->hw_version.macVersion > AR_SREV_VERSION_9287) || \ | ||
869 | (((_ah)->hw_version.macVersion == AR_SREV_VERSION_9287) && \ | ||
870 | ((_ah)->hw_version.macRev >= AR_SREV_REVISION_9287_13))) | ||
871 | |||
862 | #define AR_SREV_9271(_ah) \ | 872 | #define AR_SREV_9271(_ah) \ |
863 | (((_ah))->hw_version.macVersion == AR_SREV_VERSION_9271) | 873 | (((_ah))->hw_version.macVersion == AR_SREV_VERSION_9271) |
864 | #define AR_SREV_9271_10(_ah) \ | 874 | #define AR_SREV_9271_10(_ah) \ |
diff --git a/drivers/net/wireless/ath/ath9k/wmi.c b/drivers/net/wireless/ath/ath9k/wmi.c index e23172c9caaf..6260faa658a2 100644 --- a/drivers/net/wireless/ath/ath9k/wmi.c +++ b/drivers/net/wireless/ath/ath9k/wmi.c | |||
@@ -279,9 +279,6 @@ int ath9k_wmi_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id, | |||
279 | if (wmi->drv_priv->op_flags & OP_UNPLUGGED) | 279 | if (wmi->drv_priv->op_flags & OP_UNPLUGGED) |
280 | return 0; | 280 | return 0; |
281 | 281 | ||
282 | if (!wmi) | ||
283 | return -EINVAL; | ||
284 | |||
285 | skb = alloc_skb(headroom + cmd_len, GFP_ATOMIC); | 282 | skb = alloc_skb(headroom + cmd_len, GFP_ATOMIC); |
286 | if (!skb) | 283 | if (!skb) |
287 | return -ENOMEM; | 284 | return -ENOMEM; |
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index 859aa4ab0769..7547c8f9a584 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c | |||
@@ -984,32 +984,6 @@ int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype) | |||
984 | return qnum; | 984 | return qnum; |
985 | } | 985 | } |
986 | 986 | ||
987 | struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb) | ||
988 | { | ||
989 | struct ath_txq *txq = NULL; | ||
990 | u16 skb_queue = skb_get_queue_mapping(skb); | ||
991 | int qnum; | ||
992 | |||
993 | qnum = ath_get_hal_qnum(skb_queue, sc); | ||
994 | txq = &sc->tx.txq[qnum]; | ||
995 | |||
996 | spin_lock_bh(&txq->axq_lock); | ||
997 | |||
998 | if (txq->axq_depth >= (ATH_TXBUF - 20)) { | ||
999 | ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_XMIT, | ||
1000 | "TX queue: %d is full, depth: %d\n", | ||
1001 | qnum, txq->axq_depth); | ||
1002 | ath_mac80211_stop_queue(sc, skb_queue); | ||
1003 | txq->stopped = 1; | ||
1004 | spin_unlock_bh(&txq->axq_lock); | ||
1005 | return NULL; | ||
1006 | } | ||
1007 | |||
1008 | spin_unlock_bh(&txq->axq_lock); | ||
1009 | |||
1010 | return txq; | ||
1011 | } | ||
1012 | |||
1013 | int ath_txq_update(struct ath_softc *sc, int qnum, | 987 | int ath_txq_update(struct ath_softc *sc, int qnum, |
1014 | struct ath9k_tx_queue_info *qinfo) | 988 | struct ath9k_tx_queue_info *qinfo) |
1015 | { | 989 | { |
@@ -1809,6 +1783,7 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
1809 | struct ath_wiphy *aphy = hw->priv; | 1783 | struct ath_wiphy *aphy = hw->priv; |
1810 | struct ath_softc *sc = aphy->sc; | 1784 | struct ath_softc *sc = aphy->sc; |
1811 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); | 1785 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
1786 | struct ath_txq *txq = txctl->txq; | ||
1812 | struct ath_buf *bf; | 1787 | struct ath_buf *bf; |
1813 | int r; | 1788 | int r; |
1814 | 1789 | ||
@@ -1818,10 +1793,16 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
1818 | return -1; | 1793 | return -1; |
1819 | } | 1794 | } |
1820 | 1795 | ||
1796 | bf->txq = txctl->txq; | ||
1797 | spin_lock_bh(&bf->txq->axq_lock); | ||
1798 | if (++bf->txq->pending_frames > ATH_MAX_QDEPTH && !txq->stopped) { | ||
1799 | ath_mac80211_stop_queue(sc, skb_get_queue_mapping(skb)); | ||
1800 | txq->stopped = 1; | ||
1801 | } | ||
1802 | spin_unlock_bh(&bf->txq->axq_lock); | ||
1803 | |||
1821 | r = ath_tx_setup_buffer(hw, bf, skb, txctl); | 1804 | r = ath_tx_setup_buffer(hw, bf, skb, txctl); |
1822 | if (unlikely(r)) { | 1805 | if (unlikely(r)) { |
1823 | struct ath_txq *txq = txctl->txq; | ||
1824 | |||
1825 | ath_print(common, ATH_DBG_FATAL, "TX mem alloc failure\n"); | 1806 | ath_print(common, ATH_DBG_FATAL, "TX mem alloc failure\n"); |
1826 | 1807 | ||
1827 | /* upon ath_tx_processq() this TX queue will be resumed, we | 1808 | /* upon ath_tx_processq() this TX queue will be resumed, we |
@@ -1829,7 +1810,7 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
1829 | * we will at least have to run TX completionon one buffer | 1810 | * we will at least have to run TX completionon one buffer |
1830 | * on the queue */ | 1811 | * on the queue */ |
1831 | spin_lock_bh(&txq->axq_lock); | 1812 | spin_lock_bh(&txq->axq_lock); |
1832 | if (sc->tx.txq[txq->axq_qnum].axq_depth > 1) { | 1813 | if (!txq->stopped && txq->axq_depth > 1) { |
1833 | ath_mac80211_stop_queue(sc, skb_get_queue_mapping(skb)); | 1814 | ath_mac80211_stop_queue(sc, skb_get_queue_mapping(skb)); |
1834 | txq->stopped = 1; | 1815 | txq->stopped = 1; |
1835 | } | 1816 | } |
@@ -1970,6 +1951,13 @@ static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf, | |||
1970 | tx_flags |= ATH_TX_XRETRY; | 1951 | tx_flags |= ATH_TX_XRETRY; |
1971 | } | 1952 | } |
1972 | 1953 | ||
1954 | if (bf->txq) { | ||
1955 | spin_lock_bh(&bf->txq->axq_lock); | ||
1956 | bf->txq->pending_frames--; | ||
1957 | spin_unlock_bh(&bf->txq->axq_lock); | ||
1958 | bf->txq = NULL; | ||
1959 | } | ||
1960 | |||
1973 | dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE); | 1961 | dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE); |
1974 | ath_tx_complete(sc, skb, bf->aphy, tx_flags); | 1962 | ath_tx_complete(sc, skb, bf->aphy, tx_flags); |
1975 | ath_debug_stat_tx(sc, txq, bf, ts); | 1963 | ath_debug_stat_tx(sc, txq, bf, ts); |
@@ -2058,8 +2046,7 @@ static void ath_wake_mac80211_queue(struct ath_softc *sc, struct ath_txq *txq) | |||
2058 | int qnum; | 2046 | int qnum; |
2059 | 2047 | ||
2060 | spin_lock_bh(&txq->axq_lock); | 2048 | spin_lock_bh(&txq->axq_lock); |
2061 | if (txq->stopped && | 2049 | if (txq->stopped && txq->pending_frames < ATH_MAX_QDEPTH) { |
2062 | sc->tx.txq[txq->axq_qnum].axq_depth <= (ATH_TXBUF - 20)) { | ||
2063 | qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc); | 2050 | qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc); |
2064 | if (qnum != -1) { | 2051 | if (qnum != -1) { |
2065 | ath_mac80211_start_queue(sc, qnum); | 2052 | ath_mac80211_start_queue(sc, qnum); |
@@ -2279,6 +2266,17 @@ void ath_tx_edma_tasklet(struct ath_softc *sc) | |||
2279 | 2266 | ||
2280 | txok = !(txs.ts_status & ATH9K_TXERR_MASK); | 2267 | txok = !(txs.ts_status & ATH9K_TXERR_MASK); |
2281 | 2268 | ||
2269 | /* | ||
2270 | * Make sure null func frame is acked before configuring | ||
2271 | * hw into ps mode. | ||
2272 | */ | ||
2273 | if (bf->bf_isnullfunc && txok) { | ||
2274 | if ((sc->ps_flags & PS_ENABLED)) | ||
2275 | ath9k_enable_ps(sc); | ||
2276 | else | ||
2277 | sc->ps_flags |= PS_NULLFUNC_COMPLETED; | ||
2278 | } | ||
2279 | |||
2282 | if (!bf_isampdu(bf)) { | 2280 | if (!bf_isampdu(bf)) { |
2283 | bf->bf_retries = txs.ts_longretry; | 2281 | bf->bf_retries = txs.ts_longretry; |
2284 | if (txs.ts_status & ATH9K_TXERR_XRETRY) | 2282 | if (txs.ts_status & ATH9K_TXERR_XRETRY) |
diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c index fa40fdfea719..10d0aaf754c5 100644 --- a/drivers/net/wireless/b43/dma.c +++ b/drivers/net/wireless/b43/dma.c | |||
@@ -333,11 +333,11 @@ static inline | |||
333 | dma_addr_t dmaaddr; | 333 | dma_addr_t dmaaddr; |
334 | 334 | ||
335 | if (tx) { | 335 | if (tx) { |
336 | dmaaddr = ssb_dma_map_single(ring->dev->dev, | 336 | dmaaddr = dma_map_single(ring->dev->dev->dma_dev, |
337 | buf, len, DMA_TO_DEVICE); | 337 | buf, len, DMA_TO_DEVICE); |
338 | } else { | 338 | } else { |
339 | dmaaddr = ssb_dma_map_single(ring->dev->dev, | 339 | dmaaddr = dma_map_single(ring->dev->dev->dma_dev, |
340 | buf, len, DMA_FROM_DEVICE); | 340 | buf, len, DMA_FROM_DEVICE); |
341 | } | 341 | } |
342 | 342 | ||
343 | return dmaaddr; | 343 | return dmaaddr; |
@@ -348,11 +348,11 @@ static inline | |||
348 | dma_addr_t addr, size_t len, int tx) | 348 | dma_addr_t addr, size_t len, int tx) |
349 | { | 349 | { |
350 | if (tx) { | 350 | if (tx) { |
351 | ssb_dma_unmap_single(ring->dev->dev, | 351 | dma_unmap_single(ring->dev->dev->dma_dev, |
352 | addr, len, DMA_TO_DEVICE); | 352 | addr, len, DMA_TO_DEVICE); |
353 | } else { | 353 | } else { |
354 | ssb_dma_unmap_single(ring->dev->dev, | 354 | dma_unmap_single(ring->dev->dev->dma_dev, |
355 | addr, len, DMA_FROM_DEVICE); | 355 | addr, len, DMA_FROM_DEVICE); |
356 | } | 356 | } |
357 | } | 357 | } |
358 | 358 | ||
@@ -361,7 +361,7 @@ static inline | |||
361 | dma_addr_t addr, size_t len) | 361 | dma_addr_t addr, size_t len) |
362 | { | 362 | { |
363 | B43_WARN_ON(ring->tx); | 363 | B43_WARN_ON(ring->tx); |
364 | ssb_dma_sync_single_for_cpu(ring->dev->dev, | 364 | dma_sync_single_for_cpu(ring->dev->dev->dma_dev, |
365 | addr, len, DMA_FROM_DEVICE); | 365 | addr, len, DMA_FROM_DEVICE); |
366 | } | 366 | } |
367 | 367 | ||
@@ -370,8 +370,8 @@ static inline | |||
370 | dma_addr_t addr, size_t len) | 370 | dma_addr_t addr, size_t len) |
371 | { | 371 | { |
372 | B43_WARN_ON(ring->tx); | 372 | B43_WARN_ON(ring->tx); |
373 | ssb_dma_sync_single_for_device(ring->dev->dev, | 373 | dma_sync_single_for_device(ring->dev->dev->dma_dev, |
374 | addr, len, DMA_FROM_DEVICE); | 374 | addr, len, DMA_FROM_DEVICE); |
375 | } | 375 | } |
376 | 376 | ||
377 | static inline | 377 | static inline |
@@ -401,9 +401,9 @@ static int alloc_ringmemory(struct b43_dmaring *ring) | |||
401 | */ | 401 | */ |
402 | if (ring->type == B43_DMA_64BIT) | 402 | if (ring->type == B43_DMA_64BIT) |
403 | flags |= GFP_DMA; | 403 | flags |= GFP_DMA; |
404 | ring->descbase = ssb_dma_alloc_consistent(ring->dev->dev, | 404 | ring->descbase = dma_alloc_coherent(ring->dev->dev->dma_dev, |
405 | B43_DMA_RINGMEMSIZE, | 405 | B43_DMA_RINGMEMSIZE, |
406 | &(ring->dmabase), flags); | 406 | &(ring->dmabase), flags); |
407 | if (!ring->descbase) { | 407 | if (!ring->descbase) { |
408 | b43err(ring->dev->wl, "DMA ringmemory allocation failed\n"); | 408 | b43err(ring->dev->wl, "DMA ringmemory allocation failed\n"); |
409 | return -ENOMEM; | 409 | return -ENOMEM; |
@@ -420,8 +420,8 @@ static void free_ringmemory(struct b43_dmaring *ring) | |||
420 | if (ring->type == B43_DMA_64BIT) | 420 | if (ring->type == B43_DMA_64BIT) |
421 | flags |= GFP_DMA; | 421 | flags |= GFP_DMA; |
422 | 422 | ||
423 | ssb_dma_free_consistent(ring->dev->dev, B43_DMA_RINGMEMSIZE, | 423 | dma_free_coherent(ring->dev->dev->dma_dev, B43_DMA_RINGMEMSIZE, |
424 | ring->descbase, ring->dmabase, flags); | 424 | ring->descbase, ring->dmabase); |
425 | } | 425 | } |
426 | 426 | ||
427 | /* Reset the RX DMA channel */ | 427 | /* Reset the RX DMA channel */ |
@@ -528,7 +528,7 @@ static bool b43_dma_mapping_error(struct b43_dmaring *ring, | |||
528 | dma_addr_t addr, | 528 | dma_addr_t addr, |
529 | size_t buffersize, bool dma_to_device) | 529 | size_t buffersize, bool dma_to_device) |
530 | { | 530 | { |
531 | if (unlikely(ssb_dma_mapping_error(ring->dev->dev, addr))) | 531 | if (unlikely(dma_mapping_error(ring->dev->dev->dma_dev, addr))) |
532 | return 1; | 532 | return 1; |
533 | 533 | ||
534 | switch (ring->type) { | 534 | switch (ring->type) { |
@@ -874,10 +874,10 @@ struct b43_dmaring *b43_setup_dmaring(struct b43_wldev *dev, | |||
874 | goto err_kfree_meta; | 874 | goto err_kfree_meta; |
875 | 875 | ||
876 | /* test for ability to dma to txhdr_cache */ | 876 | /* test for ability to dma to txhdr_cache */ |
877 | dma_test = ssb_dma_map_single(dev->dev, | 877 | dma_test = dma_map_single(dev->dev->dma_dev, |
878 | ring->txhdr_cache, | 878 | ring->txhdr_cache, |
879 | b43_txhdr_size(dev), | 879 | b43_txhdr_size(dev), |
880 | DMA_TO_DEVICE); | 880 | DMA_TO_DEVICE); |
881 | 881 | ||
882 | if (b43_dma_mapping_error(ring, dma_test, | 882 | if (b43_dma_mapping_error(ring, dma_test, |
883 | b43_txhdr_size(dev), 1)) { | 883 | b43_txhdr_size(dev), 1)) { |
@@ -889,10 +889,10 @@ struct b43_dmaring *b43_setup_dmaring(struct b43_wldev *dev, | |||
889 | if (!ring->txhdr_cache) | 889 | if (!ring->txhdr_cache) |
890 | goto err_kfree_meta; | 890 | goto err_kfree_meta; |
891 | 891 | ||
892 | dma_test = ssb_dma_map_single(dev->dev, | 892 | dma_test = dma_map_single(dev->dev->dma_dev, |
893 | ring->txhdr_cache, | 893 | ring->txhdr_cache, |
894 | b43_txhdr_size(dev), | 894 | b43_txhdr_size(dev), |
895 | DMA_TO_DEVICE); | 895 | DMA_TO_DEVICE); |
896 | 896 | ||
897 | if (b43_dma_mapping_error(ring, dma_test, | 897 | if (b43_dma_mapping_error(ring, dma_test, |
898 | b43_txhdr_size(dev), 1)) { | 898 | b43_txhdr_size(dev), 1)) { |
@@ -903,9 +903,9 @@ struct b43_dmaring *b43_setup_dmaring(struct b43_wldev *dev, | |||
903 | } | 903 | } |
904 | } | 904 | } |
905 | 905 | ||
906 | ssb_dma_unmap_single(dev->dev, | 906 | dma_unmap_single(dev->dev->dma_dev, |
907 | dma_test, b43_txhdr_size(dev), | 907 | dma_test, b43_txhdr_size(dev), |
908 | DMA_TO_DEVICE); | 908 | DMA_TO_DEVICE); |
909 | } | 909 | } |
910 | 910 | ||
911 | err = alloc_ringmemory(ring); | 911 | err = alloc_ringmemory(ring); |
@@ -1018,9 +1018,12 @@ static int b43_dma_set_mask(struct b43_wldev *dev, u64 mask) | |||
1018 | /* Try to set the DMA mask. If it fails, try falling back to a | 1018 | /* Try to set the DMA mask. If it fails, try falling back to a |
1019 | * lower mask, as we can always also support a lower one. */ | 1019 | * lower mask, as we can always also support a lower one. */ |
1020 | while (1) { | 1020 | while (1) { |
1021 | err = ssb_dma_set_mask(dev->dev, mask); | 1021 | err = dma_set_mask(dev->dev->dma_dev, mask); |
1022 | if (!err) | 1022 | if (!err) { |
1023 | break; | 1023 | err = dma_set_coherent_mask(dev->dev->dma_dev, mask); |
1024 | if (!err) | ||
1025 | break; | ||
1026 | } | ||
1024 | if (mask == DMA_BIT_MASK(64)) { | 1027 | if (mask == DMA_BIT_MASK(64)) { |
1025 | mask = DMA_BIT_MASK(32); | 1028 | mask = DMA_BIT_MASK(32); |
1026 | fallback = 1; | 1029 | fallback = 1; |
@@ -1221,14 +1224,14 @@ static int dma_tx_fragment(struct b43_dmaring *ring, | |||
1221 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); | 1224 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); |
1222 | /* create a bounce buffer in zone_dma on mapping failure. */ | 1225 | /* create a bounce buffer in zone_dma on mapping failure. */ |
1223 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { | 1226 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { |
1224 | priv_info->bouncebuffer = kmalloc(skb->len, GFP_ATOMIC | GFP_DMA); | 1227 | priv_info->bouncebuffer = kmemdup(skb->data, skb->len, |
1228 | GFP_ATOMIC | GFP_DMA); | ||
1225 | if (!priv_info->bouncebuffer) { | 1229 | if (!priv_info->bouncebuffer) { |
1226 | ring->current_slot = old_top_slot; | 1230 | ring->current_slot = old_top_slot; |
1227 | ring->used_slots = old_used_slots; | 1231 | ring->used_slots = old_used_slots; |
1228 | err = -ENOMEM; | 1232 | err = -ENOMEM; |
1229 | goto out_unmap_hdr; | 1233 | goto out_unmap_hdr; |
1230 | } | 1234 | } |
1231 | memcpy(priv_info->bouncebuffer, skb->data, skb->len); | ||
1232 | 1235 | ||
1233 | meta->dmaaddr = map_descbuffer(ring, priv_info->bouncebuffer, skb->len, 1); | 1236 | meta->dmaaddr = map_descbuffer(ring, priv_info->bouncebuffer, skb->len, 1); |
1234 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { | 1237 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { |
diff --git a/drivers/net/wireless/b43legacy/dma.c b/drivers/net/wireless/b43legacy/dma.c index e91520d0312e..e03e01d0bc35 100644 --- a/drivers/net/wireless/b43legacy/dma.c +++ b/drivers/net/wireless/b43legacy/dma.c | |||
@@ -394,11 +394,11 @@ dma_addr_t map_descbuffer(struct b43legacy_dmaring *ring, | |||
394 | dma_addr_t dmaaddr; | 394 | dma_addr_t dmaaddr; |
395 | 395 | ||
396 | if (tx) | 396 | if (tx) |
397 | dmaaddr = ssb_dma_map_single(ring->dev->dev, | 397 | dmaaddr = dma_map_single(ring->dev->dev->dma_dev, |
398 | buf, len, | 398 | buf, len, |
399 | DMA_TO_DEVICE); | 399 | DMA_TO_DEVICE); |
400 | else | 400 | else |
401 | dmaaddr = ssb_dma_map_single(ring->dev->dev, | 401 | dmaaddr = dma_map_single(ring->dev->dev->dma_dev, |
402 | buf, len, | 402 | buf, len, |
403 | DMA_FROM_DEVICE); | 403 | DMA_FROM_DEVICE); |
404 | 404 | ||
@@ -412,11 +412,11 @@ void unmap_descbuffer(struct b43legacy_dmaring *ring, | |||
412 | int tx) | 412 | int tx) |
413 | { | 413 | { |
414 | if (tx) | 414 | if (tx) |
415 | ssb_dma_unmap_single(ring->dev->dev, | 415 | dma_unmap_single(ring->dev->dev->dma_dev, |
416 | addr, len, | 416 | addr, len, |
417 | DMA_TO_DEVICE); | 417 | DMA_TO_DEVICE); |
418 | else | 418 | else |
419 | ssb_dma_unmap_single(ring->dev->dev, | 419 | dma_unmap_single(ring->dev->dev->dma_dev, |
420 | addr, len, | 420 | addr, len, |
421 | DMA_FROM_DEVICE); | 421 | DMA_FROM_DEVICE); |
422 | } | 422 | } |
@@ -428,8 +428,8 @@ void sync_descbuffer_for_cpu(struct b43legacy_dmaring *ring, | |||
428 | { | 428 | { |
429 | B43legacy_WARN_ON(ring->tx); | 429 | B43legacy_WARN_ON(ring->tx); |
430 | 430 | ||
431 | ssb_dma_sync_single_for_cpu(ring->dev->dev, | 431 | dma_sync_single_for_cpu(ring->dev->dev->dma_dev, |
432 | addr, len, DMA_FROM_DEVICE); | 432 | addr, len, DMA_FROM_DEVICE); |
433 | } | 433 | } |
434 | 434 | ||
435 | static inline | 435 | static inline |
@@ -439,8 +439,8 @@ void sync_descbuffer_for_device(struct b43legacy_dmaring *ring, | |||
439 | { | 439 | { |
440 | B43legacy_WARN_ON(ring->tx); | 440 | B43legacy_WARN_ON(ring->tx); |
441 | 441 | ||
442 | ssb_dma_sync_single_for_device(ring->dev->dev, | 442 | dma_sync_single_for_device(ring->dev->dev->dma_dev, |
443 | addr, len, DMA_FROM_DEVICE); | 443 | addr, len, DMA_FROM_DEVICE); |
444 | } | 444 | } |
445 | 445 | ||
446 | static inline | 446 | static inline |
@@ -460,10 +460,10 @@ void free_descriptor_buffer(struct b43legacy_dmaring *ring, | |||
460 | static int alloc_ringmemory(struct b43legacy_dmaring *ring) | 460 | static int alloc_ringmemory(struct b43legacy_dmaring *ring) |
461 | { | 461 | { |
462 | /* GFP flags must match the flags in free_ringmemory()! */ | 462 | /* GFP flags must match the flags in free_ringmemory()! */ |
463 | ring->descbase = ssb_dma_alloc_consistent(ring->dev->dev, | 463 | ring->descbase = dma_alloc_coherent(ring->dev->dev->dma_dev, |
464 | B43legacy_DMA_RINGMEMSIZE, | 464 | B43legacy_DMA_RINGMEMSIZE, |
465 | &(ring->dmabase), | 465 | &(ring->dmabase), |
466 | GFP_KERNEL); | 466 | GFP_KERNEL); |
467 | if (!ring->descbase) { | 467 | if (!ring->descbase) { |
468 | b43legacyerr(ring->dev->wl, "DMA ringmemory allocation" | 468 | b43legacyerr(ring->dev->wl, "DMA ringmemory allocation" |
469 | " failed\n"); | 469 | " failed\n"); |
@@ -476,8 +476,8 @@ static int alloc_ringmemory(struct b43legacy_dmaring *ring) | |||
476 | 476 | ||
477 | static void free_ringmemory(struct b43legacy_dmaring *ring) | 477 | static void free_ringmemory(struct b43legacy_dmaring *ring) |
478 | { | 478 | { |
479 | ssb_dma_free_consistent(ring->dev->dev, B43legacy_DMA_RINGMEMSIZE, | 479 | dma_free_coherent(ring->dev->dev->dma_dev, B43legacy_DMA_RINGMEMSIZE, |
480 | ring->descbase, ring->dmabase, GFP_KERNEL); | 480 | ring->descbase, ring->dmabase); |
481 | } | 481 | } |
482 | 482 | ||
483 | /* Reset the RX DMA channel */ | 483 | /* Reset the RX DMA channel */ |
@@ -589,7 +589,7 @@ static bool b43legacy_dma_mapping_error(struct b43legacy_dmaring *ring, | |||
589 | size_t buffersize, | 589 | size_t buffersize, |
590 | bool dma_to_device) | 590 | bool dma_to_device) |
591 | { | 591 | { |
592 | if (unlikely(ssb_dma_mapping_error(ring->dev->dev, addr))) | 592 | if (unlikely(dma_mapping_error(ring->dev->dev->dma_dev, addr))) |
593 | return 1; | 593 | return 1; |
594 | 594 | ||
595 | switch (ring->type) { | 595 | switch (ring->type) { |
@@ -906,7 +906,7 @@ struct b43legacy_dmaring *b43legacy_setup_dmaring(struct b43legacy_wldev *dev, | |||
906 | goto err_kfree_meta; | 906 | goto err_kfree_meta; |
907 | 907 | ||
908 | /* test for ability to dma to txhdr_cache */ | 908 | /* test for ability to dma to txhdr_cache */ |
909 | dma_test = ssb_dma_map_single(dev->dev, ring->txhdr_cache, | 909 | dma_test = dma_map_single(dev->dev->dma_dev, ring->txhdr_cache, |
910 | sizeof(struct b43legacy_txhdr_fw3), | 910 | sizeof(struct b43legacy_txhdr_fw3), |
911 | DMA_TO_DEVICE); | 911 | DMA_TO_DEVICE); |
912 | 912 | ||
@@ -920,7 +920,7 @@ struct b43legacy_dmaring *b43legacy_setup_dmaring(struct b43legacy_wldev *dev, | |||
920 | if (!ring->txhdr_cache) | 920 | if (!ring->txhdr_cache) |
921 | goto err_kfree_meta; | 921 | goto err_kfree_meta; |
922 | 922 | ||
923 | dma_test = ssb_dma_map_single(dev->dev, | 923 | dma_test = dma_map_single(dev->dev->dma_dev, |
924 | ring->txhdr_cache, | 924 | ring->txhdr_cache, |
925 | sizeof(struct b43legacy_txhdr_fw3), | 925 | sizeof(struct b43legacy_txhdr_fw3), |
926 | DMA_TO_DEVICE); | 926 | DMA_TO_DEVICE); |
@@ -930,9 +930,9 @@ struct b43legacy_dmaring *b43legacy_setup_dmaring(struct b43legacy_wldev *dev, | |||
930 | goto err_kfree_txhdr_cache; | 930 | goto err_kfree_txhdr_cache; |
931 | } | 931 | } |
932 | 932 | ||
933 | ssb_dma_unmap_single(dev->dev, dma_test, | 933 | dma_unmap_single(dev->dev->dma_dev, dma_test, |
934 | sizeof(struct b43legacy_txhdr_fw3), | 934 | sizeof(struct b43legacy_txhdr_fw3), |
935 | DMA_TO_DEVICE); | 935 | DMA_TO_DEVICE); |
936 | } | 936 | } |
937 | 937 | ||
938 | ring->nr_slots = nr_slots; | 938 | ring->nr_slots = nr_slots; |
@@ -1040,9 +1040,12 @@ static int b43legacy_dma_set_mask(struct b43legacy_wldev *dev, u64 mask) | |||
1040 | /* Try to set the DMA mask. If it fails, try falling back to a | 1040 | /* Try to set the DMA mask. If it fails, try falling back to a |
1041 | * lower mask, as we can always also support a lower one. */ | 1041 | * lower mask, as we can always also support a lower one. */ |
1042 | while (1) { | 1042 | while (1) { |
1043 | err = ssb_dma_set_mask(dev->dev, mask); | 1043 | err = dma_set_mask(dev->dev->dma_dev, mask); |
1044 | if (!err) | 1044 | if (!err) { |
1045 | break; | 1045 | err = dma_set_coherent_mask(dev->dev->dma_dev, mask); |
1046 | if (!err) | ||
1047 | break; | ||
1048 | } | ||
1046 | if (mask == DMA_BIT_MASK(64)) { | 1049 | if (mask == DMA_BIT_MASK(64)) { |
1047 | mask = DMA_BIT_MASK(32); | 1050 | mask = DMA_BIT_MASK(32); |
1048 | fallback = 1; | 1051 | fallback = 1; |
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index d70732819423..ff9b5c882184 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
@@ -2618,15 +2618,6 @@ static irqreturn_t prism2_interrupt(int irq, void *dev_id) | |||
2618 | int events = 0; | 2618 | int events = 0; |
2619 | u16 ev; | 2619 | u16 ev; |
2620 | 2620 | ||
2621 | /* Detect early interrupt before driver is fully configued */ | ||
2622 | if (!dev->base_addr) { | ||
2623 | if (net_ratelimit()) { | ||
2624 | printk(KERN_DEBUG "%s: Interrupt, but dev not configured\n", | ||
2625 | dev->name); | ||
2626 | } | ||
2627 | return IRQ_HANDLED; | ||
2628 | } | ||
2629 | |||
2630 | iface = netdev_priv(dev); | 2621 | iface = netdev_priv(dev); |
2631 | local = iface->local; | 2622 | local = iface->local; |
2632 | 2623 | ||
diff --git a/drivers/net/wireless/ipw2x00/ipw2100.c b/drivers/net/wireless/ipw2x00/ipw2100.c index 4264fc091ada..56350d571960 100644 --- a/drivers/net/wireless/ipw2x00/ipw2100.c +++ b/drivers/net/wireless/ipw2x00/ipw2100.c | |||
@@ -3467,10 +3467,8 @@ static int ipw2100_msg_allocate(struct ipw2100_priv *priv) | |||
3467 | dma_addr_t p; | 3467 | dma_addr_t p; |
3468 | 3468 | ||
3469 | priv->msg_buffers = | 3469 | priv->msg_buffers = |
3470 | (struct ipw2100_tx_packet *)kmalloc(IPW_COMMAND_POOL_SIZE * | 3470 | kmalloc(IPW_COMMAND_POOL_SIZE * sizeof(struct ipw2100_tx_packet), |
3471 | sizeof(struct | 3471 | GFP_KERNEL); |
3472 | ipw2100_tx_packet), | ||
3473 | GFP_KERNEL); | ||
3474 | if (!priv->msg_buffers) { | 3472 | if (!priv->msg_buffers) { |
3475 | printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg " | 3473 | printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg " |
3476 | "buffers.\n", priv->net_dev->name); | 3474 | "buffers.\n", priv->net_dev->name); |
@@ -4499,10 +4497,8 @@ static int ipw2100_tx_allocate(struct ipw2100_priv *priv) | |||
4499 | } | 4497 | } |
4500 | 4498 | ||
4501 | priv->tx_buffers = | 4499 | priv->tx_buffers = |
4502 | (struct ipw2100_tx_packet *)kmalloc(TX_PENDED_QUEUE_LENGTH * | 4500 | kmalloc(TX_PENDED_QUEUE_LENGTH * sizeof(struct ipw2100_tx_packet), |
4503 | sizeof(struct | 4501 | GFP_ATOMIC); |
4504 | ipw2100_tx_packet), | ||
4505 | GFP_ATOMIC); | ||
4506 | if (!priv->tx_buffers) { | 4502 | if (!priv->tx_buffers) { |
4507 | printk(KERN_ERR DRV_NAME | 4503 | printk(KERN_ERR DRV_NAME |
4508 | ": %s: alloc failed form tx buffers.\n", | 4504 | ": %s: alloc failed form tx buffers.\n", |
@@ -4651,9 +4647,9 @@ static int ipw2100_rx_allocate(struct ipw2100_priv *priv) | |||
4651 | /* | 4647 | /* |
4652 | * allocate packets | 4648 | * allocate packets |
4653 | */ | 4649 | */ |
4654 | priv->rx_buffers = (struct ipw2100_rx_packet *) | 4650 | priv->rx_buffers = kmalloc(RX_QUEUE_LENGTH * |
4655 | kmalloc(RX_QUEUE_LENGTH * sizeof(struct ipw2100_rx_packet), | 4651 | sizeof(struct ipw2100_rx_packet), |
4656 | GFP_KERNEL); | 4652 | GFP_KERNEL); |
4657 | if (!priv->rx_buffers) { | 4653 | if (!priv->rx_buffers) { |
4658 | IPW_DEBUG_INFO("can't allocate rx packet buffer table\n"); | 4654 | IPW_DEBUG_INFO("can't allocate rx packet buffer table\n"); |
4659 | 4655 | ||
diff --git a/drivers/net/wireless/ipw2x00/ipw2200.c b/drivers/net/wireless/ipw2x00/ipw2200.c index 3aa3bb18f615..8feaa1d358ea 100644 --- a/drivers/net/wireless/ipw2x00/ipw2200.c +++ b/drivers/net/wireless/ipw2x00/ipw2200.c | |||
@@ -6624,13 +6624,12 @@ static int ipw_wx_set_genie(struct net_device *dev, | |||
6624 | return -EINVAL; | 6624 | return -EINVAL; |
6625 | 6625 | ||
6626 | if (wrqu->data.length) { | 6626 | if (wrqu->data.length) { |
6627 | buf = kmalloc(wrqu->data.length, GFP_KERNEL); | 6627 | buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL); |
6628 | if (buf == NULL) { | 6628 | if (buf == NULL) { |
6629 | err = -ENOMEM; | 6629 | err = -ENOMEM; |
6630 | goto out; | 6630 | goto out; |
6631 | } | 6631 | } |
6632 | 6632 | ||
6633 | memcpy(buf, extra, wrqu->data.length); | ||
6634 | kfree(ieee->wpa_ie); | 6633 | kfree(ieee->wpa_ie); |
6635 | ieee->wpa_ie = buf; | 6634 | ieee->wpa_ie = buf; |
6636 | ieee->wpa_ie_len = wrqu->data.length; | 6635 | ieee->wpa_ie_len = wrqu->data.length; |
diff --git a/drivers/net/wireless/iwlwifi/Kconfig b/drivers/net/wireless/iwlwifi/Kconfig index dc8ed1527666..6491e27baac5 100644 --- a/drivers/net/wireless/iwlwifi/Kconfig +++ b/drivers/net/wireless/iwlwifi/Kconfig | |||
@@ -30,9 +30,11 @@ config IWLWIFI_DEBUG | |||
30 | 30 | ||
31 | config IWLWIFI_DEBUGFS | 31 | config IWLWIFI_DEBUGFS |
32 | bool "iwlagn debugfs support" | 32 | bool "iwlagn debugfs support" |
33 | depends on IWLWIFI && IWLWIFI_DEBUG && MAC80211_DEBUGFS | 33 | depends on IWLWIFI && MAC80211_DEBUGFS |
34 | ---help--- | 34 | ---help--- |
35 | Enable creation of debugfs files for the iwlwifi drivers. | 35 | Enable creation of debugfs files for the iwlwifi drivers. This |
36 | is a low-impact option that allows getting insight into the | ||
37 | driver's state at runtime. | ||
36 | 38 | ||
37 | config IWLWIFI_DEVICE_TRACING | 39 | config IWLWIFI_DEVICE_TRACING |
38 | bool "iwlwifi device access tracing" | 40 | bool "iwlwifi device access tracing" |
diff --git a/drivers/net/wireless/iwlwifi/iwl-1000.c b/drivers/net/wireless/iwlwifi/iwl-1000.c index 6be2992f8f21..dba91e0233b6 100644 --- a/drivers/net/wireless/iwlwifi/iwl-1000.c +++ b/drivers/net/wireless/iwlwifi/iwl-1000.c | |||
@@ -158,6 +158,8 @@ static int iwl1000_hw_set_hw_params(struct iwl_priv *priv) | |||
158 | BIT(IWL_CALIB_TX_IQ_PERD) | | 158 | BIT(IWL_CALIB_TX_IQ_PERD) | |
159 | BIT(IWL_CALIB_BASE_BAND); | 159 | BIT(IWL_CALIB_BASE_BAND); |
160 | 160 | ||
161 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
162 | |||
161 | return 0; | 163 | return 0; |
162 | } | 164 | } |
163 | 165 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-debugfs.c b/drivers/net/wireless/iwlwifi/iwl-3945-debugfs.c index 6a9c64a50e36..ef0835b01b6b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-debugfs.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945-debugfs.c | |||
@@ -28,6 +28,28 @@ | |||
28 | 28 | ||
29 | #include "iwl-3945-debugfs.h" | 29 | #include "iwl-3945-debugfs.h" |
30 | 30 | ||
31 | |||
32 | static int iwl3945_statistics_flag(struct iwl_priv *priv, char *buf, int bufsz) | ||
33 | { | ||
34 | int p = 0; | ||
35 | |||
36 | p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n", | ||
37 | le32_to_cpu(priv->_3945.statistics.flag)); | ||
38 | if (le32_to_cpu(priv->_3945.statistics.flag) & | ||
39 | UCODE_STATISTICS_CLEAR_MSK) | ||
40 | p += scnprintf(buf + p, bufsz - p, | ||
41 | "\tStatistics have been cleared\n"); | ||
42 | p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n", | ||
43 | (le32_to_cpu(priv->_3945.statistics.flag) & | ||
44 | UCODE_STATISTICS_FREQUENCY_MSK) | ||
45 | ? "2.4 GHz" : "5.2 GHz"); | ||
46 | p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n", | ||
47 | (le32_to_cpu(priv->_3945.statistics.flag) & | ||
48 | UCODE_STATISTICS_NARROW_BAND_MSK) | ||
49 | ? "enabled" : "disabled"); | ||
50 | return p; | ||
51 | } | ||
52 | |||
31 | ssize_t iwl3945_ucode_rx_stats_read(struct file *file, | 53 | ssize_t iwl3945_ucode_rx_stats_read(struct file *file, |
32 | char __user *user_buf, | 54 | char __user *user_buf, |
33 | size_t count, loff_t *ppos) | 55 | size_t count, loff_t *ppos) |
@@ -70,7 +92,7 @@ ssize_t iwl3945_ucode_rx_stats_read(struct file *file, | |||
70 | max_cck = &priv->_3945.max_delta.rx.cck; | 92 | max_cck = &priv->_3945.max_delta.rx.cck; |
71 | max_general = &priv->_3945.max_delta.rx.general; | 93 | max_general = &priv->_3945.max_delta.rx.general; |
72 | 94 | ||
73 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 95 | pos += iwl3945_statistics_flag(priv, buf, bufsz); |
74 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 96 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
75 | "acumulative delta max\n", | 97 | "acumulative delta max\n", |
76 | "Statistics_Rx - OFDM:"); | 98 | "Statistics_Rx - OFDM:"); |
@@ -331,7 +353,7 @@ ssize_t iwl3945_ucode_tx_stats_read(struct file *file, | |||
331 | accum_tx = &priv->_3945.accum_statistics.tx; | 353 | accum_tx = &priv->_3945.accum_statistics.tx; |
332 | delta_tx = &priv->_3945.delta_statistics.tx; | 354 | delta_tx = &priv->_3945.delta_statistics.tx; |
333 | max_tx = &priv->_3945.max_delta.tx; | 355 | max_tx = &priv->_3945.max_delta.tx; |
334 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 356 | pos += iwl3945_statistics_flag(priv, buf, bufsz); |
335 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 357 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
336 | "acumulative delta max\n", | 358 | "acumulative delta max\n", |
337 | "Statistics_Tx:"); | 359 | "Statistics_Tx:"); |
@@ -438,7 +460,7 @@ ssize_t iwl3945_ucode_general_stats_read(struct file *file, | |||
438 | accum_div = &priv->_3945.accum_statistics.general.div; | 460 | accum_div = &priv->_3945.accum_statistics.general.div; |
439 | delta_div = &priv->_3945.delta_statistics.general.div; | 461 | delta_div = &priv->_3945.delta_statistics.general.div; |
440 | max_div = &priv->_3945.max_delta.general.div; | 462 | max_div = &priv->_3945.max_delta.general.div; |
441 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 463 | pos += iwl3945_statistics_flag(priv, buf, bufsz); |
442 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 464 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
443 | "acumulative delta max\n", | 465 | "acumulative delta max\n", |
444 | "Statistics_General:"); | 466 | "Statistics_General:"); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 068f7f8435c5..0fa1d51c9c5a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
@@ -279,8 +279,8 @@ static void iwl3945_tx_queue_reclaim(struct iwl_priv *priv, | |||
279 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { | 279 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
280 | 280 | ||
281 | tx_info = &txq->txb[txq->q.read_ptr]; | 281 | tx_info = &txq->txb[txq->q.read_ptr]; |
282 | ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]); | 282 | ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb); |
283 | tx_info->skb[0] = NULL; | 283 | tx_info->skb = NULL; |
284 | priv->cfg->ops->lib->txq_free_tfd(priv, txq); | 284 | priv->cfg->ops->lib->txq_free_tfd(priv, txq); |
285 | } | 285 | } |
286 | 286 | ||
@@ -315,7 +315,7 @@ static void iwl3945_rx_reply_tx(struct iwl_priv *priv, | |||
315 | return; | 315 | return; |
316 | } | 316 | } |
317 | 317 | ||
318 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]); | 318 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb); |
319 | ieee80211_tx_info_clear_status(info); | 319 | ieee80211_tx_info_clear_status(info); |
320 | 320 | ||
321 | /* Fill the MRR chain with some info about on-chip retransmissions */ | 321 | /* Fill the MRR chain with some info about on-chip retransmissions */ |
@@ -352,7 +352,7 @@ static void iwl3945_rx_reply_tx(struct iwl_priv *priv, | |||
352 | * RX handler implementations | 352 | * RX handler implementations |
353 | * | 353 | * |
354 | *****************************************************************************/ | 354 | *****************************************************************************/ |
355 | #ifdef CONFIG_IWLWIFI_DEBUG | 355 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
356 | /* | 356 | /* |
357 | * based on the assumption of all statistics counter are in DWORD | 357 | * based on the assumption of all statistics counter are in DWORD |
358 | * FIXME: This function is for debugging, do not deal with | 358 | * FIXME: This function is for debugging, do not deal with |
@@ -460,7 +460,7 @@ void iwl3945_hw_rx_statistics(struct iwl_priv *priv, | |||
460 | IWL_DEBUG_RX(priv, "Statistics notification received (%d vs %d).\n", | 460 | IWL_DEBUG_RX(priv, "Statistics notification received (%d vs %d).\n", |
461 | (int)sizeof(struct iwl3945_notif_statistics), | 461 | (int)sizeof(struct iwl3945_notif_statistics), |
462 | le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK); | 462 | le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK); |
463 | #ifdef CONFIG_IWLWIFI_DEBUG | 463 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
464 | iwl3945_accumulative_statistics(priv, (__le32 *)&pkt->u.raw); | 464 | iwl3945_accumulative_statistics(priv, (__le32 *)&pkt->u.raw); |
465 | #endif | 465 | #endif |
466 | iwl_recover_from_statistics(priv, pkt); | 466 | iwl_recover_from_statistics(priv, pkt); |
@@ -475,7 +475,7 @@ void iwl3945_reply_statistics(struct iwl_priv *priv, | |||
475 | __le32 *flag = (__le32 *)&pkt->u.raw; | 475 | __le32 *flag = (__le32 *)&pkt->u.raw; |
476 | 476 | ||
477 | if (le32_to_cpu(*flag) & UCODE_STATISTICS_CLEAR_MSK) { | 477 | if (le32_to_cpu(*flag) & UCODE_STATISTICS_CLEAR_MSK) { |
478 | #ifdef CONFIG_IWLWIFI_DEBUG | 478 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
479 | memset(&priv->_3945.accum_statistics, 0, | 479 | memset(&priv->_3945.accum_statistics, 0, |
480 | sizeof(struct iwl3945_notif_statistics)); | 480 | sizeof(struct iwl3945_notif_statistics)); |
481 | memset(&priv->_3945.delta_statistics, 0, | 481 | memset(&priv->_3945.delta_statistics, 0, |
@@ -494,158 +494,6 @@ void iwl3945_reply_statistics(struct iwl_priv *priv, | |||
494 | * Misc. internal state and helper functions | 494 | * Misc. internal state and helper functions |
495 | * | 495 | * |
496 | ******************************************************************************/ | 496 | ******************************************************************************/ |
497 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
498 | |||
499 | /** | ||
500 | * iwl3945_report_frame - dump frame to syslog during debug sessions | ||
501 | * | ||
502 | * You may hack this function to show different aspects of received frames, | ||
503 | * including selective frame dumps. | ||
504 | * group100 parameter selects whether to show 1 out of 100 good frames. | ||
505 | */ | ||
506 | static void _iwl3945_dbg_report_frame(struct iwl_priv *priv, | ||
507 | struct iwl_rx_packet *pkt, | ||
508 | struct ieee80211_hdr *header, int group100) | ||
509 | { | ||
510 | u32 to_us; | ||
511 | u32 print_summary = 0; | ||
512 | u32 print_dump = 0; /* set to 1 to dump all frames' contents */ | ||
513 | u32 hundred = 0; | ||
514 | u32 dataframe = 0; | ||
515 | __le16 fc; | ||
516 | u16 seq_ctl; | ||
517 | u16 channel; | ||
518 | u16 phy_flags; | ||
519 | u16 length; | ||
520 | u16 status; | ||
521 | u16 bcn_tmr; | ||
522 | u32 tsf_low; | ||
523 | u64 tsf; | ||
524 | u8 rssi; | ||
525 | u8 agc; | ||
526 | u16 sig_avg; | ||
527 | u16 noise_diff; | ||
528 | struct iwl3945_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt); | ||
529 | struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt); | ||
530 | struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt); | ||
531 | u8 *data = IWL_RX_DATA(pkt); | ||
532 | |||
533 | /* MAC header */ | ||
534 | fc = header->frame_control; | ||
535 | seq_ctl = le16_to_cpu(header->seq_ctrl); | ||
536 | |||
537 | /* metadata */ | ||
538 | channel = le16_to_cpu(rx_hdr->channel); | ||
539 | phy_flags = le16_to_cpu(rx_hdr->phy_flags); | ||
540 | length = le16_to_cpu(rx_hdr->len); | ||
541 | |||
542 | /* end-of-frame status and timestamp */ | ||
543 | status = le32_to_cpu(rx_end->status); | ||
544 | bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp); | ||
545 | tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff; | ||
546 | tsf = le64_to_cpu(rx_end->timestamp); | ||
547 | |||
548 | /* signal statistics */ | ||
549 | rssi = rx_stats->rssi; | ||
550 | agc = rx_stats->agc; | ||
551 | sig_avg = le16_to_cpu(rx_stats->sig_avg); | ||
552 | noise_diff = le16_to_cpu(rx_stats->noise_diff); | ||
553 | |||
554 | to_us = !compare_ether_addr(header->addr1, priv->mac_addr); | ||
555 | |||
556 | /* if data frame is to us and all is good, | ||
557 | * (optionally) print summary for only 1 out of every 100 */ | ||
558 | if (to_us && (fc & ~cpu_to_le16(IEEE80211_FCTL_PROTECTED)) == | ||
559 | cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) { | ||
560 | dataframe = 1; | ||
561 | if (!group100) | ||
562 | print_summary = 1; /* print each frame */ | ||
563 | else if (priv->framecnt_to_us < 100) { | ||
564 | priv->framecnt_to_us++; | ||
565 | print_summary = 0; | ||
566 | } else { | ||
567 | priv->framecnt_to_us = 0; | ||
568 | print_summary = 1; | ||
569 | hundred = 1; | ||
570 | } | ||
571 | } else { | ||
572 | /* print summary for all other frames */ | ||
573 | print_summary = 1; | ||
574 | } | ||
575 | |||
576 | if (print_summary) { | ||
577 | char *title; | ||
578 | int rate; | ||
579 | |||
580 | if (hundred) | ||
581 | title = "100Frames"; | ||
582 | else if (ieee80211_has_retry(fc)) | ||
583 | title = "Retry"; | ||
584 | else if (ieee80211_is_assoc_resp(fc)) | ||
585 | title = "AscRsp"; | ||
586 | else if (ieee80211_is_reassoc_resp(fc)) | ||
587 | title = "RasRsp"; | ||
588 | else if (ieee80211_is_probe_resp(fc)) { | ||
589 | title = "PrbRsp"; | ||
590 | print_dump = 1; /* dump frame contents */ | ||
591 | } else if (ieee80211_is_beacon(fc)) { | ||
592 | title = "Beacon"; | ||
593 | print_dump = 1; /* dump frame contents */ | ||
594 | } else if (ieee80211_is_atim(fc)) | ||
595 | title = "ATIM"; | ||
596 | else if (ieee80211_is_auth(fc)) | ||
597 | title = "Auth"; | ||
598 | else if (ieee80211_is_deauth(fc)) | ||
599 | title = "DeAuth"; | ||
600 | else if (ieee80211_is_disassoc(fc)) | ||
601 | title = "DisAssoc"; | ||
602 | else | ||
603 | title = "Frame"; | ||
604 | |||
605 | rate = iwl3945_hwrate_to_plcp_idx(rx_hdr->rate); | ||
606 | if (rate == -1) | ||
607 | rate = 0; | ||
608 | else | ||
609 | rate = iwl3945_rates[rate].ieee / 2; | ||
610 | |||
611 | /* print frame summary. | ||
612 | * MAC addresses show just the last byte (for brevity), | ||
613 | * but you can hack it to show more, if you'd like to. */ | ||
614 | if (dataframe) | ||
615 | IWL_DEBUG_RX(priv, "%s: mhd=0x%04x, dst=0x%02x, " | ||
616 | "len=%u, rssi=%d, chnl=%d, rate=%d,\n", | ||
617 | title, le16_to_cpu(fc), header->addr1[5], | ||
618 | length, rssi, channel, rate); | ||
619 | else { | ||
620 | /* src/dst addresses assume managed mode */ | ||
621 | IWL_DEBUG_RX(priv, "%s: 0x%04x, dst=0x%02x, " | ||
622 | "src=0x%02x, rssi=%u, tim=%lu usec, " | ||
623 | "phy=0x%02x, chnl=%d\n", | ||
624 | title, le16_to_cpu(fc), header->addr1[5], | ||
625 | header->addr3[5], rssi, | ||
626 | tsf_low - priv->scan_start_tsf, | ||
627 | phy_flags, channel); | ||
628 | } | ||
629 | } | ||
630 | if (print_dump) | ||
631 | iwl_print_hex_dump(priv, IWL_DL_RX, data, length); | ||
632 | } | ||
633 | |||
634 | static void iwl3945_dbg_report_frame(struct iwl_priv *priv, | ||
635 | struct iwl_rx_packet *pkt, | ||
636 | struct ieee80211_hdr *header, int group100) | ||
637 | { | ||
638 | if (iwl_get_debug_level(priv) & IWL_DL_RX) | ||
639 | _iwl3945_dbg_report_frame(priv, pkt, header, group100); | ||
640 | } | ||
641 | |||
642 | #else | ||
643 | static inline void iwl3945_dbg_report_frame(struct iwl_priv *priv, | ||
644 | struct iwl_rx_packet *pkt, | ||
645 | struct ieee80211_hdr *header, int group100) | ||
646 | { | ||
647 | } | ||
648 | #endif | ||
649 | 497 | ||
650 | /* This is necessary only for a number of statistics, see the caller. */ | 498 | /* This is necessary only for a number of statistics, see the caller. */ |
651 | static int iwl3945_is_network_packet(struct iwl_priv *priv, | 499 | static int iwl3945_is_network_packet(struct iwl_priv *priv, |
@@ -777,8 +625,6 @@ static void iwl3945_rx_reply_rx(struct iwl_priv *priv, | |||
777 | rx_status.signal, rx_status.signal, | 625 | rx_status.signal, rx_status.signal, |
778 | rx_status.rate_idx); | 626 | rx_status.rate_idx); |
779 | 627 | ||
780 | /* Set "1" to report good data frames in groups of 100 */ | ||
781 | iwl3945_dbg_report_frame(priv, pkt, header, 1); | ||
782 | iwl_dbg_log_rx_data_frame(priv, le16_to_cpu(rx_hdr->len), header); | 628 | iwl_dbg_log_rx_data_frame(priv, le16_to_cpu(rx_hdr->len), header); |
783 | 629 | ||
784 | if (network_packet) { | 630 | if (network_packet) { |
@@ -850,25 +696,28 @@ void iwl3945_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq) | |||
850 | /* Unmap tx_cmd */ | 696 | /* Unmap tx_cmd */ |
851 | if (counter) | 697 | if (counter) |
852 | pci_unmap_single(dev, | 698 | pci_unmap_single(dev, |
853 | pci_unmap_addr(&txq->meta[index], mapping), | 699 | dma_unmap_addr(&txq->meta[index], mapping), |
854 | pci_unmap_len(&txq->meta[index], len), | 700 | dma_unmap_len(&txq->meta[index], len), |
855 | PCI_DMA_TODEVICE); | 701 | PCI_DMA_TODEVICE); |
856 | 702 | ||
857 | /* unmap chunks if any */ | 703 | /* unmap chunks if any */ |
858 | 704 | ||
859 | for (i = 1; i < counter; i++) { | 705 | for (i = 1; i < counter; i++) |
860 | pci_unmap_single(dev, le32_to_cpu(tfd->tbs[i].addr), | 706 | pci_unmap_single(dev, le32_to_cpu(tfd->tbs[i].addr), |
861 | le32_to_cpu(tfd->tbs[i].len), PCI_DMA_TODEVICE); | 707 | le32_to_cpu(tfd->tbs[i].len), PCI_DMA_TODEVICE); |
862 | if (txq->txb[txq->q.read_ptr].skb[0]) { | 708 | |
863 | struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[0]; | 709 | /* free SKB */ |
864 | if (txq->txb[txq->q.read_ptr].skb[0]) { | 710 | if (txq->txb) { |
865 | /* Can be called from interrupt context */ | 711 | struct sk_buff *skb; |
866 | dev_kfree_skb_any(skb); | 712 | |
867 | txq->txb[txq->q.read_ptr].skb[0] = NULL; | 713 | skb = txq->txb[txq->q.read_ptr].skb; |
868 | } | 714 | |
715 | /* can be called from irqs-disabled context */ | ||
716 | if (skb) { | ||
717 | dev_kfree_skb_any(skb); | ||
718 | txq->txb[txq->q.read_ptr].skb = NULL; | ||
869 | } | 719 | } |
870 | } | 720 | } |
871 | return ; | ||
872 | } | 721 | } |
873 | 722 | ||
874 | /** | 723 | /** |
@@ -947,8 +796,7 @@ void iwl3945_hw_build_tx_cmd_rate(struct iwl_priv *priv, | |||
947 | tx_cmd->supp_rates[1], tx_cmd->supp_rates[0]); | 796 | tx_cmd->supp_rates[1], tx_cmd->supp_rates[0]); |
948 | } | 797 | } |
949 | 798 | ||
950 | static u8 iwl3945_sync_sta(struct iwl_priv *priv, int sta_id, | 799 | static u8 iwl3945_sync_sta(struct iwl_priv *priv, int sta_id, u16 tx_rate) |
951 | u16 tx_rate, u8 flags) | ||
952 | { | 800 | { |
953 | unsigned long flags_spin; | 801 | unsigned long flags_spin; |
954 | struct iwl_station_entry *station; | 802 | struct iwl_station_entry *station; |
@@ -962,10 +810,9 @@ static u8 iwl3945_sync_sta(struct iwl_priv *priv, int sta_id, | |||
962 | station->sta.sta.modify_mask = STA_MODIFY_TX_RATE_MSK; | 810 | station->sta.sta.modify_mask = STA_MODIFY_TX_RATE_MSK; |
963 | station->sta.rate_n_flags = cpu_to_le16(tx_rate); | 811 | station->sta.rate_n_flags = cpu_to_le16(tx_rate); |
964 | station->sta.mode = STA_CONTROL_MODIFY_MSK; | 812 | station->sta.mode = STA_CONTROL_MODIFY_MSK; |
965 | 813 | iwl_send_add_sta(priv, &station->sta, CMD_ASYNC); | |
966 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 814 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
967 | 815 | ||
968 | iwl_send_add_sta(priv, &station->sta, flags); | ||
969 | IWL_DEBUG_RATE(priv, "SCALE sync station %d to rate %d\n", | 816 | IWL_DEBUG_RATE(priv, "SCALE sync station %d to rate %d\n", |
970 | sta_id, tx_rate); | 817 | sta_id, tx_rate); |
971 | return sta_id; | 818 | return sta_id; |
@@ -2473,8 +2320,7 @@ static int iwl3945_manage_ibss_station(struct iwl_priv *priv, | |||
2473 | 2320 | ||
2474 | iwl3945_sync_sta(priv, vif_priv->ibss_bssid_sta_id, | 2321 | iwl3945_sync_sta(priv, vif_priv->ibss_bssid_sta_id, |
2475 | (priv->band == IEEE80211_BAND_5GHZ) ? | 2322 | (priv->band == IEEE80211_BAND_5GHZ) ? |
2476 | IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP, | 2323 | IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP); |
2477 | CMD_ASYNC); | ||
2478 | iwl3945_rate_scale_init(priv->hw, vif_priv->ibss_bssid_sta_id); | 2324 | iwl3945_rate_scale_init(priv->hw, vif_priv->ibss_bssid_sta_id); |
2479 | 2325 | ||
2480 | return 0; | 2326 | return 0; |
@@ -2590,6 +2436,7 @@ int iwl3945_hw_set_hw_params(struct iwl_priv *priv) | |||
2590 | 2436 | ||
2591 | priv->hw_params.rx_wrt_ptr_reg = FH39_RSCSR_CHNL0_WPTR; | 2437 | priv->hw_params.rx_wrt_ptr_reg = FH39_RSCSR_CHNL0_WPTR; |
2592 | priv->hw_params.max_beacon_itrvl = IWL39_MAX_UCODE_BEACON_INTERVAL; | 2438 | priv->hw_params.max_beacon_itrvl = IWL39_MAX_UCODE_BEACON_INTERVAL; |
2439 | priv->hw_params.beacon_time_tsf_bits = IWL3945_EXT_BEACON_TIME_POS; | ||
2593 | 2440 | ||
2594 | return 0; | 2441 | return 0; |
2595 | } | 2442 | } |
@@ -2852,6 +2699,7 @@ static struct iwl_lib_ops iwl3945_lib = { | |||
2852 | .isr = iwl_isr_legacy, | 2699 | .isr = iwl_isr_legacy, |
2853 | .config_ap = iwl3945_config_ap, | 2700 | .config_ap = iwl3945_config_ap, |
2854 | .manage_ibss_station = iwl3945_manage_ibss_station, | 2701 | .manage_ibss_station = iwl3945_manage_ibss_station, |
2702 | .recover_from_tx_stall = iwl_bg_monitor_recover, | ||
2855 | .check_plcp_health = iwl3945_good_plcp_health, | 2703 | .check_plcp_health = iwl3945_good_plcp_health, |
2856 | 2704 | ||
2857 | .debugfs_ops = { | 2705 | .debugfs_ops = { |
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index d3afddae8d9f..83e6a42ca2da 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -346,9 +346,19 @@ static void iwl4965_chain_noise_reset(struct iwl_priv *priv) | |||
346 | { | 346 | { |
347 | struct iwl_chain_noise_data *data = &(priv->chain_noise_data); | 347 | struct iwl_chain_noise_data *data = &(priv->chain_noise_data); |
348 | 348 | ||
349 | if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) { | 349 | if ((data->state == IWL_CHAIN_NOISE_ALIVE) && |
350 | iwl_is_associated(priv)) { | ||
350 | struct iwl_calib_diff_gain_cmd cmd; | 351 | struct iwl_calib_diff_gain_cmd cmd; |
351 | 352 | ||
353 | /* clear data for chain noise calibration algorithm */ | ||
354 | data->chain_noise_a = 0; | ||
355 | data->chain_noise_b = 0; | ||
356 | data->chain_noise_c = 0; | ||
357 | data->chain_signal_a = 0; | ||
358 | data->chain_signal_b = 0; | ||
359 | data->chain_signal_c = 0; | ||
360 | data->beacon_count = 0; | ||
361 | |||
352 | memset(&cmd, 0, sizeof(cmd)); | 362 | memset(&cmd, 0, sizeof(cmd)); |
353 | cmd.hdr.op_code = IWL_PHY_CALIBRATE_DIFF_GAIN_CMD; | 363 | cmd.hdr.op_code = IWL_PHY_CALIBRATE_DIFF_GAIN_CMD; |
354 | cmd.diff_gain_a = 0; | 364 | cmd.diff_gain_a = 0; |
@@ -419,13 +429,6 @@ static void iwl4965_gain_computation(struct iwl_priv *priv, | |||
419 | /* Mark so we run this algo only once! */ | 429 | /* Mark so we run this algo only once! */ |
420 | data->state = IWL_CHAIN_NOISE_CALIBRATED; | 430 | data->state = IWL_CHAIN_NOISE_CALIBRATED; |
421 | } | 431 | } |
422 | data->chain_noise_a = 0; | ||
423 | data->chain_noise_b = 0; | ||
424 | data->chain_noise_c = 0; | ||
425 | data->chain_signal_a = 0; | ||
426 | data->chain_signal_b = 0; | ||
427 | data->chain_signal_c = 0; | ||
428 | data->beacon_count = 0; | ||
429 | } | 432 | } |
430 | 433 | ||
431 | static void iwl4965_bg_txpower_work(struct work_struct *work) | 434 | static void iwl4965_bg_txpower_work(struct work_struct *work) |
@@ -669,6 +672,7 @@ static int iwl4965_hw_set_hw_params(struct iwl_priv *priv) | |||
669 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); | 672 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); |
670 | 673 | ||
671 | priv->hw_params.sens = &iwl4965_sensitivity; | 674 | priv->hw_params.sens = &iwl4965_sensitivity; |
675 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
672 | 676 | ||
673 | return 0; | 677 | return 0; |
674 | } | 678 | } |
@@ -1441,7 +1445,8 @@ static int iwl4965_send_rxon_assoc(struct iwl_priv *priv) | |||
1441 | return ret; | 1445 | return ret; |
1442 | } | 1446 | } |
1443 | 1447 | ||
1444 | static int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel) | 1448 | static int iwl4965_hw_channel_switch(struct iwl_priv *priv, |
1449 | struct ieee80211_channel_switch *ch_switch) | ||
1445 | { | 1450 | { |
1446 | int rc; | 1451 | int rc; |
1447 | u8 band = 0; | 1452 | u8 band = 0; |
@@ -1449,11 +1454,14 @@ static int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel) | |||
1449 | u8 ctrl_chan_high = 0; | 1454 | u8 ctrl_chan_high = 0; |
1450 | struct iwl4965_channel_switch_cmd cmd; | 1455 | struct iwl4965_channel_switch_cmd cmd; |
1451 | const struct iwl_channel_info *ch_info; | 1456 | const struct iwl_channel_info *ch_info; |
1452 | 1457 | u32 switch_time_in_usec, ucode_switch_time; | |
1458 | u16 ch; | ||
1459 | u32 tsf_low; | ||
1460 | u8 switch_count; | ||
1461 | u16 beacon_interval = le16_to_cpu(priv->rxon_timing.beacon_interval); | ||
1462 | struct ieee80211_vif *vif = priv->vif; | ||
1453 | band = priv->band == IEEE80211_BAND_2GHZ; | 1463 | band = priv->band == IEEE80211_BAND_2GHZ; |
1454 | 1464 | ||
1455 | ch_info = iwl_get_channel_info(priv, priv->band, channel); | ||
1456 | |||
1457 | is_ht40 = is_ht40_channel(priv->staging_rxon.flags); | 1465 | is_ht40 = is_ht40_channel(priv->staging_rxon.flags); |
1458 | 1466 | ||
1459 | if (is_ht40 && | 1467 | if (is_ht40 && |
@@ -1462,26 +1470,56 @@ static int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel) | |||
1462 | 1470 | ||
1463 | cmd.band = band; | 1471 | cmd.band = band; |
1464 | cmd.expect_beacon = 0; | 1472 | cmd.expect_beacon = 0; |
1465 | cmd.channel = cpu_to_le16(channel); | 1473 | ch = ieee80211_frequency_to_channel(ch_switch->channel->center_freq); |
1474 | cmd.channel = cpu_to_le16(ch); | ||
1466 | cmd.rxon_flags = priv->staging_rxon.flags; | 1475 | cmd.rxon_flags = priv->staging_rxon.flags; |
1467 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; | 1476 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; |
1468 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | 1477 | switch_count = ch_switch->count; |
1478 | tsf_low = ch_switch->timestamp & 0x0ffffffff; | ||
1479 | /* | ||
1480 | * calculate the ucode channel switch time | ||
1481 | * adding TSF as one of the factor for when to switch | ||
1482 | */ | ||
1483 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { | ||
1484 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / | ||
1485 | beacon_interval)) { | ||
1486 | switch_count -= (priv->ucode_beacon_time - | ||
1487 | tsf_low) / beacon_interval; | ||
1488 | } else | ||
1489 | switch_count = 0; | ||
1490 | } | ||
1491 | if (switch_count <= 1) | ||
1492 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | ||
1493 | else { | ||
1494 | switch_time_in_usec = | ||
1495 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; | ||
1496 | ucode_switch_time = iwl_usecs_to_beacons(priv, | ||
1497 | switch_time_in_usec, | ||
1498 | beacon_interval); | ||
1499 | cmd.switch_time = iwl_add_beacon_time(priv, | ||
1500 | priv->ucode_beacon_time, | ||
1501 | ucode_switch_time, | ||
1502 | beacon_interval); | ||
1503 | } | ||
1504 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", | ||
1505 | cmd.switch_time); | ||
1506 | ch_info = iwl_get_channel_info(priv, priv->band, ch); | ||
1469 | if (ch_info) | 1507 | if (ch_info) |
1470 | cmd.expect_beacon = is_channel_radar(ch_info); | 1508 | cmd.expect_beacon = is_channel_radar(ch_info); |
1471 | else { | 1509 | else { |
1472 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", | 1510 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
1473 | priv->active_rxon.channel, channel); | 1511 | priv->active_rxon.channel, ch); |
1474 | return -EFAULT; | 1512 | return -EFAULT; |
1475 | } | 1513 | } |
1476 | 1514 | ||
1477 | rc = iwl4965_fill_txpower_tbl(priv, band, channel, is_ht40, | 1515 | rc = iwl4965_fill_txpower_tbl(priv, band, ch, is_ht40, |
1478 | ctrl_chan_high, &cmd.tx_power); | 1516 | ctrl_chan_high, &cmd.tx_power); |
1479 | if (rc) { | 1517 | if (rc) { |
1480 | IWL_DEBUG_11H(priv, "error:%d fill txpower_tbl\n", rc); | 1518 | IWL_DEBUG_11H(priv, "error:%d fill txpower_tbl\n", rc); |
1481 | return rc; | 1519 | return rc; |
1482 | } | 1520 | } |
1483 | 1521 | ||
1484 | priv->switch_rxon.channel = cpu_to_le16(channel); | 1522 | priv->switch_rxon.channel = cmd.channel; |
1485 | priv->switch_rxon.switch_in_progress = true; | 1523 | priv->switch_rxon.switch_in_progress = true; |
1486 | 1524 | ||
1487 | return iwl_send_cmd_pdu(priv, REPLY_CHANNEL_SWITCH, sizeof(cmd), &cmd); | 1525 | return iwl_send_cmd_pdu(priv, REPLY_CHANNEL_SWITCH, sizeof(cmd), &cmd); |
@@ -1870,7 +1908,7 @@ static int iwl4965_tx_status_reply_tx(struct iwl_priv *priv, | |||
1870 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n", | 1908 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n", |
1871 | agg->frame_count, agg->start_idx, idx); | 1909 | agg->frame_count, agg->start_idx, idx); |
1872 | 1910 | ||
1873 | info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb[0]); | 1911 | info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb); |
1874 | info->status.rates[0].count = tx_resp->failure_frame + 1; | 1912 | info->status.rates[0].count = tx_resp->failure_frame + 1; |
1875 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; | 1913 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; |
1876 | info->flags |= iwl_tx_status_to_mac80211(status); | 1914 | info->flags |= iwl_tx_status_to_mac80211(status); |
@@ -2026,6 +2064,7 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv, | |||
2026 | int sta_id; | 2064 | int sta_id; |
2027 | int freed; | 2065 | int freed; |
2028 | u8 *qc = NULL; | 2066 | u8 *qc = NULL; |
2067 | unsigned long flags; | ||
2029 | 2068 | ||
2030 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { | 2069 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { |
2031 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " | 2070 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " |
@@ -2035,7 +2074,7 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv, | |||
2035 | return; | 2074 | return; |
2036 | } | 2075 | } |
2037 | 2076 | ||
2038 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]); | 2077 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb); |
2039 | memset(&info->status, 0, sizeof(info->status)); | 2078 | memset(&info->status, 0, sizeof(info->status)); |
2040 | 2079 | ||
2041 | hdr = iwl_tx_queue_get_hdr(priv, txq_id, index); | 2080 | hdr = iwl_tx_queue_get_hdr(priv, txq_id, index); |
@@ -2050,10 +2089,10 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv, | |||
2050 | return; | 2089 | return; |
2051 | } | 2090 | } |
2052 | 2091 | ||
2092 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
2053 | if (txq->sched_retry) { | 2093 | if (txq->sched_retry) { |
2054 | const u32 scd_ssn = iwl4965_get_scd_ssn(tx_resp); | 2094 | const u32 scd_ssn = iwl4965_get_scd_ssn(tx_resp); |
2055 | struct iwl_ht_agg *agg = NULL; | 2095 | struct iwl_ht_agg *agg = NULL; |
2056 | |||
2057 | WARN_ON(!qc); | 2096 | WARN_ON(!qc); |
2058 | 2097 | ||
2059 | agg = &priv->stations[sta_id].tid[tid].agg; | 2098 | agg = &priv->stations[sta_id].tid[tid].agg; |
@@ -2110,6 +2149,8 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv, | |||
2110 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); | 2149 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); |
2111 | 2150 | ||
2112 | iwl_check_abort_status(priv, tx_resp->frame_count, status); | 2151 | iwl_check_abort_status(priv, tx_resp->frame_count, status); |
2152 | |||
2153 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
2113 | } | 2154 | } |
2114 | 2155 | ||
2115 | static int iwl4965_calc_rssi(struct iwl_priv *priv, | 2156 | static int iwl4965_calc_rssi(struct iwl_priv *priv, |
@@ -2285,7 +2326,7 @@ struct iwl_cfg iwl4965_agn_cfg = { | |||
2285 | * Force use of chains B and C for scan RX on 5 GHz band | 2326 | * Force use of chains B and C for scan RX on 5 GHz band |
2286 | * because the device has off-channel reception on chain A. | 2327 | * because the device has off-channel reception on chain A. |
2287 | */ | 2328 | */ |
2288 | .scan_antennas[IEEE80211_BAND_5GHZ] = ANT_BC, | 2329 | .scan_rx_antennas[IEEE80211_BAND_5GHZ] = ANT_BC, |
2289 | }; | 2330 | }; |
2290 | 2331 | ||
2291 | /* Module firmware */ | 2332 | /* Module firmware */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c index a28af7eb67eb..32710a801cb0 100644 --- a/drivers/net/wireless/iwlwifi/iwl-5000.c +++ b/drivers/net/wireless/iwlwifi/iwl-5000.c | |||
@@ -208,6 +208,8 @@ static int iwl5000_hw_set_hw_params(struct iwl_priv *priv) | |||
208 | BIT(IWL_CALIB_TX_IQ_PERD) | | 208 | BIT(IWL_CALIB_TX_IQ_PERD) | |
209 | BIT(IWL_CALIB_BASE_BAND); | 209 | BIT(IWL_CALIB_BASE_BAND); |
210 | 210 | ||
211 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
212 | |||
211 | return 0; | 213 | return 0; |
212 | } | 214 | } |
213 | 215 | ||
@@ -252,6 +254,8 @@ static int iwl5150_hw_set_hw_params(struct iwl_priv *priv) | |||
252 | BIT(IWL_CALIB_TX_IQ) | | 254 | BIT(IWL_CALIB_TX_IQ) | |
253 | BIT(IWL_CALIB_BASE_BAND); | 255 | BIT(IWL_CALIB_BASE_BAND); |
254 | 256 | ||
257 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
258 | |||
255 | return 0; | 259 | return 0; |
256 | } | 260 | } |
257 | 261 | ||
@@ -267,33 +271,69 @@ static void iwl5150_temperature(struct iwl_priv *priv) | |||
267 | iwl_tt_handler(priv); | 271 | iwl_tt_handler(priv); |
268 | } | 272 | } |
269 | 273 | ||
270 | static int iwl5000_hw_channel_switch(struct iwl_priv *priv, u16 channel) | 274 | static int iwl5000_hw_channel_switch(struct iwl_priv *priv, |
275 | struct ieee80211_channel_switch *ch_switch) | ||
271 | { | 276 | { |
272 | struct iwl5000_channel_switch_cmd cmd; | 277 | struct iwl5000_channel_switch_cmd cmd; |
273 | const struct iwl_channel_info *ch_info; | 278 | const struct iwl_channel_info *ch_info; |
279 | u32 switch_time_in_usec, ucode_switch_time; | ||
280 | u16 ch; | ||
281 | u32 tsf_low; | ||
282 | u8 switch_count; | ||
283 | u16 beacon_interval = le16_to_cpu(priv->rxon_timing.beacon_interval); | ||
284 | struct ieee80211_vif *vif = priv->vif; | ||
274 | struct iwl_host_cmd hcmd = { | 285 | struct iwl_host_cmd hcmd = { |
275 | .id = REPLY_CHANNEL_SWITCH, | 286 | .id = REPLY_CHANNEL_SWITCH, |
276 | .len = sizeof(cmd), | 287 | .len = sizeof(cmd), |
277 | .flags = CMD_SIZE_HUGE, | 288 | .flags = CMD_SYNC, |
278 | .data = &cmd, | 289 | .data = &cmd, |
279 | }; | 290 | }; |
280 | 291 | ||
281 | IWL_DEBUG_11H(priv, "channel switch from %d to %d\n", | ||
282 | priv->active_rxon.channel, channel); | ||
283 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; | 292 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
284 | cmd.channel = cpu_to_le16(channel); | 293 | ch = ieee80211_frequency_to_channel(ch_switch->channel->center_freq); |
294 | IWL_DEBUG_11H(priv, "channel switch from %d to %d\n", | ||
295 | priv->active_rxon.channel, ch); | ||
296 | cmd.channel = cpu_to_le16(ch); | ||
285 | cmd.rxon_flags = priv->staging_rxon.flags; | 297 | cmd.rxon_flags = priv->staging_rxon.flags; |
286 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; | 298 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; |
287 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | 299 | switch_count = ch_switch->count; |
288 | ch_info = iwl_get_channel_info(priv, priv->band, channel); | 300 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
301 | /* | ||
302 | * calculate the ucode channel switch time | ||
303 | * adding TSF as one of the factor for when to switch | ||
304 | */ | ||
305 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { | ||
306 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / | ||
307 | beacon_interval)) { | ||
308 | switch_count -= (priv->ucode_beacon_time - | ||
309 | tsf_low) / beacon_interval; | ||
310 | } else | ||
311 | switch_count = 0; | ||
312 | } | ||
313 | if (switch_count <= 1) | ||
314 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | ||
315 | else { | ||
316 | switch_time_in_usec = | ||
317 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; | ||
318 | ucode_switch_time = iwl_usecs_to_beacons(priv, | ||
319 | switch_time_in_usec, | ||
320 | beacon_interval); | ||
321 | cmd.switch_time = iwl_add_beacon_time(priv, | ||
322 | priv->ucode_beacon_time, | ||
323 | ucode_switch_time, | ||
324 | beacon_interval); | ||
325 | } | ||
326 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", | ||
327 | cmd.switch_time); | ||
328 | ch_info = iwl_get_channel_info(priv, priv->band, ch); | ||
289 | if (ch_info) | 329 | if (ch_info) |
290 | cmd.expect_beacon = is_channel_radar(ch_info); | 330 | cmd.expect_beacon = is_channel_radar(ch_info); |
291 | else { | 331 | else { |
292 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", | 332 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
293 | priv->active_rxon.channel, channel); | 333 | priv->active_rxon.channel, ch); |
294 | return -EFAULT; | 334 | return -EFAULT; |
295 | } | 335 | } |
296 | priv->switch_rxon.channel = cpu_to_le16(channel); | 336 | priv->switch_rxon.channel = cmd.channel; |
297 | priv->switch_rxon.switch_in_progress = true; | 337 | priv->switch_rxon.switch_in_progress = true; |
298 | 338 | ||
299 | return iwl_send_cmd_sync(priv, &hcmd); | 339 | return iwl_send_cmd_sync(priv, &hcmd); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index 9fbf54cd3e1a..afdeec56b13f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
@@ -71,6 +71,10 @@ | |||
71 | #define _IWL6000G2A_MODULE_FIRMWARE(api) IWL6000G2A_FW_PRE #api ".ucode" | 71 | #define _IWL6000G2A_MODULE_FIRMWARE(api) IWL6000G2A_FW_PRE #api ".ucode" |
72 | #define IWL6000G2A_MODULE_FIRMWARE(api) _IWL6000G2A_MODULE_FIRMWARE(api) | 72 | #define IWL6000G2A_MODULE_FIRMWARE(api) _IWL6000G2A_MODULE_FIRMWARE(api) |
73 | 73 | ||
74 | #define IWL6000G2B_FW_PRE "iwlwifi-6000g2b-" | ||
75 | #define _IWL6000G2B_MODULE_FIRMWARE(api) IWL6000G2B_FW_PRE #api ".ucode" | ||
76 | #define IWL6000G2B_MODULE_FIRMWARE(api) _IWL6000G2B_MODULE_FIRMWARE(api) | ||
77 | |||
74 | 78 | ||
75 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) | 79 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
76 | { | 80 | { |
@@ -183,6 +187,8 @@ static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) | |||
183 | BIT(IWL_CALIB_TX_IQ) | | 187 | BIT(IWL_CALIB_TX_IQ) | |
184 | BIT(IWL_CALIB_BASE_BAND); | 188 | BIT(IWL_CALIB_BASE_BAND); |
185 | 189 | ||
190 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
191 | |||
186 | return 0; | 192 | return 0; |
187 | } | 193 | } |
188 | 194 | ||
@@ -228,37 +234,74 @@ static int iwl6050_hw_set_hw_params(struct iwl_priv *priv) | |||
228 | BIT(IWL_CALIB_TX_IQ) | | 234 | BIT(IWL_CALIB_TX_IQ) | |
229 | BIT(IWL_CALIB_BASE_BAND); | 235 | BIT(IWL_CALIB_BASE_BAND); |
230 | 236 | ||
237 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; | ||
238 | |||
231 | return 0; | 239 | return 0; |
232 | } | 240 | } |
233 | 241 | ||
234 | static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel) | 242 | static int iwl6000_hw_channel_switch(struct iwl_priv *priv, |
243 | struct ieee80211_channel_switch *ch_switch) | ||
235 | { | 244 | { |
236 | struct iwl6000_channel_switch_cmd cmd; | 245 | struct iwl6000_channel_switch_cmd cmd; |
237 | const struct iwl_channel_info *ch_info; | 246 | const struct iwl_channel_info *ch_info; |
247 | u32 switch_time_in_usec, ucode_switch_time; | ||
248 | u16 ch; | ||
249 | u32 tsf_low; | ||
250 | u8 switch_count; | ||
251 | u16 beacon_interval = le16_to_cpu(priv->rxon_timing.beacon_interval); | ||
252 | struct ieee80211_vif *vif = priv->vif; | ||
238 | struct iwl_host_cmd hcmd = { | 253 | struct iwl_host_cmd hcmd = { |
239 | .id = REPLY_CHANNEL_SWITCH, | 254 | .id = REPLY_CHANNEL_SWITCH, |
240 | .len = sizeof(cmd), | 255 | .len = sizeof(cmd), |
241 | .flags = CMD_SIZE_HUGE, | 256 | .flags = CMD_SYNC, |
242 | .data = &cmd, | 257 | .data = &cmd, |
243 | }; | 258 | }; |
244 | 259 | ||
245 | IWL_DEBUG_11H(priv, "channel switch from %d to %d\n", | ||
246 | priv->active_rxon.channel, channel); | ||
247 | |||
248 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; | 260 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
249 | cmd.channel = cpu_to_le16(channel); | 261 | ch = ieee80211_frequency_to_channel(ch_switch->channel->center_freq); |
262 | IWL_DEBUG_11H(priv, "channel switch from %u to %u\n", | ||
263 | priv->active_rxon.channel, ch); | ||
264 | cmd.channel = cpu_to_le16(ch); | ||
250 | cmd.rxon_flags = priv->staging_rxon.flags; | 265 | cmd.rxon_flags = priv->staging_rxon.flags; |
251 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; | 266 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; |
252 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | 267 | switch_count = ch_switch->count; |
253 | ch_info = iwl_get_channel_info(priv, priv->band, channel); | 268 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
269 | /* | ||
270 | * calculate the ucode channel switch time | ||
271 | * adding TSF as one of the factor for when to switch | ||
272 | */ | ||
273 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { | ||
274 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / | ||
275 | beacon_interval)) { | ||
276 | switch_count -= (priv->ucode_beacon_time - | ||
277 | tsf_low) / beacon_interval; | ||
278 | } else | ||
279 | switch_count = 0; | ||
280 | } | ||
281 | if (switch_count <= 1) | ||
282 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); | ||
283 | else { | ||
284 | switch_time_in_usec = | ||
285 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; | ||
286 | ucode_switch_time = iwl_usecs_to_beacons(priv, | ||
287 | switch_time_in_usec, | ||
288 | beacon_interval); | ||
289 | cmd.switch_time = iwl_add_beacon_time(priv, | ||
290 | priv->ucode_beacon_time, | ||
291 | ucode_switch_time, | ||
292 | beacon_interval); | ||
293 | } | ||
294 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", | ||
295 | cmd.switch_time); | ||
296 | ch_info = iwl_get_channel_info(priv, priv->band, ch); | ||
254 | if (ch_info) | 297 | if (ch_info) |
255 | cmd.expect_beacon = is_channel_radar(ch_info); | 298 | cmd.expect_beacon = is_channel_radar(ch_info); |
256 | else { | 299 | else { |
257 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", | 300 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
258 | priv->active_rxon.channel, channel); | 301 | priv->active_rxon.channel, ch); |
259 | return -EFAULT; | 302 | return -EFAULT; |
260 | } | 303 | } |
261 | priv->switch_rxon.channel = cpu_to_le16(channel); | 304 | priv->switch_rxon.channel = cmd.channel; |
262 | priv->switch_rxon.switch_in_progress = true; | 305 | priv->switch_rxon.switch_in_progress = true; |
263 | 306 | ||
264 | return iwl_send_cmd_sync(priv, &hcmd); | 307 | return iwl_send_cmd_sync(priv, &hcmd); |
@@ -335,6 +378,25 @@ static const struct iwl_ops iwl6000_ops = { | |||
335 | .led = &iwlagn_led_ops, | 378 | .led = &iwlagn_led_ops, |
336 | }; | 379 | }; |
337 | 380 | ||
381 | static void do_not_send_bt_config(struct iwl_priv *priv) | ||
382 | { | ||
383 | } | ||
384 | |||
385 | static struct iwl_hcmd_ops iwl6000g2b_hcmd = { | ||
386 | .rxon_assoc = iwlagn_send_rxon_assoc, | ||
387 | .commit_rxon = iwl_commit_rxon, | ||
388 | .set_rxon_chain = iwl_set_rxon_chain, | ||
389 | .set_tx_ant = iwlagn_send_tx_ant_config, | ||
390 | .send_bt_config = do_not_send_bt_config, | ||
391 | }; | ||
392 | |||
393 | static const struct iwl_ops iwl6000g2b_ops = { | ||
394 | .lib = &iwl6000_lib, | ||
395 | .hcmd = &iwl6000g2b_hcmd, | ||
396 | .utils = &iwlagn_hcmd_utils, | ||
397 | .led = &iwlagn_led_ops, | ||
398 | }; | ||
399 | |||
338 | static struct iwl_lib_ops iwl6050_lib = { | 400 | static struct iwl_lib_ops iwl6050_lib = { |
339 | .set_hw_params = iwl6050_hw_set_hw_params, | 401 | .set_hw_params = iwl6050_hw_set_hw_params, |
340 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, | 402 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
@@ -445,6 +507,268 @@ struct iwl_cfg iwl6000g2a_2agn_cfg = { | |||
445 | .chain_noise_calib_by_driver = true, | 507 | .chain_noise_calib_by_driver = true, |
446 | }; | 508 | }; |
447 | 509 | ||
510 | struct iwl_cfg iwl6000g2a_2abg_cfg = { | ||
511 | .name = "6000 Series 2x2 ABG Gen2a", | ||
512 | .fw_name_pre = IWL6000G2A_FW_PRE, | ||
513 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
514 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
515 | .sku = IWL_SKU_A|IWL_SKU_G, | ||
516 | .ops = &iwl6000_ops, | ||
517 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
518 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
519 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
520 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
521 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
522 | .mod_params = &iwlagn_mod_params, | ||
523 | .valid_tx_ant = ANT_AB, | ||
524 | .valid_rx_ant = ANT_AB, | ||
525 | .pll_cfg_val = 0, | ||
526 | .set_l0s = true, | ||
527 | .use_bsm = false, | ||
528 | .pa_type = IWL_PA_SYSTEM, | ||
529 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
530 | .shadow_ram_support = true, | ||
531 | .led_compensation = 51, | ||
532 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
533 | .supports_idle = true, | ||
534 | .adv_thermal_throttle = true, | ||
535 | .support_ct_kill_exit = true, | ||
536 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
537 | .chain_noise_scale = 1000, | ||
538 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
539 | .max_event_log_size = 512, | ||
540 | }; | ||
541 | |||
542 | struct iwl_cfg iwl6000g2a_2bg_cfg = { | ||
543 | .name = "6000 Series 2x2 BG Gen2a", | ||
544 | .fw_name_pre = IWL6000G2A_FW_PRE, | ||
545 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
546 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
547 | .sku = IWL_SKU_G, | ||
548 | .ops = &iwl6000_ops, | ||
549 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
550 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
551 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
552 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
553 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
554 | .mod_params = &iwlagn_mod_params, | ||
555 | .valid_tx_ant = ANT_AB, | ||
556 | .valid_rx_ant = ANT_AB, | ||
557 | .pll_cfg_val = 0, | ||
558 | .set_l0s = true, | ||
559 | .use_bsm = false, | ||
560 | .pa_type = IWL_PA_SYSTEM, | ||
561 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
562 | .shadow_ram_support = true, | ||
563 | .led_compensation = 51, | ||
564 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
565 | .supports_idle = true, | ||
566 | .adv_thermal_throttle = true, | ||
567 | .support_ct_kill_exit = true, | ||
568 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
569 | .chain_noise_scale = 1000, | ||
570 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
571 | .max_event_log_size = 512, | ||
572 | }; | ||
573 | |||
574 | struct iwl_cfg iwl6000g2b_2agn_cfg = { | ||
575 | .name = "6000 Series 2x2 AGN Gen2b", | ||
576 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
577 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
578 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
579 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
580 | .ops = &iwl6000g2b_ops, | ||
581 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
582 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
583 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
584 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
585 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
586 | .mod_params = &iwlagn_mod_params, | ||
587 | .valid_tx_ant = ANT_AB, | ||
588 | .valid_rx_ant = ANT_AB, | ||
589 | .pll_cfg_val = 0, | ||
590 | .set_l0s = true, | ||
591 | .use_bsm = false, | ||
592 | .pa_type = IWL_PA_SYSTEM, | ||
593 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
594 | .shadow_ram_support = true, | ||
595 | .ht_greenfield_support = true, | ||
596 | .led_compensation = 51, | ||
597 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
598 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
599 | .supports_idle = true, | ||
600 | .adv_thermal_throttle = true, | ||
601 | .support_ct_kill_exit = true, | ||
602 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
603 | .chain_noise_scale = 1000, | ||
604 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
605 | .max_event_log_size = 512, | ||
606 | }; | ||
607 | |||
608 | struct iwl_cfg iwl6000g2b_2abg_cfg = { | ||
609 | .name = "6000 Series 2x2 ABG Gen2b", | ||
610 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
611 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
612 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
613 | .sku = IWL_SKU_A|IWL_SKU_G, | ||
614 | .ops = &iwl6000g2b_ops, | ||
615 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
616 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
617 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
618 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
619 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
620 | .mod_params = &iwlagn_mod_params, | ||
621 | .valid_tx_ant = ANT_AB, | ||
622 | .valid_rx_ant = ANT_AB, | ||
623 | .pll_cfg_val = 0, | ||
624 | .set_l0s = true, | ||
625 | .use_bsm = false, | ||
626 | .pa_type = IWL_PA_SYSTEM, | ||
627 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
628 | .shadow_ram_support = true, | ||
629 | .led_compensation = 51, | ||
630 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
631 | .supports_idle = true, | ||
632 | .adv_thermal_throttle = true, | ||
633 | .support_ct_kill_exit = true, | ||
634 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
635 | .chain_noise_scale = 1000, | ||
636 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
637 | .max_event_log_size = 512, | ||
638 | }; | ||
639 | |||
640 | struct iwl_cfg iwl6000g2b_2bgn_cfg = { | ||
641 | .name = "6000 Series 2x2 BGN Gen2b", | ||
642 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
643 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
644 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
645 | .sku = IWL_SKU_G|IWL_SKU_N, | ||
646 | .ops = &iwl6000g2b_ops, | ||
647 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
648 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
649 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
650 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
651 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
652 | .mod_params = &iwlagn_mod_params, | ||
653 | .valid_tx_ant = ANT_AB, | ||
654 | .valid_rx_ant = ANT_AB, | ||
655 | .pll_cfg_val = 0, | ||
656 | .set_l0s = true, | ||
657 | .use_bsm = false, | ||
658 | .pa_type = IWL_PA_SYSTEM, | ||
659 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
660 | .shadow_ram_support = true, | ||
661 | .ht_greenfield_support = true, | ||
662 | .led_compensation = 51, | ||
663 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
664 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
665 | .supports_idle = true, | ||
666 | .adv_thermal_throttle = true, | ||
667 | .support_ct_kill_exit = true, | ||
668 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
669 | .chain_noise_scale = 1000, | ||
670 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
671 | .max_event_log_size = 512, | ||
672 | }; | ||
673 | |||
674 | struct iwl_cfg iwl6000g2b_2bg_cfg = { | ||
675 | .name = "6000 Series 2x2 BG Gen2b", | ||
676 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
677 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
678 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
679 | .sku = IWL_SKU_G, | ||
680 | .ops = &iwl6000g2b_ops, | ||
681 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
682 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
683 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
684 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
685 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
686 | .mod_params = &iwlagn_mod_params, | ||
687 | .valid_tx_ant = ANT_AB, | ||
688 | .valid_rx_ant = ANT_AB, | ||
689 | .pll_cfg_val = 0, | ||
690 | .set_l0s = true, | ||
691 | .use_bsm = false, | ||
692 | .pa_type = IWL_PA_SYSTEM, | ||
693 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
694 | .shadow_ram_support = true, | ||
695 | .led_compensation = 51, | ||
696 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
697 | .supports_idle = true, | ||
698 | .adv_thermal_throttle = true, | ||
699 | .support_ct_kill_exit = true, | ||
700 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
701 | .chain_noise_scale = 1000, | ||
702 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
703 | .max_event_log_size = 512, | ||
704 | }; | ||
705 | |||
706 | struct iwl_cfg iwl6000g2b_bgn_cfg = { | ||
707 | .name = "6000 Series 1x2 BGN Gen2b", | ||
708 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
709 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
710 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
711 | .sku = IWL_SKU_G|IWL_SKU_N, | ||
712 | .ops = &iwl6000g2b_ops, | ||
713 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
714 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
715 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
716 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
717 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
718 | .mod_params = &iwlagn_mod_params, | ||
719 | .valid_tx_ant = ANT_A, | ||
720 | .valid_rx_ant = ANT_AB, | ||
721 | .pll_cfg_val = 0, | ||
722 | .set_l0s = true, | ||
723 | .use_bsm = false, | ||
724 | .pa_type = IWL_PA_SYSTEM, | ||
725 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
726 | .shadow_ram_support = true, | ||
727 | .ht_greenfield_support = true, | ||
728 | .led_compensation = 51, | ||
729 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
730 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
731 | .supports_idle = true, | ||
732 | .adv_thermal_throttle = true, | ||
733 | .support_ct_kill_exit = true, | ||
734 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
735 | .chain_noise_scale = 1000, | ||
736 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
737 | .max_event_log_size = 512, | ||
738 | }; | ||
739 | |||
740 | struct iwl_cfg iwl6000g2b_bg_cfg = { | ||
741 | .name = "6000 Series 1x2 BG Gen2b", | ||
742 | .fw_name_pre = IWL6000G2B_FW_PRE, | ||
743 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
744 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
745 | .sku = IWL_SKU_G, | ||
746 | .ops = &iwl6000g2b_ops, | ||
747 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
748 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
749 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
750 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
751 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
752 | .mod_params = &iwlagn_mod_params, | ||
753 | .valid_tx_ant = ANT_A, | ||
754 | .valid_rx_ant = ANT_AB, | ||
755 | .pll_cfg_val = 0, | ||
756 | .set_l0s = true, | ||
757 | .use_bsm = false, | ||
758 | .pa_type = IWL_PA_SYSTEM, | ||
759 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
760 | .shadow_ram_support = true, | ||
761 | .led_compensation = 51, | ||
762 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
763 | .supports_idle = true, | ||
764 | .adv_thermal_throttle = true, | ||
765 | .support_ct_kill_exit = true, | ||
766 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
767 | .chain_noise_scale = 1000, | ||
768 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
769 | .max_event_log_size = 512, | ||
770 | }; | ||
771 | |||
448 | /* | 772 | /* |
449 | * "i": Internal configuration, use internal Power Amplifier | 773 | * "i": Internal configuration, use internal Power Amplifier |
450 | */ | 774 | */ |
@@ -667,3 +991,4 @@ struct iwl_cfg iwl6000_3agn_cfg = { | |||
667 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); | 991 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
668 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); | 992 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
669 | MODULE_FIRMWARE(IWL6000G2A_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); | 993 | MODULE_FIRMWARE(IWL6000G2A_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |
994 | MODULE_FIRMWARE(IWL6000G2B_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-debugfs.c b/drivers/net/wireless/iwlwifi/iwl-agn-debugfs.c index 48c023b4ca36..3d08dc8af143 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-debugfs.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-debugfs.c | |||
@@ -28,6 +28,27 @@ | |||
28 | 28 | ||
29 | #include "iwl-agn-debugfs.h" | 29 | #include "iwl-agn-debugfs.h" |
30 | 30 | ||
31 | static int iwl_statistics_flag(struct iwl_priv *priv, char *buf, int bufsz) | ||
32 | { | ||
33 | int p = 0; | ||
34 | |||
35 | p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n", | ||
36 | le32_to_cpu(priv->statistics.flag)); | ||
37 | if (le32_to_cpu(priv->statistics.flag) & | ||
38 | UCODE_STATISTICS_CLEAR_MSK) | ||
39 | p += scnprintf(buf + p, bufsz - p, | ||
40 | "\tStatistics have been cleared\n"); | ||
41 | p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n", | ||
42 | (le32_to_cpu(priv->statistics.flag) & | ||
43 | UCODE_STATISTICS_FREQUENCY_MSK) | ||
44 | ? "2.4 GHz" : "5.2 GHz"); | ||
45 | p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n", | ||
46 | (le32_to_cpu(priv->statistics.flag) & | ||
47 | UCODE_STATISTICS_NARROW_BAND_MSK) | ||
48 | ? "enabled" : "disabled"); | ||
49 | return p; | ||
50 | } | ||
51 | |||
31 | ssize_t iwl_ucode_rx_stats_read(struct file *file, char __user *user_buf, | 52 | ssize_t iwl_ucode_rx_stats_read(struct file *file, char __user *user_buf, |
32 | size_t count, loff_t *ppos) | 53 | size_t count, loff_t *ppos) |
33 | { | 54 | { |
@@ -75,7 +96,7 @@ ssize_t iwl_ucode_rx_stats_read(struct file *file, char __user *user_buf, | |||
75 | max_general = &priv->max_delta.rx.general; | 96 | max_general = &priv->max_delta.rx.general; |
76 | max_ht = &priv->max_delta.rx.ofdm_ht; | 97 | max_ht = &priv->max_delta.rx.ofdm_ht; |
77 | 98 | ||
78 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 99 | pos += iwl_statistics_flag(priv, buf, bufsz); |
79 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 100 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
80 | "acumulative delta max\n", | 101 | "acumulative delta max\n", |
81 | "Statistics_Rx - OFDM:"); | 102 | "Statistics_Rx - OFDM:"); |
@@ -543,7 +564,7 @@ ssize_t iwl_ucode_tx_stats_read(struct file *file, | |||
543 | accum_tx = &priv->accum_statistics.tx; | 564 | accum_tx = &priv->accum_statistics.tx; |
544 | delta_tx = &priv->delta_statistics.tx; | 565 | delta_tx = &priv->delta_statistics.tx; |
545 | max_tx = &priv->max_delta.tx; | 566 | max_tx = &priv->max_delta.tx; |
546 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 567 | pos += iwl_statistics_flag(priv, buf, bufsz); |
547 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 568 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
548 | "acumulative delta max\n", | 569 | "acumulative delta max\n", |
549 | "Statistics_Tx:"); | 570 | "Statistics_Tx:"); |
@@ -768,7 +789,7 @@ ssize_t iwl_ucode_general_stats_read(struct file *file, char __user *user_buf, | |||
768 | accum_div = &priv->accum_statistics.general.div; | 789 | accum_div = &priv->accum_statistics.general.div; |
769 | delta_div = &priv->delta_statistics.general.div; | 790 | delta_div = &priv->delta_statistics.general.div; |
770 | max_div = &priv->max_delta.general.div; | 791 | max_div = &priv->max_delta.general.div; |
771 | pos += iwl_dbgfs_statistics_flag(priv, buf, bufsz); | 792 | pos += iwl_statistics_flag(priv, buf, bufsz); |
772 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" | 793 | pos += scnprintf(buf + pos, bufsz - pos, "%-32s current" |
773 | "acumulative delta max\n", | 794 | "acumulative delta max\n", |
774 | "Statistics_General:"); | 795 | "Statistics_General:"); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c b/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c index 44ef5d93befc..3f765ba15cb8 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c | |||
@@ -37,7 +37,7 @@ | |||
37 | #include "iwl-io.h" | 37 | #include "iwl-io.h" |
38 | #include "iwl-agn.h" | 38 | #include "iwl-agn.h" |
39 | 39 | ||
40 | static int iwlagn_send_rxon_assoc(struct iwl_priv *priv) | 40 | int iwlagn_send_rxon_assoc(struct iwl_priv *priv) |
41 | { | 41 | { |
42 | int ret = 0; | 42 | int ret = 0; |
43 | struct iwl5000_rxon_assoc_cmd rxon_assoc; | 43 | struct iwl5000_rxon_assoc_cmd rxon_assoc; |
@@ -84,7 +84,7 @@ static int iwlagn_send_rxon_assoc(struct iwl_priv *priv) | |||
84 | return ret; | 84 | return ret; |
85 | } | 85 | } |
86 | 86 | ||
87 | static int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant) | 87 | int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant) |
88 | { | 88 | { |
89 | struct iwl_tx_ant_config_cmd tx_ant_cmd = { | 89 | struct iwl_tx_ant_config_cmd tx_ant_cmd = { |
90 | .valid = cpu_to_le32(valid_tx_ant), | 90 | .valid = cpu_to_le32(valid_tx_ant), |
@@ -176,14 +176,6 @@ static void iwlagn_gain_computation(struct iwl_priv *priv, | |||
176 | data->radio_write = 1; | 176 | data->radio_write = 1; |
177 | data->state = IWL_CHAIN_NOISE_CALIBRATED; | 177 | data->state = IWL_CHAIN_NOISE_CALIBRATED; |
178 | } | 178 | } |
179 | |||
180 | data->chain_noise_a = 0; | ||
181 | data->chain_noise_b = 0; | ||
182 | data->chain_noise_c = 0; | ||
183 | data->chain_signal_a = 0; | ||
184 | data->chain_signal_b = 0; | ||
185 | data->chain_signal_c = 0; | ||
186 | data->beacon_count = 0; | ||
187 | } | 179 | } |
188 | 180 | ||
189 | static void iwlagn_chain_noise_reset(struct iwl_priv *priv) | 181 | static void iwlagn_chain_noise_reset(struct iwl_priv *priv) |
@@ -191,10 +183,20 @@ static void iwlagn_chain_noise_reset(struct iwl_priv *priv) | |||
191 | struct iwl_chain_noise_data *data = &priv->chain_noise_data; | 183 | struct iwl_chain_noise_data *data = &priv->chain_noise_data; |
192 | int ret; | 184 | int ret; |
193 | 185 | ||
194 | if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) { | 186 | if ((data->state == IWL_CHAIN_NOISE_ALIVE) && |
187 | iwl_is_associated(priv)) { | ||
195 | struct iwl_calib_chain_noise_reset_cmd cmd; | 188 | struct iwl_calib_chain_noise_reset_cmd cmd; |
196 | memset(&cmd, 0, sizeof(cmd)); | ||
197 | 189 | ||
190 | /* clear data for chain noise calibration algorithm */ | ||
191 | data->chain_noise_a = 0; | ||
192 | data->chain_noise_b = 0; | ||
193 | data->chain_noise_c = 0; | ||
194 | data->chain_signal_a = 0; | ||
195 | data->chain_signal_b = 0; | ||
196 | data->chain_signal_c = 0; | ||
197 | data->beacon_count = 0; | ||
198 | |||
199 | memset(&cmd, 0, sizeof(cmd)); | ||
198 | cmd.hdr.op_code = IWL_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD; | 200 | cmd.hdr.op_code = IWL_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD; |
199 | cmd.hdr.first_group = 0; | 201 | cmd.hdr.first_group = 0; |
200 | cmd.hdr.groups_num = 1; | 202 | cmd.hdr.groups_num = 1; |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c index 1004cfc403b1..548f51d92de0 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c | |||
@@ -77,7 +77,7 @@ static int iwlagn_tx_status_reply_tx(struct iwl_priv *priv, | |||
77 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n", | 77 | IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n", |
78 | agg->frame_count, agg->start_idx, idx); | 78 | agg->frame_count, agg->start_idx, idx); |
79 | 79 | ||
80 | info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb[0]); | 80 | info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb); |
81 | info->status.rates[0].count = tx_resp->failure_frame + 1; | 81 | info->status.rates[0].count = tx_resp->failure_frame + 1; |
82 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; | 82 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; |
83 | info->flags |= iwl_tx_status_to_mac80211(status); | 83 | info->flags |= iwl_tx_status_to_mac80211(status); |
@@ -93,6 +93,12 @@ static int iwlagn_tx_status_reply_tx(struct iwl_priv *priv, | |||
93 | } else { | 93 | } else { |
94 | /* Two or more frames were attempted; expect block-ack */ | 94 | /* Two or more frames were attempted; expect block-ack */ |
95 | u64 bitmap = 0; | 95 | u64 bitmap = 0; |
96 | |||
97 | /* | ||
98 | * Start is the lowest frame sent. It may not be the first | ||
99 | * frame in the batch; we figure this out dynamically during | ||
100 | * the following loop. | ||
101 | */ | ||
96 | int start = agg->start_idx; | 102 | int start = agg->start_idx; |
97 | 103 | ||
98 | /* Construct bit-map of pending frames within Tx window */ | 104 | /* Construct bit-map of pending frames within Tx window */ |
@@ -131,25 +137,58 @@ static int iwlagn_tx_status_reply_tx(struct iwl_priv *priv, | |||
131 | IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n", | 137 | IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n", |
132 | i, idx, SEQ_TO_SN(sc)); | 138 | i, idx, SEQ_TO_SN(sc)); |
133 | 139 | ||
140 | /* | ||
141 | * sh -> how many frames ahead of the starting frame is | ||
142 | * the current one? | ||
143 | * | ||
144 | * Note that all frames sent in the batch must be in a | ||
145 | * 64-frame window, so this number should be in [0,63]. | ||
146 | * If outside of this window, then we've found a new | ||
147 | * "first" frame in the batch and need to change start. | ||
148 | */ | ||
134 | sh = idx - start; | 149 | sh = idx - start; |
135 | if (sh > 64) { | 150 | |
136 | sh = (start - idx) + 0xff; | 151 | /* |
152 | * If >= 64, out of window. start must be at the front | ||
153 | * of the circular buffer, idx must be near the end of | ||
154 | * the buffer, and idx is the new "first" frame. Shift | ||
155 | * the indices around. | ||
156 | */ | ||
157 | if (sh >= 64) { | ||
158 | /* Shift bitmap by start - idx, wrapped */ | ||
159 | sh = 0x100 - idx + start; | ||
137 | bitmap = bitmap << sh; | 160 | bitmap = bitmap << sh; |
161 | /* Now idx is the new start so sh = 0 */ | ||
138 | sh = 0; | 162 | sh = 0; |
139 | start = idx; | 163 | start = idx; |
140 | } else if (sh < -64) | 164 | /* |
141 | sh = 0xff - (start - idx); | 165 | * If <= -64 then wraps the 256-pkt circular buffer |
142 | else if (sh < 0) { | 166 | * (e.g., start = 255 and idx = 0, sh should be 1) |
167 | */ | ||
168 | } else if (sh <= -64) { | ||
169 | sh = 0x100 - start + idx; | ||
170 | /* | ||
171 | * If < 0 but > -64, out of window. idx is before start | ||
172 | * but not wrapped. Shift the indices around. | ||
173 | */ | ||
174 | } else if (sh < 0) { | ||
175 | /* Shift by how far start is ahead of idx */ | ||
143 | sh = start - idx; | 176 | sh = start - idx; |
144 | start = idx; | ||
145 | bitmap = bitmap << sh; | 177 | bitmap = bitmap << sh; |
178 | /* Now idx is the new start so sh = 0 */ | ||
179 | start = idx; | ||
146 | sh = 0; | 180 | sh = 0; |
147 | } | 181 | } |
182 | /* Sequence number start + sh was sent in this batch */ | ||
148 | bitmap |= 1ULL << sh; | 183 | bitmap |= 1ULL << sh; |
149 | IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n", | 184 | IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n", |
150 | start, (unsigned long long)bitmap); | 185 | start, (unsigned long long)bitmap); |
151 | } | 186 | } |
152 | 187 | ||
188 | /* | ||
189 | * Store the bitmap and possibly the new start, if we wrapped | ||
190 | * the buffer above | ||
191 | */ | ||
153 | agg->bitmap = bitmap; | 192 | agg->bitmap = bitmap; |
154 | agg->start_idx = start; | 193 | agg->start_idx = start; |
155 | IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n", | 194 | IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n", |
@@ -184,6 +223,7 @@ static void iwlagn_rx_reply_tx(struct iwl_priv *priv, | |||
184 | int tid; | 223 | int tid; |
185 | int sta_id; | 224 | int sta_id; |
186 | int freed; | 225 | int freed; |
226 | unsigned long flags; | ||
187 | 227 | ||
188 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { | 228 | if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) { |
189 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " | 229 | IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d " |
@@ -193,15 +233,16 @@ static void iwlagn_rx_reply_tx(struct iwl_priv *priv, | |||
193 | return; | 233 | return; |
194 | } | 234 | } |
195 | 235 | ||
196 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]); | 236 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb); |
197 | memset(&info->status, 0, sizeof(info->status)); | 237 | memset(&info->status, 0, sizeof(info->status)); |
198 | 238 | ||
199 | tid = (tx_resp->ra_tid & IWL50_TX_RES_TID_MSK) >> IWL50_TX_RES_TID_POS; | 239 | tid = (tx_resp->ra_tid & IWL50_TX_RES_TID_MSK) >> IWL50_TX_RES_TID_POS; |
200 | sta_id = (tx_resp->ra_tid & IWL50_TX_RES_RA_MSK) >> IWL50_TX_RES_RA_POS; | 240 | sta_id = (tx_resp->ra_tid & IWL50_TX_RES_RA_MSK) >> IWL50_TX_RES_RA_POS; |
201 | 241 | ||
242 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
202 | if (txq->sched_retry) { | 243 | if (txq->sched_retry) { |
203 | const u32 scd_ssn = iwlagn_get_scd_ssn(tx_resp); | 244 | const u32 scd_ssn = iwlagn_get_scd_ssn(tx_resp); |
204 | struct iwl_ht_agg *agg = NULL; | 245 | struct iwl_ht_agg *agg; |
205 | 246 | ||
206 | agg = &priv->stations[sta_id].tid[tid].agg; | 247 | agg = &priv->stations[sta_id].tid[tid].agg; |
207 | 248 | ||
@@ -256,6 +297,7 @@ static void iwlagn_rx_reply_tx(struct iwl_priv *priv, | |||
256 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); | 297 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); |
257 | 298 | ||
258 | iwl_check_abort_status(priv, tx_resp->frame_count, status); | 299 | iwl_check_abort_status(priv, tx_resp->frame_count, status); |
300 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
259 | } | 301 | } |
260 | 302 | ||
261 | void iwlagn_rx_handler_setup(struct iwl_priv *priv) | 303 | void iwlagn_rx_handler_setup(struct iwl_priv *priv) |
@@ -755,132 +797,6 @@ static inline int iwlagn_calc_rssi(struct iwl_priv *priv, | |||
755 | return priv->cfg->ops->utils->calc_rssi(priv, rx_resp); | 797 | return priv->cfg->ops->utils->calc_rssi(priv, rx_resp); |
756 | } | 798 | } |
757 | 799 | ||
758 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
759 | /** | ||
760 | * iwlagn_dbg_report_frame - dump frame to syslog during debug sessions | ||
761 | * | ||
762 | * You may hack this function to show different aspects of received frames, | ||
763 | * including selective frame dumps. | ||
764 | * group100 parameter selects whether to show 1 out of 100 good data frames. | ||
765 | * All beacon and probe response frames are printed. | ||
766 | */ | ||
767 | static void iwlagn_dbg_report_frame(struct iwl_priv *priv, | ||
768 | struct iwl_rx_phy_res *phy_res, u16 length, | ||
769 | struct ieee80211_hdr *header, int group100) | ||
770 | { | ||
771 | u32 to_us; | ||
772 | u32 print_summary = 0; | ||
773 | u32 print_dump = 0; /* set to 1 to dump all frames' contents */ | ||
774 | u32 hundred = 0; | ||
775 | u32 dataframe = 0; | ||
776 | __le16 fc; | ||
777 | u16 seq_ctl; | ||
778 | u16 channel; | ||
779 | u16 phy_flags; | ||
780 | u32 rate_n_flags; | ||
781 | u32 tsf_low; | ||
782 | int rssi; | ||
783 | |||
784 | if (likely(!(iwl_get_debug_level(priv) & IWL_DL_RX))) | ||
785 | return; | ||
786 | |||
787 | /* MAC header */ | ||
788 | fc = header->frame_control; | ||
789 | seq_ctl = le16_to_cpu(header->seq_ctrl); | ||
790 | |||
791 | /* metadata */ | ||
792 | channel = le16_to_cpu(phy_res->channel); | ||
793 | phy_flags = le16_to_cpu(phy_res->phy_flags); | ||
794 | rate_n_flags = le32_to_cpu(phy_res->rate_n_flags); | ||
795 | |||
796 | /* signal statistics */ | ||
797 | rssi = iwlagn_calc_rssi(priv, phy_res); | ||
798 | tsf_low = le64_to_cpu(phy_res->timestamp) & 0x0ffffffff; | ||
799 | |||
800 | to_us = !compare_ether_addr(header->addr1, priv->mac_addr); | ||
801 | |||
802 | /* if data frame is to us and all is good, | ||
803 | * (optionally) print summary for only 1 out of every 100 */ | ||
804 | if (to_us && (fc & ~cpu_to_le16(IEEE80211_FCTL_PROTECTED)) == | ||
805 | cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) { | ||
806 | dataframe = 1; | ||
807 | if (!group100) | ||
808 | print_summary = 1; /* print each frame */ | ||
809 | else if (priv->framecnt_to_us < 100) { | ||
810 | priv->framecnt_to_us++; | ||
811 | print_summary = 0; | ||
812 | } else { | ||
813 | priv->framecnt_to_us = 0; | ||
814 | print_summary = 1; | ||
815 | hundred = 1; | ||
816 | } | ||
817 | } else { | ||
818 | /* print summary for all other frames */ | ||
819 | print_summary = 1; | ||
820 | } | ||
821 | |||
822 | if (print_summary) { | ||
823 | char *title; | ||
824 | int rate_idx; | ||
825 | u32 bitrate; | ||
826 | |||
827 | if (hundred) | ||
828 | title = "100Frames"; | ||
829 | else if (ieee80211_has_retry(fc)) | ||
830 | title = "Retry"; | ||
831 | else if (ieee80211_is_assoc_resp(fc)) | ||
832 | title = "AscRsp"; | ||
833 | else if (ieee80211_is_reassoc_resp(fc)) | ||
834 | title = "RasRsp"; | ||
835 | else if (ieee80211_is_probe_resp(fc)) { | ||
836 | title = "PrbRsp"; | ||
837 | print_dump = 1; /* dump frame contents */ | ||
838 | } else if (ieee80211_is_beacon(fc)) { | ||
839 | title = "Beacon"; | ||
840 | print_dump = 1; /* dump frame contents */ | ||
841 | } else if (ieee80211_is_atim(fc)) | ||
842 | title = "ATIM"; | ||
843 | else if (ieee80211_is_auth(fc)) | ||
844 | title = "Auth"; | ||
845 | else if (ieee80211_is_deauth(fc)) | ||
846 | title = "DeAuth"; | ||
847 | else if (ieee80211_is_disassoc(fc)) | ||
848 | title = "DisAssoc"; | ||
849 | else | ||
850 | title = "Frame"; | ||
851 | |||
852 | rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags); | ||
853 | if (unlikely((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT))) { | ||
854 | bitrate = 0; | ||
855 | WARN_ON_ONCE(1); | ||
856 | } else { | ||
857 | bitrate = iwl_rates[rate_idx].ieee / 2; | ||
858 | } | ||
859 | |||
860 | /* print frame summary. | ||
861 | * MAC addresses show just the last byte (for brevity), | ||
862 | * but you can hack it to show more, if you'd like to. */ | ||
863 | if (dataframe) | ||
864 | IWL_DEBUG_RX(priv, "%s: mhd=0x%04x, dst=0x%02x, " | ||
865 | "len=%u, rssi=%d, chnl=%d, rate=%u,\n", | ||
866 | title, le16_to_cpu(fc), header->addr1[5], | ||
867 | length, rssi, channel, bitrate); | ||
868 | else { | ||
869 | /* src/dst addresses assume managed mode */ | ||
870 | IWL_DEBUG_RX(priv, "%s: 0x%04x, dst=0x%02x, src=0x%02x, " | ||
871 | "len=%u, rssi=%d, tim=%lu usec, " | ||
872 | "phy=0x%02x, chnl=%d\n", | ||
873 | title, le16_to_cpu(fc), header->addr1[5], | ||
874 | header->addr3[5], length, rssi, | ||
875 | tsf_low - priv->scan_start_tsf, | ||
876 | phy_flags, channel); | ||
877 | } | ||
878 | } | ||
879 | if (print_dump) | ||
880 | iwl_print_hex_dump(priv, IWL_DL_RX, header, length); | ||
881 | } | ||
882 | #endif | ||
883 | |||
884 | static u32 iwlagn_translate_rx_status(struct iwl_priv *priv, u32 decrypt_in) | 800 | static u32 iwlagn_translate_rx_status(struct iwl_priv *priv, u32 decrypt_in) |
885 | { | 801 | { |
886 | u32 decrypt_out = 0; | 802 | u32 decrypt_out = 0; |
@@ -1060,11 +976,6 @@ void iwlagn_rx_reply_rx(struct iwl_priv *priv, | |||
1060 | /* Find max signal strength (dBm) among 3 antenna/receiver chains */ | 976 | /* Find max signal strength (dBm) among 3 antenna/receiver chains */ |
1061 | rx_status.signal = iwlagn_calc_rssi(priv, phy_res); | 977 | rx_status.signal = iwlagn_calc_rssi(priv, phy_res); |
1062 | 978 | ||
1063 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
1064 | /* Set "1" to report good data frames in groups of 100 */ | ||
1065 | if (unlikely(iwl_get_debug_level(priv) & IWL_DL_RX)) | ||
1066 | iwlagn_dbg_report_frame(priv, phy_res, len, header, 1); | ||
1067 | #endif | ||
1068 | iwl_dbg_log_rx_data_frame(priv, len, header); | 979 | iwl_dbg_log_rx_data_frame(priv, len, header); |
1069 | IWL_DEBUG_STATS_LIMIT(priv, "Rssi %d, TSF %llu\n", | 980 | IWL_DEBUG_STATS_LIMIT(priv, "Rssi %d, TSF %llu\n", |
1070 | rx_status.signal, (unsigned long long)rx_status.mactime); | 981 | rx_status.signal, (unsigned long long)rx_status.mactime); |
@@ -1119,10 +1030,9 @@ static int iwl_get_single_channel_for_scan(struct iwl_priv *priv, | |||
1119 | struct iwl_scan_channel *scan_ch) | 1030 | struct iwl_scan_channel *scan_ch) |
1120 | { | 1031 | { |
1121 | const struct ieee80211_supported_band *sband; | 1032 | const struct ieee80211_supported_band *sband; |
1122 | const struct iwl_channel_info *ch_info; | ||
1123 | u16 passive_dwell = 0; | 1033 | u16 passive_dwell = 0; |
1124 | u16 active_dwell = 0; | 1034 | u16 active_dwell = 0; |
1125 | int i, added = 0; | 1035 | int added = 0; |
1126 | u16 channel = 0; | 1036 | u16 channel = 0; |
1127 | 1037 | ||
1128 | sband = iwl_get_hw_mode(priv, band); | 1038 | sband = iwl_get_hw_mode(priv, band); |
@@ -1137,32 +1047,7 @@ static int iwl_get_single_channel_for_scan(struct iwl_priv *priv, | |||
1137 | if (passive_dwell <= active_dwell) | 1047 | if (passive_dwell <= active_dwell) |
1138 | passive_dwell = active_dwell + 1; | 1048 | passive_dwell = active_dwell + 1; |
1139 | 1049 | ||
1140 | /* only scan single channel, good enough to reset the RF */ | 1050 | channel = iwl_get_single_channel_number(priv, band); |
1141 | /* pick the first valid not in-use channel */ | ||
1142 | if (band == IEEE80211_BAND_5GHZ) { | ||
1143 | for (i = 14; i < priv->channel_count; i++) { | ||
1144 | if (priv->channel_info[i].channel != | ||
1145 | le16_to_cpu(priv->staging_rxon.channel)) { | ||
1146 | channel = priv->channel_info[i].channel; | ||
1147 | ch_info = iwl_get_channel_info(priv, | ||
1148 | band, channel); | ||
1149 | if (is_channel_valid(ch_info)) | ||
1150 | break; | ||
1151 | } | ||
1152 | } | ||
1153 | } else { | ||
1154 | for (i = 0; i < 14; i++) { | ||
1155 | if (priv->channel_info[i].channel != | ||
1156 | le16_to_cpu(priv->staging_rxon.channel)) { | ||
1157 | channel = | ||
1158 | priv->channel_info[i].channel; | ||
1159 | ch_info = iwl_get_channel_info(priv, | ||
1160 | band, channel); | ||
1161 | if (is_channel_valid(ch_info)) | ||
1162 | break; | ||
1163 | } | ||
1164 | } | ||
1165 | } | ||
1166 | if (channel) { | 1051 | if (channel) { |
1167 | scan_ch->channel = cpu_to_le16(channel); | 1052 | scan_ch->channel = cpu_to_le16(channel); |
1168 | scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE; | 1053 | scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE; |
@@ -1278,6 +1163,7 @@ void iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
1278 | bool is_active = false; | 1163 | bool is_active = false; |
1279 | int chan_mod; | 1164 | int chan_mod; |
1280 | u8 active_chains; | 1165 | u8 active_chains; |
1166 | u8 scan_tx_antennas = priv->hw_params.valid_tx_ant; | ||
1281 | 1167 | ||
1282 | conf = ieee80211_get_hw_conf(priv->hw); | 1168 | conf = ieee80211_get_hw_conf(priv->hw); |
1283 | 1169 | ||
@@ -1429,11 +1315,14 @@ void iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
1429 | 1315 | ||
1430 | band = priv->scan_band; | 1316 | band = priv->scan_band; |
1431 | 1317 | ||
1432 | if (priv->cfg->scan_antennas[band]) | 1318 | if (priv->cfg->scan_rx_antennas[band]) |
1433 | rx_ant = priv->cfg->scan_antennas[band]; | 1319 | rx_ant = priv->cfg->scan_rx_antennas[band]; |
1434 | 1320 | ||
1435 | priv->scan_tx_ant[band] = | 1321 | if (priv->cfg->scan_tx_antennas[band]) |
1436 | iwl_toggle_tx_ant(priv, priv->scan_tx_ant[band]); | 1322 | scan_tx_antennas = priv->cfg->scan_tx_antennas[band]; |
1323 | |||
1324 | priv->scan_tx_ant[band] = iwl_toggle_tx_ant(priv, priv->scan_tx_ant[band], | ||
1325 | scan_tx_antennas); | ||
1437 | rate_flags |= iwl_ant_idx_to_flags(priv->scan_tx_ant[band]); | 1326 | rate_flags |= iwl_ant_idx_to_flags(priv->scan_tx_ant[band]); |
1438 | scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags); | 1327 | scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags); |
1439 | 1328 | ||
@@ -1459,13 +1348,15 @@ void iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
1459 | if (!priv->is_internal_short_scan) { | 1348 | if (!priv->is_internal_short_scan) { |
1460 | cmd_len = iwl_fill_probe_req(priv, | 1349 | cmd_len = iwl_fill_probe_req(priv, |
1461 | (struct ieee80211_mgmt *)scan->data, | 1350 | (struct ieee80211_mgmt *)scan->data, |
1351 | vif->addr, | ||
1462 | priv->scan_request->ie, | 1352 | priv->scan_request->ie, |
1463 | priv->scan_request->ie_len, | 1353 | priv->scan_request->ie_len, |
1464 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); | 1354 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); |
1465 | } else { | 1355 | } else { |
1356 | /* use bcast addr, will not be transmitted but must be valid */ | ||
1466 | cmd_len = iwl_fill_probe_req(priv, | 1357 | cmd_len = iwl_fill_probe_req(priv, |
1467 | (struct ieee80211_mgmt *)scan->data, | 1358 | (struct ieee80211_mgmt *)scan->data, |
1468 | NULL, 0, | 1359 | iwl_bcast_addr, NULL, 0, |
1469 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); | 1360 | IWL_MAX_SCAN_SIZE - sizeof(*scan)); |
1470 | 1361 | ||
1471 | } | 1362 | } |
@@ -1528,3 +1419,18 @@ int iwlagn_manage_ibss_station(struct iwl_priv *priv, | |||
1528 | return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id, | 1419 | return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id, |
1529 | vif->bss_conf.bssid); | 1420 | vif->bss_conf.bssid); |
1530 | } | 1421 | } |
1422 | |||
1423 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, | ||
1424 | int sta_id, int tid, int freed) | ||
1425 | { | ||
1426 | WARN_ON(!spin_is_locked(&priv->sta_lock)); | ||
1427 | |||
1428 | if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed) | ||
1429 | priv->stations[sta_id].tid[tid].tfds_in_queue -= freed; | ||
1430 | else { | ||
1431 | IWL_DEBUG_TX(priv, "free more than tfds_in_queue (%u:%d)\n", | ||
1432 | priv->stations[sta_id].tid[tid].tfds_in_queue, | ||
1433 | freed); | ||
1434 | priv->stations[sta_id].tid[tid].tfds_in_queue = 0; | ||
1435 | } | ||
1436 | } | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c index cf4a95bae4ff..40933a5de027 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c | |||
@@ -313,8 +313,7 @@ static int rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv, | |||
313 | */ | 313 | */ |
314 | IWL_DEBUG_HT(priv, "Fail start Tx agg on tid: %d\n", | 314 | IWL_DEBUG_HT(priv, "Fail start Tx agg on tid: %d\n", |
315 | tid); | 315 | tid); |
316 | ieee80211_stop_tx_ba_session(sta, tid, | 316 | ieee80211_stop_tx_ba_session(sta, tid); |
317 | WLAN_BACK_INITIATOR); | ||
318 | } | 317 | } |
319 | } else | 318 | } else |
320 | IWL_ERR(priv, "Fail finding valid aggregation tid: %d\n", tid); | 319 | IWL_ERR(priv, "Fail finding valid aggregation tid: %d\n", tid); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-tx.c b/drivers/net/wireless/iwlwifi/iwl-agn-tx.c index c402bfc83f36..10a0acdb9dd4 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-tx.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-tx.c | |||
@@ -469,7 +469,8 @@ static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv, | |||
469 | } | 469 | } |
470 | 470 | ||
471 | /* Set up antennas */ | 471 | /* Set up antennas */ |
472 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant); | 472 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
473 | priv->hw_params.valid_tx_ant); | ||
473 | rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant); | 474 | rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
474 | 475 | ||
475 | /* Set the rate in the TX cmd */ | 476 | /* Set the rate in the TX cmd */ |
@@ -567,10 +568,7 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
567 | hdr_len = ieee80211_hdrlen(fc); | 568 | hdr_len = ieee80211_hdrlen(fc); |
568 | 569 | ||
569 | /* Find index into station table for destination station */ | 570 | /* Find index into station table for destination station */ |
570 | if (!info->control.sta) | 571 | sta_id = iwl_sta_id_or_broadcast(priv, info->control.sta); |
571 | sta_id = priv->hw_params.bcast_sta_id; | ||
572 | else | ||
573 | sta_id = iwl_sta_id(info->control.sta); | ||
574 | if (sta_id == IWL_INVALID_STATION) { | 572 | if (sta_id == IWL_INVALID_STATION) { |
575 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", | 573 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", |
576 | hdr->addr1); | 574 | hdr->addr1); |
@@ -598,11 +596,17 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
598 | } | 596 | } |
599 | 597 | ||
600 | txq_id = get_queue_from_ac(skb_get_queue_mapping(skb)); | 598 | txq_id = get_queue_from_ac(skb_get_queue_mapping(skb)); |
599 | |||
600 | /* irqs already disabled/saved above when locking priv->lock */ | ||
601 | spin_lock(&priv->sta_lock); | ||
602 | |||
601 | if (ieee80211_is_data_qos(fc)) { | 603 | if (ieee80211_is_data_qos(fc)) { |
602 | qc = ieee80211_get_qos_ctl(hdr); | 604 | qc = ieee80211_get_qos_ctl(hdr); |
603 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; | 605 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
604 | if (unlikely(tid >= MAX_TID_COUNT)) | 606 | if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) { |
607 | spin_unlock(&priv->sta_lock); | ||
605 | goto drop_unlock; | 608 | goto drop_unlock; |
609 | } | ||
606 | seq_number = priv->stations[sta_id].tid[tid].seq_number; | 610 | seq_number = priv->stations[sta_id].tid[tid].seq_number; |
607 | seq_number &= IEEE80211_SCTL_SEQ; | 611 | seq_number &= IEEE80211_SCTL_SEQ; |
608 | hdr->seq_ctrl = hdr->seq_ctrl & | 612 | hdr->seq_ctrl = hdr->seq_ctrl & |
@@ -620,15 +624,22 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
620 | swq_id = txq->swq_id; | 624 | swq_id = txq->swq_id; |
621 | q = &txq->q; | 625 | q = &txq->q; |
622 | 626 | ||
623 | if (unlikely(iwl_queue_space(q) < q->high_mark)) | 627 | if (unlikely(iwl_queue_space(q) < q->high_mark)) { |
628 | spin_unlock(&priv->sta_lock); | ||
624 | goto drop_unlock; | 629 | goto drop_unlock; |
630 | } | ||
625 | 631 | ||
626 | if (ieee80211_is_data_qos(fc)) | 632 | if (ieee80211_is_data_qos(fc)) { |
627 | priv->stations[sta_id].tid[tid].tfds_in_queue++; | 633 | priv->stations[sta_id].tid[tid].tfds_in_queue++; |
634 | if (!ieee80211_has_morefrags(fc)) | ||
635 | priv->stations[sta_id].tid[tid].seq_number = seq_number; | ||
636 | } | ||
637 | |||
638 | spin_unlock(&priv->sta_lock); | ||
628 | 639 | ||
629 | /* Set up driver data for this TFD */ | 640 | /* Set up driver data for this TFD */ |
630 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info)); | 641 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info)); |
631 | txq->txb[q->write_ptr].skb[0] = skb; | 642 | txq->txb[q->write_ptr].skb = skb; |
632 | 643 | ||
633 | /* Set up first empty entry in queue's array of Tx/cmd buffers */ | 644 | /* Set up first empty entry in queue's array of Tx/cmd buffers */ |
634 | out_cmd = txq->cmd[q->write_ptr]; | 645 | out_cmd = txq->cmd[q->write_ptr]; |
@@ -694,8 +705,8 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
694 | txcmd_phys = pci_map_single(priv->pci_dev, | 705 | txcmd_phys = pci_map_single(priv->pci_dev, |
695 | &out_cmd->hdr, len, | 706 | &out_cmd->hdr, len, |
696 | PCI_DMA_BIDIRECTIONAL); | 707 | PCI_DMA_BIDIRECTIONAL); |
697 | pci_unmap_addr_set(out_meta, mapping, txcmd_phys); | 708 | dma_unmap_addr_set(out_meta, mapping, txcmd_phys); |
698 | pci_unmap_len_set(out_meta, len, len); | 709 | dma_unmap_len_set(out_meta, len, len); |
699 | /* Add buffer containing Tx command and MAC(!) header to TFD's | 710 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
700 | * first entry */ | 711 | * first entry */ |
701 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, | 712 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, |
@@ -703,8 +714,6 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
703 | 714 | ||
704 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | 715 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
705 | txq->need_update = 1; | 716 | txq->need_update = 1; |
706 | if (qc) | ||
707 | priv->stations[sta_id].tid[tid].seq_number = seq_number; | ||
708 | } else { | 717 | } else { |
709 | wait_write_ptr = 1; | 718 | wait_write_ptr = 1; |
710 | txq->need_update = 0; | 719 | txq->need_update = 0; |
@@ -1009,6 +1018,8 @@ int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
1009 | if (ret) | 1018 | if (ret) |
1010 | return ret; | 1019 | return ret; |
1011 | 1020 | ||
1021 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
1022 | tid_data = &priv->stations[sta_id].tid[tid]; | ||
1012 | if (tid_data->tfds_in_queue == 0) { | 1023 | if (tid_data->tfds_in_queue == 0) { |
1013 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); | 1024 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
1014 | tid_data->agg.state = IWL_AGG_ON; | 1025 | tid_data->agg.state = IWL_AGG_ON; |
@@ -1018,6 +1029,7 @@ int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
1018 | tid_data->tfds_in_queue); | 1029 | tid_data->tfds_in_queue); |
1019 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; | 1030 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; |
1020 | } | 1031 | } |
1032 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1021 | return ret; | 1033 | return ret; |
1022 | } | 1034 | } |
1023 | 1035 | ||
@@ -1040,11 +1052,14 @@ int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
1040 | return -ENXIO; | 1052 | return -ENXIO; |
1041 | } | 1053 | } |
1042 | 1054 | ||
1055 | spin_lock_irqsave(&priv->sta_lock, flags); | ||
1056 | |||
1043 | if (priv->stations[sta_id].tid[tid].agg.state == | 1057 | if (priv->stations[sta_id].tid[tid].agg.state == |
1044 | IWL_EMPTYING_HW_QUEUE_ADDBA) { | 1058 | IWL_EMPTYING_HW_QUEUE_ADDBA) { |
1045 | IWL_DEBUG_HT(priv, "AGG stop before setup done\n"); | 1059 | IWL_DEBUG_HT(priv, "AGG stop before setup done\n"); |
1046 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); | 1060 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
1047 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; | 1061 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; |
1062 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1048 | return 0; | 1063 | return 0; |
1049 | } | 1064 | } |
1050 | 1065 | ||
@@ -1062,13 +1077,17 @@ int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif, | |||
1062 | IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n"); | 1077 | IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n"); |
1063 | priv->stations[sta_id].tid[tid].agg.state = | 1078 | priv->stations[sta_id].tid[tid].agg.state = |
1064 | IWL_EMPTYING_HW_QUEUE_DELBA; | 1079 | IWL_EMPTYING_HW_QUEUE_DELBA; |
1080 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1065 | return 0; | 1081 | return 0; |
1066 | } | 1082 | } |
1067 | 1083 | ||
1068 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); | 1084 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
1069 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; | 1085 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; |
1070 | 1086 | ||
1071 | spin_lock_irqsave(&priv->lock, flags); | 1087 | /* do not restore/save irqs */ |
1088 | spin_unlock(&priv->sta_lock); | ||
1089 | spin_lock(&priv->lock); | ||
1090 | |||
1072 | /* | 1091 | /* |
1073 | * the only reason this call can fail is queue number out of range, | 1092 | * the only reason this call can fail is queue number out of range, |
1074 | * which can happen if uCode is reloaded and all the station | 1093 | * which can happen if uCode is reloaded and all the station |
@@ -1092,6 +1111,8 @@ int iwlagn_txq_check_empty(struct iwl_priv *priv, | |||
1092 | u8 *addr = priv->stations[sta_id].sta.sta.addr; | 1111 | u8 *addr = priv->stations[sta_id].sta.sta.addr; |
1093 | struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid]; | 1112 | struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid]; |
1094 | 1113 | ||
1114 | WARN_ON(!spin_is_locked(&priv->sta_lock)); | ||
1115 | |||
1095 | switch (priv->stations[sta_id].tid[tid].agg.state) { | 1116 | switch (priv->stations[sta_id].tid[tid].agg.state) { |
1096 | case IWL_EMPTYING_HW_QUEUE_DELBA: | 1117 | case IWL_EMPTYING_HW_QUEUE_DELBA: |
1097 | /* We are reclaiming the last packet of the */ | 1118 | /* We are reclaiming the last packet of the */ |
@@ -1116,6 +1137,7 @@ int iwlagn_txq_check_empty(struct iwl_priv *priv, | |||
1116 | } | 1137 | } |
1117 | break; | 1138 | break; |
1118 | } | 1139 | } |
1140 | |||
1119 | return 0; | 1141 | return 0; |
1120 | } | 1142 | } |
1121 | 1143 | ||
@@ -1157,12 +1179,12 @@ int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index) | |||
1157 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { | 1179 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
1158 | 1180 | ||
1159 | tx_info = &txq->txb[txq->q.read_ptr]; | 1181 | tx_info = &txq->txb[txq->q.read_ptr]; |
1160 | iwlagn_tx_status(priv, tx_info->skb[0]); | 1182 | iwlagn_tx_status(priv, tx_info->skb); |
1161 | 1183 | ||
1162 | hdr = (struct ieee80211_hdr *)tx_info->skb[0]->data; | 1184 | hdr = (struct ieee80211_hdr *)tx_info->skb->data; |
1163 | if (hdr && ieee80211_is_data_qos(hdr->frame_control)) | 1185 | if (hdr && ieee80211_is_data_qos(hdr->frame_control)) |
1164 | nfreed++; | 1186 | nfreed++; |
1165 | tx_info->skb[0] = NULL; | 1187 | tx_info->skb = NULL; |
1166 | 1188 | ||
1167 | if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl) | 1189 | if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl) |
1168 | priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq); | 1190 | priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq); |
@@ -1186,7 +1208,7 @@ static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv, | |||
1186 | int i, sh, ack; | 1208 | int i, sh, ack; |
1187 | u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl); | 1209 | u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl); |
1188 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); | 1210 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
1189 | u64 bitmap; | 1211 | u64 bitmap, sent_bitmap; |
1190 | int successes = 0; | 1212 | int successes = 0; |
1191 | struct ieee80211_tx_info *info; | 1213 | struct ieee80211_tx_info *info; |
1192 | 1214 | ||
@@ -1214,24 +1236,26 @@ static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv, | |||
1214 | 1236 | ||
1215 | /* check for success or failure according to the | 1237 | /* check for success or failure according to the |
1216 | * transmitted bitmap and block-ack bitmap */ | 1238 | * transmitted bitmap and block-ack bitmap */ |
1217 | bitmap &= agg->bitmap; | 1239 | sent_bitmap = bitmap & agg->bitmap; |
1218 | 1240 | ||
1219 | /* For each frame attempted in aggregation, | 1241 | /* For each frame attempted in aggregation, |
1220 | * update driver's record of tx frame's status. */ | 1242 | * update driver's record of tx frame's status. */ |
1221 | for (i = 0; i < agg->frame_count ; i++) { | 1243 | i = 0; |
1222 | ack = bitmap & (1ULL << i); | 1244 | while (sent_bitmap) { |
1223 | successes += !!ack; | 1245 | ack = sent_bitmap & 1ULL; |
1246 | successes += ack; | ||
1224 | IWL_DEBUG_TX_REPLY(priv, "%s ON i=%d idx=%d raw=%d\n", | 1247 | IWL_DEBUG_TX_REPLY(priv, "%s ON i=%d idx=%d raw=%d\n", |
1225 | ack ? "ACK" : "NACK", i, (agg->start_idx + i) & 0xff, | 1248 | ack ? "ACK" : "NACK", i, (agg->start_idx + i) & 0xff, |
1226 | agg->start_idx + i); | 1249 | agg->start_idx + i); |
1250 | sent_bitmap >>= 1; | ||
1251 | ++i; | ||
1227 | } | 1252 | } |
1228 | 1253 | ||
1229 | info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]); | 1254 | info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb); |
1230 | memset(&info->status, 0, sizeof(info->status)); | 1255 | memset(&info->status, 0, sizeof(info->status)); |
1231 | info->flags |= IEEE80211_TX_STAT_ACK; | 1256 | info->flags |= IEEE80211_TX_STAT_ACK; |
1232 | info->flags |= IEEE80211_TX_STAT_AMPDU; | 1257 | info->flags |= IEEE80211_TX_STAT_AMPDU; |
1233 | info->status.ampdu_ack_len = successes; | 1258 | info->status.ampdu_ack_len = successes; |
1234 | info->status.ampdu_ack_map = bitmap; | ||
1235 | info->status.ampdu_len = agg->frame_count; | 1259 | info->status.ampdu_len = agg->frame_count; |
1236 | iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info); | 1260 | iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info); |
1237 | 1261 | ||
@@ -1279,6 +1303,7 @@ void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, | |||
1279 | int index; | 1303 | int index; |
1280 | int sta_id; | 1304 | int sta_id; |
1281 | int tid; | 1305 | int tid; |
1306 | unsigned long flags; | ||
1282 | 1307 | ||
1283 | /* "flow" corresponds to Tx queue */ | 1308 | /* "flow" corresponds to Tx queue */ |
1284 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); | 1309 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
@@ -1301,7 +1326,7 @@ void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, | |||
1301 | /* Find index just before block-ack window */ | 1326 | /* Find index just before block-ack window */ |
1302 | index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd); | 1327 | index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd); |
1303 | 1328 | ||
1304 | /* TODO: Need to get this copy more safely - now good for debug */ | 1329 | spin_lock_irqsave(&priv->sta_lock, flags); |
1305 | 1330 | ||
1306 | IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, " | 1331 | IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, " |
1307 | "sta_id = %d\n", | 1332 | "sta_id = %d\n", |
@@ -1337,4 +1362,6 @@ void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, | |||
1337 | 1362 | ||
1338 | iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow); | 1363 | iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow); |
1339 | } | 1364 | } |
1365 | |||
1366 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1340 | } | 1367 | } |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-ucode.c b/drivers/net/wireless/iwlwifi/iwl-agn-ucode.c index 637286c396fe..6f77441cb65a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-ucode.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-ucode.c | |||
@@ -423,3 +423,126 @@ int iwlagn_alive_notify(struct iwl_priv *priv) | |||
423 | 423 | ||
424 | return 0; | 424 | return 0; |
425 | } | 425 | } |
426 | |||
427 | |||
428 | /** | ||
429 | * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host, | ||
430 | * using sample data 100 bytes apart. If these sample points are good, | ||
431 | * it's a pretty good bet that everything between them is good, too. | ||
432 | */ | ||
433 | static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len) | ||
434 | { | ||
435 | u32 val; | ||
436 | int ret = 0; | ||
437 | u32 errcnt = 0; | ||
438 | u32 i; | ||
439 | |||
440 | IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len); | ||
441 | |||
442 | for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) { | ||
443 | /* read data comes through single port, auto-incr addr */ | ||
444 | /* NOTE: Use the debugless read so we don't flood kernel log | ||
445 | * if IWL_DL_IO is set */ | ||
446 | iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, | ||
447 | i + IWLAGN_RTC_INST_LOWER_BOUND); | ||
448 | val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); | ||
449 | if (val != le32_to_cpu(*image)) { | ||
450 | ret = -EIO; | ||
451 | errcnt++; | ||
452 | if (errcnt >= 3) | ||
453 | break; | ||
454 | } | ||
455 | } | ||
456 | |||
457 | return ret; | ||
458 | } | ||
459 | |||
460 | /** | ||
461 | * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host, | ||
462 | * looking at all data. | ||
463 | */ | ||
464 | static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image, | ||
465 | u32 len) | ||
466 | { | ||
467 | u32 val; | ||
468 | u32 save_len = len; | ||
469 | int ret = 0; | ||
470 | u32 errcnt; | ||
471 | |||
472 | IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len); | ||
473 | |||
474 | iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, | ||
475 | IWLAGN_RTC_INST_LOWER_BOUND); | ||
476 | |||
477 | errcnt = 0; | ||
478 | for (; len > 0; len -= sizeof(u32), image++) { | ||
479 | /* read data comes through single port, auto-incr addr */ | ||
480 | /* NOTE: Use the debugless read so we don't flood kernel log | ||
481 | * if IWL_DL_IO is set */ | ||
482 | val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); | ||
483 | if (val != le32_to_cpu(*image)) { | ||
484 | IWL_ERR(priv, "uCode INST section is invalid at " | ||
485 | "offset 0x%x, is 0x%x, s/b 0x%x\n", | ||
486 | save_len - len, val, le32_to_cpu(*image)); | ||
487 | ret = -EIO; | ||
488 | errcnt++; | ||
489 | if (errcnt >= 20) | ||
490 | break; | ||
491 | } | ||
492 | } | ||
493 | |||
494 | if (!errcnt) | ||
495 | IWL_DEBUG_INFO(priv, | ||
496 | "ucode image in INSTRUCTION memory is good\n"); | ||
497 | |||
498 | return ret; | ||
499 | } | ||
500 | |||
501 | /** | ||
502 | * iwl_verify_ucode - determine which instruction image is in SRAM, | ||
503 | * and verify its contents | ||
504 | */ | ||
505 | int iwl_verify_ucode(struct iwl_priv *priv) | ||
506 | { | ||
507 | __le32 *image; | ||
508 | u32 len; | ||
509 | int ret; | ||
510 | |||
511 | /* Try bootstrap */ | ||
512 | image = (__le32 *)priv->ucode_boot.v_addr; | ||
513 | len = priv->ucode_boot.len; | ||
514 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
515 | if (!ret) { | ||
516 | IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n"); | ||
517 | return 0; | ||
518 | } | ||
519 | |||
520 | /* Try initialize */ | ||
521 | image = (__le32 *)priv->ucode_init.v_addr; | ||
522 | len = priv->ucode_init.len; | ||
523 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
524 | if (!ret) { | ||
525 | IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n"); | ||
526 | return 0; | ||
527 | } | ||
528 | |||
529 | /* Try runtime/protocol */ | ||
530 | image = (__le32 *)priv->ucode_code.v_addr; | ||
531 | len = priv->ucode_code.len; | ||
532 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
533 | if (!ret) { | ||
534 | IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n"); | ||
535 | return 0; | ||
536 | } | ||
537 | |||
538 | IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n"); | ||
539 | |||
540 | /* Since nothing seems to match, show first several data entries in | ||
541 | * instruction SRAM, so maybe visual inspection will give a clue. | ||
542 | * Selection of bootstrap image (vs. other images) is arbitrary. */ | ||
543 | image = (__le32 *)priv->ucode_boot.v_addr; | ||
544 | len = priv->ucode_boot.len; | ||
545 | ret = iwl_verify_inst_full(priv, image, len); | ||
546 | |||
547 | return ret; | ||
548 | } | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index aef4f71f1981..69e17d782883 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -120,7 +120,7 @@ int iwl_commit_rxon(struct iwl_priv *priv) | |||
120 | (priv->switch_rxon.channel != priv->staging_rxon.channel)) { | 120 | (priv->switch_rxon.channel != priv->staging_rxon.channel)) { |
121 | IWL_DEBUG_11H(priv, "abort channel switch on %d\n", | 121 | IWL_DEBUG_11H(priv, "abort channel switch on %d\n", |
122 | le16_to_cpu(priv->switch_rxon.channel)); | 122 | le16_to_cpu(priv->switch_rxon.channel)); |
123 | priv->switch_rxon.switch_in_progress = false; | 123 | iwl_chswitch_done(priv, false); |
124 | } | 124 | } |
125 | 125 | ||
126 | /* If we don't need to send a full RXON, we can use | 126 | /* If we don't need to send a full RXON, we can use |
@@ -367,7 +367,8 @@ static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv, | |||
367 | 367 | ||
368 | /* Set up packet rate and flags */ | 368 | /* Set up packet rate and flags */ |
369 | rate = iwl_rate_get_lowest_plcp(priv); | 369 | rate = iwl_rate_get_lowest_plcp(priv); |
370 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant); | 370 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
371 | priv->hw_params.valid_tx_ant); | ||
371 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); | 372 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
372 | if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE)) | 373 | if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE)) |
373 | rate_flags |= RATE_MCS_CCK_MSK; | 374 | rate_flags |= RATE_MCS_CCK_MSK; |
@@ -474,18 +475,25 @@ void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq) | |||
474 | /* Unmap tx_cmd */ | 475 | /* Unmap tx_cmd */ |
475 | if (num_tbs) | 476 | if (num_tbs) |
476 | pci_unmap_single(dev, | 477 | pci_unmap_single(dev, |
477 | pci_unmap_addr(&txq->meta[index], mapping), | 478 | dma_unmap_addr(&txq->meta[index], mapping), |
478 | pci_unmap_len(&txq->meta[index], len), | 479 | dma_unmap_len(&txq->meta[index], len), |
479 | PCI_DMA_BIDIRECTIONAL); | 480 | PCI_DMA_BIDIRECTIONAL); |
480 | 481 | ||
481 | /* Unmap chunks, if any. */ | 482 | /* Unmap chunks, if any. */ |
482 | for (i = 1; i < num_tbs; i++) { | 483 | for (i = 1; i < num_tbs; i++) |
483 | pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i), | 484 | pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i), |
484 | iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE); | 485 | iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE); |
485 | 486 | ||
486 | if (txq->txb) { | 487 | /* free SKB */ |
487 | dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]); | 488 | if (txq->txb) { |
488 | txq->txb[txq->q.read_ptr].skb[i - 1] = NULL; | 489 | struct sk_buff *skb; |
490 | |||
491 | skb = txq->txb[txq->q.read_ptr].skb; | ||
492 | |||
493 | /* can be called from irqs-disabled context */ | ||
494 | if (skb) { | ||
495 | dev_kfree_skb_any(skb); | ||
496 | txq->txb[txq->q.read_ptr].skb = NULL; | ||
489 | } | 497 | } |
490 | } | 498 | } |
491 | } | 499 | } |
@@ -1466,7 +1474,12 @@ bool iwl_good_ack_health(struct iwl_priv *priv, | |||
1466 | " expected_ack_cnt = %d\n", | 1474 | " expected_ack_cnt = %d\n", |
1467 | actual_ack_cnt_delta, expected_ack_cnt_delta); | 1475 | actual_ack_cnt_delta, expected_ack_cnt_delta); |
1468 | 1476 | ||
1469 | #ifdef CONFIG_IWLWIFI_DEBUG | 1477 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
1478 | /* | ||
1479 | * This is ifdef'ed on DEBUGFS because otherwise the | ||
1480 | * statistics aren't available. If DEBUGFS is set but | ||
1481 | * DEBUG is not, these will just compile out. | ||
1482 | */ | ||
1470 | IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n", | 1483 | IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n", |
1471 | priv->delta_statistics.tx.rx_detected_cnt); | 1484 | priv->delta_statistics.tx.rx_detected_cnt); |
1472 | IWL_DEBUG_RADIO(priv, | 1485 | IWL_DEBUG_RADIO(priv, |
@@ -1484,6 +1497,156 @@ bool iwl_good_ack_health(struct iwl_priv *priv, | |||
1484 | } | 1497 | } |
1485 | 1498 | ||
1486 | 1499 | ||
1500 | /***************************************************************************** | ||
1501 | * | ||
1502 | * sysfs attributes | ||
1503 | * | ||
1504 | *****************************************************************************/ | ||
1505 | |||
1506 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
1507 | |||
1508 | /* | ||
1509 | * The following adds a new attribute to the sysfs representation | ||
1510 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) | ||
1511 | * used for controlling the debug level. | ||
1512 | * | ||
1513 | * See the level definitions in iwl for details. | ||
1514 | * | ||
1515 | * The debug_level being managed using sysfs below is a per device debug | ||
1516 | * level that is used instead of the global debug level if it (the per | ||
1517 | * device debug level) is set. | ||
1518 | */ | ||
1519 | static ssize_t show_debug_level(struct device *d, | ||
1520 | struct device_attribute *attr, char *buf) | ||
1521 | { | ||
1522 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1523 | return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv)); | ||
1524 | } | ||
1525 | static ssize_t store_debug_level(struct device *d, | ||
1526 | struct device_attribute *attr, | ||
1527 | const char *buf, size_t count) | ||
1528 | { | ||
1529 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1530 | unsigned long val; | ||
1531 | int ret; | ||
1532 | |||
1533 | ret = strict_strtoul(buf, 0, &val); | ||
1534 | if (ret) | ||
1535 | IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf); | ||
1536 | else { | ||
1537 | priv->debug_level = val; | ||
1538 | if (iwl_alloc_traffic_mem(priv)) | ||
1539 | IWL_ERR(priv, | ||
1540 | "Not enough memory to generate traffic log\n"); | ||
1541 | } | ||
1542 | return strnlen(buf, count); | ||
1543 | } | ||
1544 | |||
1545 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, | ||
1546 | show_debug_level, store_debug_level); | ||
1547 | |||
1548 | |||
1549 | #endif /* CONFIG_IWLWIFI_DEBUG */ | ||
1550 | |||
1551 | |||
1552 | static ssize_t show_temperature(struct device *d, | ||
1553 | struct device_attribute *attr, char *buf) | ||
1554 | { | ||
1555 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1556 | |||
1557 | if (!iwl_is_alive(priv)) | ||
1558 | return -EAGAIN; | ||
1559 | |||
1560 | return sprintf(buf, "%d\n", priv->temperature); | ||
1561 | } | ||
1562 | |||
1563 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); | ||
1564 | |||
1565 | static ssize_t show_tx_power(struct device *d, | ||
1566 | struct device_attribute *attr, char *buf) | ||
1567 | { | ||
1568 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1569 | |||
1570 | if (!iwl_is_ready_rf(priv)) | ||
1571 | return sprintf(buf, "off\n"); | ||
1572 | else | ||
1573 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); | ||
1574 | } | ||
1575 | |||
1576 | static ssize_t store_tx_power(struct device *d, | ||
1577 | struct device_attribute *attr, | ||
1578 | const char *buf, size_t count) | ||
1579 | { | ||
1580 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1581 | unsigned long val; | ||
1582 | int ret; | ||
1583 | |||
1584 | ret = strict_strtoul(buf, 10, &val); | ||
1585 | if (ret) | ||
1586 | IWL_INFO(priv, "%s is not in decimal form.\n", buf); | ||
1587 | else { | ||
1588 | ret = iwl_set_tx_power(priv, val, false); | ||
1589 | if (ret) | ||
1590 | IWL_ERR(priv, "failed setting tx power (0x%d).\n", | ||
1591 | ret); | ||
1592 | else | ||
1593 | ret = count; | ||
1594 | } | ||
1595 | return ret; | ||
1596 | } | ||
1597 | |||
1598 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); | ||
1599 | |||
1600 | static ssize_t show_rts_ht_protection(struct device *d, | ||
1601 | struct device_attribute *attr, char *buf) | ||
1602 | { | ||
1603 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1604 | |||
1605 | return sprintf(buf, "%s\n", | ||
1606 | priv->cfg->use_rts_for_ht ? "RTS/CTS" : "CTS-to-self"); | ||
1607 | } | ||
1608 | |||
1609 | static ssize_t store_rts_ht_protection(struct device *d, | ||
1610 | struct device_attribute *attr, | ||
1611 | const char *buf, size_t count) | ||
1612 | { | ||
1613 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
1614 | unsigned long val; | ||
1615 | int ret; | ||
1616 | |||
1617 | ret = strict_strtoul(buf, 10, &val); | ||
1618 | if (ret) | ||
1619 | IWL_INFO(priv, "Input is not in decimal form.\n"); | ||
1620 | else { | ||
1621 | if (!iwl_is_associated(priv)) | ||
1622 | priv->cfg->use_rts_for_ht = val ? true : false; | ||
1623 | else | ||
1624 | IWL_ERR(priv, "Sta associated with AP - " | ||
1625 | "Change protection mechanism is not allowed\n"); | ||
1626 | ret = count; | ||
1627 | } | ||
1628 | return ret; | ||
1629 | } | ||
1630 | |||
1631 | static DEVICE_ATTR(rts_ht_protection, S_IWUSR | S_IRUGO, | ||
1632 | show_rts_ht_protection, store_rts_ht_protection); | ||
1633 | |||
1634 | |||
1635 | static struct attribute *iwl_sysfs_entries[] = { | ||
1636 | &dev_attr_temperature.attr, | ||
1637 | &dev_attr_tx_power.attr, | ||
1638 | &dev_attr_rts_ht_protection.attr, | ||
1639 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
1640 | &dev_attr_debug_level.attr, | ||
1641 | #endif | ||
1642 | NULL | ||
1643 | }; | ||
1644 | |||
1645 | static struct attribute_group iwl_attribute_group = { | ||
1646 | .name = NULL, /* put in device directory */ | ||
1647 | .attrs = iwl_sysfs_entries, | ||
1648 | }; | ||
1649 | |||
1487 | /****************************************************************************** | 1650 | /****************************************************************************** |
1488 | * | 1651 | * |
1489 | * uCode download functions | 1652 | * uCode download functions |
@@ -1544,6 +1707,9 @@ struct iwlagn_firmware_pieces { | |||
1544 | size_t inst_size, data_size, init_size, init_data_size, boot_size; | 1707 | size_t inst_size, data_size, init_size, init_data_size, boot_size; |
1545 | 1708 | ||
1546 | u32 build; | 1709 | u32 build; |
1710 | |||
1711 | u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr; | ||
1712 | u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr; | ||
1547 | }; | 1713 | }; |
1548 | 1714 | ||
1549 | static int iwlagn_load_legacy_firmware(struct iwl_priv *priv, | 1715 | static int iwlagn_load_legacy_firmware(struct iwl_priv *priv, |
@@ -1721,6 +1887,42 @@ static int iwlagn_load_firmware(struct iwl_priv *priv, | |||
1721 | capa->max_probe_length = | 1887 | capa->max_probe_length = |
1722 | le32_to_cpup((__le32 *)tlv_data); | 1888 | le32_to_cpup((__le32 *)tlv_data); |
1723 | break; | 1889 | break; |
1890 | case IWL_UCODE_TLV_INIT_EVTLOG_PTR: | ||
1891 | if (tlv_len != 4) | ||
1892 | return -EINVAL; | ||
1893 | pieces->init_evtlog_ptr = | ||
1894 | le32_to_cpup((__le32 *)tlv_data); | ||
1895 | break; | ||
1896 | case IWL_UCODE_TLV_INIT_EVTLOG_SIZE: | ||
1897 | if (tlv_len != 4) | ||
1898 | return -EINVAL; | ||
1899 | pieces->init_evtlog_size = | ||
1900 | le32_to_cpup((__le32 *)tlv_data); | ||
1901 | break; | ||
1902 | case IWL_UCODE_TLV_INIT_ERRLOG_PTR: | ||
1903 | if (tlv_len != 4) | ||
1904 | return -EINVAL; | ||
1905 | pieces->init_errlog_ptr = | ||
1906 | le32_to_cpup((__le32 *)tlv_data); | ||
1907 | break; | ||
1908 | case IWL_UCODE_TLV_RUNT_EVTLOG_PTR: | ||
1909 | if (tlv_len != 4) | ||
1910 | return -EINVAL; | ||
1911 | pieces->inst_evtlog_ptr = | ||
1912 | le32_to_cpup((__le32 *)tlv_data); | ||
1913 | break; | ||
1914 | case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE: | ||
1915 | if (tlv_len != 4) | ||
1916 | return -EINVAL; | ||
1917 | pieces->inst_evtlog_size = | ||
1918 | le32_to_cpup((__le32 *)tlv_data); | ||
1919 | break; | ||
1920 | case IWL_UCODE_TLV_RUNT_ERRLOG_PTR: | ||
1921 | if (tlv_len != 4) | ||
1922 | return -EINVAL; | ||
1923 | pieces->inst_errlog_ptr = | ||
1924 | le32_to_cpup((__le32 *)tlv_data); | ||
1925 | break; | ||
1724 | default: | 1926 | default: |
1725 | break; | 1927 | break; |
1726 | } | 1928 | } |
@@ -1913,6 +2115,26 @@ static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1913 | goto err_pci_alloc; | 2115 | goto err_pci_alloc; |
1914 | } | 2116 | } |
1915 | 2117 | ||
2118 | /* Now that we can no longer fail, copy information */ | ||
2119 | |||
2120 | /* | ||
2121 | * The (size - 16) / 12 formula is based on the information recorded | ||
2122 | * for each event, which is of mode 1 (including timestamp) for all | ||
2123 | * new microcodes that include this information. | ||
2124 | */ | ||
2125 | priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr; | ||
2126 | if (pieces.init_evtlog_size) | ||
2127 | priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12; | ||
2128 | else | ||
2129 | priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size; | ||
2130 | priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr; | ||
2131 | priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr; | ||
2132 | if (pieces.inst_evtlog_size) | ||
2133 | priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12; | ||
2134 | else | ||
2135 | priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size; | ||
2136 | priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr; | ||
2137 | |||
1916 | /* Copy images into buffers for card's bus-master reads ... */ | 2138 | /* Copy images into buffers for card's bus-master reads ... */ |
1917 | 2139 | ||
1918 | /* Runtime instructions (first block of data in file) */ | 2140 | /* Runtime instructions (first block of data in file) */ |
@@ -1965,6 +2187,13 @@ static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1965 | if (err) | 2187 | if (err) |
1966 | IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err); | 2188 | IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err); |
1967 | 2189 | ||
2190 | err = sysfs_create_group(&priv->pci_dev->dev.kobj, | ||
2191 | &iwl_attribute_group); | ||
2192 | if (err) { | ||
2193 | IWL_ERR(priv, "failed to create sysfs device attributes\n"); | ||
2194 | goto out_unbind; | ||
2195 | } | ||
2196 | |||
1968 | /* We have our copies now, allow OS release its copies */ | 2197 | /* We have our copies now, allow OS release its copies */ |
1969 | release_firmware(ucode_raw); | 2198 | release_firmware(ucode_raw); |
1970 | complete(&priv->_agn.firmware_loading_complete); | 2199 | complete(&priv->_agn.firmware_loading_complete); |
@@ -2038,10 +2267,15 @@ void iwl_dump_nic_error_log(struct iwl_priv *priv) | |||
2038 | u32 blink1, blink2, ilink1, ilink2; | 2267 | u32 blink1, blink2, ilink1, ilink2; |
2039 | u32 pc, hcmd; | 2268 | u32 pc, hcmd; |
2040 | 2269 | ||
2041 | if (priv->ucode_type == UCODE_INIT) | 2270 | if (priv->ucode_type == UCODE_INIT) { |
2042 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); | 2271 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); |
2043 | else | 2272 | if (!base) |
2273 | base = priv->_agn.init_errlog_ptr; | ||
2274 | } else { | ||
2044 | base = le32_to_cpu(priv->card_alive.error_event_table_ptr); | 2275 | base = le32_to_cpu(priv->card_alive.error_event_table_ptr); |
2276 | if (!base) | ||
2277 | base = priv->_agn.inst_errlog_ptr; | ||
2278 | } | ||
2045 | 2279 | ||
2046 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { | 2280 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
2047 | IWL_ERR(priv, | 2281 | IWL_ERR(priv, |
@@ -2101,10 +2335,16 @@ static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx, | |||
2101 | 2335 | ||
2102 | if (num_events == 0) | 2336 | if (num_events == 0) |
2103 | return pos; | 2337 | return pos; |
2104 | if (priv->ucode_type == UCODE_INIT) | 2338 | |
2339 | if (priv->ucode_type == UCODE_INIT) { | ||
2105 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); | 2340 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
2106 | else | 2341 | if (!base) |
2342 | base = priv->_agn.init_evtlog_ptr; | ||
2343 | } else { | ||
2107 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); | 2344 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
2345 | if (!base) | ||
2346 | base = priv->_agn.inst_evtlog_ptr; | ||
2347 | } | ||
2108 | 2348 | ||
2109 | if (mode == 0) | 2349 | if (mode == 0) |
2110 | event_size = 2 * sizeof(u32); | 2350 | event_size = 2 * sizeof(u32); |
@@ -2206,13 +2446,21 @@ int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, | |||
2206 | u32 num_wraps; /* # times uCode wrapped to top of log */ | 2446 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
2207 | u32 next_entry; /* index of next entry to be written by uCode */ | 2447 | u32 next_entry; /* index of next entry to be written by uCode */ |
2208 | u32 size; /* # entries that we'll print */ | 2448 | u32 size; /* # entries that we'll print */ |
2449 | u32 logsize; | ||
2209 | int pos = 0; | 2450 | int pos = 0; |
2210 | size_t bufsz = 0; | 2451 | size_t bufsz = 0; |
2211 | 2452 | ||
2212 | if (priv->ucode_type == UCODE_INIT) | 2453 | if (priv->ucode_type == UCODE_INIT) { |
2213 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); | 2454 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
2214 | else | 2455 | logsize = priv->_agn.init_evtlog_size; |
2456 | if (!base) | ||
2457 | base = priv->_agn.init_evtlog_ptr; | ||
2458 | } else { | ||
2215 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); | 2459 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
2460 | logsize = priv->_agn.inst_evtlog_size; | ||
2461 | if (!base) | ||
2462 | base = priv->_agn.inst_evtlog_ptr; | ||
2463 | } | ||
2216 | 2464 | ||
2217 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { | 2465 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
2218 | IWL_ERR(priv, | 2466 | IWL_ERR(priv, |
@@ -2227,16 +2475,16 @@ int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, | |||
2227 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); | 2475 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
2228 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); | 2476 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
2229 | 2477 | ||
2230 | if (capacity > priv->cfg->max_event_log_size) { | 2478 | if (capacity > logsize) { |
2231 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n", | 2479 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n", |
2232 | capacity, priv->cfg->max_event_log_size); | 2480 | capacity, logsize); |
2233 | capacity = priv->cfg->max_event_log_size; | 2481 | capacity = logsize; |
2234 | } | 2482 | } |
2235 | 2483 | ||
2236 | if (next_entry > priv->cfg->max_event_log_size) { | 2484 | if (next_entry > logsize) { |
2237 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", | 2485 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", |
2238 | next_entry, priv->cfg->max_event_log_size); | 2486 | next_entry, logsize); |
2239 | next_entry = priv->cfg->max_event_log_size; | 2487 | next_entry = logsize; |
2240 | } | 2488 | } |
2241 | 2489 | ||
2242 | size = num_wraps ? capacity : next_entry; | 2490 | size = num_wraps ? capacity : next_entry; |
@@ -2361,8 +2609,6 @@ static void iwl_alive_start(struct iwl_priv *priv) | |||
2361 | 2609 | ||
2362 | if (priv->cfg->ops->hcmd->set_rxon_chain) | 2610 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
2363 | priv->cfg->ops->hcmd->set_rxon_chain(priv); | 2611 | priv->cfg->ops->hcmd->set_rxon_chain(priv); |
2364 | |||
2365 | memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN); | ||
2366 | } | 2612 | } |
2367 | 2613 | ||
2368 | /* Configure Bluetooth device coexistence support */ | 2614 | /* Configure Bluetooth device coexistence support */ |
@@ -2777,20 +3023,16 @@ void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
2777 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", | 3023 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", |
2778 | vif->bss_conf.aid, vif->bss_conf.beacon_int); | 3024 | vif->bss_conf.aid, vif->bss_conf.beacon_int); |
2779 | 3025 | ||
2780 | if (vif->bss_conf.assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE) | 3026 | if (vif->bss_conf.use_short_preamble) |
2781 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; | 3027 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
2782 | else | 3028 | else |
2783 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; | 3029 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
2784 | 3030 | ||
2785 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { | 3031 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
2786 | if (vif->bss_conf.assoc_capability & | 3032 | if (vif->bss_conf.use_short_slot) |
2787 | WLAN_CAPABILITY_SHORT_SLOT_TIME) | ||
2788 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; | 3033 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
2789 | else | 3034 | else |
2790 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | 3035 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
2791 | |||
2792 | if (vif->type == NL80211_IFTYPE_ADHOC) | ||
2793 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | ||
2794 | } | 3036 | } |
2795 | 3037 | ||
2796 | iwlcore_commit_rxon(priv); | 3038 | iwlcore_commit_rxon(priv); |
@@ -3016,8 +3258,7 @@ void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
3016 | 3258 | ||
3017 | priv->staging_rxon.assoc_id = 0; | 3259 | priv->staging_rxon.assoc_id = 0; |
3018 | 3260 | ||
3019 | if (vif->bss_conf.assoc_capability & | 3261 | if (vif->bss_conf.use_short_preamble) |
3020 | WLAN_CAPABILITY_SHORT_PREAMBLE) | ||
3021 | priv->staging_rxon.flags |= | 3262 | priv->staging_rxon.flags |= |
3022 | RXON_FLG_SHORT_PREAMBLE_MSK; | 3263 | RXON_FLG_SHORT_PREAMBLE_MSK; |
3023 | else | 3264 | else |
@@ -3025,17 +3266,12 @@ void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
3025 | ~RXON_FLG_SHORT_PREAMBLE_MSK; | 3266 | ~RXON_FLG_SHORT_PREAMBLE_MSK; |
3026 | 3267 | ||
3027 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { | 3268 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
3028 | if (vif->bss_conf.assoc_capability & | 3269 | if (vif->bss_conf.use_short_slot) |
3029 | WLAN_CAPABILITY_SHORT_SLOT_TIME) | ||
3030 | priv->staging_rxon.flags |= | 3270 | priv->staging_rxon.flags |= |
3031 | RXON_FLG_SHORT_SLOT_MSK; | 3271 | RXON_FLG_SHORT_SLOT_MSK; |
3032 | else | 3272 | else |
3033 | priv->staging_rxon.flags &= | 3273 | priv->staging_rxon.flags &= |
3034 | ~RXON_FLG_SHORT_SLOT_MSK; | 3274 | ~RXON_FLG_SHORT_SLOT_MSK; |
3035 | |||
3036 | if (vif->type == NL80211_IFTYPE_ADHOC) | ||
3037 | priv->staging_rxon.flags &= | ||
3038 | ~RXON_FLG_SHORT_SLOT_MSK; | ||
3039 | } | 3275 | } |
3040 | /* restore RXON assoc */ | 3276 | /* restore RXON assoc */ |
3041 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; | 3277 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; |
@@ -3081,17 +3317,9 @@ static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
3081 | return -EOPNOTSUPP; | 3317 | return -EOPNOTSUPP; |
3082 | } | 3318 | } |
3083 | 3319 | ||
3084 | if (sta) { | 3320 | sta_id = iwl_sta_id_or_broadcast(priv, sta); |
3085 | sta_id = iwl_sta_id(sta); | 3321 | if (sta_id == IWL_INVALID_STATION) |
3086 | 3322 | return -EINVAL; | |
3087 | if (sta_id == IWL_INVALID_STATION) { | ||
3088 | IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n", | ||
3089 | sta->addr); | ||
3090 | return -EINVAL; | ||
3091 | } | ||
3092 | } else { | ||
3093 | sta_id = priv->hw_params.bcast_sta_id; | ||
3094 | } | ||
3095 | 3323 | ||
3096 | mutex_lock(&priv->mutex); | 3324 | mutex_lock(&priv->mutex); |
3097 | iwl_scan_cancel_timeout(priv, 100); | 3325 | iwl_scan_cancel_timeout(priv, 100); |
@@ -3262,141 +3490,98 @@ static int iwlagn_mac_sta_add(struct ieee80211_hw *hw, | |||
3262 | return 0; | 3490 | return 0; |
3263 | } | 3491 | } |
3264 | 3492 | ||
3265 | /***************************************************************************** | 3493 | static void iwl_mac_channel_switch(struct ieee80211_hw *hw, |
3266 | * | 3494 | struct ieee80211_channel_switch *ch_switch) |
3267 | * sysfs attributes | ||
3268 | * | ||
3269 | *****************************************************************************/ | ||
3270 | |||
3271 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
3272 | |||
3273 | /* | ||
3274 | * The following adds a new attribute to the sysfs representation | ||
3275 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) | ||
3276 | * used for controlling the debug level. | ||
3277 | * | ||
3278 | * See the level definitions in iwl for details. | ||
3279 | * | ||
3280 | * The debug_level being managed using sysfs below is a per device debug | ||
3281 | * level that is used instead of the global debug level if it (the per | ||
3282 | * device debug level) is set. | ||
3283 | */ | ||
3284 | static ssize_t show_debug_level(struct device *d, | ||
3285 | struct device_attribute *attr, char *buf) | ||
3286 | { | ||
3287 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
3288 | return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv)); | ||
3289 | } | ||
3290 | static ssize_t store_debug_level(struct device *d, | ||
3291 | struct device_attribute *attr, | ||
3292 | const char *buf, size_t count) | ||
3293 | { | ||
3294 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
3295 | unsigned long val; | ||
3296 | int ret; | ||
3297 | |||
3298 | ret = strict_strtoul(buf, 0, &val); | ||
3299 | if (ret) | ||
3300 | IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf); | ||
3301 | else { | ||
3302 | priv->debug_level = val; | ||
3303 | if (iwl_alloc_traffic_mem(priv)) | ||
3304 | IWL_ERR(priv, | ||
3305 | "Not enough memory to generate traffic log\n"); | ||
3306 | } | ||
3307 | return strnlen(buf, count); | ||
3308 | } | ||
3309 | |||
3310 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, | ||
3311 | show_debug_level, store_debug_level); | ||
3312 | |||
3313 | |||
3314 | #endif /* CONFIG_IWLWIFI_DEBUG */ | ||
3315 | |||
3316 | |||
3317 | static ssize_t show_temperature(struct device *d, | ||
3318 | struct device_attribute *attr, char *buf) | ||
3319 | { | 3495 | { |
3320 | struct iwl_priv *priv = dev_get_drvdata(d); | 3496 | struct iwl_priv *priv = hw->priv; |
3321 | 3497 | const struct iwl_channel_info *ch_info; | |
3322 | if (!iwl_is_alive(priv)) | 3498 | struct ieee80211_conf *conf = &hw->conf; |
3323 | return -EAGAIN; | 3499 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; |
3324 | 3500 | u16 ch; | |
3325 | return sprintf(buf, "%d\n", priv->temperature); | 3501 | unsigned long flags = 0; |
3326 | } | ||
3327 | |||
3328 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); | ||
3329 | |||
3330 | static ssize_t show_tx_power(struct device *d, | ||
3331 | struct device_attribute *attr, char *buf) | ||
3332 | { | ||
3333 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
3334 | |||
3335 | if (!iwl_is_ready_rf(priv)) | ||
3336 | return sprintf(buf, "off\n"); | ||
3337 | else | ||
3338 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); | ||
3339 | } | ||
3340 | 3502 | ||
3341 | static ssize_t store_tx_power(struct device *d, | 3503 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
3342 | struct device_attribute *attr, | ||
3343 | const char *buf, size_t count) | ||
3344 | { | ||
3345 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
3346 | unsigned long val; | ||
3347 | int ret; | ||
3348 | 3504 | ||
3349 | ret = strict_strtoul(buf, 10, &val); | 3505 | if (iwl_is_rfkill(priv)) |
3350 | if (ret) | 3506 | goto out_exit; |
3351 | IWL_INFO(priv, "%s is not in decimal form.\n", buf); | ||
3352 | else { | ||
3353 | ret = iwl_set_tx_power(priv, val, false); | ||
3354 | if (ret) | ||
3355 | IWL_ERR(priv, "failed setting tx power (0x%d).\n", | ||
3356 | ret); | ||
3357 | else | ||
3358 | ret = count; | ||
3359 | } | ||
3360 | return ret; | ||
3361 | } | ||
3362 | 3507 | ||
3363 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); | 3508 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
3509 | test_bit(STATUS_SCANNING, &priv->status)) | ||
3510 | goto out_exit; | ||
3364 | 3511 | ||
3365 | static ssize_t show_rts_ht_protection(struct device *d, | 3512 | if (!iwl_is_associated(priv)) |
3366 | struct device_attribute *attr, char *buf) | 3513 | goto out_exit; |
3367 | { | ||
3368 | struct iwl_priv *priv = dev_get_drvdata(d); | ||
3369 | 3514 | ||
3370 | return sprintf(buf, "%s\n", | 3515 | /* channel switch in progress */ |
3371 | priv->cfg->use_rts_for_ht ? "RTS/CTS" : "CTS-to-self"); | 3516 | if (priv->switch_rxon.switch_in_progress == true) |
3372 | } | 3517 | goto out_exit; |
3373 | 3518 | ||
3374 | static ssize_t store_rts_ht_protection(struct device *d, | 3519 | mutex_lock(&priv->mutex); |
3375 | struct device_attribute *attr, | 3520 | if (priv->cfg->ops->lib->set_channel_switch) { |
3376 | const char *buf, size_t count) | 3521 | |
3377 | { | 3522 | ch = ieee80211_frequency_to_channel( |
3378 | struct iwl_priv *priv = dev_get_drvdata(d); | 3523 | ch_switch->channel->center_freq); |
3379 | unsigned long val; | 3524 | if (le16_to_cpu(priv->active_rxon.channel) != ch) { |
3380 | int ret; | 3525 | ch_info = iwl_get_channel_info(priv, |
3381 | 3526 | conf->channel->band, | |
3382 | ret = strict_strtoul(buf, 10, &val); | 3527 | ch); |
3383 | if (ret) | 3528 | if (!is_channel_valid(ch_info)) { |
3384 | IWL_INFO(priv, "Input is not in decimal form.\n"); | 3529 | IWL_DEBUG_MAC80211(priv, "invalid channel\n"); |
3385 | else { | 3530 | goto out; |
3386 | if (!iwl_is_associated(priv)) | 3531 | } |
3387 | priv->cfg->use_rts_for_ht = val ? true : false; | 3532 | spin_lock_irqsave(&priv->lock, flags); |
3388 | else | 3533 | |
3389 | IWL_ERR(priv, "Sta associated with AP - " | 3534 | priv->current_ht_config.smps = conf->smps_mode; |
3390 | "Change protection mechanism is not allowed\n"); | 3535 | |
3391 | ret = count; | 3536 | /* Configure HT40 channels */ |
3537 | ht_conf->is_ht = conf_is_ht(conf); | ||
3538 | if (ht_conf->is_ht) { | ||
3539 | if (conf_is_ht40_minus(conf)) { | ||
3540 | ht_conf->extension_chan_offset = | ||
3541 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; | ||
3542 | ht_conf->is_40mhz = true; | ||
3543 | } else if (conf_is_ht40_plus(conf)) { | ||
3544 | ht_conf->extension_chan_offset = | ||
3545 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; | ||
3546 | ht_conf->is_40mhz = true; | ||
3547 | } else { | ||
3548 | ht_conf->extension_chan_offset = | ||
3549 | IEEE80211_HT_PARAM_CHA_SEC_NONE; | ||
3550 | ht_conf->is_40mhz = false; | ||
3551 | } | ||
3552 | } else | ||
3553 | ht_conf->is_40mhz = false; | ||
3554 | |||
3555 | /* if we are switching from ht to 2.4 clear flags | ||
3556 | * from any ht related info since 2.4 does not | ||
3557 | * support ht */ | ||
3558 | if ((le16_to_cpu(priv->staging_rxon.channel) != ch)) | ||
3559 | priv->staging_rxon.flags = 0; | ||
3560 | |||
3561 | iwl_set_rxon_channel(priv, conf->channel); | ||
3562 | iwl_set_rxon_ht(priv, ht_conf); | ||
3563 | iwl_set_flags_for_band(priv, conf->channel->band, | ||
3564 | priv->vif); | ||
3565 | spin_unlock_irqrestore(&priv->lock, flags); | ||
3566 | |||
3567 | iwl_set_rate(priv); | ||
3568 | /* | ||
3569 | * at this point, staging_rxon has the | ||
3570 | * configuration for channel switch | ||
3571 | */ | ||
3572 | if (priv->cfg->ops->lib->set_channel_switch(priv, | ||
3573 | ch_switch)) | ||
3574 | priv->switch_rxon.switch_in_progress = false; | ||
3575 | } | ||
3392 | } | 3576 | } |
3393 | return ret; | 3577 | out: |
3578 | mutex_unlock(&priv->mutex); | ||
3579 | out_exit: | ||
3580 | if (!priv->switch_rxon.switch_in_progress) | ||
3581 | ieee80211_chswitch_done(priv->vif, false); | ||
3582 | IWL_DEBUG_MAC80211(priv, "leave\n"); | ||
3394 | } | 3583 | } |
3395 | 3584 | ||
3396 | static DEVICE_ATTR(rts_ht_protection, S_IWUSR | S_IRUGO, | ||
3397 | show_rts_ht_protection, store_rts_ht_protection); | ||
3398 | |||
3399 | |||
3400 | /***************************************************************************** | 3585 | /***************************************************************************** |
3401 | * | 3586 | * |
3402 | * driver setup and teardown | 3587 | * driver setup and teardown |
@@ -3550,21 +3735,6 @@ static void iwl_uninit_drv(struct iwl_priv *priv) | |||
3550 | kfree(priv->scan_cmd); | 3735 | kfree(priv->scan_cmd); |
3551 | } | 3736 | } |
3552 | 3737 | ||
3553 | static struct attribute *iwl_sysfs_entries[] = { | ||
3554 | &dev_attr_temperature.attr, | ||
3555 | &dev_attr_tx_power.attr, | ||
3556 | &dev_attr_rts_ht_protection.attr, | ||
3557 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
3558 | &dev_attr_debug_level.attr, | ||
3559 | #endif | ||
3560 | NULL | ||
3561 | }; | ||
3562 | |||
3563 | static struct attribute_group iwl_attribute_group = { | ||
3564 | .name = NULL, /* put in device directory */ | ||
3565 | .attrs = iwl_sysfs_entries, | ||
3566 | }; | ||
3567 | |||
3568 | static struct ieee80211_ops iwl_hw_ops = { | 3738 | static struct ieee80211_ops iwl_hw_ops = { |
3569 | .tx = iwl_mac_tx, | 3739 | .tx = iwl_mac_tx, |
3570 | .start = iwl_mac_start, | 3740 | .start = iwl_mac_start, |
@@ -3583,6 +3753,7 @@ static struct ieee80211_ops iwl_hw_ops = { | |||
3583 | .sta_notify = iwl_mac_sta_notify, | 3753 | .sta_notify = iwl_mac_sta_notify, |
3584 | .sta_add = iwlagn_mac_sta_add, | 3754 | .sta_add = iwlagn_mac_sta_add, |
3585 | .sta_remove = iwl_mac_sta_remove, | 3755 | .sta_remove = iwl_mac_sta_remove, |
3756 | .channel_switch = iwl_mac_channel_switch, | ||
3586 | }; | 3757 | }; |
3587 | 3758 | ||
3588 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | 3759 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
@@ -3593,6 +3764,7 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3593 | struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data); | 3764 | struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data); |
3594 | unsigned long flags; | 3765 | unsigned long flags; |
3595 | u16 pci_cmd; | 3766 | u16 pci_cmd; |
3767 | u8 perm_addr[ETH_ALEN]; | ||
3596 | 3768 | ||
3597 | /************************ | 3769 | /************************ |
3598 | * 1. Allocating HW data | 3770 | * 1. Allocating HW data |
@@ -3622,9 +3794,6 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3622 | priv->pci_dev = pdev; | 3794 | priv->pci_dev = pdev; |
3623 | priv->inta_mask = CSR_INI_SET_MASK; | 3795 | priv->inta_mask = CSR_INI_SET_MASK; |
3624 | 3796 | ||
3625 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
3626 | atomic_set(&priv->restrict_refcnt, 0); | ||
3627 | #endif | ||
3628 | if (iwl_alloc_traffic_mem(priv)) | 3797 | if (iwl_alloc_traffic_mem(priv)) |
3629 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); | 3798 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); |
3630 | 3799 | ||
@@ -3713,9 +3882,9 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3713 | goto out_free_eeprom; | 3882 | goto out_free_eeprom; |
3714 | 3883 | ||
3715 | /* extract MAC Address */ | 3884 | /* extract MAC Address */ |
3716 | iwl_eeprom_get_mac(priv, priv->mac_addr); | 3885 | iwl_eeprom_get_mac(priv, perm_addr); |
3717 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr); | 3886 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", perm_addr); |
3718 | SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr); | 3887 | SET_IEEE80211_PERM_ADDR(priv->hw, perm_addr); |
3719 | 3888 | ||
3720 | /************************ | 3889 | /************************ |
3721 | * 5. Setup HW constants | 3890 | * 5. Setup HW constants |
@@ -3750,11 +3919,6 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3750 | IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq); | 3919 | IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq); |
3751 | goto out_disable_msi; | 3920 | goto out_disable_msi; |
3752 | } | 3921 | } |
3753 | err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group); | ||
3754 | if (err) { | ||
3755 | IWL_ERR(priv, "failed to create sysfs device attributes\n"); | ||
3756 | goto out_free_irq; | ||
3757 | } | ||
3758 | 3922 | ||
3759 | iwl_setup_deferred_work(priv); | 3923 | iwl_setup_deferred_work(priv); |
3760 | iwl_setup_rx_handlers(priv); | 3924 | iwl_setup_rx_handlers(priv); |
@@ -3788,15 +3952,13 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3788 | 3952 | ||
3789 | err = iwl_request_firmware(priv, true); | 3953 | err = iwl_request_firmware(priv, true); |
3790 | if (err) | 3954 | if (err) |
3791 | goto out_remove_sysfs; | 3955 | goto out_destroy_workqueue; |
3792 | 3956 | ||
3793 | return 0; | 3957 | return 0; |
3794 | 3958 | ||
3795 | out_remove_sysfs: | 3959 | out_destroy_workqueue: |
3796 | destroy_workqueue(priv->workqueue); | 3960 | destroy_workqueue(priv->workqueue); |
3797 | priv->workqueue = NULL; | 3961 | priv->workqueue = NULL; |
3798 | sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group); | ||
3799 | out_free_irq: | ||
3800 | free_irq(priv->pci_dev->irq, priv); | 3962 | free_irq(priv->pci_dev->irq, priv); |
3801 | iwl_free_isr_ict(priv); | 3963 | iwl_free_isr_ict(priv); |
3802 | out_disable_msi: | 3964 | out_disable_msi: |
@@ -3989,6 +4151,47 @@ static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = { | |||
3989 | {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)}, | 4151 | {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)}, |
3990 | {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)}, | 4152 | {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)}, |
3991 | {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)}, | 4153 | {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)}, |
4154 | {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)}, | ||
4155 | {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)}, | ||
4156 | {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)}, | ||
4157 | {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)}, | ||
4158 | {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)}, | ||
4159 | {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)}, | ||
4160 | {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)}, | ||
4161 | {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)}, | ||
4162 | {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)}, | ||
4163 | {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)}, | ||
4164 | {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)}, | ||
4165 | |||
4166 | /* 6x00 Series Gen2b */ | ||
4167 | {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)}, | ||
4168 | {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)}, | ||
4169 | {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)}, | ||
4170 | {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)}, | ||
4171 | {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)}, | ||
4172 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, | ||
4173 | {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)}, | ||
4174 | {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)}, | ||
4175 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, | ||
4176 | {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)}, | ||
4177 | {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)}, | ||
4178 | {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)}, | ||
4179 | {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)}, | ||
4180 | {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)}, | ||
4181 | {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)}, | ||
4182 | {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)}, | ||
4183 | {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)}, | ||
4184 | {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)}, | ||
4185 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, | ||
4186 | {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)}, | ||
4187 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, | ||
4188 | {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)}, | ||
4189 | {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)}, | ||
4190 | {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)}, | ||
4191 | {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)}, | ||
4192 | {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)}, | ||
4193 | {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)}, | ||
4194 | {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)}, | ||
3992 | 4195 | ||
3993 | /* 6x50 WiFi/WiMax Series */ | 4196 | /* 6x50 WiFi/WiMax Series */ |
3994 | {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)}, | 4197 | {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)}, |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.h b/drivers/net/wireless/iwlwifi/iwl-agn.h index 2d748053358e..5c32777b0a49 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.h +++ b/drivers/net/wireless/iwlwifi/iwl-agn.h | |||
@@ -65,6 +65,33 @@ | |||
65 | 65 | ||
66 | #include "iwl-dev.h" | 66 | #include "iwl-dev.h" |
67 | 67 | ||
68 | /* configuration for the _agn devices */ | ||
69 | extern struct iwl_cfg iwl4965_agn_cfg; | ||
70 | extern struct iwl_cfg iwl5300_agn_cfg; | ||
71 | extern struct iwl_cfg iwl5100_agn_cfg; | ||
72 | extern struct iwl_cfg iwl5350_agn_cfg; | ||
73 | extern struct iwl_cfg iwl5100_bgn_cfg; | ||
74 | extern struct iwl_cfg iwl5100_abg_cfg; | ||
75 | extern struct iwl_cfg iwl5150_agn_cfg; | ||
76 | extern struct iwl_cfg iwl5150_abg_cfg; | ||
77 | extern struct iwl_cfg iwl6000g2a_2agn_cfg; | ||
78 | extern struct iwl_cfg iwl6000g2a_2abg_cfg; | ||
79 | extern struct iwl_cfg iwl6000g2a_2bg_cfg; | ||
80 | extern struct iwl_cfg iwl6000g2b_bgn_cfg; | ||
81 | extern struct iwl_cfg iwl6000g2b_bg_cfg; | ||
82 | extern struct iwl_cfg iwl6000g2b_2agn_cfg; | ||
83 | extern struct iwl_cfg iwl6000g2b_2abg_cfg; | ||
84 | extern struct iwl_cfg iwl6000g2b_2bgn_cfg; | ||
85 | extern struct iwl_cfg iwl6000g2b_2bg_cfg; | ||
86 | extern struct iwl_cfg iwl6000i_2agn_cfg; | ||
87 | extern struct iwl_cfg iwl6000i_2abg_cfg; | ||
88 | extern struct iwl_cfg iwl6000i_2bg_cfg; | ||
89 | extern struct iwl_cfg iwl6000_3agn_cfg; | ||
90 | extern struct iwl_cfg iwl6050_2agn_cfg; | ||
91 | extern struct iwl_cfg iwl6050_2abg_cfg; | ||
92 | extern struct iwl_cfg iwl1000_bgn_cfg; | ||
93 | extern struct iwl_cfg iwl1000_bg_cfg; | ||
94 | |||
68 | extern struct iwl_mod_params iwlagn_mod_params; | 95 | extern struct iwl_mod_params iwlagn_mod_params; |
69 | extern struct iwl_hcmd_ops iwlagn_hcmd; | 96 | extern struct iwl_hcmd_ops iwlagn_hcmd; |
70 | extern struct iwl_hcmd_utils_ops iwlagn_hcmd_utils; | 97 | extern struct iwl_hcmd_utils_ops iwlagn_hcmd_utils; |
@@ -93,6 +120,8 @@ int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id, | |||
93 | int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id, | 120 | int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id, |
94 | u16 ssn_idx, u8 tx_fifo); | 121 | u16 ssn_idx, u8 tx_fifo); |
95 | void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask); | 122 | void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask); |
123 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, | ||
124 | int sta_id, int tid, int freed); | ||
96 | 125 | ||
97 | /* uCode */ | 126 | /* uCode */ |
98 | int iwlagn_load_ucode(struct iwl_priv *priv); | 127 | int iwlagn_load_ucode(struct iwl_priv *priv); |
@@ -102,6 +131,7 @@ void iwlagn_rx_calib_complete(struct iwl_priv *priv, | |||
102 | struct iwl_rx_mem_buffer *rxb); | 131 | struct iwl_rx_mem_buffer *rxb); |
103 | void iwlagn_init_alive_start(struct iwl_priv *priv); | 132 | void iwlagn_init_alive_start(struct iwl_priv *priv); |
104 | int iwlagn_alive_notify(struct iwl_priv *priv); | 133 | int iwlagn_alive_notify(struct iwl_priv *priv); |
134 | int iwl_verify_ucode(struct iwl_priv *priv); | ||
105 | 135 | ||
106 | /* lib */ | 136 | /* lib */ |
107 | void iwl_check_abort_status(struct iwl_priv *priv, | 137 | void iwl_check_abort_status(struct iwl_priv *priv, |
@@ -178,4 +208,8 @@ void iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif); | |||
178 | int iwlagn_manage_ibss_station(struct iwl_priv *priv, | 208 | int iwlagn_manage_ibss_station(struct iwl_priv *priv, |
179 | struct ieee80211_vif *vif, bool add); | 209 | struct ieee80211_vif *vif, bool add); |
180 | 210 | ||
211 | /* hcmd */ | ||
212 | int iwlagn_send_rxon_assoc(struct iwl_priv *priv); | ||
213 | int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant); | ||
214 | |||
181 | #endif /* __iwl_agn_h__ */ | 215 | #endif /* __iwl_agn_h__ */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-commands.h b/drivers/net/wireless/iwlwifi/iwl-commands.h index 73d2d59bc1df..c579965ec556 100644 --- a/drivers/net/wireless/iwlwifi/iwl-commands.h +++ b/drivers/net/wireless/iwlwifi/iwl-commands.h | |||
@@ -95,7 +95,7 @@ enum { | |||
95 | 95 | ||
96 | /* Multi-Station support */ | 96 | /* Multi-Station support */ |
97 | REPLY_ADD_STA = 0x18, | 97 | REPLY_ADD_STA = 0x18, |
98 | REPLY_REMOVE_STA = 0x19, /* not used */ | 98 | REPLY_REMOVE_STA = 0x19, |
99 | REPLY_REMOVE_ALL_STA = 0x1a, /* not used */ | 99 | REPLY_REMOVE_ALL_STA = 0x1a, /* not used */ |
100 | 100 | ||
101 | /* Security */ | 101 | /* Security */ |
@@ -952,7 +952,6 @@ struct iwl_qosparam_cmd { | |||
952 | 952 | ||
953 | /* Special, dedicated locations within device's station table */ | 953 | /* Special, dedicated locations within device's station table */ |
954 | #define IWL_AP_ID 0 | 954 | #define IWL_AP_ID 0 |
955 | #define IWL_MULTICAST_ID 1 | ||
956 | #define IWL_STA_ID 2 | 955 | #define IWL_STA_ID 2 |
957 | #define IWL3945_BROADCAST_ID 24 | 956 | #define IWL3945_BROADCAST_ID 24 |
958 | #define IWL3945_STATION_COUNT 25 | 957 | #define IWL3945_STATION_COUNT 25 |
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.c b/drivers/net/wireless/iwlwifi/iwl-core.c index 5a7eca8fb789..62c50bc0089a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.c +++ b/drivers/net/wireless/iwlwifi/iwl-core.c | |||
@@ -141,13 +141,14 @@ int iwl_hwrate_to_plcp_idx(u32 rate_n_flags) | |||
141 | } | 141 | } |
142 | EXPORT_SYMBOL(iwl_hwrate_to_plcp_idx); | 142 | EXPORT_SYMBOL(iwl_hwrate_to_plcp_idx); |
143 | 143 | ||
144 | u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant) | 144 | u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid) |
145 | { | 145 | { |
146 | int i; | 146 | int i; |
147 | u8 ind = ant; | 147 | u8 ind = ant; |
148 | |||
148 | for (i = 0; i < RATE_ANT_NUM - 1; i++) { | 149 | for (i = 0; i < RATE_ANT_NUM - 1; i++) { |
149 | ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0; | 150 | ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0; |
150 | if (priv->hw_params.valid_tx_ant & BIT(ind)) | 151 | if (valid & BIT(ind)) |
151 | return ind; | 152 | return ind; |
152 | } | 153 | } |
153 | return ant; | 154 | return ant; |
@@ -457,7 +458,7 @@ u8 iwl_is_ht40_tx_allowed(struct iwl_priv *priv, | |||
457 | if (!sta_ht_inf->ht_supported) | 458 | if (!sta_ht_inf->ht_supported) |
458 | return 0; | 459 | return 0; |
459 | } | 460 | } |
460 | #ifdef CONFIG_IWLWIFI_DEBUG | 461 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
461 | if (priv->disable_ht40) | 462 | if (priv->disable_ht40) |
462 | return 0; | 463 | return 0; |
463 | #endif | 464 | #endif |
@@ -506,11 +507,11 @@ void iwl_setup_rxon_timing(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
506 | } | 507 | } |
507 | 508 | ||
508 | beacon_int = iwl_adjust_beacon_interval(beacon_int, | 509 | beacon_int = iwl_adjust_beacon_interval(beacon_int, |
509 | priv->hw_params.max_beacon_itrvl * 1024); | 510 | priv->hw_params.max_beacon_itrvl * TIME_UNIT); |
510 | priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int); | 511 | priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int); |
511 | 512 | ||
512 | tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */ | 513 | tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */ |
513 | interval_tm = beacon_int * 1024; | 514 | interval_tm = beacon_int * TIME_UNIT; |
514 | rem = do_div(tsf, interval_tm); | 515 | rem = do_div(tsf, interval_tm); |
515 | priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem); | 516 | priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem); |
516 | 517 | ||
@@ -854,6 +855,45 @@ void iwl_set_rxon_chain(struct iwl_priv *priv) | |||
854 | } | 855 | } |
855 | EXPORT_SYMBOL(iwl_set_rxon_chain); | 856 | EXPORT_SYMBOL(iwl_set_rxon_chain); |
856 | 857 | ||
858 | /* Return valid channel */ | ||
859 | u8 iwl_get_single_channel_number(struct iwl_priv *priv, | ||
860 | enum ieee80211_band band) | ||
861 | { | ||
862 | const struct iwl_channel_info *ch_info; | ||
863 | int i; | ||
864 | u8 channel = 0; | ||
865 | |||
866 | /* only scan single channel, good enough to reset the RF */ | ||
867 | /* pick the first valid not in-use channel */ | ||
868 | if (band == IEEE80211_BAND_5GHZ) { | ||
869 | for (i = 14; i < priv->channel_count; i++) { | ||
870 | if (priv->channel_info[i].channel != | ||
871 | le16_to_cpu(priv->staging_rxon.channel)) { | ||
872 | channel = priv->channel_info[i].channel; | ||
873 | ch_info = iwl_get_channel_info(priv, | ||
874 | band, channel); | ||
875 | if (is_channel_valid(ch_info)) | ||
876 | break; | ||
877 | } | ||
878 | } | ||
879 | } else { | ||
880 | for (i = 0; i < 14; i++) { | ||
881 | if (priv->channel_info[i].channel != | ||
882 | le16_to_cpu(priv->staging_rxon.channel)) { | ||
883 | channel = | ||
884 | priv->channel_info[i].channel; | ||
885 | ch_info = iwl_get_channel_info(priv, | ||
886 | band, channel); | ||
887 | if (is_channel_valid(ch_info)) | ||
888 | break; | ||
889 | } | ||
890 | } | ||
891 | } | ||
892 | |||
893 | return channel; | ||
894 | } | ||
895 | EXPORT_SYMBOL(iwl_get_single_channel_number); | ||
896 | |||
857 | /** | 897 | /** |
858 | * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON | 898 | * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON |
859 | * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz | 899 | * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz |
@@ -893,9 +933,9 @@ int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch) | |||
893 | } | 933 | } |
894 | EXPORT_SYMBOL(iwl_set_rxon_channel); | 934 | EXPORT_SYMBOL(iwl_set_rxon_channel); |
895 | 935 | ||
896 | static void iwl_set_flags_for_band(struct iwl_priv *priv, | 936 | void iwl_set_flags_for_band(struct iwl_priv *priv, |
897 | enum ieee80211_band band, | 937 | enum ieee80211_band band, |
898 | struct ieee80211_vif *vif) | 938 | struct ieee80211_vif *vif) |
899 | { | 939 | { |
900 | if (band == IEEE80211_BAND_5GHZ) { | 940 | if (band == IEEE80211_BAND_5GHZ) { |
901 | priv->staging_rxon.flags &= | 941 | priv->staging_rxon.flags &= |
@@ -904,19 +944,17 @@ static void iwl_set_flags_for_band(struct iwl_priv *priv, | |||
904 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; | 944 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
905 | } else { | 945 | } else { |
906 | /* Copied from iwl_post_associate() */ | 946 | /* Copied from iwl_post_associate() */ |
907 | if (vif && vif->bss_conf.assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) | 947 | if (vif && vif->bss_conf.use_short_slot) |
908 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; | 948 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
909 | else | 949 | else |
910 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | 950 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
911 | 951 | ||
912 | if (vif && vif->type == NL80211_IFTYPE_ADHOC) | ||
913 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | ||
914 | |||
915 | priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK; | 952 | priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK; |
916 | priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK; | 953 | priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK; |
917 | priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK; | 954 | priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK; |
918 | } | 955 | } |
919 | } | 956 | } |
957 | EXPORT_SYMBOL(iwl_set_flags_for_band); | ||
920 | 958 | ||
921 | /* | 959 | /* |
922 | * initialize rxon structure with default values from eeprom | 960 | * initialize rxon structure with default values from eeprom |
@@ -982,15 +1020,17 @@ void iwl_connection_init_rx_config(struct iwl_priv *priv, | |||
982 | /* clear both MIX and PURE40 mode flag */ | 1020 | /* clear both MIX and PURE40 mode flag */ |
983 | priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED | | 1021 | priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED | |
984 | RXON_FLG_CHANNEL_MODE_PURE_40); | 1022 | RXON_FLG_CHANNEL_MODE_PURE_40); |
985 | memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN); | 1023 | |
986 | memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN); | 1024 | if (vif) |
1025 | memcpy(priv->staging_rxon.node_addr, vif->addr, ETH_ALEN); | ||
1026 | |||
987 | priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff; | 1027 | priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff; |
988 | priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff; | 1028 | priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff; |
989 | priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff; | 1029 | priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff; |
990 | } | 1030 | } |
991 | EXPORT_SYMBOL(iwl_connection_init_rx_config); | 1031 | EXPORT_SYMBOL(iwl_connection_init_rx_config); |
992 | 1032 | ||
993 | static void iwl_set_rate(struct iwl_priv *priv) | 1033 | void iwl_set_rate(struct iwl_priv *priv) |
994 | { | 1034 | { |
995 | const struct ieee80211_supported_band *hw = NULL; | 1035 | const struct ieee80211_supported_band *hw = NULL; |
996 | struct ieee80211_rate *rate; | 1036 | struct ieee80211_rate *rate; |
@@ -1018,6 +1058,21 @@ static void iwl_set_rate(struct iwl_priv *priv) | |||
1018 | priv->staging_rxon.ofdm_basic_rates = | 1058 | priv->staging_rxon.ofdm_basic_rates = |
1019 | (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; | 1059 | (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; |
1020 | } | 1060 | } |
1061 | EXPORT_SYMBOL(iwl_set_rate); | ||
1062 | |||
1063 | void iwl_chswitch_done(struct iwl_priv *priv, bool is_success) | ||
1064 | { | ||
1065 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) | ||
1066 | return; | ||
1067 | |||
1068 | if (priv->switch_rxon.switch_in_progress) { | ||
1069 | ieee80211_chswitch_done(priv->vif, is_success); | ||
1070 | mutex_lock(&priv->mutex); | ||
1071 | priv->switch_rxon.switch_in_progress = false; | ||
1072 | mutex_unlock(&priv->mutex); | ||
1073 | } | ||
1074 | } | ||
1075 | EXPORT_SYMBOL(iwl_chswitch_done); | ||
1021 | 1076 | ||
1022 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb) | 1077 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb) |
1023 | { | 1078 | { |
@@ -1032,11 +1087,12 @@ void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb) | |||
1032 | priv->staging_rxon.channel = csa->channel; | 1087 | priv->staging_rxon.channel = csa->channel; |
1033 | IWL_DEBUG_11H(priv, "CSA notif: channel %d\n", | 1088 | IWL_DEBUG_11H(priv, "CSA notif: channel %d\n", |
1034 | le16_to_cpu(csa->channel)); | 1089 | le16_to_cpu(csa->channel)); |
1035 | } else | 1090 | iwl_chswitch_done(priv, true); |
1091 | } else { | ||
1036 | IWL_ERR(priv, "CSA notif (fail) : channel %d\n", | 1092 | IWL_ERR(priv, "CSA notif (fail) : channel %d\n", |
1037 | le16_to_cpu(csa->channel)); | 1093 | le16_to_cpu(csa->channel)); |
1038 | 1094 | iwl_chswitch_done(priv, false); | |
1039 | priv->switch_rxon.switch_in_progress = false; | 1095 | } |
1040 | } | 1096 | } |
1041 | } | 1097 | } |
1042 | EXPORT_SYMBOL(iwl_rx_csa); | 1098 | EXPORT_SYMBOL(iwl_rx_csa); |
@@ -1463,130 +1519,6 @@ int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags, bool clear) | |||
1463 | } | 1519 | } |
1464 | EXPORT_SYMBOL(iwl_send_statistics_request); | 1520 | EXPORT_SYMBOL(iwl_send_statistics_request); |
1465 | 1521 | ||
1466 | /** | ||
1467 | * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host, | ||
1468 | * using sample data 100 bytes apart. If these sample points are good, | ||
1469 | * it's a pretty good bet that everything between them is good, too. | ||
1470 | */ | ||
1471 | static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len) | ||
1472 | { | ||
1473 | u32 val; | ||
1474 | int ret = 0; | ||
1475 | u32 errcnt = 0; | ||
1476 | u32 i; | ||
1477 | |||
1478 | IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len); | ||
1479 | |||
1480 | for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) { | ||
1481 | /* read data comes through single port, auto-incr addr */ | ||
1482 | /* NOTE: Use the debugless read so we don't flood kernel log | ||
1483 | * if IWL_DL_IO is set */ | ||
1484 | iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, | ||
1485 | i + IWL49_RTC_INST_LOWER_BOUND); | ||
1486 | val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); | ||
1487 | if (val != le32_to_cpu(*image)) { | ||
1488 | ret = -EIO; | ||
1489 | errcnt++; | ||
1490 | if (errcnt >= 3) | ||
1491 | break; | ||
1492 | } | ||
1493 | } | ||
1494 | |||
1495 | return ret; | ||
1496 | } | ||
1497 | |||
1498 | /** | ||
1499 | * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host, | ||
1500 | * looking at all data. | ||
1501 | */ | ||
1502 | static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image, | ||
1503 | u32 len) | ||
1504 | { | ||
1505 | u32 val; | ||
1506 | u32 save_len = len; | ||
1507 | int ret = 0; | ||
1508 | u32 errcnt; | ||
1509 | |||
1510 | IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len); | ||
1511 | |||
1512 | iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, | ||
1513 | IWL49_RTC_INST_LOWER_BOUND); | ||
1514 | |||
1515 | errcnt = 0; | ||
1516 | for (; len > 0; len -= sizeof(u32), image++) { | ||
1517 | /* read data comes through single port, auto-incr addr */ | ||
1518 | /* NOTE: Use the debugless read so we don't flood kernel log | ||
1519 | * if IWL_DL_IO is set */ | ||
1520 | val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); | ||
1521 | if (val != le32_to_cpu(*image)) { | ||
1522 | IWL_ERR(priv, "uCode INST section is invalid at " | ||
1523 | "offset 0x%x, is 0x%x, s/b 0x%x\n", | ||
1524 | save_len - len, val, le32_to_cpu(*image)); | ||
1525 | ret = -EIO; | ||
1526 | errcnt++; | ||
1527 | if (errcnt >= 20) | ||
1528 | break; | ||
1529 | } | ||
1530 | } | ||
1531 | |||
1532 | if (!errcnt) | ||
1533 | IWL_DEBUG_INFO(priv, | ||
1534 | "ucode image in INSTRUCTION memory is good\n"); | ||
1535 | |||
1536 | return ret; | ||
1537 | } | ||
1538 | |||
1539 | /** | ||
1540 | * iwl_verify_ucode - determine which instruction image is in SRAM, | ||
1541 | * and verify its contents | ||
1542 | */ | ||
1543 | int iwl_verify_ucode(struct iwl_priv *priv) | ||
1544 | { | ||
1545 | __le32 *image; | ||
1546 | u32 len; | ||
1547 | int ret; | ||
1548 | |||
1549 | /* Try bootstrap */ | ||
1550 | image = (__le32 *)priv->ucode_boot.v_addr; | ||
1551 | len = priv->ucode_boot.len; | ||
1552 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
1553 | if (!ret) { | ||
1554 | IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n"); | ||
1555 | return 0; | ||
1556 | } | ||
1557 | |||
1558 | /* Try initialize */ | ||
1559 | image = (__le32 *)priv->ucode_init.v_addr; | ||
1560 | len = priv->ucode_init.len; | ||
1561 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
1562 | if (!ret) { | ||
1563 | IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n"); | ||
1564 | return 0; | ||
1565 | } | ||
1566 | |||
1567 | /* Try runtime/protocol */ | ||
1568 | image = (__le32 *)priv->ucode_code.v_addr; | ||
1569 | len = priv->ucode_code.len; | ||
1570 | ret = iwlcore_verify_inst_sparse(priv, image, len); | ||
1571 | if (!ret) { | ||
1572 | IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n"); | ||
1573 | return 0; | ||
1574 | } | ||
1575 | |||
1576 | IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n"); | ||
1577 | |||
1578 | /* Since nothing seems to match, show first several data entries in | ||
1579 | * instruction SRAM, so maybe visual inspection will give a clue. | ||
1580 | * Selection of bootstrap image (vs. other images) is arbitrary. */ | ||
1581 | image = (__le32 *)priv->ucode_boot.v_addr; | ||
1582 | len = priv->ucode_boot.len; | ||
1583 | ret = iwl_verify_inst_full(priv, image, len); | ||
1584 | |||
1585 | return ret; | ||
1586 | } | ||
1587 | EXPORT_SYMBOL(iwl_verify_ucode); | ||
1588 | |||
1589 | |||
1590 | void iwl_rf_kill_ct_config(struct iwl_priv *priv) | 1522 | void iwl_rf_kill_ct_config(struct iwl_priv *priv) |
1591 | { | 1523 | { |
1592 | struct iwl_ct_kill_config cmd; | 1524 | struct iwl_ct_kill_config cmd; |
@@ -2007,8 +1939,6 @@ static int iwl_set_mode(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
2007 | if (priv->cfg->ops->hcmd->set_rxon_chain) | 1939 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
2008 | priv->cfg->ops->hcmd->set_rxon_chain(priv); | 1940 | priv->cfg->ops->hcmd->set_rxon_chain(priv); |
2009 | 1941 | ||
2010 | memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN); | ||
2011 | |||
2012 | return iwlcore_commit_rxon(priv); | 1942 | return iwlcore_commit_rxon(priv); |
2013 | } | 1943 | } |
2014 | 1944 | ||
@@ -2017,7 +1947,8 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | |||
2017 | struct iwl_priv *priv = hw->priv; | 1947 | struct iwl_priv *priv = hw->priv; |
2018 | int err = 0; | 1948 | int err = 0; |
2019 | 1949 | ||
2020 | IWL_DEBUG_MAC80211(priv, "enter: type %d\n", vif->type); | 1950 | IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n", |
1951 | vif->type, vif->addr); | ||
2021 | 1952 | ||
2022 | mutex_lock(&priv->mutex); | 1953 | mutex_lock(&priv->mutex); |
2023 | 1954 | ||
@@ -2035,9 +1966,6 @@ int iwl_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | |||
2035 | priv->vif = vif; | 1966 | priv->vif = vif; |
2036 | priv->iw_mode = vif->type; | 1967 | priv->iw_mode = vif->type; |
2037 | 1968 | ||
2038 | IWL_DEBUG_MAC80211(priv, "Set %pM\n", vif->addr); | ||
2039 | memcpy(priv->mac_addr, vif->addr, ETH_ALEN); | ||
2040 | |||
2041 | err = iwl_set_mode(priv, vif); | 1969 | err = iwl_set_mode(priv, vif); |
2042 | if (err) | 1970 | if (err) |
2043 | goto out_err; | 1971 | goto out_err; |
@@ -2071,6 +1999,11 @@ void iwl_mac_remove_interface(struct ieee80211_hw *hw, | |||
2071 | } | 1999 | } |
2072 | if (priv->vif == vif) { | 2000 | if (priv->vif == vif) { |
2073 | priv->vif = NULL; | 2001 | priv->vif = NULL; |
2002 | if (priv->scan_vif == vif) { | ||
2003 | ieee80211_scan_completed(priv->hw, true); | ||
2004 | priv->scan_vif = NULL; | ||
2005 | priv->scan_request = NULL; | ||
2006 | } | ||
2074 | memset(priv->bssid, 0, ETH_ALEN); | 2007 | memset(priv->bssid, 0, ETH_ALEN); |
2075 | } | 2008 | } |
2076 | mutex_unlock(&priv->mutex); | 2009 | mutex_unlock(&priv->mutex); |
@@ -2171,22 +2104,7 @@ int iwl_mac_config(struct ieee80211_hw *hw, u32 changed) | |||
2171 | 2104 | ||
2172 | iwl_set_flags_for_band(priv, conf->channel->band, priv->vif); | 2105 | iwl_set_flags_for_band(priv, conf->channel->band, priv->vif); |
2173 | spin_unlock_irqrestore(&priv->lock, flags); | 2106 | spin_unlock_irqrestore(&priv->lock, flags); |
2174 | if (iwl_is_associated(priv) && | 2107 | |
2175 | (le16_to_cpu(priv->active_rxon.channel) != ch) && | ||
2176 | priv->cfg->ops->lib->set_channel_switch) { | ||
2177 | iwl_set_rate(priv); | ||
2178 | /* | ||
2179 | * at this point, staging_rxon has the | ||
2180 | * configuration for channel switch | ||
2181 | */ | ||
2182 | ret = priv->cfg->ops->lib->set_channel_switch(priv, | ||
2183 | ch); | ||
2184 | if (!ret) { | ||
2185 | iwl_print_rx_config_cmd(priv); | ||
2186 | goto out; | ||
2187 | } | ||
2188 | priv->switch_rxon.switch_in_progress = false; | ||
2189 | } | ||
2190 | set_ch_out: | 2108 | set_ch_out: |
2191 | /* The list of supported rates and rate mask can be different | 2109 | /* The list of supported rates and rate mask can be different |
2192 | * for each band; since the band may have changed, reset | 2110 | * for each band; since the band may have changed, reset |
@@ -2544,7 +2462,7 @@ void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len) | |||
2544 | EXPORT_SYMBOL(iwl_update_stats); | 2462 | EXPORT_SYMBOL(iwl_update_stats); |
2545 | #endif | 2463 | #endif |
2546 | 2464 | ||
2547 | const static char *get_csr_string(int cmd) | 2465 | static const char *get_csr_string(int cmd) |
2548 | { | 2466 | { |
2549 | switch (cmd) { | 2467 | switch (cmd) { |
2550 | IWL_CMD(CSR_HW_IF_CONFIG_REG); | 2468 | IWL_CMD(CSR_HW_IF_CONFIG_REG); |
@@ -2615,7 +2533,7 @@ void iwl_dump_csr(struct iwl_priv *priv) | |||
2615 | } | 2533 | } |
2616 | EXPORT_SYMBOL(iwl_dump_csr); | 2534 | EXPORT_SYMBOL(iwl_dump_csr); |
2617 | 2535 | ||
2618 | const static char *get_fh_string(int cmd) | 2536 | static const char *get_fh_string(int cmd) |
2619 | { | 2537 | { |
2620 | switch (cmd) { | 2538 | switch (cmd) { |
2621 | IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG); | 2539 | IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG); |
@@ -2837,6 +2755,61 @@ void iwl_bg_monitor_recover(unsigned long data) | |||
2837 | } | 2755 | } |
2838 | EXPORT_SYMBOL(iwl_bg_monitor_recover); | 2756 | EXPORT_SYMBOL(iwl_bg_monitor_recover); |
2839 | 2757 | ||
2758 | |||
2759 | /* | ||
2760 | * extended beacon time format | ||
2761 | * time in usec will be changed into a 32-bit value in extended:internal format | ||
2762 | * the extended part is the beacon counts | ||
2763 | * the internal part is the time in usec within one beacon interval | ||
2764 | */ | ||
2765 | u32 iwl_usecs_to_beacons(struct iwl_priv *priv, u32 usec, u32 beacon_interval) | ||
2766 | { | ||
2767 | u32 quot; | ||
2768 | u32 rem; | ||
2769 | u32 interval = beacon_interval * TIME_UNIT; | ||
2770 | |||
2771 | if (!interval || !usec) | ||
2772 | return 0; | ||
2773 | |||
2774 | quot = (usec / interval) & | ||
2775 | (iwl_beacon_time_mask_high(priv, | ||
2776 | priv->hw_params.beacon_time_tsf_bits) >> | ||
2777 | priv->hw_params.beacon_time_tsf_bits); | ||
2778 | rem = (usec % interval) & iwl_beacon_time_mask_low(priv, | ||
2779 | priv->hw_params.beacon_time_tsf_bits); | ||
2780 | |||
2781 | return (quot << priv->hw_params.beacon_time_tsf_bits) + rem; | ||
2782 | } | ||
2783 | EXPORT_SYMBOL(iwl_usecs_to_beacons); | ||
2784 | |||
2785 | /* base is usually what we get from ucode with each received frame, | ||
2786 | * the same as HW timer counter counting down | ||
2787 | */ | ||
2788 | __le32 iwl_add_beacon_time(struct iwl_priv *priv, u32 base, | ||
2789 | u32 addon, u32 beacon_interval) | ||
2790 | { | ||
2791 | u32 base_low = base & iwl_beacon_time_mask_low(priv, | ||
2792 | priv->hw_params.beacon_time_tsf_bits); | ||
2793 | u32 addon_low = addon & iwl_beacon_time_mask_low(priv, | ||
2794 | priv->hw_params.beacon_time_tsf_bits); | ||
2795 | u32 interval = beacon_interval * TIME_UNIT; | ||
2796 | u32 res = (base & iwl_beacon_time_mask_high(priv, | ||
2797 | priv->hw_params.beacon_time_tsf_bits)) + | ||
2798 | (addon & iwl_beacon_time_mask_high(priv, | ||
2799 | priv->hw_params.beacon_time_tsf_bits)); | ||
2800 | |||
2801 | if (base_low > addon_low) | ||
2802 | res += base_low - addon_low; | ||
2803 | else if (base_low < addon_low) { | ||
2804 | res += interval + base_low - addon_low; | ||
2805 | res += (1 << priv->hw_params.beacon_time_tsf_bits); | ||
2806 | } else | ||
2807 | res += (1 << priv->hw_params.beacon_time_tsf_bits); | ||
2808 | |||
2809 | return cpu_to_le32(res); | ||
2810 | } | ||
2811 | EXPORT_SYMBOL(iwl_add_beacon_time); | ||
2812 | |||
2840 | #ifdef CONFIG_PM | 2813 | #ifdef CONFIG_PM |
2841 | 2814 | ||
2842 | int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state) | 2815 | int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state) |
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h index 7e5a5ba41fd2..76288c56a7d7 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.h +++ b/drivers/net/wireless/iwlwifi/iwl-core.h | |||
@@ -79,6 +79,8 @@ struct iwl_cmd; | |||
79 | .subvendor = PCI_ANY_ID, .subdevice = (subdev), \ | 79 | .subvendor = PCI_ANY_ID, .subdevice = (subdev), \ |
80 | .driver_data = (kernel_ulong_t)&(cfg) | 80 | .driver_data = (kernel_ulong_t)&(cfg) |
81 | 81 | ||
82 | #define TIME_UNIT 1024 | ||
83 | |||
82 | #define IWL_SKU_G 0x1 | 84 | #define IWL_SKU_G 0x1 |
83 | #define IWL_SKU_A 0x2 | 85 | #define IWL_SKU_A 0x2 |
84 | #define IWL_SKU_N 0x8 | 86 | #define IWL_SKU_N 0x8 |
@@ -173,7 +175,8 @@ struct iwl_lib_ops { | |||
173 | void (*dump_nic_error_log)(struct iwl_priv *priv); | 175 | void (*dump_nic_error_log)(struct iwl_priv *priv); |
174 | void (*dump_csr)(struct iwl_priv *priv); | 176 | void (*dump_csr)(struct iwl_priv *priv); |
175 | int (*dump_fh)(struct iwl_priv *priv, char **buf, bool display); | 177 | int (*dump_fh)(struct iwl_priv *priv, char **buf, bool display); |
176 | int (*set_channel_switch)(struct iwl_priv *priv, u16 channel); | 178 | int (*set_channel_switch)(struct iwl_priv *priv, |
179 | struct ieee80211_channel_switch *ch_switch); | ||
177 | /* power management */ | 180 | /* power management */ |
178 | struct iwl_apm_ops apm_ops; | 181 | struct iwl_apm_ops apm_ops; |
179 | 182 | ||
@@ -325,7 +328,8 @@ struct iwl_cfg { | |||
325 | const bool ucode_tracing; | 328 | const bool ucode_tracing; |
326 | const bool sensitivity_calib_by_driver; | 329 | const bool sensitivity_calib_by_driver; |
327 | const bool chain_noise_calib_by_driver; | 330 | const bool chain_noise_calib_by_driver; |
328 | u8 scan_antennas[IEEE80211_NUM_BANDS]; | 331 | u8 scan_rx_antennas[IEEE80211_NUM_BANDS]; |
332 | u8 scan_tx_antennas[IEEE80211_NUM_BANDS]; | ||
329 | }; | 333 | }; |
330 | 334 | ||
331 | /*************************** | 335 | /*************************** |
@@ -343,11 +347,17 @@ int iwl_check_rxon_cmd(struct iwl_priv *priv); | |||
343 | int iwl_full_rxon_required(struct iwl_priv *priv); | 347 | int iwl_full_rxon_required(struct iwl_priv *priv); |
344 | void iwl_set_rxon_chain(struct iwl_priv *priv); | 348 | void iwl_set_rxon_chain(struct iwl_priv *priv); |
345 | int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch); | 349 | int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch); |
350 | void iwl_set_flags_for_band(struct iwl_priv *priv, | ||
351 | enum ieee80211_band band, | ||
352 | struct ieee80211_vif *vif); | ||
353 | u8 iwl_get_single_channel_number(struct iwl_priv *priv, | ||
354 | enum ieee80211_band band); | ||
346 | void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_config *ht_conf); | 355 | void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_config *ht_conf); |
347 | u8 iwl_is_ht40_tx_allowed(struct iwl_priv *priv, | 356 | u8 iwl_is_ht40_tx_allowed(struct iwl_priv *priv, |
348 | struct ieee80211_sta_ht_cap *sta_ht_inf); | 357 | struct ieee80211_sta_ht_cap *sta_ht_inf); |
349 | void iwl_connection_init_rx_config(struct iwl_priv *priv, | 358 | void iwl_connection_init_rx_config(struct iwl_priv *priv, |
350 | struct ieee80211_vif *vif); | 359 | struct ieee80211_vif *vif); |
360 | void iwl_set_rate(struct iwl_priv *priv); | ||
351 | int iwl_set_decrypted_flag(struct iwl_priv *priv, | 361 | int iwl_set_decrypted_flag(struct iwl_priv *priv, |
352 | struct ieee80211_hdr *hdr, | 362 | struct ieee80211_hdr *hdr, |
353 | u32 decrypt_res, | 363 | u32 decrypt_res, |
@@ -459,6 +469,7 @@ void iwl_rx_statistics(struct iwl_priv *priv, | |||
459 | struct iwl_rx_mem_buffer *rxb); | 469 | struct iwl_rx_mem_buffer *rxb); |
460 | void iwl_reply_statistics(struct iwl_priv *priv, | 470 | void iwl_reply_statistics(struct iwl_priv *priv, |
461 | struct iwl_rx_mem_buffer *rxb); | 471 | struct iwl_rx_mem_buffer *rxb); |
472 | void iwl_chswitch_done(struct iwl_priv *priv, bool is_success); | ||
462 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); | 473 | void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb); |
463 | 474 | ||
464 | /* TX helpers */ | 475 | /* TX helpers */ |
@@ -472,8 +483,6 @@ int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, | |||
472 | dma_addr_t addr, u16 len, u8 reset, u8 pad); | 483 | dma_addr_t addr, u16 len, u8 reset, u8 pad); |
473 | int iwl_hw_tx_queue_init(struct iwl_priv *priv, | 484 | int iwl_hw_tx_queue_init(struct iwl_priv *priv, |
474 | struct iwl_tx_queue *txq); | 485 | struct iwl_tx_queue *txq); |
475 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, | ||
476 | int sta_id, int tid, int freed); | ||
477 | void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq); | 486 | void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq); |
478 | int iwl_tx_queue_init(struct iwl_priv *priv, struct iwl_tx_queue *txq, | 487 | int iwl_tx_queue_init(struct iwl_priv *priv, struct iwl_tx_queue *txq, |
479 | int slots_num, u32 txq_id); | 488 | int slots_num, u32 txq_id); |
@@ -493,7 +502,7 @@ int iwl_hwrate_to_plcp_idx(u32 rate_n_flags); | |||
493 | 502 | ||
494 | u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv); | 503 | u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv); |
495 | 504 | ||
496 | u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant_idx); | 505 | u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant_idx, u8 valid); |
497 | 506 | ||
498 | static inline u32 iwl_ant_idx_to_flags(u8 ant_idx) | 507 | static inline u32 iwl_ant_idx_to_flags(u8 ant_idx) |
499 | { | 508 | { |
@@ -526,7 +535,7 @@ void iwl_bg_start_internal_scan(struct work_struct *work); | |||
526 | void iwl_internal_short_hw_scan(struct iwl_priv *priv); | 535 | void iwl_internal_short_hw_scan(struct iwl_priv *priv); |
527 | int iwl_force_reset(struct iwl_priv *priv, int mode); | 536 | int iwl_force_reset(struct iwl_priv *priv, int mode); |
528 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, | 537 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, |
529 | const u8 *ie, int ie_len, int left); | 538 | const u8 *ta, const u8 *ie, int ie_len, int left); |
530 | void iwl_setup_rx_scan_handlers(struct iwl_priv *priv); | 539 | void iwl_setup_rx_scan_handlers(struct iwl_priv *priv); |
531 | u16 iwl_get_active_dwell_time(struct iwl_priv *priv, | 540 | u16 iwl_get_active_dwell_time(struct iwl_priv *priv, |
532 | enum ieee80211_band band, | 541 | enum ieee80211_band band, |
@@ -593,6 +602,9 @@ static inline u16 iwl_pcie_link_ctl(struct iwl_priv *priv) | |||
593 | } | 602 | } |
594 | 603 | ||
595 | void iwl_bg_monitor_recover(unsigned long data); | 604 | void iwl_bg_monitor_recover(unsigned long data); |
605 | u32 iwl_usecs_to_beacons(struct iwl_priv *priv, u32 usec, u32 beacon_interval); | ||
606 | __le32 iwl_add_beacon_time(struct iwl_priv *priv, u32 base, | ||
607 | u32 addon, u32 beacon_interval); | ||
596 | 608 | ||
597 | #ifdef CONFIG_PM | 609 | #ifdef CONFIG_PM |
598 | int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state); | 610 | int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state); |
@@ -691,7 +703,6 @@ extern void iwl_rf_kill_ct_config(struct iwl_priv *priv); | |||
691 | extern void iwl_send_bt_config(struct iwl_priv *priv); | 703 | extern void iwl_send_bt_config(struct iwl_priv *priv); |
692 | extern int iwl_send_statistics_request(struct iwl_priv *priv, | 704 | extern int iwl_send_statistics_request(struct iwl_priv *priv, |
693 | u8 flags, bool clear); | 705 | u8 flags, bool clear); |
694 | extern int iwl_verify_ucode(struct iwl_priv *priv); | ||
695 | extern int iwl_send_lq_cmd(struct iwl_priv *priv, | 706 | extern int iwl_send_lq_cmd(struct iwl_priv *priv, |
696 | struct iwl_link_quality_cmd *lq, u8 flags, bool init); | 707 | struct iwl_link_quality_cmd *lq, u8 flags, bool init); |
697 | void iwl_apm_stop(struct iwl_priv *priv); | 708 | void iwl_apm_stop(struct iwl_priv *priv); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-debugfs.c b/drivers/net/wireless/iwlwifi/iwl-debugfs.c index 9659c5d01df9..d9f21bb9d75d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-debugfs.c +++ b/drivers/net/wireless/iwlwifi/iwl-debugfs.c | |||
@@ -106,27 +106,6 @@ static const struct file_operations iwl_dbgfs_##name##_ops = { \ | |||
106 | .open = iwl_dbgfs_open_file_generic, \ | 106 | .open = iwl_dbgfs_open_file_generic, \ |
107 | }; | 107 | }; |
108 | 108 | ||
109 | int iwl_dbgfs_statistics_flag(struct iwl_priv *priv, char *buf, int bufsz) | ||
110 | { | ||
111 | int p = 0; | ||
112 | |||
113 | p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n", | ||
114 | le32_to_cpu(priv->statistics.flag)); | ||
115 | if (le32_to_cpu(priv->statistics.flag) & UCODE_STATISTICS_CLEAR_MSK) | ||
116 | p += scnprintf(buf + p, bufsz - p, | ||
117 | "\tStatistics have been cleared\n"); | ||
118 | p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n", | ||
119 | (le32_to_cpu(priv->statistics.flag) & | ||
120 | UCODE_STATISTICS_FREQUENCY_MSK) | ||
121 | ? "2.4 GHz" : "5.2 GHz"); | ||
122 | p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n", | ||
123 | (le32_to_cpu(priv->statistics.flag) & | ||
124 | UCODE_STATISTICS_NARROW_BAND_MSK) | ||
125 | ? "enabled" : "disabled"); | ||
126 | return p; | ||
127 | } | ||
128 | EXPORT_SYMBOL(iwl_dbgfs_statistics_flag); | ||
129 | |||
130 | static ssize_t iwl_dbgfs_tx_statistics_read(struct file *file, | 109 | static ssize_t iwl_dbgfs_tx_statistics_read(struct file *file, |
131 | char __user *user_buf, | 110 | char __user *user_buf, |
132 | size_t count, loff_t *ppos) { | 111 | size_t count, loff_t *ppos) { |
@@ -330,45 +309,35 @@ static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf, | |||
330 | 309 | ||
331 | for (i = 0; i < max_sta; i++) { | 310 | for (i = 0; i < max_sta; i++) { |
332 | station = &priv->stations[i]; | 311 | station = &priv->stations[i]; |
333 | if (station->used) { | 312 | if (!station->used) |
334 | pos += scnprintf(buf + pos, bufsz - pos, | 313 | continue; |
335 | "station %d:\ngeneral data:\n", i+1); | 314 | pos += scnprintf(buf + pos, bufsz - pos, |
336 | pos += scnprintf(buf + pos, bufsz - pos, "id: %u\n", | 315 | "station %d - addr: %pM, flags: %#x\n", |
337 | station->sta.sta.sta_id); | 316 | i, station->sta.sta.addr, |
338 | pos += scnprintf(buf + pos, bufsz - pos, "mode: %u\n", | 317 | station->sta.station_flags_msk); |
339 | station->sta.mode); | 318 | pos += scnprintf(buf + pos, bufsz - pos, |
340 | pos += scnprintf(buf + pos, bufsz - pos, | 319 | "TID\tseq_num\ttxq_id\tframes\ttfds\t"); |
341 | "flags: 0x%x\n", | 320 | pos += scnprintf(buf + pos, bufsz - pos, |
342 | station->sta.station_flags_msk); | 321 | "start_idx\tbitmap\t\t\trate_n_flags\n"); |
343 | pos += scnprintf(buf + pos, bufsz - pos, "tid data:\n"); | ||
344 | pos += scnprintf(buf + pos, bufsz - pos, | ||
345 | "seq_num\t\ttxq_id"); | ||
346 | pos += scnprintf(buf + pos, bufsz - pos, | ||
347 | "\tframe_count\twait_for_ba\t"); | ||
348 | pos += scnprintf(buf + pos, bufsz - pos, | ||
349 | "start_idx\tbitmap0\t"); | ||
350 | pos += scnprintf(buf + pos, bufsz - pos, | ||
351 | "bitmap1\trate_n_flags"); | ||
352 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); | ||
353 | 322 | ||
354 | for (j = 0; j < MAX_TID_COUNT; j++) { | 323 | for (j = 0; j < MAX_TID_COUNT; j++) { |
355 | pos += scnprintf(buf + pos, bufsz - pos, | 324 | pos += scnprintf(buf + pos, bufsz - pos, |
356 | "[%d]:\t\t%u", j, | 325 | "%d:\t%#x\t%#x\t%u\t%u\t%u\t\t%#.16llx\t%#x", |
357 | station->tid[j].seq_number); | 326 | j, station->tid[j].seq_number, |
358 | pos += scnprintf(buf + pos, bufsz - pos, | 327 | station->tid[j].agg.txq_id, |
359 | "\t%u\t\t%u\t\t%u\t\t", | 328 | station->tid[j].agg.frame_count, |
360 | station->tid[j].agg.txq_id, | 329 | station->tid[j].tfds_in_queue, |
361 | station->tid[j].agg.frame_count, | 330 | station->tid[j].agg.start_idx, |
362 | station->tid[j].agg.wait_for_ba); | 331 | station->tid[j].agg.bitmap, |
332 | station->tid[j].agg.rate_n_flags); | ||
333 | |||
334 | if (station->tid[j].agg.wait_for_ba) | ||
363 | pos += scnprintf(buf + pos, bufsz - pos, | 335 | pos += scnprintf(buf + pos, bufsz - pos, |
364 | "%u\t%llu\t%u", | 336 | " - waitforba"); |
365 | station->tid[j].agg.start_idx, | ||
366 | (unsigned long long)station->tid[j].agg.bitmap, | ||
367 | station->tid[j].agg.rate_n_flags); | ||
368 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); | ||
369 | } | ||
370 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); | 337 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
371 | } | 338 | } |
339 | |||
340 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); | ||
372 | } | 341 | } |
373 | 342 | ||
374 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); | 343 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index a36a6ef45aae..fc6072cdd96f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -48,25 +48,6 @@ | |||
48 | #include "iwl-power.h" | 48 | #include "iwl-power.h" |
49 | #include "iwl-agn-rs.h" | 49 | #include "iwl-agn-rs.h" |
50 | 50 | ||
51 | /* configuration for the iwl4965 */ | ||
52 | extern struct iwl_cfg iwl4965_agn_cfg; | ||
53 | extern struct iwl_cfg iwl5300_agn_cfg; | ||
54 | extern struct iwl_cfg iwl5100_agn_cfg; | ||
55 | extern struct iwl_cfg iwl5350_agn_cfg; | ||
56 | extern struct iwl_cfg iwl5100_bgn_cfg; | ||
57 | extern struct iwl_cfg iwl5100_abg_cfg; | ||
58 | extern struct iwl_cfg iwl5150_agn_cfg; | ||
59 | extern struct iwl_cfg iwl5150_abg_cfg; | ||
60 | extern struct iwl_cfg iwl6000g2a_2agn_cfg; | ||
61 | extern struct iwl_cfg iwl6000i_2agn_cfg; | ||
62 | extern struct iwl_cfg iwl6000i_2abg_cfg; | ||
63 | extern struct iwl_cfg iwl6000i_2bg_cfg; | ||
64 | extern struct iwl_cfg iwl6000_3agn_cfg; | ||
65 | extern struct iwl_cfg iwl6050_2agn_cfg; | ||
66 | extern struct iwl_cfg iwl6050_2abg_cfg; | ||
67 | extern struct iwl_cfg iwl1000_bgn_cfg; | ||
68 | extern struct iwl_cfg iwl1000_bg_cfg; | ||
69 | |||
70 | struct iwl_tx_queue; | 51 | struct iwl_tx_queue; |
71 | 52 | ||
72 | /* CT-KILL constants */ | 53 | /* CT-KILL constants */ |
@@ -133,8 +114,8 @@ struct iwl_cmd_meta { | |||
133 | * structure is stored at the end of the shared queue memory. */ | 114 | * structure is stored at the end of the shared queue memory. */ |
134 | u32 flags; | 115 | u32 flags; |
135 | 116 | ||
136 | DECLARE_PCI_UNMAP_ADDR(mapping) | 117 | DEFINE_DMA_UNMAP_ADDR(mapping); |
137 | DECLARE_PCI_UNMAP_LEN(len) | 118 | DEFINE_DMA_UNMAP_LEN(len); |
138 | }; | 119 | }; |
139 | 120 | ||
140 | /* | 121 | /* |
@@ -161,7 +142,7 @@ struct iwl_queue { | |||
161 | 142 | ||
162 | /* One for each TFD */ | 143 | /* One for each TFD */ |
163 | struct iwl_tx_info { | 144 | struct iwl_tx_info { |
164 | struct sk_buff *skb[IWL_NUM_OF_TBS - 1]; | 145 | struct sk_buff *skb; |
165 | }; | 146 | }; |
166 | 147 | ||
167 | /** | 148 | /** |
@@ -433,7 +414,7 @@ struct iwl_ht_agg { | |||
433 | 414 | ||
434 | 415 | ||
435 | struct iwl_tid_data { | 416 | struct iwl_tid_data { |
436 | u16 seq_number; | 417 | u16 seq_number; /* agn only */ |
437 | u16 tfds_in_queue; | 418 | u16 tfds_in_queue; |
438 | struct iwl_ht_agg agg; | 419 | struct iwl_ht_agg agg; |
439 | }; | 420 | }; |
@@ -583,6 +564,12 @@ enum iwl_ucode_tlv_type { | |||
583 | IWL_UCODE_TLV_INIT_DATA = 4, | 564 | IWL_UCODE_TLV_INIT_DATA = 4, |
584 | IWL_UCODE_TLV_BOOT = 5, | 565 | IWL_UCODE_TLV_BOOT = 5, |
585 | IWL_UCODE_TLV_PROBE_MAX_LEN = 6, /* a u32 value */ | 566 | IWL_UCODE_TLV_PROBE_MAX_LEN = 6, /* a u32 value */ |
567 | IWL_UCODE_TLV_RUNT_EVTLOG_PTR = 8, | ||
568 | IWL_UCODE_TLV_RUNT_EVTLOG_SIZE = 9, | ||
569 | IWL_UCODE_TLV_RUNT_ERRLOG_PTR = 10, | ||
570 | IWL_UCODE_TLV_INIT_EVTLOG_PTR = 11, | ||
571 | IWL_UCODE_TLV_INIT_EVTLOG_SIZE = 12, | ||
572 | IWL_UCODE_TLV_INIT_ERRLOG_PTR = 13, | ||
586 | }; | 573 | }; |
587 | 574 | ||
588 | struct iwl_ucode_tlv { | 575 | struct iwl_ucode_tlv { |
@@ -675,6 +662,7 @@ struct iwl_sensitivity_ranges { | |||
675 | * @sw_crypto: 0 for hw, 1 for sw | 662 | * @sw_crypto: 0 for hw, 1 for sw |
676 | * @max_xxx_size: for ucode uses | 663 | * @max_xxx_size: for ucode uses |
677 | * @ct_kill_threshold: temperature threshold | 664 | * @ct_kill_threshold: temperature threshold |
665 | * @beacon_time_tsf_bits: number of valid tsf bits for beacon time | ||
678 | * @calib_init_cfg: setup initial calibrations for the hw | 666 | * @calib_init_cfg: setup initial calibrations for the hw |
679 | * @struct iwl_sensitivity_ranges: range of sensitivity values | 667 | * @struct iwl_sensitivity_ranges: range of sensitivity values |
680 | */ | 668 | */ |
@@ -701,6 +689,7 @@ struct iwl_hw_params { | |||
701 | u32 ct_kill_threshold; /* value in hw-dependent units */ | 689 | u32 ct_kill_threshold; /* value in hw-dependent units */ |
702 | u32 ct_kill_exit_threshold; /* value in hw-dependent units */ | 690 | u32 ct_kill_exit_threshold; /* value in hw-dependent units */ |
703 | /* for 1000, 6000 series and up */ | 691 | /* for 1000, 6000 series and up */ |
692 | u16 beacon_time_tsf_bits; | ||
704 | u32 calib_init_cfg; | 693 | u32 calib_init_cfg; |
705 | const struct iwl_sensitivity_ranges *sens; | 694 | const struct iwl_sensitivity_ranges *sens; |
706 | }; | 695 | }; |
@@ -1075,6 +1064,20 @@ struct iwl_force_reset { | |||
1075 | unsigned long last_force_reset_jiffies; | 1064 | unsigned long last_force_reset_jiffies; |
1076 | }; | 1065 | }; |
1077 | 1066 | ||
1067 | /* extend beacon time format bit shifting */ | ||
1068 | /* | ||
1069 | * for _3945 devices | ||
1070 | * bits 31:24 - extended | ||
1071 | * bits 23:0 - interval | ||
1072 | */ | ||
1073 | #define IWL3945_EXT_BEACON_TIME_POS 24 | ||
1074 | /* | ||
1075 | * for _agn devices | ||
1076 | * bits 31:22 - extended | ||
1077 | * bits 21:0 - interval | ||
1078 | */ | ||
1079 | #define IWLAGN_EXT_BEACON_TIME_POS 22 | ||
1080 | |||
1078 | struct iwl_priv { | 1081 | struct iwl_priv { |
1079 | 1082 | ||
1080 | /* ieee device used by generic ieee processing code */ | 1083 | /* ieee device used by generic ieee processing code */ |
@@ -1109,7 +1112,7 @@ struct iwl_priv { | |||
1109 | /* force reset */ | 1112 | /* force reset */ |
1110 | struct iwl_force_reset force_reset[IWL_MAX_FORCE_RESET]; | 1113 | struct iwl_force_reset force_reset[IWL_MAX_FORCE_RESET]; |
1111 | 1114 | ||
1112 | /* we allocate array of iwl4965_channel_info for NIC's valid channels. | 1115 | /* we allocate array of iwl_channel_info for NIC's valid channels. |
1113 | * Access via channel # using indirect index array */ | 1116 | * Access via channel # using indirect index array */ |
1114 | struct iwl_channel_info *channel_info; /* channel info array */ | 1117 | struct iwl_channel_info *channel_info; /* channel info array */ |
1115 | u8 channel_count; /* # of channels */ | 1118 | u8 channel_count; /* # of channels */ |
@@ -1127,6 +1130,7 @@ struct iwl_priv { | |||
1127 | void *scan_cmd; | 1130 | void *scan_cmd; |
1128 | enum ieee80211_band scan_band; | 1131 | enum ieee80211_band scan_band; |
1129 | struct cfg80211_scan_request *scan_request; | 1132 | struct cfg80211_scan_request *scan_request; |
1133 | struct ieee80211_vif *scan_vif; | ||
1130 | bool is_internal_short_scan; | 1134 | bool is_internal_short_scan; |
1131 | u8 scan_tx_ant[IEEE80211_NUM_BANDS]; | 1135 | u8 scan_tx_ant[IEEE80211_NUM_BANDS]; |
1132 | u8 mgmt_tx_ant; | 1136 | u8 mgmt_tx_ant; |
@@ -1174,7 +1178,7 @@ struct iwl_priv { | |||
1174 | struct iwl_switch_rxon switch_rxon; | 1178 | struct iwl_switch_rxon switch_rxon; |
1175 | 1179 | ||
1176 | /* 1st responses from initialize and runtime uCode images. | 1180 | /* 1st responses from initialize and runtime uCode images. |
1177 | * 4965's initialize alive response contains some calibration data. */ | 1181 | * _agn's initialize alive response contains some calibration data. */ |
1178 | struct iwl_init_alive_resp card_alive_init; | 1182 | struct iwl_init_alive_resp card_alive_init; |
1179 | struct iwl_alive_resp card_alive; | 1183 | struct iwl_alive_resp card_alive; |
1180 | 1184 | ||
@@ -1221,7 +1225,7 @@ struct iwl_priv { | |||
1221 | struct iwl_tt_mgmt thermal_throttle; | 1225 | struct iwl_tt_mgmt thermal_throttle; |
1222 | 1226 | ||
1223 | struct iwl_notif_statistics statistics; | 1227 | struct iwl_notif_statistics statistics; |
1224 | #ifdef CONFIG_IWLWIFI_DEBUG | 1228 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
1225 | struct iwl_notif_statistics accum_statistics; | 1229 | struct iwl_notif_statistics accum_statistics; |
1226 | struct iwl_notif_statistics delta_statistics; | 1230 | struct iwl_notif_statistics delta_statistics; |
1227 | struct iwl_notif_statistics max_delta; | 1231 | struct iwl_notif_statistics max_delta; |
@@ -1229,9 +1233,10 @@ struct iwl_priv { | |||
1229 | 1233 | ||
1230 | /* context information */ | 1234 | /* context information */ |
1231 | u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */ | 1235 | u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */ |
1232 | u8 mac_addr[ETH_ALEN]; | ||
1233 | 1236 | ||
1234 | /*station table variables */ | 1237 | /* station table variables */ |
1238 | |||
1239 | /* Note: if lock and sta_lock are needed, lock must be acquired first */ | ||
1235 | spinlock_t sta_lock; | 1240 | spinlock_t sta_lock; |
1236 | int num_stations; | 1241 | int num_stations; |
1237 | struct iwl_station_entry stations[IWL_STATION_COUNT]; | 1242 | struct iwl_station_entry stations[IWL_STATION_COUNT]; |
@@ -1273,7 +1278,7 @@ struct iwl_priv { | |||
1273 | struct delayed_work rfkill_poll; | 1278 | struct delayed_work rfkill_poll; |
1274 | 1279 | ||
1275 | struct iwl3945_notif_statistics statistics; | 1280 | struct iwl3945_notif_statistics statistics; |
1276 | #ifdef CONFIG_IWLWIFI_DEBUG | 1281 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
1277 | struct iwl3945_notif_statistics accum_statistics; | 1282 | struct iwl3945_notif_statistics accum_statistics; |
1278 | struct iwl3945_notif_statistics delta_statistics; | 1283 | struct iwl3945_notif_statistics delta_statistics; |
1279 | struct iwl3945_notif_statistics max_delta; | 1284 | struct iwl3945_notif_statistics max_delta; |
@@ -1315,6 +1320,9 @@ struct iwl_priv { | |||
1315 | bool last_phy_res_valid; | 1320 | bool last_phy_res_valid; |
1316 | 1321 | ||
1317 | struct completion firmware_loading_complete; | 1322 | struct completion firmware_loading_complete; |
1323 | |||
1324 | u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr; | ||
1325 | u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr; | ||
1318 | } _agn; | 1326 | } _agn; |
1319 | #endif | 1327 | #endif |
1320 | }; | 1328 | }; |
@@ -1353,9 +1361,7 @@ struct iwl_priv { | |||
1353 | /* debugging info */ | 1361 | /* debugging info */ |
1354 | u32 debug_level; /* per device debugging will override global | 1362 | u32 debug_level; /* per device debugging will override global |
1355 | iwl_debug_level if set */ | 1363 | iwl_debug_level if set */ |
1356 | u32 framecnt_to_us; | 1364 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
1357 | atomic_t restrict_refcnt; | ||
1358 | bool disable_ht40; | ||
1359 | #ifdef CONFIG_IWLWIFI_DEBUGFS | 1365 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
1360 | /* debugfs */ | 1366 | /* debugfs */ |
1361 | u16 tx_traffic_idx; | 1367 | u16 tx_traffic_idx; |
@@ -1364,8 +1370,8 @@ struct iwl_priv { | |||
1364 | u8 *rx_traffic; | 1370 | u8 *rx_traffic; |
1365 | struct dentry *debugfs_dir; | 1371 | struct dentry *debugfs_dir; |
1366 | u32 dbgfs_sram_offset, dbgfs_sram_len; | 1372 | u32 dbgfs_sram_offset, dbgfs_sram_len; |
1373 | bool disable_ht40; | ||
1367 | #endif /* CONFIG_IWLWIFI_DEBUGFS */ | 1374 | #endif /* CONFIG_IWLWIFI_DEBUGFS */ |
1368 | #endif /* CONFIG_IWLWIFI_DEBUG */ | ||
1369 | 1375 | ||
1370 | struct work_struct txpower_work; | 1376 | struct work_struct txpower_work; |
1371 | u32 disable_sens_cal; | 1377 | u32 disable_sens_cal; |
@@ -1419,9 +1425,9 @@ static inline u32 iwl_get_debug_level(struct iwl_priv *priv) | |||
1419 | static inline struct ieee80211_hdr *iwl_tx_queue_get_hdr(struct iwl_priv *priv, | 1425 | static inline struct ieee80211_hdr *iwl_tx_queue_get_hdr(struct iwl_priv *priv, |
1420 | int txq_id, int idx) | 1426 | int txq_id, int idx) |
1421 | { | 1427 | { |
1422 | if (priv->txq[txq_id].txb[idx].skb[0]) | 1428 | if (priv->txq[txq_id].txb[idx].skb) |
1423 | return (struct ieee80211_hdr *)priv->txq[txq_id]. | 1429 | return (struct ieee80211_hdr *)priv->txq[txq_id]. |
1424 | txb[idx].skb[0]->data; | 1430 | txb[idx].skb->data; |
1425 | return NULL; | 1431 | return NULL; |
1426 | } | 1432 | } |
1427 | 1433 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-helpers.h b/drivers/net/wireless/iwlwifi/iwl-helpers.h index 3ff6b9d25a10..621abe3c5afc 100644 --- a/drivers/net/wireless/iwlwifi/iwl-helpers.h +++ b/drivers/net/wireless/iwlwifi/iwl-helpers.h | |||
@@ -92,6 +92,11 @@ static inline void iwl_free_fw_desc(struct pci_dev *pci_dev, | |||
92 | static inline int iwl_alloc_fw_desc(struct pci_dev *pci_dev, | 92 | static inline int iwl_alloc_fw_desc(struct pci_dev *pci_dev, |
93 | struct fw_desc *desc) | 93 | struct fw_desc *desc) |
94 | { | 94 | { |
95 | if (!desc->len) { | ||
96 | desc->v_addr = NULL; | ||
97 | return -EINVAL; | ||
98 | } | ||
99 | |||
95 | desc->v_addr = dma_alloc_coherent(&pci_dev->dev, desc->len, | 100 | desc->v_addr = dma_alloc_coherent(&pci_dev->dev, desc->len, |
96 | &desc->p_addr, GFP_KERNEL); | 101 | &desc->p_addr, GFP_KERNEL); |
97 | return (desc->v_addr != NULL) ? 0 : -ENOMEM; | 102 | return (desc->v_addr != NULL) ? 0 : -ENOMEM; |
@@ -170,4 +175,26 @@ static inline void iwl_enable_interrupts(struct iwl_priv *priv) | |||
170 | iwl_write32(priv, CSR_INT_MASK, priv->inta_mask); | 175 | iwl_write32(priv, CSR_INT_MASK, priv->inta_mask); |
171 | } | 176 | } |
172 | 177 | ||
178 | /** | ||
179 | * iwl_beacon_time_mask_low - mask of lower 32 bit of beacon time | ||
180 | * @priv -- pointer to iwl_priv data structure | ||
181 | * @tsf_bits -- number of bits need to shift for masking) | ||
182 | */ | ||
183 | static inline u32 iwl_beacon_time_mask_low(struct iwl_priv *priv, | ||
184 | u16 tsf_bits) | ||
185 | { | ||
186 | return (1 << tsf_bits) - 1; | ||
187 | } | ||
188 | |||
189 | /** | ||
190 | * iwl_beacon_time_mask_high - mask of higher 32 bit of beacon time | ||
191 | * @priv -- pointer to iwl_priv data structure | ||
192 | * @tsf_bits -- number of bits need to shift for masking) | ||
193 | */ | ||
194 | static inline u32 iwl_beacon_time_mask_high(struct iwl_priv *priv, | ||
195 | u16 tsf_bits) | ||
196 | { | ||
197 | return ((1 << (32 - tsf_bits)) - 1) << tsf_bits; | ||
198 | } | ||
199 | |||
173 | #endif /* __iwl_helpers_h__ */ | 200 | #endif /* __iwl_helpers_h__ */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-rx.c b/drivers/net/wireless/iwlwifi/iwl-rx.c index 0a5d7cf25196..5e32057d6938 100644 --- a/drivers/net/wireless/iwlwifi/iwl-rx.c +++ b/drivers/net/wireless/iwlwifi/iwl-rx.c | |||
@@ -286,7 +286,7 @@ static void iwl_rx_calc_noise(struct iwl_priv *priv) | |||
286 | last_rx_noise); | 286 | last_rx_noise); |
287 | } | 287 | } |
288 | 288 | ||
289 | #ifdef CONFIG_IWLWIFI_DEBUG | 289 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
290 | /* | 290 | /* |
291 | * based on the assumption of all statistics counter are in DWORD | 291 | * based on the assumption of all statistics counter are in DWORD |
292 | * FIXME: This function is for debugging, do not deal with | 292 | * FIXME: This function is for debugging, do not deal with |
@@ -448,7 +448,7 @@ void iwl_rx_statistics(struct iwl_priv *priv, | |||
448 | STATISTICS_REPLY_FLG_HT40_MODE_MSK) != | 448 | STATISTICS_REPLY_FLG_HT40_MODE_MSK) != |
449 | (pkt->u.stats.flag & STATISTICS_REPLY_FLG_HT40_MODE_MSK))); | 449 | (pkt->u.stats.flag & STATISTICS_REPLY_FLG_HT40_MODE_MSK))); |
450 | 450 | ||
451 | #ifdef CONFIG_IWLWIFI_DEBUG | 451 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
452 | iwl_accumulative_statistics(priv, (__le32 *)&pkt->u.stats); | 452 | iwl_accumulative_statistics(priv, (__le32 *)&pkt->u.stats); |
453 | #endif | 453 | #endif |
454 | iwl_recover_from_statistics(priv, pkt); | 454 | iwl_recover_from_statistics(priv, pkt); |
@@ -480,7 +480,7 @@ void iwl_reply_statistics(struct iwl_priv *priv, | |||
480 | struct iwl_rx_packet *pkt = rxb_addr(rxb); | 480 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
481 | 481 | ||
482 | if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATISTICS_CLEAR_MSK) { | 482 | if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATISTICS_CLEAR_MSK) { |
483 | #ifdef CONFIG_IWLWIFI_DEBUG | 483 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
484 | memset(&priv->accum_statistics, 0, | 484 | memset(&priv->accum_statistics, 0, |
485 | sizeof(struct iwl_notif_statistics)); | 485 | sizeof(struct iwl_notif_statistics)); |
486 | memset(&priv->delta_statistics, 0, | 486 | memset(&priv->delta_statistics, 0, |
diff --git a/drivers/net/wireless/iwlwifi/iwl-scan.c b/drivers/net/wireless/iwlwifi/iwl-scan.c index 5d3f51ff2f0d..b8bcd48eb8fa 100644 --- a/drivers/net/wireless/iwlwifi/iwl-scan.c +++ b/drivers/net/wireless/iwlwifi/iwl-scan.c | |||
@@ -333,7 +333,8 @@ int iwl_mac_hw_scan(struct ieee80211_hw *hw, | |||
333 | goto out_unlock; | 333 | goto out_unlock; |
334 | } | 334 | } |
335 | 335 | ||
336 | if (test_bit(STATUS_SCANNING, &priv->status)) { | 336 | if (test_bit(STATUS_SCANNING, &priv->status) && |
337 | !priv->is_internal_short_scan) { | ||
337 | IWL_DEBUG_SCAN(priv, "Scan already in progress.\n"); | 338 | IWL_DEBUG_SCAN(priv, "Scan already in progress.\n"); |
338 | ret = -EAGAIN; | 339 | ret = -EAGAIN; |
339 | goto out_unlock; | 340 | goto out_unlock; |
@@ -348,8 +349,16 @@ int iwl_mac_hw_scan(struct ieee80211_hw *hw, | |||
348 | /* mac80211 will only ask for one band at a time */ | 349 | /* mac80211 will only ask for one band at a time */ |
349 | priv->scan_band = req->channels[0]->band; | 350 | priv->scan_band = req->channels[0]->band; |
350 | priv->scan_request = req; | 351 | priv->scan_request = req; |
352 | priv->scan_vif = vif; | ||
351 | 353 | ||
352 | ret = iwl_scan_initiate(priv, vif); | 354 | /* |
355 | * If an internal scan is in progress, just set | ||
356 | * up the scan_request as per above. | ||
357 | */ | ||
358 | if (priv->is_internal_short_scan) | ||
359 | ret = 0; | ||
360 | else | ||
361 | ret = iwl_scan_initiate(priv, vif); | ||
353 | 362 | ||
354 | IWL_DEBUG_MAC80211(priv, "leave\n"); | 363 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
355 | 364 | ||
@@ -438,7 +447,7 @@ EXPORT_SYMBOL(iwl_bg_scan_check); | |||
438 | */ | 447 | */ |
439 | 448 | ||
440 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, | 449 | u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, |
441 | const u8 *ies, int ie_len, int left) | 450 | const u8 *ta, const u8 *ies, int ie_len, int left) |
442 | { | 451 | { |
443 | int len = 0; | 452 | int len = 0; |
444 | u8 *pos = NULL; | 453 | u8 *pos = NULL; |
@@ -451,7 +460,7 @@ u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame, | |||
451 | 460 | ||
452 | frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); | 461 | frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); |
453 | memcpy(frame->da, iwl_bcast_addr, ETH_ALEN); | 462 | memcpy(frame->da, iwl_bcast_addr, ETH_ALEN); |
454 | memcpy(frame->sa, priv->mac_addr, ETH_ALEN); | 463 | memcpy(frame->sa, ta, ETH_ALEN); |
455 | memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN); | 464 | memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN); |
456 | frame->seq_ctrl = 0; | 465 | frame->seq_ctrl = 0; |
457 | 466 | ||
@@ -513,7 +522,21 @@ void iwl_bg_scan_completed(struct work_struct *work) | |||
513 | priv->is_internal_short_scan = false; | 522 | priv->is_internal_short_scan = false; |
514 | IWL_DEBUG_SCAN(priv, "internal short scan completed\n"); | 523 | IWL_DEBUG_SCAN(priv, "internal short scan completed\n"); |
515 | internal = true; | 524 | internal = true; |
525 | } else { | ||
526 | priv->scan_request = NULL; | ||
527 | priv->scan_vif = NULL; | ||
516 | } | 528 | } |
529 | |||
530 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) | ||
531 | goto out; | ||
532 | |||
533 | if (internal && priv->scan_request) | ||
534 | iwl_scan_initiate(priv, priv->scan_vif); | ||
535 | |||
536 | /* Since setting the TXPOWER may have been deferred while | ||
537 | * performing the scan, fire one off */ | ||
538 | iwl_set_tx_power(priv, priv->tx_power_user_lmt, true); | ||
539 | out: | ||
517 | mutex_unlock(&priv->mutex); | 540 | mutex_unlock(&priv->mutex); |
518 | 541 | ||
519 | /* | 542 | /* |
@@ -523,15 +546,6 @@ void iwl_bg_scan_completed(struct work_struct *work) | |||
523 | */ | 546 | */ |
524 | if (!internal) | 547 | if (!internal) |
525 | ieee80211_scan_completed(priv->hw, false); | 548 | ieee80211_scan_completed(priv->hw, false); |
526 | |||
527 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) | ||
528 | return; | ||
529 | |||
530 | /* Since setting the TXPOWER may have been deferred while | ||
531 | * performing the scan, fire one off */ | ||
532 | mutex_lock(&priv->mutex); | ||
533 | iwl_set_tx_power(priv, priv->tx_power_user_lmt, true); | ||
534 | mutex_unlock(&priv->mutex); | ||
535 | } | 549 | } |
536 | EXPORT_SYMBOL(iwl_bg_scan_completed); | 550 | EXPORT_SYMBOL(iwl_bg_scan_completed); |
537 | 551 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.c b/drivers/net/wireless/iwlwifi/iwl-sta.c index 83a26361a9b5..c7127132c298 100644 --- a/drivers/net/wireless/iwlwifi/iwl-sta.c +++ b/drivers/net/wireless/iwlwifi/iwl-sta.c | |||
@@ -311,10 +311,10 @@ int iwl_add_station_common(struct iwl_priv *priv, const u8 *addr, | |||
311 | struct ieee80211_sta_ht_cap *ht_info, | 311 | struct ieee80211_sta_ht_cap *ht_info, |
312 | u8 *sta_id_r) | 312 | u8 *sta_id_r) |
313 | { | 313 | { |
314 | struct iwl_station_entry *station; | ||
315 | unsigned long flags_spin; | 314 | unsigned long flags_spin; |
316 | int ret = 0; | 315 | int ret = 0; |
317 | u8 sta_id; | 316 | u8 sta_id; |
317 | struct iwl_addsta_cmd sta_cmd; | ||
318 | 318 | ||
319 | *sta_id_r = 0; | 319 | *sta_id_r = 0; |
320 | spin_lock_irqsave(&priv->sta_lock, flags_spin); | 320 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
@@ -347,14 +347,15 @@ int iwl_add_station_common(struct iwl_priv *priv, const u8 *addr, | |||
347 | } | 347 | } |
348 | 348 | ||
349 | priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS; | 349 | priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS; |
350 | station = &priv->stations[sta_id]; | 350 | memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd)); |
351 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 351 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
352 | 352 | ||
353 | /* Add station to device's station table */ | 353 | /* Add station to device's station table */ |
354 | ret = iwl_send_add_sta(priv, &station->sta, CMD_SYNC); | 354 | ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
355 | if (ret) { | 355 | if (ret) { |
356 | IWL_ERR(priv, "Adding station %pM failed.\n", station->sta.sta.addr); | ||
357 | spin_lock_irqsave(&priv->sta_lock, flags_spin); | 356 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
357 | IWL_ERR(priv, "Adding station %pM failed.\n", | ||
358 | priv->stations[sta_id].sta.sta.addr); | ||
358 | priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE; | 359 | priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE; |
359 | priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS; | 360 | priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS; |
360 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 361 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
@@ -488,7 +489,7 @@ static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id) | |||
488 | } | 489 | } |
489 | 490 | ||
490 | static int iwl_send_remove_station(struct iwl_priv *priv, | 491 | static int iwl_send_remove_station(struct iwl_priv *priv, |
491 | struct iwl_station_entry *station) | 492 | const u8 *addr, int sta_id) |
492 | { | 493 | { |
493 | struct iwl_rx_packet *pkt; | 494 | struct iwl_rx_packet *pkt; |
494 | int ret; | 495 | int ret; |
@@ -505,7 +506,7 @@ static int iwl_send_remove_station(struct iwl_priv *priv, | |||
505 | 506 | ||
506 | memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd)); | 507 | memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd)); |
507 | rm_sta_cmd.num_sta = 1; | 508 | rm_sta_cmd.num_sta = 1; |
508 | memcpy(&rm_sta_cmd.addr, &station->sta.sta.addr , ETH_ALEN); | 509 | memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN); |
509 | 510 | ||
510 | cmd.flags |= CMD_WANT_SKB; | 511 | cmd.flags |= CMD_WANT_SKB; |
511 | 512 | ||
@@ -525,7 +526,7 @@ static int iwl_send_remove_station(struct iwl_priv *priv, | |||
525 | switch (pkt->u.rem_sta.status) { | 526 | switch (pkt->u.rem_sta.status) { |
526 | case REM_STA_SUCCESS_MSK: | 527 | case REM_STA_SUCCESS_MSK: |
527 | spin_lock_irqsave(&priv->sta_lock, flags_spin); | 528 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
528 | iwl_sta_ucode_deactivate(priv, station->sta.sta.sta_id); | 529 | iwl_sta_ucode_deactivate(priv, sta_id); |
529 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 530 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
530 | IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n"); | 531 | IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n"); |
531 | break; | 532 | break; |
@@ -546,7 +547,6 @@ static int iwl_send_remove_station(struct iwl_priv *priv, | |||
546 | int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id, | 547 | int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id, |
547 | const u8 *addr) | 548 | const u8 *addr) |
548 | { | 549 | { |
549 | struct iwl_station_entry *station; | ||
550 | unsigned long flags; | 550 | unsigned long flags; |
551 | 551 | ||
552 | if (!iwl_is_ready(priv)) { | 552 | if (!iwl_is_ready(priv)) { |
@@ -592,10 +592,9 @@ int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id, | |||
592 | 592 | ||
593 | BUG_ON(priv->num_stations < 0); | 593 | BUG_ON(priv->num_stations < 0); |
594 | 594 | ||
595 | station = &priv->stations[sta_id]; | ||
596 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 595 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
597 | 596 | ||
598 | return iwl_send_remove_station(priv, station); | 597 | return iwl_send_remove_station(priv, addr, sta_id); |
599 | out_err: | 598 | out_err: |
600 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 599 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
601 | return -EINVAL; | 600 | return -EINVAL; |
@@ -643,11 +642,13 @@ EXPORT_SYMBOL(iwl_clear_ucode_stations); | |||
643 | */ | 642 | */ |
644 | void iwl_restore_stations(struct iwl_priv *priv) | 643 | void iwl_restore_stations(struct iwl_priv *priv) |
645 | { | 644 | { |
646 | struct iwl_station_entry *station; | 645 | struct iwl_addsta_cmd sta_cmd; |
646 | struct iwl_link_quality_cmd lq; | ||
647 | unsigned long flags_spin; | 647 | unsigned long flags_spin; |
648 | int i; | 648 | int i; |
649 | bool found = false; | 649 | bool found = false; |
650 | int ret; | 650 | int ret; |
651 | bool send_lq; | ||
651 | 652 | ||
652 | if (!iwl_is_ready(priv)) { | 653 | if (!iwl_is_ready(priv)) { |
653 | IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n"); | 654 | IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n"); |
@@ -669,13 +670,20 @@ void iwl_restore_stations(struct iwl_priv *priv) | |||
669 | 670 | ||
670 | for (i = 0; i < priv->hw_params.max_stations; i++) { | 671 | for (i = 0; i < priv->hw_params.max_stations; i++) { |
671 | if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) { | 672 | if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) { |
673 | memcpy(&sta_cmd, &priv->stations[i].sta, | ||
674 | sizeof(struct iwl_addsta_cmd)); | ||
675 | send_lq = false; | ||
676 | if (priv->stations[i].lq) { | ||
677 | memcpy(&lq, priv->stations[i].lq, | ||
678 | sizeof(struct iwl_link_quality_cmd)); | ||
679 | send_lq = true; | ||
680 | } | ||
672 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 681 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
673 | station = &priv->stations[i]; | 682 | ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
674 | ret = iwl_send_add_sta(priv, &priv->stations[i].sta, CMD_SYNC); | ||
675 | if (ret) { | 683 | if (ret) { |
676 | IWL_ERR(priv, "Adding station %pM failed.\n", | ||
677 | station->sta.sta.addr); | ||
678 | spin_lock_irqsave(&priv->sta_lock, flags_spin); | 684 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
685 | IWL_ERR(priv, "Adding station %pM failed.\n", | ||
686 | priv->stations[i].sta.sta.addr); | ||
679 | priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE; | 687 | priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE; |
680 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; | 688 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; |
681 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); | 689 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
@@ -684,8 +692,8 @@ void iwl_restore_stations(struct iwl_priv *priv) | |||
684 | * Rate scaling has already been initialized, send | 692 | * Rate scaling has already been initialized, send |
685 | * current LQ command | 693 | * current LQ command |
686 | */ | 694 | */ |
687 | if (station->lq) | 695 | if (send_lq) |
688 | iwl_send_lq_cmd(priv, station->lq, CMD_SYNC, true); | 696 | iwl_send_lq_cmd(priv, &lq, CMD_SYNC, true); |
689 | spin_lock_irqsave(&priv->sta_lock, flags_spin); | 697 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
690 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; | 698 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; |
691 | } | 699 | } |
@@ -972,24 +980,16 @@ void iwl_update_tkip_key(struct iwl_priv *priv, | |||
972 | unsigned long flags; | 980 | unsigned long flags; |
973 | int i; | 981 | int i; |
974 | 982 | ||
975 | if (sta) { | ||
976 | sta_id = iwl_sta_id(sta); | ||
977 | |||
978 | if (sta_id == IWL_INVALID_STATION) { | ||
979 | IWL_DEBUG_MAC80211(priv, "leave - %pM not initialised.\n", | ||
980 | sta->addr); | ||
981 | return; | ||
982 | } | ||
983 | } else | ||
984 | sta_id = priv->hw_params.bcast_sta_id; | ||
985 | |||
986 | |||
987 | if (iwl_scan_cancel(priv)) { | 983 | if (iwl_scan_cancel(priv)) { |
988 | /* cancel scan failed, just live w/ bad key and rely | 984 | /* cancel scan failed, just live w/ bad key and rely |
989 | briefly on SW decryption */ | 985 | briefly on SW decryption */ |
990 | return; | 986 | return; |
991 | } | 987 | } |
992 | 988 | ||
989 | sta_id = iwl_sta_id_or_broadcast(priv, sta); | ||
990 | if (sta_id == IWL_INVALID_STATION) | ||
991 | return; | ||
992 | |||
993 | spin_lock_irqsave(&priv->sta_lock, flags); | 993 | spin_lock_irqsave(&priv->sta_lock, flags); |
994 | 994 | ||
995 | priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32; | 995 | priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32; |
@@ -1277,9 +1277,8 @@ void iwl_sta_tx_modify_enable_tid(struct iwl_priv *priv, int sta_id, int tid) | |||
1277 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX; | 1277 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX; |
1278 | priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid)); | 1278 | priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid)); |
1279 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | 1279 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
1280 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1281 | |||
1282 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | 1280 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); |
1281 | spin_unlock_irqrestore(&priv->sta_lock, flags); | ||
1283 | } | 1282 | } |
1284 | EXPORT_SYMBOL(iwl_sta_tx_modify_enable_tid); | 1283 | EXPORT_SYMBOL(iwl_sta_tx_modify_enable_tid); |
1285 | 1284 | ||
@@ -1310,7 +1309,7 @@ int iwl_sta_rx_agg_stop(struct iwl_priv *priv, struct ieee80211_sta *sta, | |||
1310 | int tid) | 1309 | int tid) |
1311 | { | 1310 | { |
1312 | unsigned long flags; | 1311 | unsigned long flags; |
1313 | int sta_id; | 1312 | int sta_id, ret; |
1314 | 1313 | ||
1315 | sta_id = iwl_sta_id(sta); | 1314 | sta_id = iwl_sta_id(sta); |
1316 | if (sta_id == IWL_INVALID_STATION) { | 1315 | if (sta_id == IWL_INVALID_STATION) { |
@@ -1323,10 +1322,11 @@ int iwl_sta_rx_agg_stop(struct iwl_priv *priv, struct ieee80211_sta *sta, | |||
1323 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK; | 1322 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK; |
1324 | priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid; | 1323 | priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid; |
1325 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | 1324 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
1325 | ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1326 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 1326 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
1327 | 1327 | ||
1328 | return iwl_send_add_sta(priv, &priv->stations[sta_id].sta, | 1328 | return ret; |
1329 | CMD_ASYNC); | 1329 | |
1330 | } | 1330 | } |
1331 | EXPORT_SYMBOL(iwl_sta_rx_agg_stop); | 1331 | EXPORT_SYMBOL(iwl_sta_rx_agg_stop); |
1332 | 1332 | ||
@@ -1340,9 +1340,9 @@ void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id) | |||
1340 | priv->stations[sta_id].sta.sta.modify_mask = 0; | 1340 | priv->stations[sta_id].sta.sta.modify_mask = 0; |
1341 | priv->stations[sta_id].sta.sleep_tx_count = 0; | 1341 | priv->stations[sta_id].sta.sleep_tx_count = 0; |
1342 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | 1342 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
1343 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1343 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 1344 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
1344 | 1345 | ||
1345 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1346 | } | 1346 | } |
1347 | EXPORT_SYMBOL(iwl_sta_modify_ps_wake); | 1347 | EXPORT_SYMBOL(iwl_sta_modify_ps_wake); |
1348 | 1348 | ||
@@ -1357,9 +1357,9 @@ void iwl_sta_modify_sleep_tx_count(struct iwl_priv *priv, int sta_id, int cnt) | |||
1357 | STA_MODIFY_SLEEP_TX_COUNT_MSK; | 1357 | STA_MODIFY_SLEEP_TX_COUNT_MSK; |
1358 | priv->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt); | 1358 | priv->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt); |
1359 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | 1359 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
1360 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1360 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 1361 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
1361 | 1362 | ||
1362 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC); | ||
1363 | } | 1363 | } |
1364 | EXPORT_SYMBOL(iwl_sta_modify_sleep_tx_count); | 1364 | EXPORT_SYMBOL(iwl_sta_modify_sleep_tx_count); |
1365 | 1365 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.h b/drivers/net/wireless/iwlwifi/iwl-sta.h index c2a453a1a991..5b1b1e461eb6 100644 --- a/drivers/net/wireless/iwlwifi/iwl-sta.h +++ b/drivers/net/wireless/iwlwifi/iwl-sta.h | |||
@@ -107,4 +107,33 @@ static inline int iwl_sta_id(struct ieee80211_sta *sta) | |||
107 | 107 | ||
108 | return ((struct iwl_station_priv_common *)sta->drv_priv)->sta_id; | 108 | return ((struct iwl_station_priv_common *)sta->drv_priv)->sta_id; |
109 | } | 109 | } |
110 | |||
111 | /** | ||
112 | * iwl_sta_id_or_broadcast - return sta_id or broadcast sta | ||
113 | * @priv: iwl priv | ||
114 | * @sta: mac80211 station | ||
115 | * | ||
116 | * In certain circumstances mac80211 passes a station pointer | ||
117 | * that may be %NULL, for example during TX or key setup. In | ||
118 | * that case, we need to use the broadcast station, so this | ||
119 | * inline wraps that pattern. | ||
120 | */ | ||
121 | static inline int iwl_sta_id_or_broadcast(struct iwl_priv *priv, | ||
122 | struct ieee80211_sta *sta) | ||
123 | { | ||
124 | int sta_id; | ||
125 | |||
126 | if (!sta) | ||
127 | return priv->hw_params.bcast_sta_id; | ||
128 | |||
129 | sta_id = iwl_sta_id(sta); | ||
130 | |||
131 | /* | ||
132 | * mac80211 should not be passing a partially | ||
133 | * initialised station! | ||
134 | */ | ||
135 | WARN_ON(sta_id == IWL_INVALID_STATION); | ||
136 | |||
137 | return sta_id; | ||
138 | } | ||
110 | #endif /* __iwl_sta_h__ */ | 139 | #endif /* __iwl_sta_h__ */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-tx.c b/drivers/net/wireless/iwlwifi/iwl-tx.c index 1ece2ea09773..a81989c06983 100644 --- a/drivers/net/wireless/iwlwifi/iwl-tx.c +++ b/drivers/net/wireless/iwlwifi/iwl-tx.c | |||
@@ -77,21 +77,6 @@ void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq) | |||
77 | } | 77 | } |
78 | EXPORT_SYMBOL(iwl_txq_update_write_ptr); | 78 | EXPORT_SYMBOL(iwl_txq_update_write_ptr); |
79 | 79 | ||
80 | |||
81 | void iwl_free_tfds_in_queue(struct iwl_priv *priv, | ||
82 | int sta_id, int tid, int freed) | ||
83 | { | ||
84 | if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed) | ||
85 | priv->stations[sta_id].tid[tid].tfds_in_queue -= freed; | ||
86 | else { | ||
87 | IWL_DEBUG_TX(priv, "free more than tfds_in_queue (%u:%d)\n", | ||
88 | priv->stations[sta_id].tid[tid].tfds_in_queue, | ||
89 | freed); | ||
90 | priv->stations[sta_id].tid[tid].tfds_in_queue = 0; | ||
91 | } | ||
92 | } | ||
93 | EXPORT_SYMBOL(iwl_free_tfds_in_queue); | ||
94 | |||
95 | /** | 80 | /** |
96 | * iwl_tx_queue_free - Deallocate DMA queue. | 81 | * iwl_tx_queue_free - Deallocate DMA queue. |
97 | * @txq: Transmit queue to deallocate. | 82 | * @txq: Transmit queue to deallocate. |
@@ -169,15 +154,15 @@ void iwl_cmd_queue_free(struct iwl_priv *priv) | |||
169 | } | 154 | } |
170 | 155 | ||
171 | pci_unmap_single(priv->pci_dev, | 156 | pci_unmap_single(priv->pci_dev, |
172 | pci_unmap_addr(&txq->meta[i], mapping), | 157 | dma_unmap_addr(&txq->meta[i], mapping), |
173 | pci_unmap_len(&txq->meta[i], len), | 158 | dma_unmap_len(&txq->meta[i], len), |
174 | PCI_DMA_BIDIRECTIONAL); | 159 | PCI_DMA_BIDIRECTIONAL); |
175 | } | 160 | } |
176 | if (huge) { | 161 | if (huge) { |
177 | i = q->n_window; | 162 | i = q->n_window; |
178 | pci_unmap_single(priv->pci_dev, | 163 | pci_unmap_single(priv->pci_dev, |
179 | pci_unmap_addr(&txq->meta[i], mapping), | 164 | dma_unmap_addr(&txq->meta[i], mapping), |
180 | pci_unmap_len(&txq->meta[i], len), | 165 | dma_unmap_len(&txq->meta[i], len), |
181 | PCI_DMA_BIDIRECTIONAL); | 166 | PCI_DMA_BIDIRECTIONAL); |
182 | } | 167 | } |
183 | 168 | ||
@@ -287,7 +272,7 @@ static int iwl_tx_queue_alloc(struct iwl_priv *priv, | |||
287 | /* Driver private data, only for Tx (not command) queues, | 272 | /* Driver private data, only for Tx (not command) queues, |
288 | * not shared with device. */ | 273 | * not shared with device. */ |
289 | if (id != IWL_CMD_QUEUE_NUM) { | 274 | if (id != IWL_CMD_QUEUE_NUM) { |
290 | txq->txb = kmalloc(sizeof(txq->txb[0]) * | 275 | txq->txb = kzalloc(sizeof(txq->txb[0]) * |
291 | TFD_QUEUE_SIZE_MAX, GFP_KERNEL); | 276 | TFD_QUEUE_SIZE_MAX, GFP_KERNEL); |
292 | if (!txq->txb) { | 277 | if (!txq->txb) { |
293 | IWL_ERR(priv, "kmalloc for auxiliary BD " | 278 | IWL_ERR(priv, "kmalloc for auxiliary BD " |
@@ -531,8 +516,8 @@ int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) | |||
531 | 516 | ||
532 | phys_addr = pci_map_single(priv->pci_dev, &out_cmd->hdr, | 517 | phys_addr = pci_map_single(priv->pci_dev, &out_cmd->hdr, |
533 | fix_size, PCI_DMA_BIDIRECTIONAL); | 518 | fix_size, PCI_DMA_BIDIRECTIONAL); |
534 | pci_unmap_addr_set(out_meta, mapping, phys_addr); | 519 | dma_unmap_addr_set(out_meta, mapping, phys_addr); |
535 | pci_unmap_len_set(out_meta, len, fix_size); | 520 | dma_unmap_len_set(out_meta, len, fix_size); |
536 | 521 | ||
537 | trace_iwlwifi_dev_hcmd(priv, &out_cmd->hdr, fix_size, cmd->flags); | 522 | trace_iwlwifi_dev_hcmd(priv, &out_cmd->hdr, fix_size, cmd->flags); |
538 | 523 | ||
@@ -626,8 +611,8 @@ void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb) | |||
626 | meta = &txq->meta[cmd_index]; | 611 | meta = &txq->meta[cmd_index]; |
627 | 612 | ||
628 | pci_unmap_single(priv->pci_dev, | 613 | pci_unmap_single(priv->pci_dev, |
629 | pci_unmap_addr(meta, mapping), | 614 | dma_unmap_addr(meta, mapping), |
630 | pci_unmap_len(meta, len), | 615 | dma_unmap_len(meta, len), |
631 | PCI_DMA_BIDIRECTIONAL); | 616 | PCI_DMA_BIDIRECTIONAL); |
632 | 617 | ||
633 | /* Input error checking is done when commands are added to queue. */ | 618 | /* Input error checking is done when commands are added to queue. */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 3e5bffb6034f..0f16c7d518f7 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -197,6 +197,7 @@ static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv, | |||
197 | static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id) | 197 | static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id) |
198 | { | 198 | { |
199 | unsigned long flags; | 199 | unsigned long flags; |
200 | struct iwl_addsta_cmd sta_cmd; | ||
200 | 201 | ||
201 | spin_lock_irqsave(&priv->sta_lock, flags); | 202 | spin_lock_irqsave(&priv->sta_lock, flags); |
202 | memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key)); | 203 | memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key)); |
@@ -205,11 +206,11 @@ static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id) | |||
205 | priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC; | 206 | priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC; |
206 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; | 207 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
207 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; | 208 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
209 | memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd)); | ||
208 | spin_unlock_irqrestore(&priv->sta_lock, flags); | 210 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
209 | 211 | ||
210 | IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n"); | 212 | IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n"); |
211 | iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0); | 213 | return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
212 | return 0; | ||
213 | } | 214 | } |
214 | 215 | ||
215 | static int iwl3945_set_dynamic_key(struct iwl_priv *priv, | 216 | static int iwl3945_set_dynamic_key(struct iwl_priv *priv, |
@@ -474,10 +475,8 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
474 | u8 unicast; | 475 | u8 unicast; |
475 | u8 sta_id; | 476 | u8 sta_id; |
476 | u8 tid = 0; | 477 | u8 tid = 0; |
477 | u16 seq_number = 0; | ||
478 | __le16 fc; | 478 | __le16 fc; |
479 | u8 wait_write_ptr = 0; | 479 | u8 wait_write_ptr = 0; |
480 | u8 *qc = NULL; | ||
481 | unsigned long flags; | 480 | unsigned long flags; |
482 | 481 | ||
483 | spin_lock_irqsave(&priv->lock, flags); | 482 | spin_lock_irqsave(&priv->lock, flags); |
@@ -510,10 +509,7 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
510 | hdr_len = ieee80211_hdrlen(fc); | 509 | hdr_len = ieee80211_hdrlen(fc); |
511 | 510 | ||
512 | /* Find index into station table for destination station */ | 511 | /* Find index into station table for destination station */ |
513 | if (!info->control.sta) | 512 | sta_id = iwl_sta_id_or_broadcast(priv, info->control.sta); |
514 | sta_id = priv->hw_params.bcast_sta_id; | ||
515 | else | ||
516 | sta_id = iwl_sta_id(info->control.sta); | ||
517 | if (sta_id == IWL_INVALID_STATION) { | 513 | if (sta_id == IWL_INVALID_STATION) { |
518 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", | 514 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", |
519 | hdr->addr1); | 515 | hdr->addr1); |
@@ -523,16 +519,10 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
523 | IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id); | 519 | IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id); |
524 | 520 | ||
525 | if (ieee80211_is_data_qos(fc)) { | 521 | if (ieee80211_is_data_qos(fc)) { |
526 | qc = ieee80211_get_qos_ctl(hdr); | 522 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
527 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; | 523 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
528 | if (unlikely(tid >= MAX_TID_COUNT)) | 524 | if (unlikely(tid >= MAX_TID_COUNT)) |
529 | goto drop; | 525 | goto drop; |
530 | seq_number = priv->stations[sta_id].tid[tid].seq_number & | ||
531 | IEEE80211_SCTL_SEQ; | ||
532 | hdr->seq_ctrl = cpu_to_le16(seq_number) | | ||
533 | (hdr->seq_ctrl & | ||
534 | cpu_to_le16(IEEE80211_SCTL_FRAG)); | ||
535 | seq_number += 0x10; | ||
536 | } | 526 | } |
537 | 527 | ||
538 | /* Descriptor for chosen Tx queue */ | 528 | /* Descriptor for chosen Tx queue */ |
@@ -548,7 +538,7 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
548 | 538 | ||
549 | /* Set up driver data for this TFD */ | 539 | /* Set up driver data for this TFD */ |
550 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info)); | 540 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info)); |
551 | txq->txb[q->write_ptr].skb[0] = skb; | 541 | txq->txb[q->write_ptr].skb = skb; |
552 | 542 | ||
553 | /* Init first empty entry in queue's array of Tx/cmd buffers */ | 543 | /* Init first empty entry in queue's array of Tx/cmd buffers */ |
554 | out_cmd = txq->cmd[idx]; | 544 | out_cmd = txq->cmd[idx]; |
@@ -591,8 +581,6 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
591 | 581 | ||
592 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | 582 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
593 | txq->need_update = 1; | 583 | txq->need_update = 1; |
594 | if (qc) | ||
595 | priv->stations[sta_id].tid[tid].seq_number = seq_number; | ||
596 | } else { | 584 | } else { |
597 | wait_write_ptr = 1; | 585 | wait_write_ptr = 1; |
598 | txq->need_update = 0; | 586 | txq->need_update = 0; |
@@ -631,8 +619,8 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
631 | len, PCI_DMA_TODEVICE); | 619 | len, PCI_DMA_TODEVICE); |
632 | /* we do not map meta data ... so we can safely access address to | 620 | /* we do not map meta data ... so we can safely access address to |
633 | * provide to unmap command*/ | 621 | * provide to unmap command*/ |
634 | pci_unmap_addr_set(out_meta, mapping, txcmd_phys); | 622 | dma_unmap_addr_set(out_meta, mapping, txcmd_phys); |
635 | pci_unmap_len_set(out_meta, len, len); | 623 | dma_unmap_len_set(out_meta, len, len); |
636 | 624 | ||
637 | /* Add buffer containing Tx command and MAC(!) header to TFD's | 625 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
638 | * first entry */ | 626 | * first entry */ |
@@ -677,55 +665,6 @@ drop: | |||
677 | return -1; | 665 | return -1; |
678 | } | 666 | } |
679 | 667 | ||
680 | #define BEACON_TIME_MASK_LOW 0x00FFFFFF | ||
681 | #define BEACON_TIME_MASK_HIGH 0xFF000000 | ||
682 | #define TIME_UNIT 1024 | ||
683 | |||
684 | /* | ||
685 | * extended beacon time format | ||
686 | * time in usec will be changed into a 32-bit value in 8:24 format | ||
687 | * the high 1 byte is the beacon counts | ||
688 | * the lower 3 bytes is the time in usec within one beacon interval | ||
689 | */ | ||
690 | |||
691 | static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval) | ||
692 | { | ||
693 | u32 quot; | ||
694 | u32 rem; | ||
695 | u32 interval = beacon_interval * 1024; | ||
696 | |||
697 | if (!interval || !usec) | ||
698 | return 0; | ||
699 | |||
700 | quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24); | ||
701 | rem = (usec % interval) & BEACON_TIME_MASK_LOW; | ||
702 | |||
703 | return (quot << 24) + rem; | ||
704 | } | ||
705 | |||
706 | /* base is usually what we get from ucode with each received frame, | ||
707 | * the same as HW timer counter counting down | ||
708 | */ | ||
709 | |||
710 | static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval) | ||
711 | { | ||
712 | u32 base_low = base & BEACON_TIME_MASK_LOW; | ||
713 | u32 addon_low = addon & BEACON_TIME_MASK_LOW; | ||
714 | u32 interval = beacon_interval * TIME_UNIT; | ||
715 | u32 res = (base & BEACON_TIME_MASK_HIGH) + | ||
716 | (addon & BEACON_TIME_MASK_HIGH); | ||
717 | |||
718 | if (base_low > addon_low) | ||
719 | res += base_low - addon_low; | ||
720 | else if (base_low < addon_low) { | ||
721 | res += interval + base_low - addon_low; | ||
722 | res += (1 << 24); | ||
723 | } else | ||
724 | res += (1 << 24); | ||
725 | |||
726 | return cpu_to_le32(res); | ||
727 | } | ||
728 | |||
729 | static int iwl3945_get_measurement(struct iwl_priv *priv, | 668 | static int iwl3945_get_measurement(struct iwl_priv *priv, |
730 | struct ieee80211_measurement_params *params, | 669 | struct ieee80211_measurement_params *params, |
731 | u8 type) | 670 | u8 type) |
@@ -743,8 +682,7 @@ static int iwl3945_get_measurement(struct iwl_priv *priv, | |||
743 | int duration = le16_to_cpu(params->duration); | 682 | int duration = le16_to_cpu(params->duration); |
744 | 683 | ||
745 | if (iwl_is_associated(priv)) | 684 | if (iwl_is_associated(priv)) |
746 | add_time = | 685 | add_time = iwl_usecs_to_beacons(priv, |
747 | iwl3945_usecs_to_beacons( | ||
748 | le64_to_cpu(params->start_time) - priv->_3945.last_tsf, | 686 | le64_to_cpu(params->start_time) - priv->_3945.last_tsf, |
749 | le16_to_cpu(priv->rxon_timing.beacon_interval)); | 687 | le16_to_cpu(priv->rxon_timing.beacon_interval)); |
750 | 688 | ||
@@ -759,8 +697,8 @@ static int iwl3945_get_measurement(struct iwl_priv *priv, | |||
759 | 697 | ||
760 | if (iwl_is_associated(priv)) | 698 | if (iwl_is_associated(priv)) |
761 | spectrum.start_time = | 699 | spectrum.start_time = |
762 | iwl3945_add_beacon_time(priv->_3945.last_beacon_time, | 700 | iwl_add_beacon_time(priv, |
763 | add_time, | 701 | priv->_3945.last_beacon_time, add_time, |
764 | le16_to_cpu(priv->rxon_timing.beacon_interval)); | 702 | le16_to_cpu(priv->rxon_timing.beacon_interval)); |
765 | else | 703 | else |
766 | spectrum.start_time = 0; | 704 | spectrum.start_time = 0; |
@@ -1844,6 +1782,49 @@ static void iwl3945_irq_tasklet(struct iwl_priv *priv) | |||
1844 | #endif | 1782 | #endif |
1845 | } | 1783 | } |
1846 | 1784 | ||
1785 | static int iwl3945_get_single_channel_for_scan(struct iwl_priv *priv, | ||
1786 | struct ieee80211_vif *vif, | ||
1787 | enum ieee80211_band band, | ||
1788 | struct iwl3945_scan_channel *scan_ch) | ||
1789 | { | ||
1790 | const struct ieee80211_supported_band *sband; | ||
1791 | u16 passive_dwell = 0; | ||
1792 | u16 active_dwell = 0; | ||
1793 | int added = 0; | ||
1794 | u8 channel = 0; | ||
1795 | |||
1796 | sband = iwl_get_hw_mode(priv, band); | ||
1797 | if (!sband) { | ||
1798 | IWL_ERR(priv, "invalid band\n"); | ||
1799 | return added; | ||
1800 | } | ||
1801 | |||
1802 | active_dwell = iwl_get_active_dwell_time(priv, band, 0); | ||
1803 | passive_dwell = iwl_get_passive_dwell_time(priv, band, vif); | ||
1804 | |||
1805 | if (passive_dwell <= active_dwell) | ||
1806 | passive_dwell = active_dwell + 1; | ||
1807 | |||
1808 | |||
1809 | channel = iwl_get_single_channel_number(priv, band); | ||
1810 | |||
1811 | if (channel) { | ||
1812 | scan_ch->channel = channel; | ||
1813 | scan_ch->type = 0; /* passive */ | ||
1814 | scan_ch->active_dwell = cpu_to_le16(active_dwell); | ||
1815 | scan_ch->passive_dwell = cpu_to_le16(passive_dwell); | ||
1816 | /* Set txpower levels to defaults */ | ||
1817 | scan_ch->tpc.dsp_atten = 110; | ||
1818 | if (band == IEEE80211_BAND_5GHZ) | ||
1819 | scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3; | ||
1820 | else | ||
1821 | scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3)); | ||
1822 | added++; | ||
1823 | } else | ||
1824 | IWL_ERR(priv, "no valid channel found\n"); | ||
1825 | return added; | ||
1826 | } | ||
1827 | |||
1847 | static int iwl3945_get_channels_for_scan(struct iwl_priv *priv, | 1828 | static int iwl3945_get_channels_for_scan(struct iwl_priv *priv, |
1848 | enum ieee80211_band band, | 1829 | enum ieee80211_band band, |
1849 | u8 is_active, u8 n_probes, | 1830 | u8 is_active, u8 n_probes, |
@@ -2979,22 +2960,31 @@ void iwl3945_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
2979 | scan->tx_cmd.len = cpu_to_le16( | 2960 | scan->tx_cmd.len = cpu_to_le16( |
2980 | iwl_fill_probe_req(priv, | 2961 | iwl_fill_probe_req(priv, |
2981 | (struct ieee80211_mgmt *)scan->data, | 2962 | (struct ieee80211_mgmt *)scan->data, |
2963 | vif->addr, | ||
2982 | priv->scan_request->ie, | 2964 | priv->scan_request->ie, |
2983 | priv->scan_request->ie_len, | 2965 | priv->scan_request->ie_len, |
2984 | IWL_MAX_SCAN_SIZE - sizeof(*scan))); | 2966 | IWL_MAX_SCAN_SIZE - sizeof(*scan))); |
2985 | } else { | 2967 | } else { |
2968 | /* use bcast addr, will not be transmitted but must be valid */ | ||
2986 | scan->tx_cmd.len = cpu_to_le16( | 2969 | scan->tx_cmd.len = cpu_to_le16( |
2987 | iwl_fill_probe_req(priv, | 2970 | iwl_fill_probe_req(priv, |
2988 | (struct ieee80211_mgmt *)scan->data, | 2971 | (struct ieee80211_mgmt *)scan->data, |
2989 | NULL, 0, | 2972 | iwl_bcast_addr, NULL, 0, |
2990 | IWL_MAX_SCAN_SIZE - sizeof(*scan))); | 2973 | IWL_MAX_SCAN_SIZE - sizeof(*scan))); |
2991 | } | 2974 | } |
2992 | /* select Rx antennas */ | 2975 | /* select Rx antennas */ |
2993 | scan->flags |= iwl3945_get_antenna_flags(priv); | 2976 | scan->flags |= iwl3945_get_antenna_flags(priv); |
2994 | 2977 | ||
2995 | scan->channel_count = | 2978 | if (priv->is_internal_short_scan) { |
2996 | iwl3945_get_channels_for_scan(priv, band, is_active, n_probes, | 2979 | scan->channel_count = |
2997 | (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)], vif); | 2980 | iwl3945_get_single_channel_for_scan(priv, vif, band, |
2981 | (void *)&scan->data[le16_to_cpu( | ||
2982 | scan->tx_cmd.len)]); | ||
2983 | } else { | ||
2984 | scan->channel_count = | ||
2985 | iwl3945_get_channels_for_scan(priv, band, is_active, n_probes, | ||
2986 | (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)], vif); | ||
2987 | } | ||
2998 | 2988 | ||
2999 | if (scan->channel_count == 0) { | 2989 | if (scan->channel_count == 0) { |
3000 | IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count); | 2990 | IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count); |
@@ -3108,19 +3098,16 @@ void iwl3945_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
3108 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", | 3098 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", |
3109 | vif->bss_conf.aid, vif->bss_conf.beacon_int); | 3099 | vif->bss_conf.aid, vif->bss_conf.beacon_int); |
3110 | 3100 | ||
3111 | if (vif->bss_conf.assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE) | 3101 | if (vif->bss_conf.use_short_preamble) |
3112 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; | 3102 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
3113 | else | 3103 | else |
3114 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; | 3104 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
3115 | 3105 | ||
3116 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { | 3106 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
3117 | if (vif->bss_conf.assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) | 3107 | if (vif->bss_conf.use_short_slot) |
3118 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; | 3108 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
3119 | else | 3109 | else |
3120 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | 3110 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
3121 | |||
3122 | if (vif->type == NL80211_IFTYPE_ADHOC) | ||
3123 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | ||
3124 | } | 3111 | } |
3125 | 3112 | ||
3126 | iwlcore_commit_rxon(priv); | 3113 | iwlcore_commit_rxon(priv); |
@@ -3284,8 +3271,7 @@ void iwl3945_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
3284 | 3271 | ||
3285 | priv->staging_rxon.assoc_id = 0; | 3272 | priv->staging_rxon.assoc_id = 0; |
3286 | 3273 | ||
3287 | if (vif->bss_conf.assoc_capability & | 3274 | if (vif->bss_conf.use_short_preamble) |
3288 | WLAN_CAPABILITY_SHORT_PREAMBLE) | ||
3289 | priv->staging_rxon.flags |= | 3275 | priv->staging_rxon.flags |= |
3290 | RXON_FLG_SHORT_PREAMBLE_MSK; | 3276 | RXON_FLG_SHORT_PREAMBLE_MSK; |
3291 | else | 3277 | else |
@@ -3293,17 +3279,12 @@ void iwl3945_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) | |||
3293 | ~RXON_FLG_SHORT_PREAMBLE_MSK; | 3279 | ~RXON_FLG_SHORT_PREAMBLE_MSK; |
3294 | 3280 | ||
3295 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { | 3281 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
3296 | if (vif->bss_conf.assoc_capability & | 3282 | if (vif->bss_conf.use_short_slot) |
3297 | WLAN_CAPABILITY_SHORT_SLOT_TIME) | ||
3298 | priv->staging_rxon.flags |= | 3283 | priv->staging_rxon.flags |= |
3299 | RXON_FLG_SHORT_SLOT_MSK; | 3284 | RXON_FLG_SHORT_SLOT_MSK; |
3300 | else | 3285 | else |
3301 | priv->staging_rxon.flags &= | 3286 | priv->staging_rxon.flags &= |
3302 | ~RXON_FLG_SHORT_SLOT_MSK; | 3287 | ~RXON_FLG_SHORT_SLOT_MSK; |
3303 | |||
3304 | if (vif->type == NL80211_IFTYPE_ADHOC) | ||
3305 | priv->staging_rxon.flags &= | ||
3306 | ~RXON_FLG_SHORT_SLOT_MSK; | ||
3307 | } | 3288 | } |
3308 | /* restore RXON assoc */ | 3289 | /* restore RXON assoc */ |
3309 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; | 3290 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; |
@@ -3336,17 +3317,9 @@ static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
3336 | static_key = !iwl_is_associated(priv); | 3317 | static_key = !iwl_is_associated(priv); |
3337 | 3318 | ||
3338 | if (!static_key) { | 3319 | if (!static_key) { |
3339 | if (!sta) { | 3320 | sta_id = iwl_sta_id_or_broadcast(priv, sta); |
3340 | sta_id = priv->hw_params.bcast_sta_id; | 3321 | if (sta_id == IWL_INVALID_STATION) |
3341 | } else { | 3322 | return -EINVAL; |
3342 | sta_id = iwl_sta_id(sta); | ||
3343 | if (sta_id == IWL_INVALID_STATION) { | ||
3344 | IWL_DEBUG_MAC80211(priv, | ||
3345 | "leave - %pM not in station map.\n", | ||
3346 | sta->addr); | ||
3347 | return -EINVAL; | ||
3348 | } | ||
3349 | } | ||
3350 | } | 3323 | } |
3351 | 3324 | ||
3352 | mutex_lock(&priv->mutex); | 3325 | mutex_lock(&priv->mutex); |
@@ -3973,9 +3946,6 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
3973 | priv->pci_dev = pdev; | 3946 | priv->pci_dev = pdev; |
3974 | priv->inta_mask = CSR_INI_SET_MASK; | 3947 | priv->inta_mask = CSR_INI_SET_MASK; |
3975 | 3948 | ||
3976 | #ifdef CONFIG_IWLWIFI_DEBUG | ||
3977 | atomic_set(&priv->restrict_refcnt, 0); | ||
3978 | #endif | ||
3979 | if (iwl_alloc_traffic_mem(priv)) | 3949 | if (iwl_alloc_traffic_mem(priv)) |
3980 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); | 3950 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); |
3981 | 3951 | ||
@@ -4044,9 +4014,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
4044 | } | 4014 | } |
4045 | /* MAC Address location in EEPROM same for 3945/4965 */ | 4015 | /* MAC Address location in EEPROM same for 3945/4965 */ |
4046 | eeprom = (struct iwl3945_eeprom *)priv->eeprom; | 4016 | eeprom = (struct iwl3945_eeprom *)priv->eeprom; |
4047 | memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN); | 4017 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", eeprom->mac_address); |
4048 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr); | 4018 | SET_IEEE80211_PERM_ADDR(priv->hw, eeprom->mac_address); |
4049 | SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr); | ||
4050 | 4019 | ||
4051 | /*********************** | 4020 | /*********************** |
4052 | * 5. Setup HW Constants | 4021 | * 5. Setup HW Constants |
diff --git a/drivers/net/wireless/iwmc3200wifi/hal.c b/drivers/net/wireless/iwmc3200wifi/hal.c index 9531b18cf72a..907ac890997c 100644 --- a/drivers/net/wireless/iwmc3200wifi/hal.c +++ b/drivers/net/wireless/iwmc3200wifi/hal.c | |||
@@ -54,7 +54,7 @@ | |||
54 | * LMAC. If you look at LMAC commands you'll se that they | 54 | * LMAC. If you look at LMAC commands you'll se that they |
55 | * are actually regular iwlwifi target commands encapsulated | 55 | * are actually regular iwlwifi target commands encapsulated |
56 | * into a special UMAC command called UMAC passthrough. | 56 | * into a special UMAC command called UMAC passthrough. |
57 | * This is due to the fact the the host talks exclusively | 57 | * This is due to the fact the host talks exclusively |
58 | * to the UMAC and so there needs to be a special UMAC | 58 | * to the UMAC and so there needs to be a special UMAC |
59 | * command for talking to the LMAC. | 59 | * command for talking to the LMAC. |
60 | * This is how a wifi command is layed out: | 60 | * This is how a wifi command is layed out: |
diff --git a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c index e1184deca559..c02fcedea9fa 100644 --- a/drivers/net/wireless/iwmc3200wifi/rx.c +++ b/drivers/net/wireless/iwmc3200wifi/rx.c | |||
@@ -321,14 +321,14 @@ iwm_rx_ticket_node_alloc(struct iwm_priv *iwm, struct iwm_rx_ticket *ticket) | |||
321 | return ERR_PTR(-ENOMEM); | 321 | return ERR_PTR(-ENOMEM); |
322 | } | 322 | } |
323 | 323 | ||
324 | ticket_node->ticket = kzalloc(sizeof(struct iwm_rx_ticket), GFP_KERNEL); | 324 | ticket_node->ticket = kmemdup(ticket, sizeof(struct iwm_rx_ticket), |
325 | GFP_KERNEL); | ||
325 | if (!ticket_node->ticket) { | 326 | if (!ticket_node->ticket) { |
326 | IWM_ERR(iwm, "Couldn't allocate RX ticket\n"); | 327 | IWM_ERR(iwm, "Couldn't allocate RX ticket\n"); |
327 | kfree(ticket_node); | 328 | kfree(ticket_node); |
328 | return ERR_PTR(-ENOMEM); | 329 | return ERR_PTR(-ENOMEM); |
329 | } | 330 | } |
330 | 331 | ||
331 | memcpy(ticket_node->ticket, ticket, sizeof(struct iwm_rx_ticket)); | ||
332 | INIT_LIST_HEAD(&ticket_node->node); | 332 | INIT_LIST_HEAD(&ticket_node->node); |
333 | 333 | ||
334 | return ticket_node; | 334 | return ticket_node; |
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index cdb9b9650d73..0fa6b0e59ea5 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -70,6 +70,8 @@ static u8 is_command_allowed_in_ps(u16 cmd) | |||
70 | switch (cmd) { | 70 | switch (cmd) { |
71 | case CMD_802_11_RSSI: | 71 | case CMD_802_11_RSSI: |
72 | return 1; | 72 | return 1; |
73 | case CMD_802_11_HOST_SLEEP_CFG: | ||
74 | return 1; | ||
73 | default: | 75 | default: |
74 | break; | 76 | break; |
75 | } | 77 | } |
@@ -185,6 +187,23 @@ out: | |||
185 | return ret; | 187 | return ret; |
186 | } | 188 | } |
187 | 189 | ||
190 | static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy, | ||
191 | struct cmd_header *resp) | ||
192 | { | ||
193 | lbs_deb_enter(LBS_DEB_CMD); | ||
194 | if (priv->wol_criteria == EHS_REMOVE_WAKEUP) { | ||
195 | priv->is_host_sleep_configured = 0; | ||
196 | if (priv->psstate == PS_STATE_FULL_POWER) { | ||
197 | priv->is_host_sleep_activated = 0; | ||
198 | wake_up_interruptible(&priv->host_sleep_q); | ||
199 | } | ||
200 | } else { | ||
201 | priv->is_host_sleep_configured = 1; | ||
202 | } | ||
203 | lbs_deb_leave(LBS_DEB_CMD); | ||
204 | return 0; | ||
205 | } | ||
206 | |||
188 | int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria, | 207 | int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria, |
189 | struct wol_config *p_wol_config) | 208 | struct wol_config *p_wol_config) |
190 | { | 209 | { |
@@ -202,12 +221,11 @@ int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria, | |||
202 | else | 221 | else |
203 | cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE; | 222 | cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE; |
204 | 223 | ||
205 | ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config); | 224 | ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr, |
225 | le16_to_cpu(cmd_config.hdr.size), | ||
226 | lbs_ret_host_sleep_cfg, 0); | ||
206 | if (!ret) { | 227 | if (!ret) { |
207 | if (criteria) { | 228 | if (p_wol_config) |
208 | lbs_deb_cmd("Set WOL criteria to %x\n", criteria); | ||
209 | priv->wol_criteria = criteria; | ||
210 | } else | ||
211 | memcpy((uint8_t *) p_wol_config, | 229 | memcpy((uint8_t *) p_wol_config, |
212 | (uint8_t *)&cmd_config.wol_conf, | 230 | (uint8_t *)&cmd_config.wol_conf, |
213 | sizeof(struct wol_config)); | 231 | sizeof(struct wol_config)); |
@@ -712,6 +730,10 @@ static void lbs_queue_cmd(struct lbs_private *priv, | |||
712 | } | 730 | } |
713 | } | 731 | } |
714 | 732 | ||
733 | if (le16_to_cpu(cmdnode->cmdbuf->command) == | ||
734 | CMD_802_11_WAKEUP_CONFIRM) | ||
735 | addtail = 0; | ||
736 | |||
715 | spin_lock_irqsave(&priv->driver_lock, flags); | 737 | spin_lock_irqsave(&priv->driver_lock, flags); |
716 | 738 | ||
717 | if (addtail) | 739 | if (addtail) |
@@ -1353,6 +1375,11 @@ static void lbs_send_confirmsleep(struct lbs_private *priv) | |||
1353 | /* We don't get a response on the sleep-confirmation */ | 1375 | /* We don't get a response on the sleep-confirmation */ |
1354 | priv->dnld_sent = DNLD_RES_RECEIVED; | 1376 | priv->dnld_sent = DNLD_RES_RECEIVED; |
1355 | 1377 | ||
1378 | if (priv->is_host_sleep_configured) { | ||
1379 | priv->is_host_sleep_activated = 1; | ||
1380 | wake_up_interruptible(&priv->host_sleep_q); | ||
1381 | } | ||
1382 | |||
1356 | /* If nothing to do, go back to sleep (?) */ | 1383 | /* If nothing to do, go back to sleep (?) */ |
1357 | if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx]) | 1384 | if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx]) |
1358 | priv->psstate = PS_STATE_SLEEP; | 1385 | priv->psstate = PS_STATE_SLEEP; |
diff --git a/drivers/net/wireless/libertas/cmdresp.c b/drivers/net/wireless/libertas/cmdresp.c index 88f7131d66e9..d6c306353640 100644 --- a/drivers/net/wireless/libertas/cmdresp.c +++ b/drivers/net/wireless/libertas/cmdresp.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include "dev.h" | 17 | #include "dev.h" |
18 | #include "assoc.h" | 18 | #include "assoc.h" |
19 | #include "wext.h" | 19 | #include "wext.h" |
20 | #include "cmd.h" | ||
20 | 21 | ||
21 | /** | 22 | /** |
22 | * @brief This function handles disconnect event. it | 23 | * @brief This function handles disconnect event. it |
@@ -341,32 +342,10 @@ done: | |||
341 | return ret; | 342 | return ret; |
342 | } | 343 | } |
343 | 344 | ||
344 | static int lbs_send_confirmwake(struct lbs_private *priv) | ||
345 | { | ||
346 | struct cmd_header cmd; | ||
347 | int ret = 0; | ||
348 | |||
349 | lbs_deb_enter(LBS_DEB_HOST); | ||
350 | |||
351 | cmd.command = cpu_to_le16(CMD_802_11_WAKEUP_CONFIRM); | ||
352 | cmd.size = cpu_to_le16(sizeof(cmd)); | ||
353 | cmd.seqnum = cpu_to_le16(++priv->seqnum); | ||
354 | cmd.result = 0; | ||
355 | |||
356 | lbs_deb_hex(LBS_DEB_HOST, "wake confirm", (u8 *) &cmd, | ||
357 | sizeof(cmd)); | ||
358 | |||
359 | ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &cmd, sizeof(cmd)); | ||
360 | if (ret) | ||
361 | lbs_pr_alert("SEND_WAKEC_CMD: Host to Card failed for Confirm Wake\n"); | ||
362 | |||
363 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); | ||
364 | return ret; | ||
365 | } | ||
366 | |||
367 | int lbs_process_event(struct lbs_private *priv, u32 event) | 345 | int lbs_process_event(struct lbs_private *priv, u32 event) |
368 | { | 346 | { |
369 | int ret = 0; | 347 | int ret = 0; |
348 | struct cmd_header cmd; | ||
370 | 349 | ||
371 | lbs_deb_enter(LBS_DEB_CMD); | 350 | lbs_deb_enter(LBS_DEB_CMD); |
372 | 351 | ||
@@ -410,7 +389,10 @@ int lbs_process_event(struct lbs_private *priv, u32 event) | |||
410 | if (priv->reset_deep_sleep_wakeup) | 389 | if (priv->reset_deep_sleep_wakeup) |
411 | priv->reset_deep_sleep_wakeup(priv); | 390 | priv->reset_deep_sleep_wakeup(priv); |
412 | priv->is_deep_sleep = 0; | 391 | priv->is_deep_sleep = 0; |
413 | lbs_send_confirmwake(priv); | 392 | lbs_cmd_async(priv, CMD_802_11_WAKEUP_CONFIRM, &cmd, |
393 | sizeof(cmd)); | ||
394 | priv->is_host_sleep_activated = 0; | ||
395 | wake_up_interruptible(&priv->host_sleep_q); | ||
414 | break; | 396 | break; |
415 | 397 | ||
416 | case MACREG_INT_CODE_DEEP_SLEEP_AWAKE: | 398 | case MACREG_INT_CODE_DEEP_SLEEP_AWAKE: |
diff --git a/drivers/net/wireless/libertas/decl.h b/drivers/net/wireless/libertas/decl.h index 709ffcad22ad..61db8bc62b3c 100644 --- a/drivers/net/wireless/libertas/decl.h +++ b/drivers/net/wireless/libertas/decl.h | |||
@@ -38,7 +38,7 @@ int lbs_set_mac_address(struct net_device *dev, void *addr); | |||
38 | void lbs_set_multicast_list(struct net_device *dev); | 38 | void lbs_set_multicast_list(struct net_device *dev); |
39 | 39 | ||
40 | int lbs_suspend(struct lbs_private *priv); | 40 | int lbs_suspend(struct lbs_private *priv); |
41 | void lbs_resume(struct lbs_private *priv); | 41 | int lbs_resume(struct lbs_private *priv); |
42 | 42 | ||
43 | void lbs_queue_event(struct lbs_private *priv, u32 event); | 43 | void lbs_queue_event(struct lbs_private *priv, u32 event); |
44 | void lbs_notify_command_response(struct lbs_private *priv, u8 resp_idx); | 44 | void lbs_notify_command_response(struct lbs_private *priv, u8 resp_idx); |
diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h index a54880e4ad2b..71c5ad46ebf6 100644 --- a/drivers/net/wireless/libertas/dev.h +++ b/drivers/net/wireless/libertas/dev.h | |||
@@ -75,6 +75,7 @@ struct lbs_private { | |||
75 | 75 | ||
76 | /* Deep sleep */ | 76 | /* Deep sleep */ |
77 | int is_deep_sleep; | 77 | int is_deep_sleep; |
78 | int deep_sleep_required; | ||
78 | int is_auto_deep_sleep_enabled; | 79 | int is_auto_deep_sleep_enabled; |
79 | int wakeup_dev_required; | 80 | int wakeup_dev_required; |
80 | int is_activity_detected; | 81 | int is_activity_detected; |
@@ -82,6 +83,11 @@ struct lbs_private { | |||
82 | wait_queue_head_t ds_awake_q; | 83 | wait_queue_head_t ds_awake_q; |
83 | struct timer_list auto_deepsleep_timer; | 84 | struct timer_list auto_deepsleep_timer; |
84 | 85 | ||
86 | /* Host sleep*/ | ||
87 | int is_host_sleep_configured; | ||
88 | int is_host_sleep_activated; | ||
89 | wait_queue_head_t host_sleep_q; | ||
90 | |||
85 | /* Hardware access */ | 91 | /* Hardware access */ |
86 | void *card; | 92 | void *card; |
87 | u8 fw_ready; | 93 | u8 fw_ready; |
diff --git a/drivers/net/wireless/libertas/ethtool.c b/drivers/net/wireless/libertas/ethtool.c index 3804a58d7f4e..0cf31bbf6567 100644 --- a/drivers/net/wireless/libertas/ethtool.c +++ b/drivers/net/wireless/libertas/ethtool.c | |||
@@ -69,14 +69,11 @@ static void lbs_ethtool_get_wol(struct net_device *dev, | |||
69 | { | 69 | { |
70 | struct lbs_private *priv = dev->ml_priv; | 70 | struct lbs_private *priv = dev->ml_priv; |
71 | 71 | ||
72 | if (priv->wol_criteria == 0xffffffff) { | ||
73 | /* Interface driver didn't configure wake */ | ||
74 | wol->supported = wol->wolopts = 0; | ||
75 | return; | ||
76 | } | ||
77 | |||
78 | wol->supported = WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY; | 72 | wol->supported = WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY; |
79 | 73 | ||
74 | if (priv->wol_criteria == EHS_REMOVE_WAKEUP) | ||
75 | return; | ||
76 | |||
80 | if (priv->wol_criteria & EHS_WAKE_ON_UNICAST_DATA) | 77 | if (priv->wol_criteria & EHS_WAKE_ON_UNICAST_DATA) |
81 | wol->wolopts |= WAKE_UCAST; | 78 | wol->wolopts |= WAKE_UCAST; |
82 | if (priv->wol_criteria & EHS_WAKE_ON_MULTICAST_DATA) | 79 | if (priv->wol_criteria & EHS_WAKE_ON_MULTICAST_DATA) |
@@ -91,23 +88,22 @@ static int lbs_ethtool_set_wol(struct net_device *dev, | |||
91 | struct ethtool_wolinfo *wol) | 88 | struct ethtool_wolinfo *wol) |
92 | { | 89 | { |
93 | struct lbs_private *priv = dev->ml_priv; | 90 | struct lbs_private *priv = dev->ml_priv; |
94 | uint32_t criteria = 0; | ||
95 | 91 | ||
96 | if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY)) | 92 | if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY)) |
97 | return -EOPNOTSUPP; | 93 | return -EOPNOTSUPP; |
98 | 94 | ||
95 | priv->wol_criteria = 0; | ||
99 | if (wol->wolopts & WAKE_UCAST) | 96 | if (wol->wolopts & WAKE_UCAST) |
100 | criteria |= EHS_WAKE_ON_UNICAST_DATA; | 97 | priv->wol_criteria |= EHS_WAKE_ON_UNICAST_DATA; |
101 | if (wol->wolopts & WAKE_MCAST) | 98 | if (wol->wolopts & WAKE_MCAST) |
102 | criteria |= EHS_WAKE_ON_MULTICAST_DATA; | 99 | priv->wol_criteria |= EHS_WAKE_ON_MULTICAST_DATA; |
103 | if (wol->wolopts & WAKE_BCAST) | 100 | if (wol->wolopts & WAKE_BCAST) |
104 | criteria |= EHS_WAKE_ON_BROADCAST_DATA; | 101 | priv->wol_criteria |= EHS_WAKE_ON_BROADCAST_DATA; |
105 | if (wol->wolopts & WAKE_PHY) | 102 | if (wol->wolopts & WAKE_PHY) |
106 | criteria |= EHS_WAKE_ON_MAC_EVENT; | 103 | priv->wol_criteria |= EHS_WAKE_ON_MAC_EVENT; |
107 | if (wol->wolopts == 0) | 104 | if (wol->wolopts == 0) |
108 | criteria |= EHS_REMOVE_WAKEUP; | 105 | priv->wol_criteria |= EHS_REMOVE_WAKEUP; |
109 | 106 | return 0; | |
110 | return lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL); | ||
111 | } | 107 | } |
112 | 108 | ||
113 | const struct ethtool_ops lbs_ethtool_ops = { | 109 | const struct ethtool_ops lbs_ethtool_ops = { |
diff --git a/drivers/net/wireless/libertas/if_sdio.c b/drivers/net/wireless/libertas/if_sdio.c index 64dd345d30f5..6e71346a7550 100644 --- a/drivers/net/wireless/libertas/if_sdio.c +++ b/drivers/net/wireless/libertas/if_sdio.c | |||
@@ -1182,11 +1182,69 @@ static void if_sdio_remove(struct sdio_func *func) | |||
1182 | lbs_deb_leave(LBS_DEB_SDIO); | 1182 | lbs_deb_leave(LBS_DEB_SDIO); |
1183 | } | 1183 | } |
1184 | 1184 | ||
1185 | static int if_sdio_suspend(struct device *dev) | ||
1186 | { | ||
1187 | struct sdio_func *func = dev_to_sdio_func(dev); | ||
1188 | int ret; | ||
1189 | struct if_sdio_card *card = sdio_get_drvdata(func); | ||
1190 | |||
1191 | mmc_pm_flag_t flags = sdio_get_host_pm_caps(func); | ||
1192 | |||
1193 | lbs_pr_info("%s: suspend: PM flags = 0x%x\n", | ||
1194 | sdio_func_id(func), flags); | ||
1195 | |||
1196 | /* If we aren't being asked to wake on anything, we should bail out | ||
1197 | * and let the SD stack power down the card. | ||
1198 | */ | ||
1199 | if (card->priv->wol_criteria == EHS_REMOVE_WAKEUP) { | ||
1200 | lbs_pr_info("Suspend without wake params -- " | ||
1201 | "powering down card."); | ||
1202 | return -ENOSYS; | ||
1203 | } | ||
1204 | |||
1205 | if (!(flags & MMC_PM_KEEP_POWER)) { | ||
1206 | lbs_pr_err("%s: cannot remain alive while host is suspended\n", | ||
1207 | sdio_func_id(func)); | ||
1208 | return -ENOSYS; | ||
1209 | } | ||
1210 | |||
1211 | ret = sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER); | ||
1212 | if (ret) | ||
1213 | return ret; | ||
1214 | |||
1215 | ret = lbs_suspend(card->priv); | ||
1216 | if (ret) | ||
1217 | return ret; | ||
1218 | |||
1219 | return sdio_set_host_pm_flags(func, MMC_PM_WAKE_SDIO_IRQ); | ||
1220 | } | ||
1221 | |||
1222 | static int if_sdio_resume(struct device *dev) | ||
1223 | { | ||
1224 | struct sdio_func *func = dev_to_sdio_func(dev); | ||
1225 | struct if_sdio_card *card = sdio_get_drvdata(func); | ||
1226 | int ret; | ||
1227 | |||
1228 | lbs_pr_info("%s: resume: we're back\n", sdio_func_id(func)); | ||
1229 | |||
1230 | ret = lbs_resume(card->priv); | ||
1231 | |||
1232 | return ret; | ||
1233 | } | ||
1234 | |||
1235 | static const struct dev_pm_ops if_sdio_pm_ops = { | ||
1236 | .suspend = if_sdio_suspend, | ||
1237 | .resume = if_sdio_resume, | ||
1238 | }; | ||
1239 | |||
1185 | static struct sdio_driver if_sdio_driver = { | 1240 | static struct sdio_driver if_sdio_driver = { |
1186 | .name = "libertas_sdio", | 1241 | .name = "libertas_sdio", |
1187 | .id_table = if_sdio_ids, | 1242 | .id_table = if_sdio_ids, |
1188 | .probe = if_sdio_probe, | 1243 | .probe = if_sdio_probe, |
1189 | .remove = if_sdio_remove, | 1244 | .remove = if_sdio_remove, |
1245 | .drv = { | ||
1246 | .pm = &if_sdio_pm_ops, | ||
1247 | }, | ||
1190 | }; | 1248 | }; |
1191 | 1249 | ||
1192 | /*******************************************************************/ | 1250 | /*******************************************************************/ |
diff --git a/drivers/net/wireless/libertas/if_usb.c b/drivers/net/wireless/libertas/if_usb.c index f41594c7ac16..3678e532874f 100644 --- a/drivers/net/wireless/libertas/if_usb.c +++ b/drivers/net/wireless/libertas/if_usb.c | |||
@@ -613,16 +613,14 @@ static void if_usb_receive_fwload(struct urb *urb) | |||
613 | return; | 613 | return; |
614 | } | 614 | } |
615 | 615 | ||
616 | syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC); | 616 | syncfwheader = kmemdup(skb->data + IPFIELD_ALIGN_OFFSET, |
617 | sizeof(struct fwsyncheader), GFP_ATOMIC); | ||
617 | if (!syncfwheader) { | 618 | if (!syncfwheader) { |
618 | lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n"); | 619 | lbs_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n"); |
619 | kfree_skb(skb); | 620 | kfree_skb(skb); |
620 | return; | 621 | return; |
621 | } | 622 | } |
622 | 623 | ||
623 | memcpy(syncfwheader, skb->data + IPFIELD_ALIGN_OFFSET, | ||
624 | sizeof(struct fwsyncheader)); | ||
625 | |||
626 | if (!syncfwheader->cmd) { | 624 | if (!syncfwheader->cmd) { |
627 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n"); | 625 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n"); |
628 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n", | 626 | lbs_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n", |
@@ -1043,6 +1041,12 @@ static int if_usb_suspend(struct usb_interface *intf, pm_message_t message) | |||
1043 | if (priv->psstate != PS_STATE_FULL_POWER) | 1041 | if (priv->psstate != PS_STATE_FULL_POWER) |
1044 | return -1; | 1042 | return -1; |
1045 | 1043 | ||
1044 | if (priv->wol_criteria == EHS_REMOVE_WAKEUP) { | ||
1045 | lbs_pr_info("Suspend attempt without " | ||
1046 | "configuring wake params!\n"); | ||
1047 | return -ENOSYS; | ||
1048 | } | ||
1049 | |||
1046 | ret = lbs_suspend(priv); | 1050 | ret = lbs_suspend(priv); |
1047 | if (ret) | 1051 | if (ret) |
1048 | goto out; | 1052 | goto out; |
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c index d9b8ee130c45..abfecc4814b4 100644 --- a/drivers/net/wireless/libertas/main.c +++ b/drivers/net/wireless/libertas/main.c | |||
@@ -625,16 +625,13 @@ static int lbs_thread(void *data) | |||
625 | return 0; | 625 | return 0; |
626 | } | 626 | } |
627 | 627 | ||
628 | static int lbs_suspend_callback(struct lbs_private *priv, unsigned long dummy, | 628 | static int lbs_ret_host_sleep_activate(struct lbs_private *priv, |
629 | struct cmd_header *cmd) | 629 | unsigned long dummy, |
630 | struct cmd_header *cmd) | ||
630 | { | 631 | { |
631 | lbs_deb_enter(LBS_DEB_FW); | 632 | lbs_deb_enter(LBS_DEB_FW); |
632 | 633 | priv->is_host_sleep_activated = 1; | |
633 | netif_device_detach(priv->dev); | 634 | wake_up_interruptible(&priv->host_sleep_q); |
634 | if (priv->mesh_dev) | ||
635 | netif_device_detach(priv->mesh_dev); | ||
636 | |||
637 | priv->fw_ready = 0; | ||
638 | lbs_deb_leave(LBS_DEB_FW); | 635 | lbs_deb_leave(LBS_DEB_FW); |
639 | return 0; | 636 | return 0; |
640 | } | 637 | } |
@@ -646,39 +643,65 @@ int lbs_suspend(struct lbs_private *priv) | |||
646 | 643 | ||
647 | lbs_deb_enter(LBS_DEB_FW); | 644 | lbs_deb_enter(LBS_DEB_FW); |
648 | 645 | ||
649 | if (priv->wol_criteria == 0xffffffff) { | 646 | if (priv->is_deep_sleep) { |
650 | lbs_pr_info("Suspend attempt without configuring wake params!\n"); | 647 | ret = lbs_set_deep_sleep(priv, 0); |
651 | return -EINVAL; | 648 | if (ret) { |
649 | lbs_pr_err("deep sleep cancellation failed: %d\n", ret); | ||
650 | return ret; | ||
651 | } | ||
652 | priv->deep_sleep_required = 1; | ||
652 | } | 653 | } |
653 | 654 | ||
654 | memset(&cmd, 0, sizeof(cmd)); | 655 | memset(&cmd, 0, sizeof(cmd)); |
656 | ret = lbs_host_sleep_cfg(priv, priv->wol_criteria, | ||
657 | (struct wol_config *)NULL); | ||
658 | if (ret) { | ||
659 | lbs_pr_info("Host sleep configuration failed: %d\n", ret); | ||
660 | return ret; | ||
661 | } | ||
662 | if (priv->psstate == PS_STATE_FULL_POWER) { | ||
663 | ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_ACTIVATE, &cmd, | ||
664 | sizeof(cmd), lbs_ret_host_sleep_activate, 0); | ||
665 | if (ret) | ||
666 | lbs_pr_info("HOST_SLEEP_ACTIVATE failed: %d\n", ret); | ||
667 | } | ||
655 | 668 | ||
656 | ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_ACTIVATE, &cmd, | 669 | if (!wait_event_interruptible_timeout(priv->host_sleep_q, |
657 | sizeof(cmd), lbs_suspend_callback, 0); | 670 | priv->is_host_sleep_activated, (10 * HZ))) { |
658 | if (ret) | 671 | lbs_pr_err("host_sleep_q: timer expired\n"); |
659 | lbs_pr_info("HOST_SLEEP_ACTIVATE failed: %d\n", ret); | 672 | ret = -1; |
673 | } | ||
674 | netif_device_detach(priv->dev); | ||
675 | if (priv->mesh_dev) | ||
676 | netif_device_detach(priv->mesh_dev); | ||
660 | 677 | ||
661 | lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret); | 678 | lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret); |
662 | return ret; | 679 | return ret; |
663 | } | 680 | } |
664 | EXPORT_SYMBOL_GPL(lbs_suspend); | 681 | EXPORT_SYMBOL_GPL(lbs_suspend); |
665 | 682 | ||
666 | void lbs_resume(struct lbs_private *priv) | 683 | int lbs_resume(struct lbs_private *priv) |
667 | { | 684 | { |
668 | lbs_deb_enter(LBS_DEB_FW); | 685 | int ret; |
686 | uint32_t criteria = EHS_REMOVE_WAKEUP; | ||
669 | 687 | ||
670 | priv->fw_ready = 1; | 688 | lbs_deb_enter(LBS_DEB_FW); |
671 | 689 | ||
672 | /* Firmware doesn't seem to give us RX packets any more | 690 | ret = lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL); |
673 | until we send it some command. Might as well update */ | ||
674 | lbs_prepare_and_send_command(priv, CMD_802_11_RSSI, 0, | ||
675 | 0, 0, NULL); | ||
676 | 691 | ||
677 | netif_device_attach(priv->dev); | 692 | netif_device_attach(priv->dev); |
678 | if (priv->mesh_dev) | 693 | if (priv->mesh_dev) |
679 | netif_device_attach(priv->mesh_dev); | 694 | netif_device_attach(priv->mesh_dev); |
680 | 695 | ||
681 | lbs_deb_leave(LBS_DEB_FW); | 696 | if (priv->deep_sleep_required) { |
697 | priv->deep_sleep_required = 0; | ||
698 | ret = lbs_set_deep_sleep(priv, 1); | ||
699 | if (ret) | ||
700 | lbs_pr_err("deep sleep activation failed: %d\n", ret); | ||
701 | } | ||
702 | |||
703 | lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret); | ||
704 | return ret; | ||
682 | } | 705 | } |
683 | EXPORT_SYMBOL_GPL(lbs_resume); | 706 | EXPORT_SYMBOL_GPL(lbs_resume); |
684 | 707 | ||
@@ -834,10 +857,13 @@ static int lbs_init_adapter(struct lbs_private *priv) | |||
834 | priv->psstate = PS_STATE_FULL_POWER; | 857 | priv->psstate = PS_STATE_FULL_POWER; |
835 | priv->is_deep_sleep = 0; | 858 | priv->is_deep_sleep = 0; |
836 | priv->is_auto_deep_sleep_enabled = 0; | 859 | priv->is_auto_deep_sleep_enabled = 0; |
860 | priv->deep_sleep_required = 0; | ||
837 | priv->wakeup_dev_required = 0; | 861 | priv->wakeup_dev_required = 0; |
838 | init_waitqueue_head(&priv->ds_awake_q); | 862 | init_waitqueue_head(&priv->ds_awake_q); |
839 | priv->authtype_auto = 1; | 863 | priv->authtype_auto = 1; |
840 | 864 | priv->is_host_sleep_configured = 0; | |
865 | priv->is_host_sleep_activated = 0; | ||
866 | init_waitqueue_head(&priv->host_sleep_q); | ||
841 | mutex_init(&priv->lock); | 867 | mutex_init(&priv->lock); |
842 | 868 | ||
843 | setup_timer(&priv->command_timer, lbs_cmd_timeout_handler, | 869 | setup_timer(&priv->command_timer, lbs_cmd_timeout_handler, |
@@ -976,6 +1002,7 @@ struct lbs_private *lbs_add_card(void *card, struct device *dmdev) | |||
976 | 1002 | ||
977 | priv->wol_criteria = 0xffffffff; | 1003 | priv->wol_criteria = 0xffffffff; |
978 | priv->wol_gpio = 0xff; | 1004 | priv->wol_gpio = 0xff; |
1005 | priv->wol_gap = 20; | ||
979 | 1006 | ||
980 | goto done; | 1007 | goto done; |
981 | 1008 | ||
@@ -1031,6 +1058,10 @@ void lbs_remove_card(struct lbs_private *priv) | |||
1031 | wake_up_interruptible(&priv->ds_awake_q); | 1058 | wake_up_interruptible(&priv->ds_awake_q); |
1032 | } | 1059 | } |
1033 | 1060 | ||
1061 | priv->is_host_sleep_configured = 0; | ||
1062 | priv->is_host_sleep_activated = 0; | ||
1063 | wake_up_interruptible(&priv->host_sleep_q); | ||
1064 | |||
1034 | /* Stop the thread servicing the interrupts */ | 1065 | /* Stop the thread servicing the interrupts */ |
1035 | priv->surpriseremoved = 1; | 1066 | priv->surpriseremoved = 1; |
1036 | kthread_stop(priv->main_thread); | 1067 | kthread_stop(priv->main_thread); |
diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c index 24cd54b3a806..7d82f13bdf1d 100644 --- a/drivers/net/wireless/libertas/scan.c +++ b/drivers/net/wireless/libertas/scan.c | |||
@@ -666,7 +666,7 @@ void lbs_scan_worker(struct work_struct *work) | |||
666 | /** | 666 | /** |
667 | * @brief Interpret a BSS scan response returned from the firmware | 667 | * @brief Interpret a BSS scan response returned from the firmware |
668 | * | 668 | * |
669 | * Parse the various fixed fields and IEs passed back for a a BSS probe | 669 | * Parse the various fixed fields and IEs passed back for a BSS probe |
670 | * response or beacon from the scan command. Record information as needed | 670 | * response or beacon from the scan command. Record information as needed |
671 | * in the scan table struct bss_descriptor for that entry. | 671 | * in the scan table struct bss_descriptor for that entry. |
672 | * | 672 | * |
diff --git a/drivers/net/wireless/libertas_tf/if_usb.c b/drivers/net/wireless/libertas_tf/if_usb.c index c445500ffc61..b172f5d87a3b 100644 --- a/drivers/net/wireless/libertas_tf/if_usb.c +++ b/drivers/net/wireless/libertas_tf/if_usb.c | |||
@@ -538,7 +538,8 @@ static void if_usb_receive_fwload(struct urb *urb) | |||
538 | return; | 538 | return; |
539 | } | 539 | } |
540 | 540 | ||
541 | syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC); | 541 | syncfwheader = kmemdup(skb->data, sizeof(struct fwsyncheader), |
542 | GFP_ATOMIC); | ||
542 | if (!syncfwheader) { | 543 | if (!syncfwheader) { |
543 | lbtf_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n"); | 544 | lbtf_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n"); |
544 | kfree_skb(skb); | 545 | kfree_skb(skb); |
@@ -546,8 +547,6 @@ static void if_usb_receive_fwload(struct urb *urb) | |||
546 | return; | 547 | return; |
547 | } | 548 | } |
548 | 549 | ||
549 | memcpy(syncfwheader, skb->data, sizeof(struct fwsyncheader)); | ||
550 | |||
551 | if (!syncfwheader->cmd) { | 550 | if (!syncfwheader->cmd) { |
552 | lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n"); | 551 | lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n"); |
553 | lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n", | 552 | lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n", |
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index 60a819107a8c..c019fdc131c0 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
@@ -109,7 +109,7 @@ struct mwl8k_rx_queue { | |||
109 | dma_addr_t rxd_dma; | 109 | dma_addr_t rxd_dma; |
110 | struct { | 110 | struct { |
111 | struct sk_buff *skb; | 111 | struct sk_buff *skb; |
112 | DECLARE_PCI_UNMAP_ADDR(dma) | 112 | DEFINE_DMA_UNMAP_ADDR(dma); |
113 | } *buf; | 113 | } *buf; |
114 | }; | 114 | }; |
115 | 115 | ||
@@ -963,7 +963,7 @@ static int rxq_refill(struct ieee80211_hw *hw, int index, int limit) | |||
963 | if (rxq->tail == MWL8K_RX_DESCS) | 963 | if (rxq->tail == MWL8K_RX_DESCS) |
964 | rxq->tail = 0; | 964 | rxq->tail = 0; |
965 | rxq->buf[rx].skb = skb; | 965 | rxq->buf[rx].skb = skb; |
966 | pci_unmap_addr_set(&rxq->buf[rx], dma, addr); | 966 | dma_unmap_addr_set(&rxq->buf[rx], dma, addr); |
967 | 967 | ||
968 | rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size); | 968 | rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size); |
969 | priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ); | 969 | priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ); |
@@ -984,9 +984,9 @@ static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index) | |||
984 | for (i = 0; i < MWL8K_RX_DESCS; i++) { | 984 | for (i = 0; i < MWL8K_RX_DESCS; i++) { |
985 | if (rxq->buf[i].skb != NULL) { | 985 | if (rxq->buf[i].skb != NULL) { |
986 | pci_unmap_single(priv->pdev, | 986 | pci_unmap_single(priv->pdev, |
987 | pci_unmap_addr(&rxq->buf[i], dma), | 987 | dma_unmap_addr(&rxq->buf[i], dma), |
988 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); | 988 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
989 | pci_unmap_addr_set(&rxq->buf[i], dma, 0); | 989 | dma_unmap_addr_set(&rxq->buf[i], dma, 0); |
990 | 990 | ||
991 | kfree_skb(rxq->buf[i].skb); | 991 | kfree_skb(rxq->buf[i].skb); |
992 | rxq->buf[i].skb = NULL; | 992 | rxq->buf[i].skb = NULL; |
@@ -1060,9 +1060,9 @@ static int rxq_process(struct ieee80211_hw *hw, int index, int limit) | |||
1060 | rxq->buf[rxq->head].skb = NULL; | 1060 | rxq->buf[rxq->head].skb = NULL; |
1061 | 1061 | ||
1062 | pci_unmap_single(priv->pdev, | 1062 | pci_unmap_single(priv->pdev, |
1063 | pci_unmap_addr(&rxq->buf[rxq->head], dma), | 1063 | dma_unmap_addr(&rxq->buf[rxq->head], dma), |
1064 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); | 1064 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
1065 | pci_unmap_addr_set(&rxq->buf[rxq->head], dma, 0); | 1065 | dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0); |
1066 | 1066 | ||
1067 | rxq->head++; | 1067 | rxq->head++; |
1068 | if (rxq->head == MWL8K_RX_DESCS) | 1068 | if (rxq->head == MWL8K_RX_DESCS) |
diff --git a/drivers/net/wireless/orinoco/hermes_dld.c b/drivers/net/wireless/orinoco/hermes_dld.c index 55741caa2b82..2b2b9a1a979c 100644 --- a/drivers/net/wireless/orinoco/hermes_dld.c +++ b/drivers/net/wireless/orinoco/hermes_dld.c | |||
@@ -68,7 +68,7 @@ struct dblock { | |||
68 | } __packed; | 68 | } __packed; |
69 | 69 | ||
70 | /* | 70 | /* |
71 | * Plug Data References are located in in the image after the last data | 71 | * Plug Data References are located in the image after the last data |
72 | * block. They refer to areas in the adapter memory where the plug data | 72 | * block. They refer to areas in the adapter memory where the plug data |
73 | * items with matching ID should be written. | 73 | * items with matching ID should be written. |
74 | */ | 74 | */ |
diff --git a/drivers/net/wireless/orinoco/orinoco_usb.c b/drivers/net/wireless/orinoco/orinoco_usb.c index 11536ef17ba3..1558381998ee 100644 --- a/drivers/net/wireless/orinoco/orinoco_usb.c +++ b/drivers/net/wireless/orinoco/orinoco_usb.c | |||
@@ -356,12 +356,10 @@ static struct request_context *ezusb_alloc_ctx(struct ezusb_priv *upriv, | |||
356 | { | 356 | { |
357 | struct request_context *ctx; | 357 | struct request_context *ctx; |
358 | 358 | ||
359 | ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC); | 359 | ctx = kzalloc(sizeof(*ctx), GFP_ATOMIC); |
360 | if (!ctx) | 360 | if (!ctx) |
361 | return NULL; | 361 | return NULL; |
362 | 362 | ||
363 | memset(ctx, 0, sizeof(*ctx)); | ||
364 | |||
365 | ctx->buf = kmalloc(BULK_BUF_SIZE, GFP_ATOMIC); | 363 | ctx->buf = kmalloc(BULK_BUF_SIZE, GFP_ATOMIC); |
366 | if (!ctx->buf) { | 364 | if (!ctx->buf) { |
367 | kfree(ctx); | 365 | kfree(ctx); |
diff --git a/drivers/net/wireless/orinoco/wext.c b/drivers/net/wireless/orinoco/wext.c index 9f86a272cb78..cf7be1eb6124 100644 --- a/drivers/net/wireless/orinoco/wext.c +++ b/drivers/net/wireless/orinoco/wext.c | |||
@@ -993,11 +993,9 @@ static int orinoco_ioctl_set_genie(struct net_device *dev, | |||
993 | return -EINVAL; | 993 | return -EINVAL; |
994 | 994 | ||
995 | if (wrqu->data.length) { | 995 | if (wrqu->data.length) { |
996 | buf = kmalloc(wrqu->data.length, GFP_KERNEL); | 996 | buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL); |
997 | if (buf == NULL) | 997 | if (buf == NULL) |
998 | return -ENOMEM; | 998 | return -ENOMEM; |
999 | |||
1000 | memcpy(buf, extra, wrqu->data.length); | ||
1001 | } else | 999 | } else |
1002 | buf = NULL; | 1000 | buf = NULL; |
1003 | 1001 | ||
diff --git a/drivers/net/wireless/p54/eeprom.c b/drivers/net/wireless/p54/eeprom.c index 187e263b045a..e51650ed49f2 100644 --- a/drivers/net/wireless/p54/eeprom.c +++ b/drivers/net/wireless/p54/eeprom.c | |||
@@ -599,13 +599,13 @@ int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len) | |||
599 | } | 599 | } |
600 | break; | 600 | break; |
601 | case PDR_PRISM_ZIF_TX_IQ_CALIBRATION: | 601 | case PDR_PRISM_ZIF_TX_IQ_CALIBRATION: |
602 | priv->iq_autocal = kmalloc(data_len, GFP_KERNEL); | 602 | priv->iq_autocal = kmemdup(entry->data, data_len, |
603 | GFP_KERNEL); | ||
603 | if (!priv->iq_autocal) { | 604 | if (!priv->iq_autocal) { |
604 | err = -ENOMEM; | 605 | err = -ENOMEM; |
605 | goto err; | 606 | goto err; |
606 | } | 607 | } |
607 | 608 | ||
608 | memcpy(priv->iq_autocal, entry->data, data_len); | ||
609 | priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry); | 609 | priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry); |
610 | break; | 610 | break; |
611 | case PDR_DEFAULT_COUNTRY: | 611 | case PDR_DEFAULT_COUNTRY: |
diff --git a/drivers/net/wireless/p54/p54spi.c b/drivers/net/wireless/p54/p54spi.c index c8f09da1f84d..087bf0698a5a 100644 --- a/drivers/net/wireless/p54/p54spi.c +++ b/drivers/net/wireless/p54/p54spi.c | |||
@@ -697,9 +697,7 @@ static int __devexit p54spi_remove(struct spi_device *spi) | |||
697 | 697 | ||
698 | static struct spi_driver p54spi_driver = { | 698 | static struct spi_driver p54spi_driver = { |
699 | .driver = { | 699 | .driver = { |
700 | /* use cx3110x name because board-n800.c uses that for the | 700 | .name = "p54spi", |
701 | * SPI port */ | ||
702 | .name = "cx3110x", | ||
703 | .bus = &spi_bus_type, | 701 | .bus = &spi_bus_type, |
704 | .owner = THIS_MODULE, | 702 | .owner = THIS_MODULE, |
705 | }, | 703 | }, |
@@ -733,3 +731,4 @@ module_exit(p54spi_exit); | |||
733 | MODULE_LICENSE("GPL"); | 731 | MODULE_LICENSE("GPL"); |
734 | MODULE_AUTHOR("Christian Lamparter <chunkeey@web.de>"); | 732 | MODULE_AUTHOR("Christian Lamparter <chunkeey@web.de>"); |
735 | MODULE_ALIAS("spi:cx3110x"); | 733 | MODULE_ALIAS("spi:cx3110x"); |
734 | MODULE_ALIAS("spi:p54spi"); | ||
diff --git a/drivers/net/wireless/p54/p54usb.c b/drivers/net/wireless/p54/p54usb.c index d5b197b4d5bb..b0318ea59b7f 100644 --- a/drivers/net/wireless/p54/p54usb.c +++ b/drivers/net/wireless/p54/p54usb.c | |||
@@ -80,6 +80,7 @@ static struct usb_device_id p54u_table[] __devinitdata = { | |||
80 | {USB_DEVICE(0x1413, 0x5400)}, /* Telsey 802.11g USB2.0 Adapter */ | 80 | {USB_DEVICE(0x1413, 0x5400)}, /* Telsey 802.11g USB2.0 Adapter */ |
81 | {USB_DEVICE(0x1435, 0x0427)}, /* Inventel UR054G */ | 81 | {USB_DEVICE(0x1435, 0x0427)}, /* Inventel UR054G */ |
82 | {USB_DEVICE(0x2001, 0x3704)}, /* DLink DWL-G122 rev A2 */ | 82 | {USB_DEVICE(0x2001, 0x3704)}, /* DLink DWL-G122 rev A2 */ |
83 | {USB_DEVICE(0x413c, 0x5513)}, /* Dell WLA3310 USB Wireless Adapter */ | ||
83 | {USB_DEVICE(0x413c, 0x8102)}, /* Spinnaker DUT */ | 84 | {USB_DEVICE(0x413c, 0x8102)}, /* Spinnaker DUT */ |
84 | {USB_DEVICE(0x413c, 0x8104)}, /* Cohiba Proto board */ | 85 | {USB_DEVICE(0x413c, 0x8104)}, /* Cohiba Proto board */ |
85 | {} | 86 | {} |
@@ -433,10 +434,9 @@ static int p54u_firmware_reset_3887(struct ieee80211_hw *dev) | |||
433 | u8 *buf; | 434 | u8 *buf; |
434 | int ret; | 435 | int ret; |
435 | 436 | ||
436 | buf = kmalloc(4, GFP_KERNEL); | 437 | buf = kmemdup(p54u_romboot_3887, 4, GFP_KERNEL); |
437 | if (!buf) | 438 | if (!buf) |
438 | return -ENOMEM; | 439 | return -ENOMEM; |
439 | memcpy(buf, p54u_romboot_3887, 4); | ||
440 | ret = p54u_bulk_msg(priv, P54U_PIPE_DATA, | 440 | ret = p54u_bulk_msg(priv, P54U_PIPE_DATA, |
441 | buf, 4); | 441 | buf, 4); |
442 | kfree(buf); | 442 | kfree(buf); |
diff --git a/drivers/net/wireless/prism54/isl_ioctl.c b/drivers/net/wireless/prism54/isl_ioctl.c index 13730a807002..912fdc022d08 100644 --- a/drivers/net/wireless/prism54/isl_ioctl.c +++ b/drivers/net/wireless/prism54/isl_ioctl.c | |||
@@ -2751,14 +2751,9 @@ prism54_hostapd(struct net_device *ndev, struct iw_point *p) | |||
2751 | p->length > PRISM2_HOSTAPD_MAX_BUF_SIZE || !p->pointer) | 2751 | p->length > PRISM2_HOSTAPD_MAX_BUF_SIZE || !p->pointer) |
2752 | return -EINVAL; | 2752 | return -EINVAL; |
2753 | 2753 | ||
2754 | param = kmalloc(p->length, GFP_KERNEL); | 2754 | param = memdup_user(p->pointer, p->length); |
2755 | if (param == NULL) | 2755 | if (IS_ERR(param)) |
2756 | return -ENOMEM; | 2756 | return PTR_ERR(param); |
2757 | |||
2758 | if (copy_from_user(param, p->pointer, p->length)) { | ||
2759 | kfree(param); | ||
2760 | return -EFAULT; | ||
2761 | } | ||
2762 | 2757 | ||
2763 | switch (param->cmd) { | 2758 | switch (param->cmd) { |
2764 | case PRISM2_SET_ENCRYPTION: | 2759 | case PRISM2_SET_ENCRYPTION: |
diff --git a/drivers/net/wireless/rndis_wlan.c b/drivers/net/wireless/rndis_wlan.c index 989b0561c01b..5e7f344b000d 100644 --- a/drivers/net/wireless/rndis_wlan.c +++ b/drivers/net/wireless/rndis_wlan.c | |||
@@ -2495,8 +2495,7 @@ static int rndis_flush_pmksa(struct wiphy *wiphy, struct net_device *netdev) | |||
2495 | static void rndis_wlan_do_link_up_work(struct usbnet *usbdev) | 2495 | static void rndis_wlan_do_link_up_work(struct usbnet *usbdev) |
2496 | { | 2496 | { |
2497 | struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev); | 2497 | struct rndis_wlan_private *priv = get_rndis_wlan_priv(usbdev); |
2498 | struct ndis_80211_assoc_info *info; | 2498 | struct ndis_80211_assoc_info *info = NULL; |
2499 | u8 assoc_buf[sizeof(*info) + IW_CUSTOM_MAX + 32]; | ||
2500 | u8 bssid[ETH_ALEN]; | 2499 | u8 bssid[ETH_ALEN]; |
2501 | int resp_ie_len, req_ie_len; | 2500 | int resp_ie_len, req_ie_len; |
2502 | u8 *req_ie, *resp_ie; | 2501 | u8 *req_ie, *resp_ie; |
@@ -2515,23 +2514,43 @@ static void rndis_wlan_do_link_up_work(struct usbnet *usbdev) | |||
2515 | resp_ie = NULL; | 2514 | resp_ie = NULL; |
2516 | 2515 | ||
2517 | if (priv->infra_mode == NDIS_80211_INFRA_INFRA) { | 2516 | if (priv->infra_mode == NDIS_80211_INFRA_INFRA) { |
2518 | memset(assoc_buf, 0, sizeof(assoc_buf)); | 2517 | info = kzalloc(CONTROL_BUFFER_SIZE, GFP_KERNEL); |
2519 | info = (void *)assoc_buf; | 2518 | if (!info) { |
2519 | /* No memory? Try resume work later */ | ||
2520 | set_bit(WORK_LINK_UP, &priv->work_pending); | ||
2521 | queue_work(priv->workqueue, &priv->work); | ||
2522 | return; | ||
2523 | } | ||
2520 | 2524 | ||
2521 | /* Get association info IEs from device and send them back to | 2525 | /* Get association info IEs from device. */ |
2522 | * userspace. */ | 2526 | ret = get_association_info(usbdev, info, CONTROL_BUFFER_SIZE); |
2523 | ret = get_association_info(usbdev, info, sizeof(assoc_buf)); | ||
2524 | if (!ret) { | 2527 | if (!ret) { |
2525 | req_ie_len = le32_to_cpu(info->req_ie_length); | 2528 | req_ie_len = le32_to_cpu(info->req_ie_length); |
2526 | if (req_ie_len > 0) { | 2529 | if (req_ie_len > 0) { |
2527 | offset = le32_to_cpu(info->offset_req_ies); | 2530 | offset = le32_to_cpu(info->offset_req_ies); |
2531 | |||
2532 | if (offset > CONTROL_BUFFER_SIZE) | ||
2533 | offset = CONTROL_BUFFER_SIZE; | ||
2534 | |||
2528 | req_ie = (u8 *)info + offset; | 2535 | req_ie = (u8 *)info + offset; |
2536 | |||
2537 | if (offset + req_ie_len > CONTROL_BUFFER_SIZE) | ||
2538 | req_ie_len = | ||
2539 | CONTROL_BUFFER_SIZE - offset; | ||
2529 | } | 2540 | } |
2530 | 2541 | ||
2531 | resp_ie_len = le32_to_cpu(info->resp_ie_length); | 2542 | resp_ie_len = le32_to_cpu(info->resp_ie_length); |
2532 | if (resp_ie_len > 0) { | 2543 | if (resp_ie_len > 0) { |
2533 | offset = le32_to_cpu(info->offset_resp_ies); | 2544 | offset = le32_to_cpu(info->offset_resp_ies); |
2545 | |||
2546 | if (offset > CONTROL_BUFFER_SIZE) | ||
2547 | offset = CONTROL_BUFFER_SIZE; | ||
2548 | |||
2534 | resp_ie = (u8 *)info + offset; | 2549 | resp_ie = (u8 *)info + offset; |
2550 | |||
2551 | if (offset + resp_ie_len > CONTROL_BUFFER_SIZE) | ||
2552 | resp_ie_len = | ||
2553 | CONTROL_BUFFER_SIZE - offset; | ||
2535 | } | 2554 | } |
2536 | } | 2555 | } |
2537 | } else if (WARN_ON(priv->infra_mode != NDIS_80211_INFRA_ADHOC)) | 2556 | } else if (WARN_ON(priv->infra_mode != NDIS_80211_INFRA_ADHOC)) |
@@ -2563,6 +2582,9 @@ static void rndis_wlan_do_link_up_work(struct usbnet *usbdev) | |||
2563 | } else if (priv->infra_mode == NDIS_80211_INFRA_ADHOC) | 2582 | } else if (priv->infra_mode == NDIS_80211_INFRA_ADHOC) |
2564 | cfg80211_ibss_joined(usbdev->net, bssid, GFP_KERNEL); | 2583 | cfg80211_ibss_joined(usbdev->net, bssid, GFP_KERNEL); |
2565 | 2584 | ||
2585 | if (info != NULL) | ||
2586 | kfree(info); | ||
2587 | |||
2566 | priv->connected = true; | 2588 | priv->connected = true; |
2567 | memcpy(priv->bssid, bssid, ETH_ALEN); | 2589 | memcpy(priv->bssid, bssid, ETH_ALEN); |
2568 | 2590 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2400pci.c b/drivers/net/wireless/rt2x00/rt2400pci.c index ad2c98af7e9d..1eb882e15fb4 100644 --- a/drivers/net/wireless/rt2x00/rt2400pci.c +++ b/drivers/net/wireless/rt2x00/rt2400pci.c | |||
@@ -1076,9 +1076,6 @@ static void rt2400pci_write_beacon(struct queue_entry *entry, | |||
1076 | struct txentry_desc *txdesc) | 1076 | struct txentry_desc *txdesc) |
1077 | { | 1077 | { |
1078 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | 1078 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; |
1079 | struct queue_entry_priv_pci *entry_priv = entry->priv_data; | ||
1080 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | ||
1081 | u32 word; | ||
1082 | u32 reg; | 1079 | u32 reg; |
1083 | 1080 | ||
1084 | /* | 1081 | /* |
@@ -1091,9 +1088,15 @@ static void rt2400pci_write_beacon(struct queue_entry *entry, | |||
1091 | 1088 | ||
1092 | rt2x00queue_map_txskb(rt2x00dev, entry->skb); | 1089 | rt2x00queue_map_txskb(rt2x00dev, entry->skb); |
1093 | 1090 | ||
1094 | rt2x00_desc_read(entry_priv->desc, 1, &word); | 1091 | /* |
1095 | rt2x00_set_field32(&word, TXD_W1_BUFFER_ADDRESS, skbdesc->skb_dma); | 1092 | * Write the TX descriptor for the beacon. |
1096 | rt2x00_desc_write(entry_priv->desc, 1, word); | 1093 | */ |
1094 | rt2400pci_write_tx_desc(rt2x00dev, entry->skb, txdesc); | ||
1095 | |||
1096 | /* | ||
1097 | * Dump beacon to userspace through debugfs. | ||
1098 | */ | ||
1099 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
1097 | 1100 | ||
1098 | /* | 1101 | /* |
1099 | * Enable beaconing again. | 1102 | * Enable beaconing again. |
@@ -1226,7 +1229,7 @@ static void rt2400pci_txdone(struct rt2x00_dev *rt2x00dev, | |||
1226 | } | 1229 | } |
1227 | txdesc.retry = rt2x00_get_field32(word, TXD_W0_RETRY_COUNT); | 1230 | txdesc.retry = rt2x00_get_field32(word, TXD_W0_RETRY_COUNT); |
1228 | 1231 | ||
1229 | rt2x00lib_txdone(entry, &txdesc); | 1232 | rt2x00pci_txdone(entry, &txdesc); |
1230 | } | 1233 | } |
1231 | } | 1234 | } |
1232 | 1235 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c index 41da3d218c65..a29cb212f89a 100644 --- a/drivers/net/wireless/rt2x00/rt2500pci.c +++ b/drivers/net/wireless/rt2x00/rt2500pci.c | |||
@@ -1233,9 +1233,6 @@ static void rt2500pci_write_beacon(struct queue_entry *entry, | |||
1233 | struct txentry_desc *txdesc) | 1233 | struct txentry_desc *txdesc) |
1234 | { | 1234 | { |
1235 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | 1235 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; |
1236 | struct queue_entry_priv_pci *entry_priv = entry->priv_data; | ||
1237 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | ||
1238 | u32 word; | ||
1239 | u32 reg; | 1236 | u32 reg; |
1240 | 1237 | ||
1241 | /* | 1238 | /* |
@@ -1248,9 +1245,15 @@ static void rt2500pci_write_beacon(struct queue_entry *entry, | |||
1248 | 1245 | ||
1249 | rt2x00queue_map_txskb(rt2x00dev, entry->skb); | 1246 | rt2x00queue_map_txskb(rt2x00dev, entry->skb); |
1250 | 1247 | ||
1251 | rt2x00_desc_read(entry_priv->desc, 1, &word); | 1248 | /* |
1252 | rt2x00_set_field32(&word, TXD_W1_BUFFER_ADDRESS, skbdesc->skb_dma); | 1249 | * Write the TX descriptor for the beacon. |
1253 | rt2x00_desc_write(entry_priv->desc, 1, word); | 1250 | */ |
1251 | rt2500pci_write_tx_desc(rt2x00dev, entry->skb, txdesc); | ||
1252 | |||
1253 | /* | ||
1254 | * Dump beacon to userspace through debugfs. | ||
1255 | */ | ||
1256 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
1254 | 1257 | ||
1255 | /* | 1258 | /* |
1256 | * Enable beaconing again. | 1259 | * Enable beaconing again. |
@@ -1362,7 +1365,7 @@ static void rt2500pci_txdone(struct rt2x00_dev *rt2x00dev, | |||
1362 | } | 1365 | } |
1363 | txdesc.retry = rt2x00_get_field32(word, TXD_W0_RETRY_COUNT); | 1366 | txdesc.retry = rt2x00_get_field32(word, TXD_W0_RETRY_COUNT); |
1364 | 1367 | ||
1365 | rt2x00lib_txdone(entry, &txdesc); | 1368 | rt2x00pci_txdone(entry, &txdesc); |
1366 | } | 1369 | } |
1367 | } | 1370 | } |
1368 | 1371 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2500usb.c b/drivers/net/wireless/rt2x00/rt2500usb.c index 9ae96a626e6d..002db646ae0b 100644 --- a/drivers/net/wireless/rt2x00/rt2500usb.c +++ b/drivers/net/wireless/rt2x00/rt2500usb.c | |||
@@ -345,7 +345,6 @@ static int rt2500usb_config_key(struct rt2x00_dev *rt2x00dev, | |||
345 | struct rt2x00lib_crypto *crypto, | 345 | struct rt2x00lib_crypto *crypto, |
346 | struct ieee80211_key_conf *key) | 346 | struct ieee80211_key_conf *key) |
347 | { | 347 | { |
348 | int timeout; | ||
349 | u32 mask; | 348 | u32 mask; |
350 | u16 reg; | 349 | u16 reg; |
351 | 350 | ||
@@ -367,18 +366,8 @@ static int rt2500usb_config_key(struct rt2x00_dev *rt2x00dev, | |||
367 | 366 | ||
368 | key->hw_key_idx += reg ? ffz(reg) : 0; | 367 | key->hw_key_idx += reg ? ffz(reg) : 0; |
369 | 368 | ||
370 | /* | 369 | rt2500usb_register_multiwrite(rt2x00dev, reg, |
371 | * The encryption key doesn't fit within the CSR cache, | 370 | crypto->key, sizeof(crypto->key)); |
372 | * this means we should allocate it separately and use | ||
373 | * rt2x00usb_vendor_request() to send the key to the hardware. | ||
374 | */ | ||
375 | reg = KEY_ENTRY(key->hw_key_idx); | ||
376 | timeout = REGISTER_TIMEOUT32(sizeof(crypto->key)); | ||
377 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | ||
378 | USB_VENDOR_REQUEST_OUT, reg, | ||
379 | crypto->key, | ||
380 | sizeof(crypto->key), | ||
381 | timeout); | ||
382 | 371 | ||
383 | /* | 372 | /* |
384 | * The driver does not support the IV/EIV generation | 373 | * The driver does not support the IV/EIV generation |
@@ -1034,7 +1023,7 @@ static void rt2500usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
1034 | struct txentry_desc *txdesc) | 1023 | struct txentry_desc *txdesc) |
1035 | { | 1024 | { |
1036 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 1025 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); |
1037 | __le32 *txd = (__le32 *)(skb->data - TXD_DESC_SIZE); | 1026 | __le32 *txd = (__le32 *) skb->data; |
1038 | u32 word; | 1027 | u32 word; |
1039 | 1028 | ||
1040 | /* | 1029 | /* |
@@ -1080,6 +1069,7 @@ static void rt2500usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
1080 | /* | 1069 | /* |
1081 | * Register descriptor details in skb frame descriptor. | 1070 | * Register descriptor details in skb frame descriptor. |
1082 | */ | 1071 | */ |
1072 | skbdesc->flags |= SKBDESC_DESC_IN_SKB; | ||
1083 | skbdesc->desc = txd; | 1073 | skbdesc->desc = txd; |
1084 | skbdesc->desc_len = TXD_DESC_SIZE; | 1074 | skbdesc->desc_len = TXD_DESC_SIZE; |
1085 | } | 1075 | } |
@@ -1108,9 +1098,20 @@ static void rt2500usb_write_beacon(struct queue_entry *entry, | |||
1108 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); | 1098 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); |
1109 | 1099 | ||
1110 | /* | 1100 | /* |
1111 | * Take the descriptor in front of the skb into account. | 1101 | * Add space for the descriptor in front of the skb. |
1112 | */ | 1102 | */ |
1113 | skb_push(entry->skb, TXD_DESC_SIZE); | 1103 | skb_push(entry->skb, TXD_DESC_SIZE); |
1104 | memset(entry->skb->data, 0, TXD_DESC_SIZE); | ||
1105 | |||
1106 | /* | ||
1107 | * Write the TX descriptor for the beacon. | ||
1108 | */ | ||
1109 | rt2500usb_write_tx_desc(rt2x00dev, entry->skb, txdesc); | ||
1110 | |||
1111 | /* | ||
1112 | * Dump beacon to userspace through debugfs. | ||
1113 | */ | ||
1114 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
1114 | 1115 | ||
1115 | /* | 1116 | /* |
1116 | * USB devices cannot blindly pass the skb->len as the | 1117 | * USB devices cannot blindly pass the skb->len as the |
diff --git a/drivers/net/wireless/rt2x00/rt2800.h b/drivers/net/wireless/rt2x00/rt2800.h index 0b17934cf6a9..317b7807175e 100644 --- a/drivers/net/wireless/rt2x00/rt2800.h +++ b/drivers/net/wireless/rt2x00/rt2800.h | |||
@@ -63,7 +63,6 @@ | |||
63 | */ | 63 | */ |
64 | #define REV_RT2860C 0x0100 | 64 | #define REV_RT2860C 0x0100 |
65 | #define REV_RT2860D 0x0101 | 65 | #define REV_RT2860D 0x0101 |
66 | #define REV_RT2870D 0x0101 | ||
67 | #define REV_RT2872E 0x0200 | 66 | #define REV_RT2872E 0x0200 |
68 | #define REV_RT3070E 0x0200 | 67 | #define REV_RT3070E 0x0200 |
69 | #define REV_RT3070F 0x0201 | 68 | #define REV_RT3070F 0x0201 |
@@ -99,6 +98,21 @@ | |||
99 | */ | 98 | */ |
100 | 99 | ||
101 | /* | 100 | /* |
101 | * E2PROM_CSR: PCI EEPROM control register. | ||
102 | * RELOAD: Write 1 to reload eeprom content. | ||
103 | * TYPE: 0: 93c46, 1:93c66. | ||
104 | * LOAD_STATUS: 1:loading, 0:done. | ||
105 | */ | ||
106 | #define E2PROM_CSR 0x0004 | ||
107 | #define E2PROM_CSR_DATA_CLOCK FIELD32(0x00000001) | ||
108 | #define E2PROM_CSR_CHIP_SELECT FIELD32(0x00000002) | ||
109 | #define E2PROM_CSR_DATA_IN FIELD32(0x00000004) | ||
110 | #define E2PROM_CSR_DATA_OUT FIELD32(0x00000008) | ||
111 | #define E2PROM_CSR_TYPE FIELD32(0x00000030) | ||
112 | #define E2PROM_CSR_LOAD_STATUS FIELD32(0x00000040) | ||
113 | #define E2PROM_CSR_RELOAD FIELD32(0x00000080) | ||
114 | |||
115 | /* | ||
102 | * OPT_14: Unknown register used by rt3xxx devices. | 116 | * OPT_14: Unknown register used by rt3xxx devices. |
103 | */ | 117 | */ |
104 | #define OPT_14_CSR 0x0114 | 118 | #define OPT_14_CSR 0x0114 |
@@ -322,6 +336,39 @@ | |||
322 | #define RX_DRX_IDX 0x029c | 336 | #define RX_DRX_IDX 0x029c |
323 | 337 | ||
324 | /* | 338 | /* |
339 | * USB_DMA_CFG | ||
340 | * RX_BULK_AGG_TIMEOUT: Rx Bulk Aggregation TimeOut in unit of 33ns. | ||
341 | * RX_BULK_AGG_LIMIT: Rx Bulk Aggregation Limit in unit of 256 bytes. | ||
342 | * PHY_CLEAR: phy watch dog enable. | ||
343 | * TX_CLEAR: Clear USB DMA TX path. | ||
344 | * TXOP_HALT: Halt TXOP count down when TX buffer is full. | ||
345 | * RX_BULK_AGG_EN: Enable Rx Bulk Aggregation. | ||
346 | * RX_BULK_EN: Enable USB DMA Rx. | ||
347 | * TX_BULK_EN: Enable USB DMA Tx. | ||
348 | * EP_OUT_VALID: OUT endpoint data valid. | ||
349 | * RX_BUSY: USB DMA RX FSM busy. | ||
350 | * TX_BUSY: USB DMA TX FSM busy. | ||
351 | */ | ||
352 | #define USB_DMA_CFG 0x02a0 | ||
353 | #define USB_DMA_CFG_RX_BULK_AGG_TIMEOUT FIELD32(0x000000ff) | ||
354 | #define USB_DMA_CFG_RX_BULK_AGG_LIMIT FIELD32(0x0000ff00) | ||
355 | #define USB_DMA_CFG_PHY_CLEAR FIELD32(0x00010000) | ||
356 | #define USB_DMA_CFG_TX_CLEAR FIELD32(0x00080000) | ||
357 | #define USB_DMA_CFG_TXOP_HALT FIELD32(0x00100000) | ||
358 | #define USB_DMA_CFG_RX_BULK_AGG_EN FIELD32(0x00200000) | ||
359 | #define USB_DMA_CFG_RX_BULK_EN FIELD32(0x00400000) | ||
360 | #define USB_DMA_CFG_TX_BULK_EN FIELD32(0x00800000) | ||
361 | #define USB_DMA_CFG_EP_OUT_VALID FIELD32(0x3f000000) | ||
362 | #define USB_DMA_CFG_RX_BUSY FIELD32(0x40000000) | ||
363 | #define USB_DMA_CFG_TX_BUSY FIELD32(0x80000000) | ||
364 | |||
365 | /* | ||
366 | * US_CYC_CNT | ||
367 | */ | ||
368 | #define US_CYC_CNT 0x02a4 | ||
369 | #define US_CYC_CNT_CLOCK_CYCLE FIELD32(0x000000ff) | ||
370 | |||
371 | /* | ||
325 | * PBF_SYS_CTRL | 372 | * PBF_SYS_CTRL |
326 | * HOST_RAM_WRITE: enable Host program ram write selection | 373 | * HOST_RAM_WRITE: enable Host program ram write selection |
327 | */ | 374 | */ |
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c index db4250d1c8b3..ae20e6728b1e 100644 --- a/drivers/net/wireless/rt2x00/rt2800lib.c +++ b/drivers/net/wireless/rt2x00/rt2800lib.c | |||
@@ -38,12 +38,8 @@ | |||
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | 39 | ||
40 | #include "rt2x00.h" | 40 | #include "rt2x00.h" |
41 | #if defined(CONFIG_RT2X00_LIB_USB) || defined(CONFIG_RT2X00_LIB_USB_MODULE) | ||
42 | #include "rt2x00usb.h" | ||
43 | #endif | ||
44 | #include "rt2800lib.h" | 41 | #include "rt2800lib.h" |
45 | #include "rt2800.h" | 42 | #include "rt2800.h" |
46 | #include "rt2800usb.h" | ||
47 | 43 | ||
48 | MODULE_AUTHOR("Bartlomiej Zolnierkiewicz"); | 44 | MODULE_AUTHOR("Bartlomiej Zolnierkiewicz"); |
49 | MODULE_DESCRIPTION("rt2800 library"); | 45 | MODULE_DESCRIPTION("rt2800 library"); |
@@ -282,9 +278,8 @@ int rt2800_wait_wpdma_ready(struct rt2x00_dev *rt2x00dev) | |||
282 | } | 278 | } |
283 | EXPORT_SYMBOL_GPL(rt2800_wait_wpdma_ready); | 279 | EXPORT_SYMBOL_GPL(rt2800_wait_wpdma_ready); |
284 | 280 | ||
285 | void rt2800_write_txwi(struct sk_buff *skb, struct txentry_desc *txdesc) | 281 | void rt2800_write_txwi(__le32 *txwi, struct txentry_desc *txdesc) |
286 | { | 282 | { |
287 | __le32 *txwi = (__le32 *)(skb->data - TXWI_DESC_SIZE); | ||
288 | u32 word; | 283 | u32 word; |
289 | 284 | ||
290 | /* | 285 | /* |
@@ -380,6 +375,67 @@ void rt2800_process_rxwi(struct sk_buff *skb, struct rxdone_entry_desc *rxdesc) | |||
380 | } | 375 | } |
381 | EXPORT_SYMBOL_GPL(rt2800_process_rxwi); | 376 | EXPORT_SYMBOL_GPL(rt2800_process_rxwi); |
382 | 377 | ||
378 | void rt2800_write_beacon(struct queue_entry *entry, struct txentry_desc *txdesc) | ||
379 | { | ||
380 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | ||
381 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | ||
382 | unsigned int beacon_base; | ||
383 | u32 reg; | ||
384 | |||
385 | /* | ||
386 | * Disable beaconing while we are reloading the beacon data, | ||
387 | * otherwise we might be sending out invalid data. | ||
388 | */ | ||
389 | rt2800_register_read(rt2x00dev, BCN_TIME_CFG, ®); | ||
390 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 0); | ||
391 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
392 | |||
393 | /* | ||
394 | * Add space for the TXWI in front of the skb. | ||
395 | */ | ||
396 | skb_push(entry->skb, TXWI_DESC_SIZE); | ||
397 | memset(entry->skb, 0, TXWI_DESC_SIZE); | ||
398 | |||
399 | /* | ||
400 | * Register descriptor details in skb frame descriptor. | ||
401 | */ | ||
402 | skbdesc->flags |= SKBDESC_DESC_IN_SKB; | ||
403 | skbdesc->desc = entry->skb->data; | ||
404 | skbdesc->desc_len = TXWI_DESC_SIZE; | ||
405 | |||
406 | /* | ||
407 | * Add the TXWI for the beacon to the skb. | ||
408 | */ | ||
409 | rt2800_write_txwi((__le32 *)entry->skb->data, txdesc); | ||
410 | |||
411 | /* | ||
412 | * Dump beacon to userspace through debugfs. | ||
413 | */ | ||
414 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
415 | |||
416 | /* | ||
417 | * Write entire beacon with TXWI to register. | ||
418 | */ | ||
419 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); | ||
420 | rt2800_register_multiwrite(rt2x00dev, beacon_base, | ||
421 | entry->skb->data, entry->skb->len); | ||
422 | |||
423 | /* | ||
424 | * Enable beaconing again. | ||
425 | */ | ||
426 | rt2x00_set_field32(®, BCN_TIME_CFG_TSF_TICKING, 1); | ||
427 | rt2x00_set_field32(®, BCN_TIME_CFG_TBTT_ENABLE, 1); | ||
428 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 1); | ||
429 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
430 | |||
431 | /* | ||
432 | * Clean up beacon skb. | ||
433 | */ | ||
434 | dev_kfree_skb_any(entry->skb); | ||
435 | entry->skb = NULL; | ||
436 | } | ||
437 | EXPORT_SYMBOL(rt2800_write_beacon); | ||
438 | |||
383 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | 439 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS |
384 | const struct rt2x00debug rt2800_rt2x00debug = { | 440 | const struct rt2x00debug rt2800_rt2x00debug = { |
385 | .owner = THIS_MODULE, | 441 | .owner = THIS_MODULE, |
@@ -1212,6 +1268,7 @@ int rt2800_init_registers(struct rt2x00_dev *rt2x00dev) | |||
1212 | u32 reg; | 1268 | u32 reg; |
1213 | u16 eeprom; | 1269 | u16 eeprom; |
1214 | unsigned int i; | 1270 | unsigned int i; |
1271 | int ret; | ||
1215 | 1272 | ||
1216 | rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, ®); | 1273 | rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, ®); |
1217 | rt2x00_set_field32(®, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0); | 1274 | rt2x00_set_field32(®, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0); |
@@ -1221,59 +1278,9 @@ int rt2800_init_registers(struct rt2x00_dev *rt2x00dev) | |||
1221 | rt2x00_set_field32(®, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1); | 1278 | rt2x00_set_field32(®, WPDMA_GLO_CFG_TX_WRITEBACK_DONE, 1); |
1222 | rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg); | 1279 | rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg); |
1223 | 1280 | ||
1224 | if (rt2x00_is_usb(rt2x00dev)) { | 1281 | ret = rt2800_drv_init_registers(rt2x00dev); |
1225 | /* | 1282 | if (ret) |
1226 | * Wait until BBP and RF are ready. | 1283 | return ret; |
1227 | */ | ||
1228 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { | ||
1229 | rt2800_register_read(rt2x00dev, MAC_CSR0, ®); | ||
1230 | if (reg && reg != ~0) | ||
1231 | break; | ||
1232 | msleep(1); | ||
1233 | } | ||
1234 | |||
1235 | if (i == REGISTER_BUSY_COUNT) { | ||
1236 | ERROR(rt2x00dev, "Unstable hardware.\n"); | ||
1237 | return -EBUSY; | ||
1238 | } | ||
1239 | |||
1240 | rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, ®); | ||
1241 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, | ||
1242 | reg & ~0x00002000); | ||
1243 | } else if (rt2x00_is_pci(rt2x00dev) || rt2x00_is_soc(rt2x00dev)) { | ||
1244 | /* | ||
1245 | * Reset DMA indexes | ||
1246 | */ | ||
1247 | rt2800_register_read(rt2x00dev, WPDMA_RST_IDX, ®); | ||
1248 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX0, 1); | ||
1249 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX1, 1); | ||
1250 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX2, 1); | ||
1251 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX3, 1); | ||
1252 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX4, 1); | ||
1253 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX5, 1); | ||
1254 | rt2x00_set_field32(®, WPDMA_RST_IDX_DRX_IDX0, 1); | ||
1255 | rt2800_register_write(rt2x00dev, WPDMA_RST_IDX, reg); | ||
1256 | |||
1257 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, 0x00000e1f); | ||
1258 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, 0x00000e00); | ||
1259 | |||
1260 | rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003); | ||
1261 | } | ||
1262 | |||
1263 | rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, ®); | ||
1264 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_CSR, 1); | ||
1265 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_BBP, 1); | ||
1266 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg); | ||
1267 | |||
1268 | if (rt2x00_is_usb(rt2x00dev)) { | ||
1269 | rt2800_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000); | ||
1270 | #if defined(CONFIG_RT2X00_LIB_USB) || defined(CONFIG_RT2X00_LIB_USB_MODULE) | ||
1271 | rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0, | ||
1272 | USB_MODE_RESET, REGISTER_TIMEOUT); | ||
1273 | #endif | ||
1274 | } | ||
1275 | |||
1276 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000); | ||
1277 | 1284 | ||
1278 | rt2800_register_read(rt2x00dev, BCN_OFFSET0, ®); | 1285 | rt2800_register_read(rt2x00dev, BCN_OFFSET0, ®); |
1279 | rt2x00_set_field32(®, BCN_OFFSET0_BCN0, 0xe0); /* 0x3800 */ | 1286 | rt2x00_set_field32(®, BCN_OFFSET0_BCN0, 0xe0); /* 0x3800 */ |
@@ -1328,7 +1335,6 @@ int rt2800_init_registers(struct rt2x00_dev *rt2x00dev) | |||
1328 | } else { | 1335 | } else { |
1329 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000); | 1336 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000); |
1330 | } | 1337 | } |
1331 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, reg); | ||
1332 | } else if (rt2x00_rt(rt2x00dev, RT3070)) { | 1338 | } else if (rt2x00_rt(rt2x00dev, RT3070)) { |
1333 | rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400); | 1339 | rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400); |
1334 | 1340 | ||
@@ -1339,6 +1345,10 @@ int rt2800_init_registers(struct rt2x00_dev *rt2x00dev) | |||
1339 | rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606); | 1345 | rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606); |
1340 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000); | 1346 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000); |
1341 | } | 1347 | } |
1348 | } else if (rt2800_is_305x_soc(rt2x00dev)) { | ||
1349 | rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000400); | ||
1350 | rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00000000); | ||
1351 | rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x0000001f); | ||
1342 | } else { | 1352 | } else { |
1343 | rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000000); | 1353 | rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000000); |
1344 | rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606); | 1354 | rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x00080606); |
@@ -1560,9 +1570,9 @@ int rt2800_init_registers(struct rt2x00_dev *rt2x00dev) | |||
1560 | rt2800_register_write(rt2x00dev, HW_BEACON_BASE7, 0); | 1570 | rt2800_register_write(rt2x00dev, HW_BEACON_BASE7, 0); |
1561 | 1571 | ||
1562 | if (rt2x00_is_usb(rt2x00dev)) { | 1572 | if (rt2x00_is_usb(rt2x00dev)) { |
1563 | rt2800_register_read(rt2x00dev, USB_CYC_CFG, ®); | 1573 | rt2800_register_read(rt2x00dev, US_CYC_CNT, ®); |
1564 | rt2x00_set_field32(®, USB_CYC_CFG_CLOCK_CYCLE, 30); | 1574 | rt2x00_set_field32(®, US_CYC_CNT_CLOCK_CYCLE, 30); |
1565 | rt2800_register_write(rt2x00dev, USB_CYC_CFG, reg); | 1575 | rt2800_register_write(rt2x00dev, US_CYC_CNT, reg); |
1566 | } | 1576 | } |
1567 | 1577 | ||
1568 | rt2800_register_read(rt2x00dev, HT_FBK_CFG0, ®); | 1578 | rt2800_register_read(rt2x00dev, HT_FBK_CFG0, ®); |
@@ -1706,8 +1716,7 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev) | |||
1706 | rt2800_bbp_write(rt2x00dev, 82, 0x62); | 1716 | rt2800_bbp_write(rt2x00dev, 82, 0x62); |
1707 | rt2800_bbp_write(rt2x00dev, 83, 0x6a); | 1717 | rt2800_bbp_write(rt2x00dev, 83, 0x6a); |
1708 | 1718 | ||
1709 | if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860D) || | 1719 | if (rt2x00_rt_rev(rt2x00dev, RT2860, REV_RT2860D)) |
1710 | rt2x00_rt_rev(rt2x00dev, RT2870, REV_RT2870D)) | ||
1711 | rt2800_bbp_write(rt2x00dev, 84, 0x19); | 1720 | rt2800_bbp_write(rt2x00dev, 84, 0x19); |
1712 | else | 1721 | else |
1713 | rt2800_bbp_write(rt2x00dev, 84, 0x99); | 1722 | rt2800_bbp_write(rt2x00dev, 84, 0x99); |
@@ -2013,8 +2022,7 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev) | |||
2013 | if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) || | 2022 | if (rt2x00_rt_rev_lt(rt2x00dev, RT3071, REV_RT3071E) || |
2014 | rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) || | 2023 | rt2x00_rt_rev_lt(rt2x00dev, RT3090, REV_RT3090E) || |
2015 | rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) { | 2024 | rt2x00_rt_rev_lt(rt2x00dev, RT3390, REV_RT3390E)) { |
2016 | rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &eeprom); | 2025 | if (test_bit(CONFIG_EXTERNAL_LNA_BG, &rt2x00dev->flags)) |
2017 | if (rt2x00_get_field16(eeprom, EEPROM_NIC_EXTERNAL_LNA_BG)) | ||
2018 | rt2x00_set_field8(&rfcsr, RFCSR17_R, 1); | 2026 | rt2x00_set_field8(&rfcsr, RFCSR17_R, 1); |
2019 | } | 2027 | } |
2020 | rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_BG, &eeprom); | 2028 | rt2x00_eeprom_read(rt2x00dev, EEPROM_TXMIXER_GAIN_BG, &eeprom); |
@@ -2147,7 +2155,6 @@ int rt2800_validate_eeprom(struct rt2x00_dev *rt2x00dev) | |||
2147 | rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word); | 2155 | rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word); |
2148 | EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word); | 2156 | EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word); |
2149 | } else if (rt2x00_rt(rt2x00dev, RT2860) || | 2157 | } else if (rt2x00_rt(rt2x00dev, RT2860) || |
2150 | rt2x00_rt(rt2x00dev, RT2870) || | ||
2151 | rt2x00_rt(rt2x00dev, RT2872)) { | 2158 | rt2x00_rt(rt2x00dev, RT2872)) { |
2152 | /* | 2159 | /* |
2153 | * There is a max of 2 RX streams for RT28x0 series | 2160 | * There is a max of 2 RX streams for RT28x0 series |
@@ -2251,7 +2258,6 @@ int rt2800_init_eeprom(struct rt2x00_dev *rt2x00dev) | |||
2251 | value, rt2x00_get_field32(reg, MAC_CSR0_REVISION)); | 2258 | value, rt2x00_get_field32(reg, MAC_CSR0_REVISION)); |
2252 | 2259 | ||
2253 | if (!rt2x00_rt(rt2x00dev, RT2860) && | 2260 | if (!rt2x00_rt(rt2x00dev, RT2860) && |
2254 | !rt2x00_rt(rt2x00dev, RT2870) && | ||
2255 | !rt2x00_rt(rt2x00dev, RT2872) && | 2261 | !rt2x00_rt(rt2x00dev, RT2872) && |
2256 | !rt2x00_rt(rt2x00dev, RT2883) && | 2262 | !rt2x00_rt(rt2x00dev, RT2883) && |
2257 | !rt2x00_rt(rt2x00dev, RT3070) && | 2263 | !rt2x00_rt(rt2x00dev, RT3070) && |
@@ -2528,16 +2534,16 @@ int rt2800_probe_hw_mode(struct rt2x00_dev *rt2x00dev) | |||
2528 | else | 2534 | else |
2529 | spec->ht.ht_supported = false; | 2535 | spec->ht.ht_supported = false; |
2530 | 2536 | ||
2531 | /* | ||
2532 | * Don't set IEEE80211_HT_CAP_SUP_WIDTH_20_40 for now as it causes | ||
2533 | * reception problems with HT40 capable 11n APs | ||
2534 | */ | ||
2535 | spec->ht.cap = | 2537 | spec->ht.cap = |
2538 | IEEE80211_HT_CAP_SUP_WIDTH_20_40 | | ||
2536 | IEEE80211_HT_CAP_GRN_FLD | | 2539 | IEEE80211_HT_CAP_GRN_FLD | |
2537 | IEEE80211_HT_CAP_SGI_20 | | 2540 | IEEE80211_HT_CAP_SGI_20 | |
2538 | IEEE80211_HT_CAP_SGI_40 | | 2541 | IEEE80211_HT_CAP_SGI_40 | |
2539 | IEEE80211_HT_CAP_TX_STBC | | ||
2540 | IEEE80211_HT_CAP_RX_STBC; | 2542 | IEEE80211_HT_CAP_RX_STBC; |
2543 | |||
2544 | if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_TXPATH) >= 2) | ||
2545 | spec->ht.cap |= IEEE80211_HT_CAP_TX_STBC; | ||
2546 | |||
2541 | spec->ht.ampdu_factor = 3; | 2547 | spec->ht.ampdu_factor = 3; |
2542 | spec->ht.ampdu_density = 4; | 2548 | spec->ht.ampdu_density = 4; |
2543 | spec->ht.mcs.tx_params = | 2549 | spec->ht.mcs.tx_params = |
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.h b/drivers/net/wireless/rt2x00/rt2800lib.h index 94de999e2290..8313dbf441a5 100644 --- a/drivers/net/wireless/rt2x00/rt2800lib.h +++ b/drivers/net/wireless/rt2x00/rt2800lib.h | |||
@@ -40,6 +40,8 @@ struct rt2800_ops { | |||
40 | int (*regbusy_read)(struct rt2x00_dev *rt2x00dev, | 40 | int (*regbusy_read)(struct rt2x00_dev *rt2x00dev, |
41 | const unsigned int offset, | 41 | const unsigned int offset, |
42 | const struct rt2x00_field32 field, u32 *reg); | 42 | const struct rt2x00_field32 field, u32 *reg); |
43 | |||
44 | int (*drv_init_registers)(struct rt2x00_dev *rt2x00dev); | ||
43 | }; | 45 | }; |
44 | 46 | ||
45 | static inline void rt2800_register_read(struct rt2x00_dev *rt2x00dev, | 47 | static inline void rt2800_register_read(struct rt2x00_dev *rt2x00dev, |
@@ -107,13 +109,22 @@ static inline int rt2800_regbusy_read(struct rt2x00_dev *rt2x00dev, | |||
107 | return rt2800ops->regbusy_read(rt2x00dev, offset, field, reg); | 109 | return rt2800ops->regbusy_read(rt2x00dev, offset, field, reg); |
108 | } | 110 | } |
109 | 111 | ||
112 | static inline int rt2800_drv_init_registers(struct rt2x00_dev *rt2x00dev) | ||
113 | { | ||
114 | const struct rt2800_ops *rt2800ops = rt2x00dev->priv; | ||
115 | |||
116 | return rt2800ops->drv_init_registers(rt2x00dev); | ||
117 | } | ||
118 | |||
110 | void rt2800_mcu_request(struct rt2x00_dev *rt2x00dev, | 119 | void rt2800_mcu_request(struct rt2x00_dev *rt2x00dev, |
111 | const u8 command, const u8 token, | 120 | const u8 command, const u8 token, |
112 | const u8 arg0, const u8 arg1); | 121 | const u8 arg0, const u8 arg1); |
113 | 122 | ||
114 | void rt2800_write_txwi(struct sk_buff *skb, struct txentry_desc *txdesc); | 123 | void rt2800_write_txwi(__le32 *txwi, struct txentry_desc *txdesc); |
115 | void rt2800_process_rxwi(struct sk_buff *skb, struct rxdone_entry_desc *txdesc); | 124 | void rt2800_process_rxwi(struct sk_buff *skb, struct rxdone_entry_desc *txdesc); |
116 | 125 | ||
126 | void rt2800_write_beacon(struct queue_entry *entry, struct txentry_desc *txdesc); | ||
127 | |||
117 | extern const struct rt2x00debug rt2800_rt2x00debug; | 128 | extern const struct rt2x00debug rt2800_rt2x00debug; |
118 | 129 | ||
119 | int rt2800_rfkill_poll(struct rt2x00_dev *rt2x00dev); | 130 | int rt2800_rfkill_poll(struct rt2x00_dev *rt2x00dev); |
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c index b2f23272c3aa..b5a871eb8881 100644 --- a/drivers/net/wireless/rt2x00/rt2800pci.c +++ b/drivers/net/wireless/rt2x00/rt2800pci.c | |||
@@ -446,6 +446,38 @@ static void rt2800pci_toggle_irq(struct rt2x00_dev *rt2x00dev, | |||
446 | rt2800_register_write(rt2x00dev, INT_MASK_CSR, reg); | 446 | rt2800_register_write(rt2x00dev, INT_MASK_CSR, reg); |
447 | } | 447 | } |
448 | 448 | ||
449 | static int rt2800pci_init_registers(struct rt2x00_dev *rt2x00dev) | ||
450 | { | ||
451 | u32 reg; | ||
452 | |||
453 | /* | ||
454 | * Reset DMA indexes | ||
455 | */ | ||
456 | rt2800_register_read(rt2x00dev, WPDMA_RST_IDX, ®); | ||
457 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX0, 1); | ||
458 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX1, 1); | ||
459 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX2, 1); | ||
460 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX3, 1); | ||
461 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX4, 1); | ||
462 | rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX5, 1); | ||
463 | rt2x00_set_field32(®, WPDMA_RST_IDX_DRX_IDX0, 1); | ||
464 | rt2800_register_write(rt2x00dev, WPDMA_RST_IDX, reg); | ||
465 | |||
466 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, 0x00000e1f); | ||
467 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, 0x00000e00); | ||
468 | |||
469 | rt2800_register_write(rt2x00dev, PWR_PIN_CFG, 0x00000003); | ||
470 | |||
471 | rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, ®); | ||
472 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_CSR, 1); | ||
473 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_BBP, 1); | ||
474 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg); | ||
475 | |||
476 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000); | ||
477 | |||
478 | return 0; | ||
479 | } | ||
480 | |||
449 | static int rt2800pci_enable_radio(struct rt2x00_dev *rt2x00dev) | 481 | static int rt2800pci_enable_radio(struct rt2x00_dev *rt2x00dev) |
450 | { | 482 | { |
451 | u32 reg; | 483 | u32 reg; |
@@ -465,7 +497,7 @@ static int rt2800pci_enable_radio(struct rt2x00_dev *rt2x00dev) | |||
465 | /* | 497 | /* |
466 | * Send signal to firmware during boot time. | 498 | * Send signal to firmware during boot time. |
467 | */ | 499 | */ |
468 | rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0xff, 0, 0); | 500 | rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0); |
469 | 501 | ||
470 | /* | 502 | /* |
471 | * Enable RX. | 503 | * Enable RX. |
@@ -613,18 +645,10 @@ static int rt2800pci_set_device_state(struct rt2x00_dev *rt2x00dev, | |||
613 | /* | 645 | /* |
614 | * TX descriptor initialization | 646 | * TX descriptor initialization |
615 | */ | 647 | */ |
616 | static int rt2800pci_write_tx_data(struct queue_entry* entry, | 648 | static void rt2800pci_write_tx_datadesc(struct queue_entry* entry, |
617 | struct txentry_desc *txdesc) | 649 | struct txentry_desc *txdesc) |
618 | { | 650 | { |
619 | int ret; | 651 | rt2800_write_txwi((__le32 *) entry->skb->data, txdesc); |
620 | |||
621 | ret = rt2x00pci_write_tx_data(entry, txdesc); | ||
622 | if (ret) | ||
623 | return ret; | ||
624 | |||
625 | rt2800_write_txwi(entry->skb, txdesc); | ||
626 | |||
627 | return 0; | ||
628 | } | 652 | } |
629 | 653 | ||
630 | 654 | ||
@@ -684,49 +708,6 @@ static void rt2800pci_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
684 | /* | 708 | /* |
685 | * TX data initialization | 709 | * TX data initialization |
686 | */ | 710 | */ |
687 | static void rt2800pci_write_beacon(struct queue_entry *entry, | ||
688 | struct txentry_desc *txdesc) | ||
689 | { | ||
690 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | ||
691 | unsigned int beacon_base; | ||
692 | u32 reg; | ||
693 | |||
694 | /* | ||
695 | * Disable beaconing while we are reloading the beacon data, | ||
696 | * otherwise we might be sending out invalid data. | ||
697 | */ | ||
698 | rt2800_register_read(rt2x00dev, BCN_TIME_CFG, ®); | ||
699 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 0); | ||
700 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
701 | |||
702 | /* | ||
703 | * Add the TXWI for the beacon to the skb. | ||
704 | */ | ||
705 | rt2800_write_txwi(entry->skb, txdesc); | ||
706 | skb_push(entry->skb, TXWI_DESC_SIZE); | ||
707 | |||
708 | /* | ||
709 | * Write entire beacon with TXWI to register. | ||
710 | */ | ||
711 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); | ||
712 | rt2800_register_multiwrite(rt2x00dev, beacon_base, | ||
713 | entry->skb->data, entry->skb->len); | ||
714 | |||
715 | /* | ||
716 | * Enable beaconing again. | ||
717 | */ | ||
718 | rt2x00_set_field32(®, BCN_TIME_CFG_TSF_TICKING, 1); | ||
719 | rt2x00_set_field32(®, BCN_TIME_CFG_TBTT_ENABLE, 1); | ||
720 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 1); | ||
721 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
722 | |||
723 | /* | ||
724 | * Clean up beacon skb. | ||
725 | */ | ||
726 | dev_kfree_skb_any(entry->skb); | ||
727 | entry->skb = NULL; | ||
728 | } | ||
729 | |||
730 | static void rt2800pci_kick_tx_queue(struct rt2x00_dev *rt2x00dev, | 711 | static void rt2800pci_kick_tx_queue(struct rt2x00_dev *rt2x00dev, |
731 | const enum data_queue_qid queue_idx) | 712 | const enum data_queue_qid queue_idx) |
732 | { | 713 | { |
@@ -880,8 +861,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) | |||
880 | 861 | ||
881 | /* Check if we got a match by looking at WCID/ACK/PID | 862 | /* Check if we got a match by looking at WCID/ACK/PID |
882 | * fields */ | 863 | * fields */ |
883 | txwi = (__le32 *)(entry->skb->data - | 864 | txwi = (__le32 *) entry->skb->data; |
884 | rt2x00dev->ops->extra_tx_headroom); | ||
885 | 865 | ||
886 | rt2x00_desc_read(txwi, 1, &word); | 866 | rt2x00_desc_read(txwi, 1, &word); |
887 | tx_wcid = rt2x00_get_field32(word, TXWI_W1_WIRELESS_CLI_ID); | 867 | tx_wcid = rt2x00_get_field32(word, TXWI_W1_WIRELESS_CLI_ID); |
@@ -926,7 +906,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) | |||
926 | __set_bit(TXDONE_FALLBACK, &txdesc.flags); | 906 | __set_bit(TXDONE_FALLBACK, &txdesc.flags); |
927 | 907 | ||
928 | 908 | ||
929 | rt2x00lib_txdone(entry, &txdesc); | 909 | rt2x00pci_txdone(entry, &txdesc); |
930 | } | 910 | } |
931 | } | 911 | } |
932 | 912 | ||
@@ -996,6 +976,8 @@ static const struct rt2800_ops rt2800pci_rt2800_ops = { | |||
996 | .register_multiwrite = rt2x00pci_register_multiwrite, | 976 | .register_multiwrite = rt2x00pci_register_multiwrite, |
997 | 977 | ||
998 | .regbusy_read = rt2x00pci_regbusy_read, | 978 | .regbusy_read = rt2x00pci_regbusy_read, |
979 | |||
980 | .drv_init_registers = rt2800pci_init_registers, | ||
999 | }; | 981 | }; |
1000 | 982 | ||
1001 | static int rt2800pci_probe_hw(struct rt2x00_dev *rt2x00dev) | 983 | static int rt2800pci_probe_hw(struct rt2x00_dev *rt2x00dev) |
@@ -1063,8 +1045,9 @@ static const struct rt2x00lib_ops rt2800pci_rt2x00_ops = { | |||
1063 | .reset_tuner = rt2800_reset_tuner, | 1045 | .reset_tuner = rt2800_reset_tuner, |
1064 | .link_tuner = rt2800_link_tuner, | 1046 | .link_tuner = rt2800_link_tuner, |
1065 | .write_tx_desc = rt2800pci_write_tx_desc, | 1047 | .write_tx_desc = rt2800pci_write_tx_desc, |
1066 | .write_tx_data = rt2800pci_write_tx_data, | 1048 | .write_tx_data = rt2x00pci_write_tx_data, |
1067 | .write_beacon = rt2800pci_write_beacon, | 1049 | .write_tx_datadesc = rt2800pci_write_tx_datadesc, |
1050 | .write_beacon = rt2800_write_beacon, | ||
1068 | .kick_tx_queue = rt2800pci_kick_tx_queue, | 1051 | .kick_tx_queue = rt2800pci_kick_tx_queue, |
1069 | .kill_tx_queue = rt2800pci_kill_tx_queue, | 1052 | .kill_tx_queue = rt2800pci_kill_tx_queue, |
1070 | .fill_rxdone = rt2800pci_fill_rxdone, | 1053 | .fill_rxdone = rt2800pci_fill_rxdone, |
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.h b/drivers/net/wireless/rt2x00/rt2800pci.h index afc8e7da27cb..5a8dda9b5b5a 100644 --- a/drivers/net/wireless/rt2x00/rt2800pci.h +++ b/drivers/net/wireless/rt2x00/rt2800pci.h | |||
@@ -35,25 +35,6 @@ | |||
35 | #define RT2800PCI_H | 35 | #define RT2800PCI_H |
36 | 36 | ||
37 | /* | 37 | /* |
38 | * PCI registers. | ||
39 | */ | ||
40 | |||
41 | /* | ||
42 | * E2PROM_CSR: EEPROM control register. | ||
43 | * RELOAD: Write 1 to reload eeprom content. | ||
44 | * TYPE: 0: 93c46, 1:93c66. | ||
45 | * LOAD_STATUS: 1:loading, 0:done. | ||
46 | */ | ||
47 | #define E2PROM_CSR 0x0004 | ||
48 | #define E2PROM_CSR_DATA_CLOCK FIELD32(0x00000001) | ||
49 | #define E2PROM_CSR_CHIP_SELECT FIELD32(0x00000002) | ||
50 | #define E2PROM_CSR_DATA_IN FIELD32(0x00000004) | ||
51 | #define E2PROM_CSR_DATA_OUT FIELD32(0x00000008) | ||
52 | #define E2PROM_CSR_TYPE FIELD32(0x00000030) | ||
53 | #define E2PROM_CSR_LOAD_STATUS FIELD32(0x00000040) | ||
54 | #define E2PROM_CSR_RELOAD FIELD32(0x00000080) | ||
55 | |||
56 | /* | ||
57 | * Queue register offset macros | 38 | * Queue register offset macros |
58 | */ | 39 | */ |
59 | #define TX_QUEUE_REG_OFFSET 0x10 | 40 | #define TX_QUEUE_REG_OFFSET 0x10 |
diff --git a/drivers/net/wireless/rt2x00/rt2800usb.c b/drivers/net/wireless/rt2x00/rt2800usb.c index 0f8b84b7224c..c437960de3ed 100644 --- a/drivers/net/wireless/rt2x00/rt2800usb.c +++ b/drivers/net/wireless/rt2x00/rt2800usb.c | |||
@@ -169,11 +169,8 @@ static int rt2800usb_load_firmware(struct rt2x00_dev *rt2x00dev, | |||
169 | /* | 169 | /* |
170 | * Write firmware to device. | 170 | * Write firmware to device. |
171 | */ | 171 | */ |
172 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | 172 | rt2800_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE, |
173 | USB_VENDOR_REQUEST_OUT, | 173 | data + offset, length); |
174 | FIRMWARE_IMAGE_BASE, | ||
175 | data + offset, length, | ||
176 | REGISTER_TIMEOUT32(length)); | ||
177 | 174 | ||
178 | rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0); | 175 | rt2800_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0); |
179 | rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0); | 176 | rt2800_register_write(rt2x00dev, H2M_MAILBOX_STATUS, ~0); |
@@ -196,7 +193,7 @@ static int rt2800usb_load_firmware(struct rt2x00_dev *rt2x00dev, | |||
196 | /* | 193 | /* |
197 | * Send signal to firmware during boot time. | 194 | * Send signal to firmware during boot time. |
198 | */ | 195 | */ |
199 | rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0xff, 0, 0); | 196 | rt2800_mcu_request(rt2x00dev, MCU_BOOT_SIGNAL, 0, 0, 0); |
200 | 197 | ||
201 | if (rt2x00_rt(rt2x00dev, RT3070) || | 198 | if (rt2x00_rt(rt2x00dev, RT3070) || |
202 | rt2x00_rt(rt2x00dev, RT3071) || | 199 | rt2x00_rt(rt2x00dev, RT3071) || |
@@ -246,6 +243,44 @@ static void rt2800usb_toggle_rx(struct rt2x00_dev *rt2x00dev, | |||
246 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg); | 243 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg); |
247 | } | 244 | } |
248 | 245 | ||
246 | static int rt2800usb_init_registers(struct rt2x00_dev *rt2x00dev) | ||
247 | { | ||
248 | u32 reg; | ||
249 | int i; | ||
250 | |||
251 | /* | ||
252 | * Wait until BBP and RF are ready. | ||
253 | */ | ||
254 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { | ||
255 | rt2800_register_read(rt2x00dev, MAC_CSR0, ®); | ||
256 | if (reg && reg != ~0) | ||
257 | break; | ||
258 | msleep(1); | ||
259 | } | ||
260 | |||
261 | if (i == REGISTER_BUSY_COUNT) { | ||
262 | ERROR(rt2x00dev, "Unstable hardware.\n"); | ||
263 | return -EBUSY; | ||
264 | } | ||
265 | |||
266 | rt2800_register_read(rt2x00dev, PBF_SYS_CTRL, ®); | ||
267 | rt2800_register_write(rt2x00dev, PBF_SYS_CTRL, reg & ~0x00002000); | ||
268 | |||
269 | rt2800_register_read(rt2x00dev, MAC_SYS_CTRL, ®); | ||
270 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_CSR, 1); | ||
271 | rt2x00_set_field32(®, MAC_SYS_CTRL_RESET_BBP, 1); | ||
272 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, reg); | ||
273 | |||
274 | rt2800_register_write(rt2x00dev, USB_DMA_CFG, 0x00000000); | ||
275 | |||
276 | rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0, | ||
277 | USB_MODE_RESET, REGISTER_TIMEOUT); | ||
278 | |||
279 | rt2800_register_write(rt2x00dev, MAC_SYS_CTRL, 0x00000000); | ||
280 | |||
281 | return 0; | ||
282 | } | ||
283 | |||
249 | static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev) | 284 | static int rt2800usb_enable_radio(struct rt2x00_dev *rt2x00dev) |
250 | { | 285 | { |
251 | u32 reg; | 286 | u32 reg; |
@@ -400,20 +435,21 @@ static void rt2800usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
400 | struct txentry_desc *txdesc) | 435 | struct txentry_desc *txdesc) |
401 | { | 436 | { |
402 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 437 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); |
403 | __le32 *txi = (__le32 *)(skb->data - TXWI_DESC_SIZE - TXINFO_DESC_SIZE); | 438 | __le32 *txi = (__le32 *) skb->data; |
439 | __le32 *txwi = (__le32 *) (skb->data + TXINFO_DESC_SIZE); | ||
404 | u32 word; | 440 | u32 word; |
405 | 441 | ||
406 | /* | 442 | /* |
407 | * Initialize TXWI descriptor | 443 | * Initialize TXWI descriptor |
408 | */ | 444 | */ |
409 | rt2800_write_txwi(skb, txdesc); | 445 | rt2800_write_txwi(txwi, txdesc); |
410 | 446 | ||
411 | /* | 447 | /* |
412 | * Initialize TXINFO descriptor | 448 | * Initialize TXINFO descriptor |
413 | */ | 449 | */ |
414 | rt2x00_desc_read(txi, 0, &word); | 450 | rt2x00_desc_read(txi, 0, &word); |
415 | rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN, | 451 | rt2x00_set_field32(&word, TXINFO_W0_USB_DMA_TX_PKT_LEN, |
416 | skb->len + TXWI_DESC_SIZE); | 452 | skb->len - TXINFO_DESC_SIZE); |
417 | rt2x00_set_field32(&word, TXINFO_W0_WIV, | 453 | rt2x00_set_field32(&word, TXINFO_W0_WIV, |
418 | !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags)); | 454 | !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags)); |
419 | rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2); | 455 | rt2x00_set_field32(&word, TXINFO_W0_QSEL, 2); |
@@ -426,6 +462,7 @@ static void rt2800usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
426 | /* | 462 | /* |
427 | * Register descriptor details in skb frame descriptor. | 463 | * Register descriptor details in skb frame descriptor. |
428 | */ | 464 | */ |
465 | skbdesc->flags |= SKBDESC_DESC_IN_SKB; | ||
429 | skbdesc->desc = txi; | 466 | skbdesc->desc = txi; |
430 | skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE; | 467 | skbdesc->desc_len = TXINFO_DESC_SIZE + TXWI_DESC_SIZE; |
431 | } | 468 | } |
@@ -433,51 +470,6 @@ static void rt2800usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
433 | /* | 470 | /* |
434 | * TX data initialization | 471 | * TX data initialization |
435 | */ | 472 | */ |
436 | static void rt2800usb_write_beacon(struct queue_entry *entry, | ||
437 | struct txentry_desc *txdesc) | ||
438 | { | ||
439 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | ||
440 | unsigned int beacon_base; | ||
441 | u32 reg; | ||
442 | |||
443 | /* | ||
444 | * Disable beaconing while we are reloading the beacon data, | ||
445 | * otherwise we might be sending out invalid data. | ||
446 | */ | ||
447 | rt2800_register_read(rt2x00dev, BCN_TIME_CFG, ®); | ||
448 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 0); | ||
449 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
450 | |||
451 | /* | ||
452 | * Add the TXWI for the beacon to the skb. | ||
453 | */ | ||
454 | rt2800_write_txwi(entry->skb, txdesc); | ||
455 | skb_push(entry->skb, TXWI_DESC_SIZE); | ||
456 | |||
457 | /* | ||
458 | * Write entire beacon with descriptor to register. | ||
459 | */ | ||
460 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); | ||
461 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | ||
462 | USB_VENDOR_REQUEST_OUT, beacon_base, | ||
463 | entry->skb->data, entry->skb->len, | ||
464 | REGISTER_TIMEOUT32(entry->skb->len)); | ||
465 | |||
466 | /* | ||
467 | * Enable beaconing again. | ||
468 | */ | ||
469 | rt2x00_set_field32(®, BCN_TIME_CFG_TSF_TICKING, 1); | ||
470 | rt2x00_set_field32(®, BCN_TIME_CFG_TBTT_ENABLE, 1); | ||
471 | rt2x00_set_field32(®, BCN_TIME_CFG_BEACON_GEN, 1); | ||
472 | rt2800_register_write(rt2x00dev, BCN_TIME_CFG, reg); | ||
473 | |||
474 | /* | ||
475 | * Clean up the beacon skb. | ||
476 | */ | ||
477 | dev_kfree_skb(entry->skb); | ||
478 | entry->skb = NULL; | ||
479 | } | ||
480 | |||
481 | static int rt2800usb_get_tx_data_len(struct queue_entry *entry) | 473 | static int rt2800usb_get_tx_data_len(struct queue_entry *entry) |
482 | { | 474 | { |
483 | int length; | 475 | int length; |
@@ -595,6 +587,8 @@ static const struct rt2800_ops rt2800usb_rt2800_ops = { | |||
595 | .register_multiwrite = rt2x00usb_register_multiwrite, | 587 | .register_multiwrite = rt2x00usb_register_multiwrite, |
596 | 588 | ||
597 | .regbusy_read = rt2x00usb_regbusy_read, | 589 | .regbusy_read = rt2x00usb_regbusy_read, |
590 | |||
591 | .drv_init_registers = rt2800usb_init_registers, | ||
598 | }; | 592 | }; |
599 | 593 | ||
600 | static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev) | 594 | static int rt2800usb_probe_hw(struct rt2x00_dev *rt2x00dev) |
@@ -659,7 +653,7 @@ static const struct rt2x00lib_ops rt2800usb_rt2x00_ops = { | |||
659 | .link_tuner = rt2800_link_tuner, | 653 | .link_tuner = rt2800_link_tuner, |
660 | .write_tx_desc = rt2800usb_write_tx_desc, | 654 | .write_tx_desc = rt2800usb_write_tx_desc, |
661 | .write_tx_data = rt2x00usb_write_tx_data, | 655 | .write_tx_data = rt2x00usb_write_tx_data, |
662 | .write_beacon = rt2800usb_write_beacon, | 656 | .write_beacon = rt2800_write_beacon, |
663 | .get_tx_data_len = rt2800usb_get_tx_data_len, | 657 | .get_tx_data_len = rt2800usb_get_tx_data_len, |
664 | .kick_tx_queue = rt2x00usb_kick_tx_queue, | 658 | .kick_tx_queue = rt2x00usb_kick_tx_queue, |
665 | .kill_tx_queue = rt2x00usb_kill_tx_queue, | 659 | .kill_tx_queue = rt2x00usb_kill_tx_queue, |
diff --git a/drivers/net/wireless/rt2x00/rt2800usb.h b/drivers/net/wireless/rt2x00/rt2800usb.h index 2bca6a71a7f5..0722badccf86 100644 --- a/drivers/net/wireless/rt2x00/rt2800usb.h +++ b/drivers/net/wireless/rt2x00/rt2800usb.h | |||
@@ -32,43 +32,6 @@ | |||
32 | #define RT2800USB_H | 32 | #define RT2800USB_H |
33 | 33 | ||
34 | /* | 34 | /* |
35 | * USB registers. | ||
36 | */ | ||
37 | |||
38 | /* | ||
39 | * USB_DMA_CFG | ||
40 | * RX_BULK_AGG_TIMEOUT: Rx Bulk Aggregation TimeOut in unit of 33ns. | ||
41 | * RX_BULK_AGG_LIMIT: Rx Bulk Aggregation Limit in unit of 256 bytes. | ||
42 | * PHY_CLEAR: phy watch dog enable. | ||
43 | * TX_CLEAR: Clear USB DMA TX path. | ||
44 | * TXOP_HALT: Halt TXOP count down when TX buffer is full. | ||
45 | * RX_BULK_AGG_EN: Enable Rx Bulk Aggregation. | ||
46 | * RX_BULK_EN: Enable USB DMA Rx. | ||
47 | * TX_BULK_EN: Enable USB DMA Tx. | ||
48 | * EP_OUT_VALID: OUT endpoint data valid. | ||
49 | * RX_BUSY: USB DMA RX FSM busy. | ||
50 | * TX_BUSY: USB DMA TX FSM busy. | ||
51 | */ | ||
52 | #define USB_DMA_CFG 0x02a0 | ||
53 | #define USB_DMA_CFG_RX_BULK_AGG_TIMEOUT FIELD32(0x000000ff) | ||
54 | #define USB_DMA_CFG_RX_BULK_AGG_LIMIT FIELD32(0x0000ff00) | ||
55 | #define USB_DMA_CFG_PHY_CLEAR FIELD32(0x00010000) | ||
56 | #define USB_DMA_CFG_TX_CLEAR FIELD32(0x00080000) | ||
57 | #define USB_DMA_CFG_TXOP_HALT FIELD32(0x00100000) | ||
58 | #define USB_DMA_CFG_RX_BULK_AGG_EN FIELD32(0x00200000) | ||
59 | #define USB_DMA_CFG_RX_BULK_EN FIELD32(0x00400000) | ||
60 | #define USB_DMA_CFG_TX_BULK_EN FIELD32(0x00800000) | ||
61 | #define USB_DMA_CFG_EP_OUT_VALID FIELD32(0x3f000000) | ||
62 | #define USB_DMA_CFG_RX_BUSY FIELD32(0x40000000) | ||
63 | #define USB_DMA_CFG_TX_BUSY FIELD32(0x80000000) | ||
64 | |||
65 | /* | ||
66 | * USB_CYC_CFG | ||
67 | */ | ||
68 | #define USB_CYC_CFG 0x02a4 | ||
69 | #define USB_CYC_CFG_CLOCK_CYCLE FIELD32(0x000000ff) | ||
70 | |||
71 | /* | ||
72 | * 8051 firmware image. | 35 | * 8051 firmware image. |
73 | */ | 36 | */ |
74 | #define FIRMWARE_RT2870 "rt2870.bin" | 37 | #define FIRMWARE_RT2870 "rt2870.bin" |
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 6c1ff4c15c84..e7acc6abfd89 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <net/mac80211.h> | 39 | #include <net/mac80211.h> |
40 | 40 | ||
41 | #include "rt2x00debug.h" | 41 | #include "rt2x00debug.h" |
42 | #include "rt2x00dump.h" | ||
42 | #include "rt2x00leds.h" | 43 | #include "rt2x00leds.h" |
43 | #include "rt2x00reg.h" | 44 | #include "rt2x00reg.h" |
44 | #include "rt2x00queue.h" | 45 | #include "rt2x00queue.h" |
@@ -159,6 +160,7 @@ struct avg_val { | |||
159 | 160 | ||
160 | enum rt2x00_chip_intf { | 161 | enum rt2x00_chip_intf { |
161 | RT2X00_CHIP_INTF_PCI, | 162 | RT2X00_CHIP_INTF_PCI, |
163 | RT2X00_CHIP_INTF_PCIE, | ||
162 | RT2X00_CHIP_INTF_USB, | 164 | RT2X00_CHIP_INTF_USB, |
163 | RT2X00_CHIP_INTF_SOC, | 165 | RT2X00_CHIP_INTF_SOC, |
164 | }; | 166 | }; |
@@ -175,8 +177,7 @@ struct rt2x00_chip { | |||
175 | #define RT2570 0x2570 | 177 | #define RT2570 0x2570 |
176 | #define RT2661 0x2661 | 178 | #define RT2661 0x2661 |
177 | #define RT2573 0x2573 | 179 | #define RT2573 0x2573 |
178 | #define RT2860 0x2860 /* 2.4GHz PCI/CB */ | 180 | #define RT2860 0x2860 /* 2.4GHz */ |
179 | #define RT2870 0x2870 | ||
180 | #define RT2872 0x2872 /* WSOC */ | 181 | #define RT2872 0x2872 /* WSOC */ |
181 | #define RT2883 0x2883 /* WSOC */ | 182 | #define RT2883 0x2883 /* WSOC */ |
182 | #define RT3070 0x3070 | 183 | #define RT3070 0x3070 |
@@ -551,6 +552,8 @@ struct rt2x00lib_ops { | |||
551 | struct txentry_desc *txdesc); | 552 | struct txentry_desc *txdesc); |
552 | int (*write_tx_data) (struct queue_entry *entry, | 553 | int (*write_tx_data) (struct queue_entry *entry, |
553 | struct txentry_desc *txdesc); | 554 | struct txentry_desc *txdesc); |
555 | void (*write_tx_datadesc) (struct queue_entry *entry, | ||
556 | struct txentry_desc *txdesc); | ||
554 | void (*write_beacon) (struct queue_entry *entry, | 557 | void (*write_beacon) (struct queue_entry *entry, |
555 | struct txentry_desc *txdesc); | 558 | struct txentry_desc *txdesc); |
556 | int (*get_tx_data_len) (struct queue_entry *entry); | 559 | int (*get_tx_data_len) (struct queue_entry *entry); |
@@ -978,7 +981,13 @@ static inline bool rt2x00_intf(struct rt2x00_dev *rt2x00dev, | |||
978 | 981 | ||
979 | static inline bool rt2x00_is_pci(struct rt2x00_dev *rt2x00dev) | 982 | static inline bool rt2x00_is_pci(struct rt2x00_dev *rt2x00dev) |
980 | { | 983 | { |
981 | return rt2x00_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI); | 984 | return rt2x00_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI) || |
985 | rt2x00_intf(rt2x00dev, RT2X00_CHIP_INTF_PCIE); | ||
986 | } | ||
987 | |||
988 | static inline bool rt2x00_is_pcie(struct rt2x00_dev *rt2x00dev) | ||
989 | { | ||
990 | return rt2x00_intf(rt2x00dev, RT2X00_CHIP_INTF_PCIE); | ||
982 | } | 991 | } |
983 | 992 | ||
984 | static inline bool rt2x00_is_usb(struct rt2x00_dev *rt2x00dev) | 993 | static inline bool rt2x00_is_usb(struct rt2x00_dev *rt2x00dev) |
@@ -999,6 +1008,13 @@ static inline bool rt2x00_is_soc(struct rt2x00_dev *rt2x00dev) | |||
999 | void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb); | 1008 | void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb); |
1000 | 1009 | ||
1001 | /** | 1010 | /** |
1011 | * rt2x00queue_unmap_skb - Unmap a skb from DMA. | ||
1012 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | ||
1013 | * @skb: The skb to unmap. | ||
1014 | */ | ||
1015 | void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb); | ||
1016 | |||
1017 | /** | ||
1002 | * rt2x00queue_get_queue - Convert queue index to queue pointer | 1018 | * rt2x00queue_get_queue - Convert queue index to queue pointer |
1003 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | 1019 | * @rt2x00dev: Pointer to &struct rt2x00_dev. |
1004 | * @queue: rt2x00 queue index (see &enum data_queue_qid). | 1020 | * @queue: rt2x00 queue index (see &enum data_queue_qid). |
@@ -1015,6 +1031,26 @@ struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, | |||
1015 | enum queue_index index); | 1031 | enum queue_index index); |
1016 | 1032 | ||
1017 | /* | 1033 | /* |
1034 | * Debugfs handlers. | ||
1035 | */ | ||
1036 | /** | ||
1037 | * rt2x00debug_dump_frame - Dump a frame to userspace through debugfs. | ||
1038 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | ||
1039 | * @type: The type of frame that is being dumped. | ||
1040 | * @skb: The skb containing the frame to be dumped. | ||
1041 | */ | ||
1042 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | ||
1043 | void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, | ||
1044 | enum rt2x00_dump_type type, struct sk_buff *skb); | ||
1045 | #else | ||
1046 | static inline void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, | ||
1047 | enum rt2x00_dump_type type, | ||
1048 | struct sk_buff *skb) | ||
1049 | { | ||
1050 | } | ||
1051 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ | ||
1052 | |||
1053 | /* | ||
1018 | * Interrupt context handlers. | 1054 | * Interrupt context handlers. |
1019 | */ | 1055 | */ |
1020 | void rt2x00lib_beacondone(struct rt2x00_dev *rt2x00dev); | 1056 | void rt2x00lib_beacondone(struct rt2x00_dev *rt2x00dev); |
diff --git a/drivers/net/wireless/rt2x00/rt2x00config.c b/drivers/net/wireless/rt2x00/rt2x00config.c index 098315a271ca..8dbd634dae27 100644 --- a/drivers/net/wireless/rt2x00/rt2x00config.c +++ b/drivers/net/wireless/rt2x00/rt2x00config.c | |||
@@ -170,23 +170,27 @@ void rt2x00lib_config(struct rt2x00_dev *rt2x00dev, | |||
170 | unsigned int ieee80211_flags) | 170 | unsigned int ieee80211_flags) |
171 | { | 171 | { |
172 | struct rt2x00lib_conf libconf; | 172 | struct rt2x00lib_conf libconf; |
173 | u16 hw_value; | ||
173 | 174 | ||
174 | memset(&libconf, 0, sizeof(libconf)); | 175 | memset(&libconf, 0, sizeof(libconf)); |
175 | 176 | ||
176 | libconf.conf = conf; | 177 | libconf.conf = conf; |
177 | 178 | ||
178 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) { | 179 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) { |
179 | if (conf_is_ht40(conf)) | 180 | if (conf_is_ht40(conf)) { |
180 | __set_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); | 181 | __set_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); |
181 | else | 182 | hw_value = rt2x00ht_center_channel(rt2x00dev, conf); |
183 | } else { | ||
182 | __clear_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); | 184 | __clear_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); |
185 | hw_value = conf->channel->hw_value; | ||
186 | } | ||
183 | 187 | ||
184 | memcpy(&libconf.rf, | 188 | memcpy(&libconf.rf, |
185 | &rt2x00dev->spec.channels[conf->channel->hw_value], | 189 | &rt2x00dev->spec.channels[hw_value], |
186 | sizeof(libconf.rf)); | 190 | sizeof(libconf.rf)); |
187 | 191 | ||
188 | memcpy(&libconf.channel, | 192 | memcpy(&libconf.channel, |
189 | &rt2x00dev->spec.channels_info[conf->channel->hw_value], | 193 | &rt2x00dev->spec.channels_info[hw_value], |
190 | sizeof(libconf.channel)); | 194 | sizeof(libconf.channel)); |
191 | } | 195 | } |
192 | 196 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2x00debug.c b/drivers/net/wireless/rt2x00/rt2x00debug.c index e9fe93fd8042..b0498e7e7aae 100644 --- a/drivers/net/wireless/rt2x00/rt2x00debug.c +++ b/drivers/net/wireless/rt2x00/rt2x00debug.c | |||
@@ -211,6 +211,7 @@ void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, | |||
211 | if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags)) | 211 | if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags)) |
212 | skb_queue_purge(&intf->frame_dump_skbqueue); | 212 | skb_queue_purge(&intf->frame_dump_skbqueue); |
213 | } | 213 | } |
214 | EXPORT_SYMBOL_GPL(rt2x00debug_dump_frame); | ||
214 | 215 | ||
215 | static int rt2x00debug_file_open(struct inode *inode, struct file *file) | 216 | static int rt2x00debug_file_open(struct inode *inode, struct file *file) |
216 | { | 217 | { |
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 3ae468c4d760..0b8efe8e6785 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
@@ -211,11 +211,6 @@ void rt2x00lib_txdone(struct queue_entry *entry, | |||
211 | bool success; | 211 | bool success; |
212 | 212 | ||
213 | /* | 213 | /* |
214 | * Unmap the skb. | ||
215 | */ | ||
216 | rt2x00queue_unmap_skb(rt2x00dev, entry->skb); | ||
217 | |||
218 | /* | ||
219 | * Remove L2 padding which was added during | 214 | * Remove L2 padding which was added during |
220 | */ | 215 | */ |
221 | if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags)) | 216 | if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags)) |
@@ -224,7 +219,7 @@ void rt2x00lib_txdone(struct queue_entry *entry, | |||
224 | /* | 219 | /* |
225 | * If the IV/EIV data was stripped from the frame before it was | 220 | * If the IV/EIV data was stripped from the frame before it was |
226 | * passed to the hardware, we should now reinsert it again because | 221 | * passed to the hardware, we should now reinsert it again because |
227 | * mac80211 will expect the the same data to be present it the | 222 | * mac80211 will expect the same data to be present it the |
228 | * frame as it was passed to us. | 223 | * frame as it was passed to us. |
229 | */ | 224 | */ |
230 | if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) | 225 | if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) |
diff --git a/drivers/net/wireless/rt2x00/rt2x00dump.h b/drivers/net/wireless/rt2x00/rt2x00dump.h index ed303b423e41..6df2e0b746b8 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dump.h +++ b/drivers/net/wireless/rt2x00/rt2x00dump.h | |||
@@ -20,7 +20,12 @@ | |||
20 | 20 | ||
21 | /* | 21 | /* |
22 | Module: rt2x00dump | 22 | Module: rt2x00dump |
23 | Abstract: Data structures for the rt2x00debug & userspace. | 23 | Abstract: |
24 | Data structures for the rt2x00debug & userspace. | ||
25 | |||
26 | The declarations in this file can be used by both rt2x00 | ||
27 | and userspace and therefore should be kept together in | ||
28 | this file. | ||
24 | */ | 29 | */ |
25 | 30 | ||
26 | #ifndef RT2X00DUMP_H | 31 | #ifndef RT2X00DUMP_H |
diff --git a/drivers/net/wireless/rt2x00/rt2x00ht.c b/drivers/net/wireless/rt2x00/rt2x00ht.c index 5a407602ce3e..c004cd3a8847 100644 --- a/drivers/net/wireless/rt2x00/rt2x00ht.c +++ b/drivers/net/wireless/rt2x00/rt2x00ht.c | |||
@@ -44,11 +44,22 @@ void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, | |||
44 | txdesc->mpdu_density = 0; | 44 | txdesc->mpdu_density = 0; |
45 | 45 | ||
46 | txdesc->ba_size = 7; /* FIXME: What value is needed? */ | 46 | txdesc->ba_size = 7; /* FIXME: What value is needed? */ |
47 | txdesc->stbc = 0; /* FIXME: What value is needed? */ | ||
48 | 47 | ||
49 | txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs); | 48 | txdesc->stbc = |
50 | if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) | 49 | (tx_info->flags & IEEE80211_TX_CTL_STBC) >> IEEE80211_TX_CTL_STBC_SHIFT; |
51 | txdesc->mcs |= 0x08; | 50 | |
51 | /* | ||
52 | * If IEEE80211_TX_RC_MCS is set txrate->idx just contains the | ||
53 | * mcs rate to be used | ||
54 | */ | ||
55 | if (txrate->flags & IEEE80211_TX_RC_MCS) { | ||
56 | txdesc->mcs = txrate->idx; | ||
57 | } else { | ||
58 | txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs); | ||
59 | if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) | ||
60 | txdesc->mcs |= 0x08; | ||
61 | } | ||
62 | |||
52 | 63 | ||
53 | /* | 64 | /* |
54 | * Convert flags | 65 | * Convert flags |
@@ -84,3 +95,31 @@ void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, | |||
84 | else | 95 | else |
85 | txdesc->txop = TXOP_HTTXOP; | 96 | txdesc->txop = TXOP_HTTXOP; |
86 | } | 97 | } |
98 | |||
99 | u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, | ||
100 | struct ieee80211_conf *conf) | ||
101 | { | ||
102 | struct hw_mode_spec *spec = &rt2x00dev->spec; | ||
103 | int center_channel; | ||
104 | u16 i; | ||
105 | |||
106 | /* | ||
107 | * Initialize center channel to current channel. | ||
108 | */ | ||
109 | center_channel = spec->channels[conf->channel->hw_value].channel; | ||
110 | |||
111 | /* | ||
112 | * Adjust center channel to HT40+ and HT40- operation. | ||
113 | */ | ||
114 | if (conf_is_ht40_plus(conf)) | ||
115 | center_channel += 2; | ||
116 | else if (conf_is_ht40_minus(conf)) | ||
117 | center_channel -= (center_channel == 14) ? 1 : 2; | ||
118 | |||
119 | for (i = 0; i < spec->num_channels; i++) | ||
120 | if (spec->channels[i].channel == center_channel) | ||
121 | return i; | ||
122 | |||
123 | WARN_ON(1); | ||
124 | return conf->channel->hw_value; | ||
125 | } | ||
diff --git a/drivers/net/wireless/rt2x00/rt2x00lib.h b/drivers/net/wireless/rt2x00/rt2x00lib.h index be2e37fb4071..ed27de1de57b 100644 --- a/drivers/net/wireless/rt2x00/rt2x00lib.h +++ b/drivers/net/wireless/rt2x00/rt2x00lib.h | |||
@@ -27,8 +27,6 @@ | |||
27 | #ifndef RT2X00LIB_H | 27 | #ifndef RT2X00LIB_H |
28 | #define RT2X00LIB_H | 28 | #define RT2X00LIB_H |
29 | 29 | ||
30 | #include "rt2x00dump.h" | ||
31 | |||
32 | /* | 30 | /* |
33 | * Interval defines | 31 | * Interval defines |
34 | */ | 32 | */ |
@@ -107,13 +105,6 @@ struct sk_buff *rt2x00queue_alloc_rxskb(struct rt2x00_dev *rt2x00dev, | |||
107 | struct queue_entry *entry); | 105 | struct queue_entry *entry); |
108 | 106 | ||
109 | /** | 107 | /** |
110 | * rt2x00queue_unmap_skb - Unmap a skb from DMA. | ||
111 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | ||
112 | * @skb: The skb to unmap. | ||
113 | */ | ||
114 | void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb); | ||
115 | |||
116 | /** | ||
117 | * rt2x00queue_free_skb - free a skb | 108 | * rt2x00queue_free_skb - free a skb |
118 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | 109 | * @rt2x00dev: Pointer to &struct rt2x00_dev. |
119 | * @skb: The skb to free. | 110 | * @skb: The skb to free. |
@@ -296,8 +287,6 @@ static inline void rt2x00lib_free_firmware(struct rt2x00_dev *rt2x00dev) | |||
296 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | 287 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS |
297 | void rt2x00debug_register(struct rt2x00_dev *rt2x00dev); | 288 | void rt2x00debug_register(struct rt2x00_dev *rt2x00dev); |
298 | void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev); | 289 | void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev); |
299 | void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, | ||
300 | enum rt2x00_dump_type type, struct sk_buff *skb); | ||
301 | void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev, | 290 | void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev, |
302 | struct rxdone_entry_desc *rxdesc); | 291 | struct rxdone_entry_desc *rxdesc); |
303 | #else | 292 | #else |
@@ -309,12 +298,6 @@ static inline void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev) | |||
309 | { | 298 | { |
310 | } | 299 | } |
311 | 300 | ||
312 | static inline void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev, | ||
313 | enum rt2x00_dump_type type, | ||
314 | struct sk_buff *skb) | ||
315 | { | ||
316 | } | ||
317 | |||
318 | static inline void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev, | 301 | static inline void rt2x00debug_update_crypto(struct rt2x00_dev *rt2x00dev, |
319 | struct rxdone_entry_desc *rxdesc) | 302 | struct rxdone_entry_desc *rxdesc) |
320 | { | 303 | { |
@@ -384,12 +367,21 @@ static inline void rt2x00crypto_rx_insert_iv(struct sk_buff *skb, | |||
384 | void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, | 367 | void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, |
385 | struct txentry_desc *txdesc, | 368 | struct txentry_desc *txdesc, |
386 | const struct rt2x00_rate *hwrate); | 369 | const struct rt2x00_rate *hwrate); |
370 | |||
371 | u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, | ||
372 | struct ieee80211_conf *conf); | ||
387 | #else | 373 | #else |
388 | static inline void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, | 374 | static inline void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, |
389 | struct txentry_desc *txdesc, | 375 | struct txentry_desc *txdesc, |
390 | const struct rt2x00_rate *hwrate) | 376 | const struct rt2x00_rate *hwrate) |
391 | { | 377 | { |
392 | } | 378 | } |
379 | |||
380 | static inline u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, | ||
381 | struct ieee80211_conf *conf) | ||
382 | { | ||
383 | return conf->channel->hw_value; | ||
384 | } | ||
393 | #endif /* CONFIG_RT2X00_LIB_HT */ | 385 | #endif /* CONFIG_RT2X00_LIB_HT */ |
394 | 386 | ||
395 | /* | 387 | /* |
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c index f71eee67f977..10eaffd12b1b 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.c +++ b/drivers/net/wireless/rt2x00/rt2x00pci.c | |||
@@ -81,6 +81,24 @@ int rt2x00pci_write_tx_data(struct queue_entry *entry, | |||
81 | return -EINVAL; | 81 | return -EINVAL; |
82 | } | 82 | } |
83 | 83 | ||
84 | /* | ||
85 | * Add the requested extra tx headroom in front of the skb. | ||
86 | */ | ||
87 | skb_push(entry->skb, rt2x00dev->ops->extra_tx_headroom); | ||
88 | memset(entry->skb->data, 0, rt2x00dev->ops->extra_tx_headroom); | ||
89 | |||
90 | /* | ||
91 | * Call the driver's write_tx_datadesc function, if it exists. | ||
92 | */ | ||
93 | if (rt2x00dev->ops->lib->write_tx_datadesc) | ||
94 | rt2x00dev->ops->lib->write_tx_datadesc(entry, txdesc); | ||
95 | |||
96 | /* | ||
97 | * Map the skb to DMA. | ||
98 | */ | ||
99 | if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags)) | ||
100 | rt2x00queue_map_txskb(rt2x00dev, entry->skb); | ||
101 | |||
84 | return 0; | 102 | return 0; |
85 | } | 103 | } |
86 | EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data); | 104 | EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data); |
@@ -88,6 +106,34 @@ EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data); | |||
88 | /* | 106 | /* |
89 | * TX/RX data handlers. | 107 | * TX/RX data handlers. |
90 | */ | 108 | */ |
109 | void rt2x00pci_txdone(struct queue_entry *entry, | ||
110 | struct txdone_entry_desc *txdesc) | ||
111 | { | ||
112 | struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | ||
113 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | ||
114 | |||
115 | /* | ||
116 | * Unmap the skb. | ||
117 | */ | ||
118 | rt2x00queue_unmap_skb(rt2x00dev, entry->skb); | ||
119 | |||
120 | /* | ||
121 | * Remove the extra tx headroom from the skb. | ||
122 | */ | ||
123 | skb_pull(entry->skb, rt2x00dev->ops->extra_tx_headroom); | ||
124 | |||
125 | /* | ||
126 | * Signal that the TX descriptor is no longer in the skb. | ||
127 | */ | ||
128 | skbdesc->flags &= ~SKBDESC_DESC_IN_SKB; | ||
129 | |||
130 | /* | ||
131 | * Pass on to rt2x00lib. | ||
132 | */ | ||
133 | rt2x00lib_txdone(entry, txdesc); | ||
134 | } | ||
135 | EXPORT_SYMBOL_GPL(rt2x00pci_txdone); | ||
136 | |||
91 | void rt2x00pci_rxdone(struct rt2x00_dev *rt2x00dev) | 137 | void rt2x00pci_rxdone(struct rt2x00_dev *rt2x00dev) |
92 | { | 138 | { |
93 | struct data_queue *queue = rt2x00dev->rx; | 139 | struct data_queue *queue = rt2x00dev->rx; |
@@ -305,7 +351,10 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id) | |||
305 | rt2x00dev->irq = pci_dev->irq; | 351 | rt2x00dev->irq = pci_dev->irq; |
306 | rt2x00dev->name = pci_name(pci_dev); | 352 | rt2x00dev->name = pci_name(pci_dev); |
307 | 353 | ||
308 | rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI); | 354 | if (pci_dev->is_pcie) |
355 | rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCIE); | ||
356 | else | ||
357 | rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI); | ||
309 | 358 | ||
310 | retval = rt2x00pci_alloc_reg(rt2x00dev); | 359 | retval = rt2x00pci_alloc_reg(rt2x00dev); |
311 | if (retval) | 360 | if (retval) |
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.h b/drivers/net/wireless/rt2x00/rt2x00pci.h index 51bcef3839ce..00528b8a754d 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.h +++ b/drivers/net/wireless/rt2x00/rt2x00pci.h | |||
@@ -109,6 +109,14 @@ struct queue_entry_priv_pci { | |||
109 | }; | 109 | }; |
110 | 110 | ||
111 | /** | 111 | /** |
112 | * rt2x00pci_txdone - Handle TX done events. | ||
113 | * @entry: The queue entry for which a TX done event was received. | ||
114 | * @txdesc: The TX done descriptor for the entry. | ||
115 | */ | ||
116 | void rt2x00pci_txdone(struct queue_entry *entry, | ||
117 | struct txdone_entry_desc *txdesc); | ||
118 | |||
119 | /** | ||
112 | * rt2x00pci_rxdone - Handle RX done events | 120 | * rt2x00pci_rxdone - Handle RX done events |
113 | * @rt2x00dev: Device pointer, see &struct rt2x00_dev. | 121 | * @rt2x00dev: Device pointer, see &struct rt2x00_dev. |
114 | */ | 122 | */ |
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 20dbdd6fb904..35858b178e8f 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
@@ -100,21 +100,8 @@ void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
100 | { | 100 | { |
101 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 101 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); |
102 | 102 | ||
103 | /* | ||
104 | * If device has requested headroom, we should make sure that | ||
105 | * is also mapped to the DMA so it can be used for transfering | ||
106 | * additional descriptor information to the hardware. | ||
107 | */ | ||
108 | skb_push(skb, rt2x00dev->ops->extra_tx_headroom); | ||
109 | |||
110 | skbdesc->skb_dma = | 103 | skbdesc->skb_dma = |
111 | dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE); | 104 | dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE); |
112 | |||
113 | /* | ||
114 | * Restore data pointer to original location again. | ||
115 | */ | ||
116 | skb_pull(skb, rt2x00dev->ops->extra_tx_headroom); | ||
117 | |||
118 | skbdesc->flags |= SKBDESC_DMA_MAPPED_TX; | 105 | skbdesc->flags |= SKBDESC_DMA_MAPPED_TX; |
119 | } | 106 | } |
120 | EXPORT_SYMBOL_GPL(rt2x00queue_map_txskb); | 107 | EXPORT_SYMBOL_GPL(rt2x00queue_map_txskb); |
@@ -130,16 +117,12 @@ void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
130 | } | 117 | } |
131 | 118 | ||
132 | if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) { | 119 | if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) { |
133 | /* | 120 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len, |
134 | * Add headroom to the skb length, it has been removed | ||
135 | * by the driver, but it was actually mapped to DMA. | ||
136 | */ | ||
137 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, | ||
138 | skb->len + rt2x00dev->ops->extra_tx_headroom, | ||
139 | DMA_TO_DEVICE); | 121 | DMA_TO_DEVICE); |
140 | skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX; | 122 | skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX; |
141 | } | 123 | } |
142 | } | 124 | } |
125 | EXPORT_SYMBOL_GPL(rt2x00queue_unmap_skb); | ||
143 | 126 | ||
144 | void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | 127 | void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) |
145 | { | 128 | { |
@@ -421,7 +404,6 @@ static void rt2x00queue_write_tx_descriptor(struct queue_entry *entry, | |||
421 | { | 404 | { |
422 | struct data_queue *queue = entry->queue; | 405 | struct data_queue *queue = entry->queue; |
423 | struct rt2x00_dev *rt2x00dev = queue->rt2x00dev; | 406 | struct rt2x00_dev *rt2x00dev = queue->rt2x00dev; |
424 | enum rt2x00_dump_type dump_type; | ||
425 | 407 | ||
426 | rt2x00dev->ops->lib->write_tx_desc(rt2x00dev, entry->skb, txdesc); | 408 | rt2x00dev->ops->lib->write_tx_desc(rt2x00dev, entry->skb, txdesc); |
427 | 409 | ||
@@ -429,9 +411,7 @@ static void rt2x00queue_write_tx_descriptor(struct queue_entry *entry, | |||
429 | * All processing on the frame has been completed, this means | 411 | * All processing on the frame has been completed, this means |
430 | * it is now ready to be dumped to userspace through debugfs. | 412 | * it is now ready to be dumped to userspace through debugfs. |
431 | */ | 413 | */ |
432 | dump_type = (txdesc->queue == QID_BEACON) ? | 414 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_TX, entry->skb); |
433 | DUMP_FRAME_BEACON : DUMP_FRAME_TX; | ||
434 | rt2x00debug_dump_frame(rt2x00dev, dump_type, entry->skb); | ||
435 | } | 415 | } |
436 | 416 | ||
437 | static void rt2x00queue_kick_tx_queue(struct queue_entry *entry, | 417 | static void rt2x00queue_kick_tx_queue(struct queue_entry *entry, |
@@ -537,9 +517,6 @@ int rt2x00queue_write_tx_frame(struct data_queue *queue, struct sk_buff *skb, | |||
537 | return -EIO; | 517 | return -EIO; |
538 | } | 518 | } |
539 | 519 | ||
540 | if (test_bit(DRIVER_REQUIRE_DMA, &queue->rt2x00dev->flags)) | ||
541 | rt2x00queue_map_txskb(queue->rt2x00dev, skb); | ||
542 | |||
543 | set_bit(ENTRY_DATA_PENDING, &entry->flags); | 520 | set_bit(ENTRY_DATA_PENDING, &entry->flags); |
544 | 521 | ||
545 | rt2x00queue_index_inc(queue, Q_INDEX); | 522 | rt2x00queue_index_inc(queue, Q_INDEX); |
@@ -595,11 +572,6 @@ int rt2x00queue_update_beacon(struct rt2x00_dev *rt2x00dev, | |||
595 | skbdesc->entry = intf->beacon; | 572 | skbdesc->entry = intf->beacon; |
596 | 573 | ||
597 | /* | 574 | /* |
598 | * Write TX descriptor into reserved room in front of the beacon. | ||
599 | */ | ||
600 | rt2x00queue_write_tx_descriptor(intf->beacon, &txdesc); | ||
601 | |||
602 | /* | ||
603 | * Send beacon to hardware and enable beacon genaration.. | 575 | * Send beacon to hardware and enable beacon genaration.. |
604 | */ | 576 | */ |
605 | rt2x00dev->ops->lib->write_beacon(intf->beacon, &txdesc); | 577 | rt2x00dev->ops->lib->write_beacon(intf->beacon, &txdesc); |
diff --git a/drivers/net/wireless/rt2x00/rt2x00usb.c b/drivers/net/wireless/rt2x00/rt2x00usb.c index bd1546ba7ad2..b45bc24c3dae 100644 --- a/drivers/net/wireless/rt2x00/rt2x00usb.c +++ b/drivers/net/wireless/rt2x00/rt2x00usb.c | |||
@@ -113,26 +113,6 @@ int rt2x00usb_vendor_request_buff(struct rt2x00_dev *rt2x00dev, | |||
113 | const u16 offset, void *buffer, | 113 | const u16 offset, void *buffer, |
114 | const u16 buffer_length, const int timeout) | 114 | const u16 buffer_length, const int timeout) |
115 | { | 115 | { |
116 | int status; | ||
117 | |||
118 | mutex_lock(&rt2x00dev->csr_mutex); | ||
119 | |||
120 | status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request, | ||
121 | requesttype, offset, buffer, | ||
122 | buffer_length, timeout); | ||
123 | |||
124 | mutex_unlock(&rt2x00dev->csr_mutex); | ||
125 | |||
126 | return status; | ||
127 | } | ||
128 | EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff); | ||
129 | |||
130 | int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev, | ||
131 | const u8 request, const u8 requesttype, | ||
132 | const u16 offset, const void *buffer, | ||
133 | const u16 buffer_length, | ||
134 | const int timeout) | ||
135 | { | ||
136 | int status = 0; | 116 | int status = 0; |
137 | unsigned char *tb; | 117 | unsigned char *tb; |
138 | u16 off, len, bsize; | 118 | u16 off, len, bsize; |
@@ -157,7 +137,7 @@ int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev, | |||
157 | 137 | ||
158 | return status; | 138 | return status; |
159 | } | 139 | } |
160 | EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_large_buff); | 140 | EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff); |
161 | 141 | ||
162 | int rt2x00usb_regbusy_read(struct rt2x00_dev *rt2x00dev, | 142 | int rt2x00usb_regbusy_read(struct rt2x00_dev *rt2x00dev, |
163 | const unsigned int offset, | 143 | const unsigned int offset, |
@@ -198,6 +178,11 @@ static void rt2x00usb_interrupt_txdone(struct urb *urb) | |||
198 | return; | 178 | return; |
199 | 179 | ||
200 | /* | 180 | /* |
181 | * Remove the descriptor from the front of the skb. | ||
182 | */ | ||
183 | skb_pull(entry->skb, entry->queue->desc_size); | ||
184 | |||
185 | /* | ||
201 | * Obtain the status about this packet. | 186 | * Obtain the status about this packet. |
202 | * Note that when the status is 0 it does not mean the | 187 | * Note that when the status is 0 it does not mean the |
203 | * frame was send out correctly. It only means the frame | 188 | * frame was send out correctly. It only means the frame |
@@ -243,10 +228,10 @@ int rt2x00usb_write_tx_data(struct queue_entry *entry, | |||
243 | rt2x00usb_interrupt_txdone, entry); | 228 | rt2x00usb_interrupt_txdone, entry); |
244 | 229 | ||
245 | /* | 230 | /* |
246 | * Make sure the skb->data pointer points to the frame, not the | 231 | * Call the driver's write_tx_datadesc function, if it exists. |
247 | * descriptor. | ||
248 | */ | 232 | */ |
249 | skb_pull(entry->skb, entry->queue->desc_size); | 233 | if (rt2x00dev->ops->lib->write_tx_datadesc) |
234 | rt2x00dev->ops->lib->write_tx_datadesc(entry, txdesc); | ||
250 | 235 | ||
251 | return 0; | 236 | return 0; |
252 | } | 237 | } |
diff --git a/drivers/net/wireless/rt2x00/rt2x00usb.h b/drivers/net/wireless/rt2x00/rt2x00usb.h index 621d0f829251..255b81ef9530 100644 --- a/drivers/net/wireless/rt2x00/rt2x00usb.h +++ b/drivers/net/wireless/rt2x00/rt2x00usb.h | |||
@@ -167,25 +167,6 @@ int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev, | |||
167 | const u16 buffer_length, const int timeout); | 167 | const u16 buffer_length, const int timeout); |
168 | 168 | ||
169 | /** | 169 | /** |
170 | * rt2x00usb_vendor_request_large_buff - Send register command to device (buffered) | ||
171 | * @rt2x00dev: Pointer to &struct rt2x00_dev | ||
172 | * @request: USB vendor command (See &enum rt2x00usb_vendor_request) | ||
173 | * @requesttype: Request type &USB_VENDOR_REQUEST_* | ||
174 | * @offset: Register start offset to perform action on | ||
175 | * @buffer: Buffer where information will be read/written to by device | ||
176 | * @buffer_length: Size of &buffer | ||
177 | * @timeout: Operation timeout | ||
178 | * | ||
179 | * This function is used to transfer register data in blocks larger | ||
180 | * then CSR_CACHE_SIZE. Use for firmware upload, keys and beacons. | ||
181 | */ | ||
182 | int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev, | ||
183 | const u8 request, const u8 requesttype, | ||
184 | const u16 offset, const void *buffer, | ||
185 | const u16 buffer_length, | ||
186 | const int timeout); | ||
187 | |||
188 | /** | ||
189 | * rt2x00usb_vendor_request_sw - Send single register command to device | 170 | * rt2x00usb_vendor_request_sw - Send single register command to device |
190 | * @rt2x00dev: Pointer to &struct rt2x00_dev | 171 | * @rt2x00dev: Pointer to &struct rt2x00_dev |
191 | * @request: USB vendor command (See &enum rt2x00usb_vendor_request) | 172 | * @request: USB vendor command (See &enum rt2x00usb_vendor_request) |
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 6a74baf4e934..243df08ae910 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -1874,6 +1874,16 @@ static void rt61pci_write_beacon(struct queue_entry *entry, | |||
1874 | rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg); | 1874 | rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg); |
1875 | 1875 | ||
1876 | /* | 1876 | /* |
1877 | * Write the TX descriptor for the beacon. | ||
1878 | */ | ||
1879 | rt61pci_write_tx_desc(rt2x00dev, entry->skb, txdesc); | ||
1880 | |||
1881 | /* | ||
1882 | * Dump beacon to userspace through debugfs. | ||
1883 | */ | ||
1884 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
1885 | |||
1886 | /* | ||
1877 | * Write entire beacon with descriptor to register. | 1887 | * Write entire beacon with descriptor to register. |
1878 | */ | 1888 | */ |
1879 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); | 1889 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); |
@@ -2100,7 +2110,7 @@ static void rt61pci_txdone(struct rt2x00_dev *rt2x00dev) | |||
2100 | __set_bit(TXDONE_UNKNOWN, &txdesc.flags); | 2110 | __set_bit(TXDONE_UNKNOWN, &txdesc.flags); |
2101 | txdesc.retry = 0; | 2111 | txdesc.retry = 0; |
2102 | 2112 | ||
2103 | rt2x00lib_txdone(entry_done, &txdesc); | 2113 | rt2x00pci_txdone(entry_done, &txdesc); |
2104 | entry_done = rt2x00queue_get_entry(queue, Q_INDEX_DONE); | 2114 | entry_done = rt2x00queue_get_entry(queue, Q_INDEX_DONE); |
2105 | } | 2115 | } |
2106 | 2116 | ||
@@ -2120,7 +2130,7 @@ static void rt61pci_txdone(struct rt2x00_dev *rt2x00dev) | |||
2120 | } | 2130 | } |
2121 | txdesc.retry = rt2x00_get_field32(reg, STA_CSR4_RETRY_COUNT); | 2131 | txdesc.retry = rt2x00_get_field32(reg, STA_CSR4_RETRY_COUNT); |
2122 | 2132 | ||
2123 | rt2x00lib_txdone(entry, &txdesc); | 2133 | rt2x00pci_txdone(entry, &txdesc); |
2124 | } | 2134 | } |
2125 | } | 2135 | } |
2126 | 2136 | ||
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index 6e0d82efe924..113ad690f9d3 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -270,7 +270,6 @@ static int rt73usb_config_shared_key(struct rt2x00_dev *rt2x00dev, | |||
270 | { | 270 | { |
271 | struct hw_key_entry key_entry; | 271 | struct hw_key_entry key_entry; |
272 | struct rt2x00_field32 field; | 272 | struct rt2x00_field32 field; |
273 | int timeout; | ||
274 | u32 mask; | 273 | u32 mask; |
275 | u32 reg; | 274 | u32 reg; |
276 | 275 | ||
@@ -306,12 +305,8 @@ static int rt73usb_config_shared_key(struct rt2x00_dev *rt2x00dev, | |||
306 | sizeof(key_entry.rx_mic)); | 305 | sizeof(key_entry.rx_mic)); |
307 | 306 | ||
308 | reg = SHARED_KEY_ENTRY(key->hw_key_idx); | 307 | reg = SHARED_KEY_ENTRY(key->hw_key_idx); |
309 | timeout = REGISTER_TIMEOUT32(sizeof(key_entry)); | 308 | rt2x00usb_register_multiwrite(rt2x00dev, reg, |
310 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | 309 | &key_entry, sizeof(key_entry)); |
311 | USB_VENDOR_REQUEST_OUT, reg, | ||
312 | &key_entry, | ||
313 | sizeof(key_entry), | ||
314 | timeout); | ||
315 | 310 | ||
316 | /* | 311 | /* |
317 | * The cipher types are stored over 2 registers. | 312 | * The cipher types are stored over 2 registers. |
@@ -372,7 +367,6 @@ static int rt73usb_config_pairwise_key(struct rt2x00_dev *rt2x00dev, | |||
372 | { | 367 | { |
373 | struct hw_pairwise_ta_entry addr_entry; | 368 | struct hw_pairwise_ta_entry addr_entry; |
374 | struct hw_key_entry key_entry; | 369 | struct hw_key_entry key_entry; |
375 | int timeout; | ||
376 | u32 mask; | 370 | u32 mask; |
377 | u32 reg; | 371 | u32 reg; |
378 | 372 | ||
@@ -407,17 +401,11 @@ static int rt73usb_config_pairwise_key(struct rt2x00_dev *rt2x00dev, | |||
407 | sizeof(key_entry.rx_mic)); | 401 | sizeof(key_entry.rx_mic)); |
408 | 402 | ||
409 | reg = PAIRWISE_KEY_ENTRY(key->hw_key_idx); | 403 | reg = PAIRWISE_KEY_ENTRY(key->hw_key_idx); |
410 | timeout = REGISTER_TIMEOUT32(sizeof(key_entry)); | 404 | rt2x00usb_register_multiwrite(rt2x00dev, reg, |
411 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | 405 | &key_entry, sizeof(key_entry)); |
412 | USB_VENDOR_REQUEST_OUT, reg, | ||
413 | &key_entry, | ||
414 | sizeof(key_entry), | ||
415 | timeout); | ||
416 | 406 | ||
417 | /* | 407 | /* |
418 | * Send the address and cipher type to the hardware register. | 408 | * Send the address and cipher type to the hardware register. |
419 | * This data fits within the CSR cache size, so we can use | ||
420 | * rt2x00usb_register_multiwrite() directly. | ||
421 | */ | 409 | */ |
422 | memset(&addr_entry, 0, sizeof(addr_entry)); | 410 | memset(&addr_entry, 0, sizeof(addr_entry)); |
423 | memcpy(&addr_entry, crypto->address, ETH_ALEN); | 411 | memcpy(&addr_entry, crypto->address, ETH_ALEN); |
@@ -1092,11 +1080,7 @@ static int rt73usb_load_firmware(struct rt2x00_dev *rt2x00dev, | |||
1092 | /* | 1080 | /* |
1093 | * Write firmware to device. | 1081 | * Write firmware to device. |
1094 | */ | 1082 | */ |
1095 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | 1083 | rt2x00usb_register_multiwrite(rt2x00dev, FIRMWARE_IMAGE_BASE, data, len); |
1096 | USB_VENDOR_REQUEST_OUT, | ||
1097 | FIRMWARE_IMAGE_BASE, | ||
1098 | data, len, | ||
1099 | REGISTER_TIMEOUT32(len)); | ||
1100 | 1084 | ||
1101 | /* | 1085 | /* |
1102 | * Send firmware request to device to load firmware, | 1086 | * Send firmware request to device to load firmware, |
@@ -1442,7 +1426,7 @@ static void rt73usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
1442 | struct txentry_desc *txdesc) | 1426 | struct txentry_desc *txdesc) |
1443 | { | 1427 | { |
1444 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 1428 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); |
1445 | __le32 *txd = (__le32 *)(skb->data - TXD_DESC_SIZE); | 1429 | __le32 *txd = (__le32 *) skb->data; |
1446 | u32 word; | 1430 | u32 word; |
1447 | 1431 | ||
1448 | /* | 1432 | /* |
@@ -1505,6 +1489,7 @@ static void rt73usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
1505 | /* | 1489 | /* |
1506 | * Register descriptor details in skb frame descriptor. | 1490 | * Register descriptor details in skb frame descriptor. |
1507 | */ | 1491 | */ |
1492 | skbdesc->flags |= SKBDESC_DESC_IN_SKB; | ||
1508 | skbdesc->desc = txd; | 1493 | skbdesc->desc = txd; |
1509 | skbdesc->desc_len = TXD_DESC_SIZE; | 1494 | skbdesc->desc_len = TXD_DESC_SIZE; |
1510 | } | 1495 | } |
@@ -1528,18 +1513,27 @@ static void rt73usb_write_beacon(struct queue_entry *entry, | |||
1528 | rt2x00usb_register_write(rt2x00dev, TXRX_CSR9, reg); | 1513 | rt2x00usb_register_write(rt2x00dev, TXRX_CSR9, reg); |
1529 | 1514 | ||
1530 | /* | 1515 | /* |
1531 | * Take the descriptor in front of the skb into account. | 1516 | * Add space for the descriptor in front of the skb. |
1532 | */ | 1517 | */ |
1533 | skb_push(entry->skb, TXD_DESC_SIZE); | 1518 | skb_push(entry->skb, TXD_DESC_SIZE); |
1519 | memset(entry->skb->data, 0, TXD_DESC_SIZE); | ||
1520 | |||
1521 | /* | ||
1522 | * Write the TX descriptor for the beacon. | ||
1523 | */ | ||
1524 | rt73usb_write_tx_desc(rt2x00dev, entry->skb, txdesc); | ||
1525 | |||
1526 | /* | ||
1527 | * Dump beacon to userspace through debugfs. | ||
1528 | */ | ||
1529 | rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_BEACON, entry->skb); | ||
1534 | 1530 | ||
1535 | /* | 1531 | /* |
1536 | * Write entire beacon with descriptor to register. | 1532 | * Write entire beacon with descriptor to register. |
1537 | */ | 1533 | */ |
1538 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); | 1534 | beacon_base = HW_BEACON_OFFSET(entry->entry_idx); |
1539 | rt2x00usb_vendor_request_large_buff(rt2x00dev, USB_MULTI_WRITE, | 1535 | rt2x00usb_register_multiwrite(rt2x00dev, beacon_base, |
1540 | USB_VENDOR_REQUEST_OUT, beacon_base, | 1536 | entry->skb->data, entry->skb->len); |
1541 | entry->skb->data, entry->skb->len, | ||
1542 | REGISTER_TIMEOUT32(entry->skb->len)); | ||
1543 | 1537 | ||
1544 | /* | 1538 | /* |
1545 | * Enable beaconing again. | 1539 | * Enable beaconing again. |
diff --git a/drivers/net/wireless/wl12xx/Kconfig b/drivers/net/wireless/wl12xx/Kconfig index 337fc7bec5a5..2f98058be451 100644 --- a/drivers/net/wireless/wl12xx/Kconfig +++ b/drivers/net/wireless/wl12xx/Kconfig | |||
@@ -41,7 +41,7 @@ config WL1251_SDIO | |||
41 | 41 | ||
42 | config WL1271 | 42 | config WL1271 |
43 | tristate "TI wl1271 support" | 43 | tristate "TI wl1271 support" |
44 | depends on WL12XX && SPI_MASTER && GENERIC_HARDIRQS | 44 | depends on WL12XX && GENERIC_HARDIRQS |
45 | depends on INET | 45 | depends on INET |
46 | select FW_LOADER | 46 | select FW_LOADER |
47 | select CRC7 | 47 | select CRC7 |
@@ -65,7 +65,7 @@ config WL1271_SPI | |||
65 | 65 | ||
66 | config WL1271_SDIO | 66 | config WL1271_SDIO |
67 | tristate "TI wl1271 SDIO support" | 67 | tristate "TI wl1271 SDIO support" |
68 | depends on WL1271 && MMC && ARM | 68 | depends on WL1271 && MMC |
69 | ---help--- | 69 | ---help--- |
70 | This module adds support for the SDIO interface of adapters using | 70 | This module adds support for the SDIO interface of adapters using |
71 | TI wl1271 chipset. Select this if your platform is using | 71 | TI wl1271 chipset. Select this if your platform is using |
diff --git a/drivers/net/wireless/wl12xx/wl1251_main.c b/drivers/net/wireless/wl12xx/wl1251_main.c index 00b24282fc73..c8f268951e10 100644 --- a/drivers/net/wireless/wl12xx/wl1251_main.c +++ b/drivers/net/wireless/wl12xx/wl1251_main.c | |||
@@ -124,7 +124,7 @@ static int wl1251_fetch_nvs(struct wl1251 *wl) | |||
124 | } | 124 | } |
125 | 125 | ||
126 | wl->nvs_len = fw->size; | 126 | wl->nvs_len = fw->size; |
127 | wl->nvs = kmalloc(wl->nvs_len, GFP_KERNEL); | 127 | wl->nvs = kmemdup(fw->data, wl->nvs_len, GFP_KERNEL); |
128 | 128 | ||
129 | if (!wl->nvs) { | 129 | if (!wl->nvs) { |
130 | wl1251_error("could not allocate memory for the nvs file"); | 130 | wl1251_error("could not allocate memory for the nvs file"); |
@@ -132,8 +132,6 @@ static int wl1251_fetch_nvs(struct wl1251 *wl) | |||
132 | goto out; | 132 | goto out; |
133 | } | 133 | } |
134 | 134 | ||
135 | memcpy(wl->nvs, fw->data, wl->nvs_len); | ||
136 | |||
137 | ret = 0; | 135 | ret = 0; |
138 | 136 | ||
139 | out: | 137 | out: |
diff --git a/drivers/net/wireless/wl12xx/wl1251_sdio.c b/drivers/net/wireless/wl12xx/wl1251_sdio.c index d234285c2c81..b901b6135654 100644 --- a/drivers/net/wireless/wl12xx/wl1251_sdio.c +++ b/drivers/net/wireless/wl12xx/wl1251_sdio.c | |||
@@ -37,11 +37,17 @@ | |||
37 | #define SDIO_DEVICE_ID_TI_WL1251 0x9066 | 37 | #define SDIO_DEVICE_ID_TI_WL1251 0x9066 |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | struct wl1251_sdio { | ||
41 | struct sdio_func *func; | ||
42 | u32 elp_val; | ||
43 | }; | ||
44 | |||
40 | static struct wl12xx_platform_data *wl12xx_board_data; | 45 | static struct wl12xx_platform_data *wl12xx_board_data; |
41 | 46 | ||
42 | static struct sdio_func *wl_to_func(struct wl1251 *wl) | 47 | static struct sdio_func *wl_to_func(struct wl1251 *wl) |
43 | { | 48 | { |
44 | return wl->if_priv; | 49 | struct wl1251_sdio *wl_sdio = wl->if_priv; |
50 | return wl_sdio->func; | ||
45 | } | 51 | } |
46 | 52 | ||
47 | static void wl1251_sdio_interrupt(struct sdio_func *func) | 53 | static void wl1251_sdio_interrupt(struct sdio_func *func) |
@@ -90,10 +96,17 @@ static void wl1251_sdio_write(struct wl1251 *wl, int addr, | |||
90 | static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val) | 96 | static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val) |
91 | { | 97 | { |
92 | int ret = 0; | 98 | int ret = 0; |
93 | struct sdio_func *func = wl_to_func(wl); | 99 | struct wl1251_sdio *wl_sdio = wl->if_priv; |
94 | 100 | struct sdio_func *func = wl_sdio->func; | |
101 | |||
102 | /* | ||
103 | * The hardware only supports RAW (read after write) access for | ||
104 | * reading, regular sdio_readb won't work here (it interprets | ||
105 | * the unused bits of CMD52 as write data even if we send read | ||
106 | * request). | ||
107 | */ | ||
95 | sdio_claim_host(func); | 108 | sdio_claim_host(func); |
96 | *val = sdio_readb(func, addr, &ret); | 109 | *val = sdio_writeb_readb(func, wl_sdio->elp_val, addr, &ret); |
97 | sdio_release_host(func); | 110 | sdio_release_host(func); |
98 | 111 | ||
99 | if (ret) | 112 | if (ret) |
@@ -103,7 +116,8 @@ static void wl1251_sdio_read_elp(struct wl1251 *wl, int addr, u32 *val) | |||
103 | static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val) | 116 | static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val) |
104 | { | 117 | { |
105 | int ret = 0; | 118 | int ret = 0; |
106 | struct sdio_func *func = wl_to_func(wl); | 119 | struct wl1251_sdio *wl_sdio = wl->if_priv; |
120 | struct sdio_func *func = wl_sdio->func; | ||
107 | 121 | ||
108 | sdio_claim_host(func); | 122 | sdio_claim_host(func); |
109 | sdio_writeb(func, val, addr, &ret); | 123 | sdio_writeb(func, val, addr, &ret); |
@@ -111,6 +125,8 @@ static void wl1251_sdio_write_elp(struct wl1251 *wl, int addr, u32 val) | |||
111 | 125 | ||
112 | if (ret) | 126 | if (ret) |
113 | wl1251_error("sdio_writeb failed (%d)", ret); | 127 | wl1251_error("sdio_writeb failed (%d)", ret); |
128 | else | ||
129 | wl_sdio->elp_val = val; | ||
114 | } | 130 | } |
115 | 131 | ||
116 | static void wl1251_sdio_reset(struct wl1251 *wl) | 132 | static void wl1251_sdio_reset(struct wl1251 *wl) |
@@ -197,6 +213,7 @@ static int wl1251_sdio_probe(struct sdio_func *func, | |||
197 | int ret; | 213 | int ret; |
198 | struct wl1251 *wl; | 214 | struct wl1251 *wl; |
199 | struct ieee80211_hw *hw; | 215 | struct ieee80211_hw *hw; |
216 | struct wl1251_sdio *wl_sdio; | ||
200 | 217 | ||
201 | hw = wl1251_alloc_hw(); | 218 | hw = wl1251_alloc_hw(); |
202 | if (IS_ERR(hw)) | 219 | if (IS_ERR(hw)) |
@@ -204,6 +221,12 @@ static int wl1251_sdio_probe(struct sdio_func *func, | |||
204 | 221 | ||
205 | wl = hw->priv; | 222 | wl = hw->priv; |
206 | 223 | ||
224 | wl_sdio = kzalloc(sizeof(*wl_sdio), GFP_KERNEL); | ||
225 | if (wl_sdio == NULL) { | ||
226 | ret = -ENOMEM; | ||
227 | goto out_free_hw; | ||
228 | } | ||
229 | |||
207 | sdio_claim_host(func); | 230 | sdio_claim_host(func); |
208 | ret = sdio_enable_func(func); | 231 | ret = sdio_enable_func(func); |
209 | if (ret) | 232 | if (ret) |
@@ -213,7 +236,8 @@ static int wl1251_sdio_probe(struct sdio_func *func, | |||
213 | sdio_release_host(func); | 236 | sdio_release_host(func); |
214 | 237 | ||
215 | SET_IEEE80211_DEV(hw, &func->dev); | 238 | SET_IEEE80211_DEV(hw, &func->dev); |
216 | wl->if_priv = func; | 239 | wl_sdio->func = func; |
240 | wl->if_priv = wl_sdio; | ||
217 | wl->if_ops = &wl1251_sdio_ops; | 241 | wl->if_ops = &wl1251_sdio_ops; |
218 | wl->set_power = wl1251_sdio_set_power; | 242 | wl->set_power = wl1251_sdio_set_power; |
219 | 243 | ||
@@ -259,15 +283,20 @@ disable: | |||
259 | sdio_disable_func(func); | 283 | sdio_disable_func(func); |
260 | release: | 284 | release: |
261 | sdio_release_host(func); | 285 | sdio_release_host(func); |
286 | kfree(wl_sdio); | ||
287 | out_free_hw: | ||
288 | wl1251_free_hw(wl); | ||
262 | return ret; | 289 | return ret; |
263 | } | 290 | } |
264 | 291 | ||
265 | static void __devexit wl1251_sdio_remove(struct sdio_func *func) | 292 | static void __devexit wl1251_sdio_remove(struct sdio_func *func) |
266 | { | 293 | { |
267 | struct wl1251 *wl = sdio_get_drvdata(func); | 294 | struct wl1251 *wl = sdio_get_drvdata(func); |
295 | struct wl1251_sdio *wl_sdio = wl->if_priv; | ||
268 | 296 | ||
269 | if (wl->irq) | 297 | if (wl->irq) |
270 | free_irq(wl->irq, wl); | 298 | free_irq(wl->irq, wl); |
299 | kfree(wl_sdio); | ||
271 | wl1251_free_hw(wl); | 300 | wl1251_free_hw(wl); |
272 | 301 | ||
273 | sdio_claim_host(func); | 302 | sdio_claim_host(func); |
diff --git a/drivers/net/wireless/wl12xx/wl1271.h b/drivers/net/wireless/wl12xx/wl1271.h index 9af14646c278..ec09f0d40ca2 100644 --- a/drivers/net/wireless/wl12xx/wl1271.h +++ b/drivers/net/wireless/wl12xx/wl1271.h | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <net/mac80211.h> | 33 | #include <net/mac80211.h> |
34 | 34 | ||
35 | #include "wl1271_conf.h" | 35 | #include "wl1271_conf.h" |
36 | #include "wl1271_ini.h" | ||
36 | 37 | ||
37 | #define DRIVER_NAME "wl1271" | 38 | #define DRIVER_NAME "wl1271" |
38 | #define DRIVER_PREFIX DRIVER_NAME ": " | 39 | #define DRIVER_PREFIX DRIVER_NAME ": " |
@@ -116,33 +117,6 @@ enum { | |||
116 | #define WL1271_TX_SECURITY_LO16(s) ((u16)((s) & 0xffff)) | 117 | #define WL1271_TX_SECURITY_LO16(s) ((u16)((s) & 0xffff)) |
117 | #define WL1271_TX_SECURITY_HI32(s) ((u32)(((s) >> 16) & 0xffffffff)) | 118 | #define WL1271_TX_SECURITY_HI32(s) ((u32)(((s) >> 16) & 0xffffffff)) |
118 | 119 | ||
119 | /* NVS data structure */ | ||
120 | #define WL1271_NVS_SECTION_SIZE 468 | ||
121 | |||
122 | #define WL1271_NVS_GENERAL_PARAMS_SIZE 57 | ||
123 | #define WL1271_NVS_GENERAL_PARAMS_SIZE_PADDED \ | ||
124 | (WL1271_NVS_GENERAL_PARAMS_SIZE + 1) | ||
125 | #define WL1271_NVS_STAT_RADIO_PARAMS_SIZE 17 | ||
126 | #define WL1271_NVS_STAT_RADIO_PARAMS_SIZE_PADDED \ | ||
127 | (WL1271_NVS_STAT_RADIO_PARAMS_SIZE + 1) | ||
128 | #define WL1271_NVS_DYN_RADIO_PARAMS_SIZE 65 | ||
129 | #define WL1271_NVS_DYN_RADIO_PARAMS_SIZE_PADDED \ | ||
130 | (WL1271_NVS_DYN_RADIO_PARAMS_SIZE + 1) | ||
131 | #define WL1271_NVS_FEM_COUNT 2 | ||
132 | #define WL1271_NVS_INI_SPARE_SIZE 124 | ||
133 | |||
134 | struct wl1271_nvs_file { | ||
135 | /* NVS section */ | ||
136 | u8 nvs[WL1271_NVS_SECTION_SIZE]; | ||
137 | |||
138 | /* INI section */ | ||
139 | u8 general_params[WL1271_NVS_GENERAL_PARAMS_SIZE_PADDED]; | ||
140 | u8 stat_radio_params[WL1271_NVS_STAT_RADIO_PARAMS_SIZE_PADDED]; | ||
141 | u8 dyn_radio_params[WL1271_NVS_FEM_COUNT] | ||
142 | [WL1271_NVS_DYN_RADIO_PARAMS_SIZE_PADDED]; | ||
143 | u8 ini_spare[WL1271_NVS_INI_SPARE_SIZE]; | ||
144 | } __packed; | ||
145 | |||
146 | /* | 120 | /* |
147 | * Enable/disable 802.11a support for WL1273 | 121 | * Enable/disable 802.11a support for WL1273 |
148 | */ | 122 | */ |
@@ -325,6 +299,7 @@ struct wl1271_rx_mem_pool_addr { | |||
325 | }; | 299 | }; |
326 | 300 | ||
327 | struct wl1271_scan { | 301 | struct wl1271_scan { |
302 | struct cfg80211_scan_request *req; | ||
328 | u8 state; | 303 | u8 state; |
329 | u8 ssid[IW_ESSID_MAX_SIZE+1]; | 304 | u8 ssid[IW_ESSID_MAX_SIZE+1]; |
330 | size_t ssid_len; | 305 | size_t ssid_len; |
@@ -375,6 +350,7 @@ struct wl1271 { | |||
375 | #define WL1271_FLAG_IRQ_PENDING (9) | 350 | #define WL1271_FLAG_IRQ_PENDING (9) |
376 | #define WL1271_FLAG_IRQ_RUNNING (10) | 351 | #define WL1271_FLAG_IRQ_RUNNING (10) |
377 | #define WL1271_FLAG_IDLE (11) | 352 | #define WL1271_FLAG_IDLE (11) |
353 | #define WL1271_FLAG_IDLE_REQUESTED (12) | ||
378 | unsigned long flags; | 354 | unsigned long flags; |
379 | 355 | ||
380 | struct wl1271_partition_set part; | 356 | struct wl1271_partition_set part; |
@@ -421,6 +397,7 @@ struct wl1271 { | |||
421 | 397 | ||
422 | /* Pending TX frames */ | 398 | /* Pending TX frames */ |
423 | struct sk_buff *tx_frames[ACX_TX_DESCRIPTORS]; | 399 | struct sk_buff *tx_frames[ACX_TX_DESCRIPTORS]; |
400 | int tx_frames_cnt; | ||
424 | 401 | ||
425 | /* Security sequence number counters */ | 402 | /* Security sequence number counters */ |
426 | u8 tx_security_last_seq; | 403 | u8 tx_security_last_seq; |
diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.c b/drivers/net/wireless/wl12xx/wl1271_cmd.c index 19393e236e2c..530678e45a13 100644 --- a/drivers/net/wireless/wl12xx/wl1271_cmd.c +++ b/drivers/net/wireless/wl12xx/wl1271_cmd.c | |||
@@ -212,8 +212,8 @@ int wl1271_cmd_general_parms(struct wl1271 *wl) | |||
212 | 212 | ||
213 | gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; | 213 | gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; |
214 | 214 | ||
215 | memcpy(gen_parms->params, wl->nvs->general_params, | 215 | memcpy(&gen_parms->general_params, &wl->nvs->general_params, |
216 | WL1271_NVS_GENERAL_PARAMS_SIZE); | 216 | sizeof(struct wl1271_ini_general_params)); |
217 | 217 | ||
218 | ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), 0); | 218 | ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), 0); |
219 | if (ret < 0) | 219 | if (ret < 0) |
@@ -238,13 +238,20 @@ int wl1271_cmd_radio_parms(struct wl1271 *wl) | |||
238 | 238 | ||
239 | radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; | 239 | radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; |
240 | 240 | ||
241 | memcpy(radio_parms->stat_radio_params, wl->nvs->stat_radio_params, | 241 | /* 2.4GHz parameters */ |
242 | WL1271_NVS_STAT_RADIO_PARAMS_SIZE); | 242 | memcpy(&radio_parms->static_params_2, &wl->nvs->stat_radio_params_2, |
243 | memcpy(radio_parms->dyn_radio_params, | 243 | sizeof(struct wl1271_ini_band_params_2)); |
244 | wl->nvs->dyn_radio_params[rparam->fem], | 244 | memcpy(&radio_parms->dyn_params_2, |
245 | WL1271_NVS_DYN_RADIO_PARAMS_SIZE); | 245 | &wl->nvs->dyn_radio_params_2[rparam->fem].params, |
246 | 246 | sizeof(struct wl1271_ini_fem_params_2)); | |
247 | /* FIXME: current NVS is missing 5GHz parameters */ | 247 | |
248 | /* 5GHz parameters */ | ||
249 | memcpy(&radio_parms->static_params_5, | ||
250 | &wl->nvs->stat_radio_params_5, | ||
251 | sizeof(struct wl1271_ini_band_params_5)); | ||
252 | memcpy(&radio_parms->dyn_params_5, | ||
253 | &wl->nvs->dyn_radio_params_5[rparam->fem].params, | ||
254 | sizeof(struct wl1271_ini_fem_params_5)); | ||
248 | 255 | ||
249 | wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ", | 256 | wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ", |
250 | radio_parms, sizeof(*radio_parms)); | 257 | radio_parms, sizeof(*radio_parms)); |
@@ -329,12 +336,6 @@ int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type) | |||
329 | join->channel = wl->channel; | 336 | join->channel = wl->channel; |
330 | join->ssid_len = wl->ssid_len; | 337 | join->ssid_len = wl->ssid_len; |
331 | memcpy(join->ssid, wl->ssid, wl->ssid_len); | 338 | memcpy(join->ssid, wl->ssid, wl->ssid_len); |
332 | join->ctrl = WL1271_JOIN_CMD_CTRL_TX_FLUSH; | ||
333 | |||
334 | /* increment the session counter */ | ||
335 | wl->session_counter++; | ||
336 | if (wl->session_counter >= SESSION_COUNTER_MAX) | ||
337 | wl->session_counter = 0; | ||
338 | 339 | ||
339 | join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET; | 340 | join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET; |
340 | 341 | ||
@@ -517,7 +518,7 @@ int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode, bool send) | |||
517 | ps_params->send_null_data = send; | 518 | ps_params->send_null_data = send; |
518 | ps_params->retries = 5; | 519 | ps_params->retries = 5; |
519 | ps_params->hang_over_period = 1; | 520 | ps_params->hang_over_period = 1; |
520 | ps_params->null_data_rate = cpu_to_le32(1); /* 1 Mbps */ | 521 | ps_params->null_data_rate = cpu_to_le32(wl->basic_rate_set); |
521 | 522 | ||
522 | ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params, | 523 | ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params, |
523 | sizeof(*ps_params), 0); | 524 | sizeof(*ps_params), 0); |
@@ -567,7 +568,7 @@ out: | |||
567 | } | 568 | } |
568 | 569 | ||
569 | int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, | 570 | int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, |
570 | const u8 *ie, size_t ie_len, u8 active_scan, | 571 | struct cfg80211_scan_request *req, u8 active_scan, |
571 | u8 high_prio, u8 band, u8 probe_requests) | 572 | u8 high_prio, u8 band, u8 probe_requests) |
572 | { | 573 | { |
573 | 574 | ||
@@ -648,7 +649,7 @@ int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, | |||
648 | } | 649 | } |
649 | 650 | ||
650 | ret = wl1271_cmd_build_probe_req(wl, ssid, ssid_len, | 651 | ret = wl1271_cmd_build_probe_req(wl, ssid, ssid_len, |
651 | ie, ie_len, ieee_band); | 652 | req->ie, req->ie_len, ieee_band); |
652 | if (ret < 0) { | 653 | if (ret < 0) { |
653 | wl1271_error("PROBE request template failed"); | 654 | wl1271_error("PROBE request template failed"); |
654 | goto out; | 655 | goto out; |
@@ -684,7 +685,9 @@ int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, | |||
684 | memcpy(wl->scan.ssid, ssid, ssid_len); | 685 | memcpy(wl->scan.ssid, ssid, ssid_len); |
685 | } else | 686 | } else |
686 | wl->scan.ssid_len = 0; | 687 | wl->scan.ssid_len = 0; |
687 | } | 688 | wl->scan.req = req; |
689 | } else | ||
690 | wl->scan.req = NULL; | ||
688 | } | 691 | } |
689 | 692 | ||
690 | ret = wl1271_cmd_send(wl, CMD_SCAN, params, sizeof(*params), 0); | 693 | ret = wl1271_cmd_send(wl, CMD_SCAN, params, sizeof(*params), 0); |
diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.h b/drivers/net/wireless/wl12xx/wl1271_cmd.h index d88faf9d2642..f5745d829c9b 100644 --- a/drivers/net/wireless/wl12xx/wl1271_cmd.h +++ b/drivers/net/wireless/wl12xx/wl1271_cmd.h | |||
@@ -42,7 +42,7 @@ int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode, bool send); | |||
42 | int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer, | 42 | int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer, |
43 | size_t len); | 43 | size_t len); |
44 | int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, | 44 | int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, |
45 | const u8 *ie, size_t ie_len, u8 active_scan, | 45 | struct cfg80211_scan_request *req, u8 active_scan, |
46 | u8 high_prio, u8 band, u8 probe_requests); | 46 | u8 high_prio, u8 band, u8 probe_requests); |
47 | int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id, | 47 | int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id, |
48 | void *buf, size_t buf_len, int index, u32 rates); | 48 | void *buf, size_t buf_len, int index, u32 rates); |
@@ -439,24 +439,30 @@ struct wl1271_general_parms_cmd { | |||
439 | 439 | ||
440 | struct wl1271_cmd_test_header test; | 440 | struct wl1271_cmd_test_header test; |
441 | 441 | ||
442 | u8 params[WL1271_NVS_GENERAL_PARAMS_SIZE]; | 442 | struct wl1271_ini_general_params general_params; |
443 | s8 reserved[23]; | ||
444 | } __packed; | ||
445 | 443 | ||
446 | #define WL1271_STAT_RADIO_PARAMS_5_SIZE 29 | 444 | u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM]; |
447 | #define WL1271_DYN_RADIO_PARAMS_5_SIZE 104 | 445 | u8 sr_sen_n_p; |
446 | u8 sr_sen_n_p_gain; | ||
447 | u8 sr_sen_nrn; | ||
448 | u8 sr_sen_prn; | ||
449 | u8 padding[3]; | ||
450 | } __packed; | ||
448 | 451 | ||
449 | struct wl1271_radio_parms_cmd { | 452 | struct wl1271_radio_parms_cmd { |
450 | struct wl1271_cmd_header header; | 453 | struct wl1271_cmd_header header; |
451 | 454 | ||
452 | struct wl1271_cmd_test_header test; | 455 | struct wl1271_cmd_test_header test; |
453 | 456 | ||
454 | u8 stat_radio_params[WL1271_NVS_STAT_RADIO_PARAMS_SIZE]; | 457 | /* Static radio parameters */ |
455 | u8 stat_radio_params_5[WL1271_STAT_RADIO_PARAMS_5_SIZE]; | 458 | struct wl1271_ini_band_params_2 static_params_2; |
459 | struct wl1271_ini_band_params_5 static_params_5; | ||
456 | 460 | ||
457 | u8 dyn_radio_params[WL1271_NVS_DYN_RADIO_PARAMS_SIZE]; | 461 | /* Dynamic radio parameters */ |
458 | u8 reserved; | 462 | struct wl1271_ini_fem_params_2 dyn_params_2; |
459 | u8 dyn_radio_params_5[WL1271_DYN_RADIO_PARAMS_5_SIZE]; | 463 | u8 padding2; |
464 | struct wl1271_ini_fem_params_5 dyn_params_5; | ||
465 | u8 padding3[2]; | ||
460 | } __packed; | 466 | } __packed; |
461 | 467 | ||
462 | struct wl1271_cmd_cal_channel_tune { | 468 | struct wl1271_cmd_cal_channel_tune { |
diff --git a/drivers/net/wireless/wl12xx/wl1271_event.c b/drivers/net/wireless/wl12xx/wl1271_event.c index cf37aa6eb137..ca52cdec7a8f 100644 --- a/drivers/net/wireless/wl12xx/wl1271_event.c +++ b/drivers/net/wireless/wl12xx/wl1271_event.c | |||
@@ -43,11 +43,11 @@ static int wl1271_event_scan_complete(struct wl1271 *wl, | |||
43 | clear_bit(WL1271_FLAG_SCANNING, &wl->flags); | 43 | clear_bit(WL1271_FLAG_SCANNING, &wl->flags); |
44 | /* FIXME: ie missing! */ | 44 | /* FIXME: ie missing! */ |
45 | wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len, | 45 | wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len, |
46 | NULL, 0, | 46 | wl->scan.req, |
47 | wl->scan.active, | 47 | wl->scan.active, |
48 | wl->scan.high_prio, | 48 | wl->scan.high_prio, |
49 | WL1271_SCAN_BAND_5_GHZ, | 49 | WL1271_SCAN_BAND_5_GHZ, |
50 | wl->scan.probe_requests); | 50 | wl->scan.probe_requests); |
51 | } else { | 51 | } else { |
52 | mutex_unlock(&wl->mutex); | 52 | mutex_unlock(&wl->mutex); |
53 | ieee80211_scan_completed(wl->hw, false); | 53 | ieee80211_scan_completed(wl->hw, false); |
diff --git a/drivers/net/wireless/wl12xx/wl1271_ini.h b/drivers/net/wireless/wl12xx/wl1271_ini.h new file mode 100644 index 000000000000..2313047d4015 --- /dev/null +++ b/drivers/net/wireless/wl12xx/wl1271_ini.h | |||
@@ -0,0 +1,123 @@ | |||
1 | /* | ||
2 | * This file is part of wl1271 | ||
3 | * | ||
4 | * Copyright (C) 2010 Nokia Corporation | ||
5 | * | ||
6 | * Contact: Luciano Coelho <luciano.coelho@nokia.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * version 2 as published by the Free Software Foundation. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
20 | * 02110-1301 USA | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef __WL1271_INI_H__ | ||
25 | #define __WL1271_INI_H__ | ||
26 | |||
27 | #define WL1271_INI_MAX_SMART_REFLEX_PARAM 16 | ||
28 | |||
29 | struct wl1271_ini_general_params { | ||
30 | u8 ref_clock; | ||
31 | u8 settling_time; | ||
32 | u8 clk_valid_on_wakeup; | ||
33 | u8 dc2dc_mode; | ||
34 | u8 dual_mode_select; | ||
35 | u8 tx_bip_fem_auto_detect; | ||
36 | u8 tx_bip_fem_manufacturer; | ||
37 | u8 general_settings; | ||
38 | u8 sr_state; | ||
39 | u8 srf1[WL1271_INI_MAX_SMART_REFLEX_PARAM]; | ||
40 | u8 srf2[WL1271_INI_MAX_SMART_REFLEX_PARAM]; | ||
41 | u8 srf3[WL1271_INI_MAX_SMART_REFLEX_PARAM]; | ||
42 | } __packed; | ||
43 | |||
44 | #define WL1271_INI_RSSI_PROCESS_COMPENS_SIZE 15 | ||
45 | |||
46 | struct wl1271_ini_band_params_2 { | ||
47 | u8 rx_trace_insertion_loss; | ||
48 | u8 tx_trace_loss; | ||
49 | u8 rx_rssi_process_compens[WL1271_INI_RSSI_PROCESS_COMPENS_SIZE]; | ||
50 | } __packed; | ||
51 | |||
52 | #define WL1271_INI_RATE_GROUP_COUNT 6 | ||
53 | #define WL1271_INI_CHANNEL_COUNT_2 14 | ||
54 | |||
55 | struct wl1271_ini_fem_params_2 { | ||
56 | __le16 tx_bip_ref_pd_voltage; | ||
57 | u8 tx_bip_ref_power; | ||
58 | u8 tx_bip_ref_offset; | ||
59 | u8 tx_per_rate_pwr_limits_normal[WL1271_INI_RATE_GROUP_COUNT]; | ||
60 | u8 tx_per_rate_pwr_limits_degraded[WL1271_INI_RATE_GROUP_COUNT]; | ||
61 | u8 tx_per_rate_pwr_limits_extreme[WL1271_INI_RATE_GROUP_COUNT]; | ||
62 | u8 tx_per_chan_pwr_limits_11b[WL1271_INI_CHANNEL_COUNT_2]; | ||
63 | u8 tx_per_chan_pwr_limits_ofdm[WL1271_INI_CHANNEL_COUNT_2]; | ||
64 | u8 tx_pd_vs_rate_offsets[WL1271_INI_RATE_GROUP_COUNT]; | ||
65 | u8 tx_ibias[WL1271_INI_RATE_GROUP_COUNT]; | ||
66 | u8 rx_fem_insertion_loss; | ||
67 | u8 degraded_low_to_normal_thr; | ||
68 | u8 normal_to_degraded_high_thr; | ||
69 | } __packed; | ||
70 | |||
71 | #define WL1271_INI_CHANNEL_COUNT_5 35 | ||
72 | #define WL1271_INI_SUB_BAND_COUNT_5 7 | ||
73 | |||
74 | struct wl1271_ini_band_params_5 { | ||
75 | u8 rx_trace_insertion_loss[WL1271_INI_SUB_BAND_COUNT_5]; | ||
76 | u8 tx_trace_loss[WL1271_INI_SUB_BAND_COUNT_5]; | ||
77 | u8 rx_rssi_process_compens[WL1271_INI_RSSI_PROCESS_COMPENS_SIZE]; | ||
78 | } __packed; | ||
79 | |||
80 | struct wl1271_ini_fem_params_5 { | ||
81 | __le16 tx_bip_ref_pd_voltage[WL1271_INI_SUB_BAND_COUNT_5]; | ||
82 | u8 tx_bip_ref_power[WL1271_INI_SUB_BAND_COUNT_5]; | ||
83 | u8 tx_bip_ref_offset[WL1271_INI_SUB_BAND_COUNT_5]; | ||
84 | u8 tx_per_rate_pwr_limits_normal[WL1271_INI_RATE_GROUP_COUNT]; | ||
85 | u8 tx_per_rate_pwr_limits_degraded[WL1271_INI_RATE_GROUP_COUNT]; | ||
86 | u8 tx_per_rate_pwr_limits_extreme[WL1271_INI_RATE_GROUP_COUNT]; | ||
87 | u8 tx_per_chan_pwr_limits_ofdm[WL1271_INI_CHANNEL_COUNT_5]; | ||
88 | u8 tx_pd_vs_rate_offsets[WL1271_INI_RATE_GROUP_COUNT]; | ||
89 | u8 tx_ibias[WL1271_INI_RATE_GROUP_COUNT]; | ||
90 | u8 rx_fem_insertion_loss[WL1271_INI_SUB_BAND_COUNT_5]; | ||
91 | u8 degraded_low_to_normal_thr; | ||
92 | u8 normal_to_degraded_high_thr; | ||
93 | } __packed; | ||
94 | |||
95 | |||
96 | /* NVS data structure */ | ||
97 | #define WL1271_INI_NVS_SECTION_SIZE 468 | ||
98 | #define WL1271_INI_FEM_MODULE_COUNT 2 | ||
99 | |||
100 | #define WL1271_INI_LEGACY_NVS_FILE_SIZE 800 | ||
101 | |||
102 | struct wl1271_nvs_file { | ||
103 | /* NVS section */ | ||
104 | u8 nvs[WL1271_INI_NVS_SECTION_SIZE]; | ||
105 | |||
106 | /* INI section */ | ||
107 | struct wl1271_ini_general_params general_params; | ||
108 | u8 padding1; | ||
109 | struct wl1271_ini_band_params_2 stat_radio_params_2; | ||
110 | u8 padding2; | ||
111 | struct { | ||
112 | struct wl1271_ini_fem_params_2 params; | ||
113 | u8 padding; | ||
114 | } dyn_radio_params_2[WL1271_INI_FEM_MODULE_COUNT]; | ||
115 | struct wl1271_ini_band_params_5 stat_radio_params_5; | ||
116 | u8 padding3; | ||
117 | struct { | ||
118 | struct wl1271_ini_fem_params_5 params; | ||
119 | u8 padding; | ||
120 | } dyn_radio_params_5[WL1271_INI_FEM_MODULE_COUNT]; | ||
121 | } __packed; | ||
122 | |||
123 | #endif | ||
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index b7d9137851ac..7a14da506d78 100644 --- a/drivers/net/wireless/wl12xx/wl1271_main.c +++ b/drivers/net/wireless/wl12xx/wl1271_main.c | |||
@@ -566,14 +566,21 @@ static int wl1271_fetch_nvs(struct wl1271 *wl) | |||
566 | return ret; | 566 | return ret; |
567 | } | 567 | } |
568 | 568 | ||
569 | if (fw->size != sizeof(struct wl1271_nvs_file)) { | 569 | /* |
570 | * FIXME: the LEGACY NVS image support (NVS's missing the 5GHz band | ||
571 | * configurations) can be removed when those NVS files stop floating | ||
572 | * around. | ||
573 | */ | ||
574 | if (fw->size != sizeof(struct wl1271_nvs_file) && | ||
575 | (fw->size != WL1271_INI_LEGACY_NVS_FILE_SIZE || | ||
576 | wl1271_11a_enabled())) { | ||
570 | wl1271_error("nvs size is not as expected: %zu != %zu", | 577 | wl1271_error("nvs size is not as expected: %zu != %zu", |
571 | fw->size, sizeof(struct wl1271_nvs_file)); | 578 | fw->size, sizeof(struct wl1271_nvs_file)); |
572 | ret = -EILSEQ; | 579 | ret = -EILSEQ; |
573 | goto out; | 580 | goto out; |
574 | } | 581 | } |
575 | 582 | ||
576 | wl->nvs = kmalloc(sizeof(struct wl1271_nvs_file), GFP_KERNEL); | 583 | wl->nvs = kzalloc(sizeof(struct wl1271_nvs_file), GFP_KERNEL); |
577 | 584 | ||
578 | if (!wl->nvs) { | 585 | if (!wl->nvs) { |
579 | wl1271_error("could not allocate memory for the nvs file"); | 586 | wl1271_error("could not allocate memory for the nvs file"); |
@@ -581,7 +588,7 @@ static int wl1271_fetch_nvs(struct wl1271 *wl) | |||
581 | goto out; | 588 | goto out; |
582 | } | 589 | } |
583 | 590 | ||
584 | memcpy(wl->nvs, fw->data, sizeof(struct wl1271_nvs_file)); | 591 | memcpy(wl->nvs, fw->data, fw->size); |
585 | 592 | ||
586 | out: | 593 | out: |
587 | release_firmware(fw); | 594 | release_firmware(fw); |
@@ -1044,7 +1051,7 @@ static void wl1271_op_remove_interface(struct ieee80211_hw *hw, | |||
1044 | mutex_lock(&wl->mutex); | 1051 | mutex_lock(&wl->mutex); |
1045 | 1052 | ||
1046 | /* let's notify MAC80211 about the remaining pending TX frames */ | 1053 | /* let's notify MAC80211 about the remaining pending TX frames */ |
1047 | wl1271_tx_flush(wl); | 1054 | wl1271_tx_reset(wl); |
1048 | wl1271_power_off(wl); | 1055 | wl1271_power_off(wl); |
1049 | 1056 | ||
1050 | memset(wl->bssid, 0, ETH_ALEN); | 1057 | memset(wl->bssid, 0, ETH_ALEN); |
@@ -1241,6 +1248,42 @@ static u32 wl1271_min_rate_get(struct wl1271 *wl) | |||
1241 | return rate; | 1248 | return rate; |
1242 | } | 1249 | } |
1243 | 1250 | ||
1251 | static int wl1271_handle_idle(struct wl1271 *wl, bool idle) | ||
1252 | { | ||
1253 | int ret; | ||
1254 | |||
1255 | if (idle) { | ||
1256 | if (test_bit(WL1271_FLAG_JOINED, &wl->flags)) { | ||
1257 | ret = wl1271_unjoin(wl); | ||
1258 | if (ret < 0) | ||
1259 | goto out; | ||
1260 | } | ||
1261 | wl->rate_set = wl1271_min_rate_get(wl); | ||
1262 | wl->sta_rate_set = 0; | ||
1263 | ret = wl1271_acx_rate_policies(wl); | ||
1264 | if (ret < 0) | ||
1265 | goto out; | ||
1266 | ret = wl1271_acx_keep_alive_config( | ||
1267 | wl, CMD_TEMPL_KLV_IDX_NULL_DATA, | ||
1268 | ACX_KEEP_ALIVE_TPL_INVALID); | ||
1269 | if (ret < 0) | ||
1270 | goto out; | ||
1271 | set_bit(WL1271_FLAG_IDLE, &wl->flags); | ||
1272 | } else { | ||
1273 | /* increment the session counter */ | ||
1274 | wl->session_counter++; | ||
1275 | if (wl->session_counter >= SESSION_COUNTER_MAX) | ||
1276 | wl->session_counter = 0; | ||
1277 | ret = wl1271_dummy_join(wl); | ||
1278 | if (ret < 0) | ||
1279 | goto out; | ||
1280 | clear_bit(WL1271_FLAG_IDLE, &wl->flags); | ||
1281 | } | ||
1282 | |||
1283 | out: | ||
1284 | return ret; | ||
1285 | } | ||
1286 | |||
1244 | static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed) | 1287 | static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed) |
1245 | { | 1288 | { |
1246 | struct wl1271 *wl = hw->priv; | 1289 | struct wl1271 *wl = hw->priv; |
@@ -1255,6 +1298,15 @@ static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed) | |||
1255 | conf->power_level, | 1298 | conf->power_level, |
1256 | conf->flags & IEEE80211_CONF_IDLE ? "idle" : "in use"); | 1299 | conf->flags & IEEE80211_CONF_IDLE ? "idle" : "in use"); |
1257 | 1300 | ||
1301 | /* | ||
1302 | * mac80211 will go to idle nearly immediately after transmitting some | ||
1303 | * frames, such as the deauth. To make sure those frames reach the air, | ||
1304 | * wait here until the TX queue is fully flushed. | ||
1305 | */ | ||
1306 | if ((changed & IEEE80211_CONF_CHANGE_IDLE) && | ||
1307 | (conf->flags & IEEE80211_CONF_IDLE)) | ||
1308 | wl1271_tx_flush(wl); | ||
1309 | |||
1258 | mutex_lock(&wl->mutex); | 1310 | mutex_lock(&wl->mutex); |
1259 | 1311 | ||
1260 | if (unlikely(wl->state == WL1271_STATE_OFF)) | 1312 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
@@ -1295,22 +1347,9 @@ static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed) | |||
1295 | } | 1347 | } |
1296 | 1348 | ||
1297 | if (changed & IEEE80211_CONF_CHANGE_IDLE) { | 1349 | if (changed & IEEE80211_CONF_CHANGE_IDLE) { |
1298 | if (conf->flags & IEEE80211_CONF_IDLE && | 1350 | ret = wl1271_handle_idle(wl, conf->flags & IEEE80211_CONF_IDLE); |
1299 | test_bit(WL1271_FLAG_JOINED, &wl->flags)) | 1351 | if (ret < 0) |
1300 | wl1271_unjoin(wl); | 1352 | wl1271_warning("idle mode change failed %d", ret); |
1301 | else if (!(conf->flags & IEEE80211_CONF_IDLE)) | ||
1302 | wl1271_dummy_join(wl); | ||
1303 | |||
1304 | if (conf->flags & IEEE80211_CONF_IDLE) { | ||
1305 | wl->rate_set = wl1271_min_rate_get(wl); | ||
1306 | wl->sta_rate_set = 0; | ||
1307 | wl1271_acx_rate_policies(wl); | ||
1308 | wl1271_acx_keep_alive_config( | ||
1309 | wl, CMD_TEMPL_KLV_IDX_NULL_DATA, | ||
1310 | ACX_KEEP_ALIVE_TPL_INVALID); | ||
1311 | set_bit(WL1271_FLAG_IDLE, &wl->flags); | ||
1312 | } else | ||
1313 | clear_bit(WL1271_FLAG_IDLE, &wl->flags); | ||
1314 | } | 1353 | } |
1315 | 1354 | ||
1316 | if (conf->flags & IEEE80211_CONF_PS && | 1355 | if (conf->flags & IEEE80211_CONF_PS && |
@@ -1595,13 +1634,11 @@ static int wl1271_op_hw_scan(struct ieee80211_hw *hw, | |||
1595 | goto out; | 1634 | goto out; |
1596 | 1635 | ||
1597 | if (wl1271_11a_enabled()) | 1636 | if (wl1271_11a_enabled()) |
1598 | ret = wl1271_cmd_scan(hw->priv, ssid, len, | 1637 | ret = wl1271_cmd_scan(hw->priv, ssid, len, req, |
1599 | req->ie, req->ie_len, 1, 0, | 1638 | 1, 0, WL1271_SCAN_BAND_DUAL, 3); |
1600 | WL1271_SCAN_BAND_DUAL, 3); | ||
1601 | else | 1639 | else |
1602 | ret = wl1271_cmd_scan(hw->priv, ssid, len, | 1640 | ret = wl1271_cmd_scan(hw->priv, ssid, len, req, |
1603 | req->ie, req->ie_len, 1, 0, | 1641 | 1, 0, WL1271_SCAN_BAND_2_4_GHZ, 3); |
1604 | WL1271_SCAN_BAND_2_4_GHZ, 3); | ||
1605 | 1642 | ||
1606 | wl1271_ps_elp_sleep(wl); | 1643 | wl1271_ps_elp_sleep(wl); |
1607 | 1644 | ||
@@ -1991,7 +2028,7 @@ static struct ieee80211_channel wl1271_channels[] = { | |||
1991 | }; | 2028 | }; |
1992 | 2029 | ||
1993 | /* mapping to indexes for wl1271_rates */ | 2030 | /* mapping to indexes for wl1271_rates */ |
1994 | const static u8 wl1271_rate_to_idx_2ghz[] = { | 2031 | static const u8 wl1271_rate_to_idx_2ghz[] = { |
1995 | /* MCS rates are used only with 11n */ | 2032 | /* MCS rates are used only with 11n */ |
1996 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ | 2033 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ |
1997 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ | 2034 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ |
@@ -2103,7 +2140,7 @@ static struct ieee80211_channel wl1271_channels_5ghz[] = { | |||
2103 | }; | 2140 | }; |
2104 | 2141 | ||
2105 | /* mapping to indexes for wl1271_rates_5ghz */ | 2142 | /* mapping to indexes for wl1271_rates_5ghz */ |
2106 | const static u8 wl1271_rate_to_idx_5ghz[] = { | 2143 | static const u8 wl1271_rate_to_idx_5ghz[] = { |
2107 | /* MCS rates are used only with 11n */ | 2144 | /* MCS rates are used only with 11n */ |
2108 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ | 2145 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ |
2109 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ | 2146 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ |
@@ -2139,7 +2176,7 @@ static struct ieee80211_supported_band wl1271_band_5ghz = { | |||
2139 | .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz), | 2176 | .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz), |
2140 | }; | 2177 | }; |
2141 | 2178 | ||
2142 | const static u8 *wl1271_band_rate_to_idx[] = { | 2179 | static const u8 *wl1271_band_rate_to_idx[] = { |
2143 | [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz, | 2180 | [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz, |
2144 | [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz | 2181 | [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz |
2145 | }; | 2182 | }; |
diff --git a/drivers/net/wireless/wl12xx/wl1271_sdio.c b/drivers/net/wireless/wl12xx/wl1271_sdio.c index d3d6f302f705..7059b5cccf0f 100644 --- a/drivers/net/wireless/wl12xx/wl1271_sdio.c +++ b/drivers/net/wireless/wl12xx/wl1271_sdio.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #include <linux/mmc/sdio_func.h> | 28 | #include <linux/mmc/sdio_func.h> |
29 | #include <linux/mmc/sdio_ids.h> | 29 | #include <linux/mmc/sdio_ids.h> |
30 | #include <linux/mmc/card.h> | 30 | #include <linux/mmc/card.h> |
31 | #include <plat/gpio.h> | 31 | #include <linux/gpio.h> |
32 | 32 | ||
33 | #include "wl1271.h" | 33 | #include "wl1271.h" |
34 | #include "wl12xx_80211.h" | 34 | #include "wl12xx_80211.h" |
diff --git a/drivers/net/wireless/wl12xx/wl1271_testmode.c b/drivers/net/wireless/wl12xx/wl1271_testmode.c index 554deb4d024e..6e0952f79e9a 100644 --- a/drivers/net/wireless/wl12xx/wl1271_testmode.c +++ b/drivers/net/wireless/wl12xx/wl1271_testmode.c | |||
@@ -199,7 +199,14 @@ static int wl1271_tm_cmd_nvs_push(struct wl1271 *wl, struct nlattr *tb[]) | |||
199 | buf = nla_data(tb[WL1271_TM_ATTR_DATA]); | 199 | buf = nla_data(tb[WL1271_TM_ATTR_DATA]); |
200 | len = nla_len(tb[WL1271_TM_ATTR_DATA]); | 200 | len = nla_len(tb[WL1271_TM_ATTR_DATA]); |
201 | 201 | ||
202 | if (len != sizeof(struct wl1271_nvs_file)) { | 202 | /* |
203 | * FIXME: the LEGACY NVS image support (NVS's missing the 5GHz band | ||
204 | * configurations) can be removed when those NVS files stop floating | ||
205 | * around. | ||
206 | */ | ||
207 | if (len != sizeof(struct wl1271_nvs_file) && | ||
208 | (len != WL1271_INI_LEGACY_NVS_FILE_SIZE || | ||
209 | wl1271_11a_enabled())) { | ||
203 | wl1271_error("nvs size is not as expected: %zu != %zu", | 210 | wl1271_error("nvs size is not as expected: %zu != %zu", |
204 | len, sizeof(struct wl1271_nvs_file)); | 211 | len, sizeof(struct wl1271_nvs_file)); |
205 | return -EMSGSIZE; | 212 | return -EMSGSIZE; |
@@ -209,7 +216,7 @@ static int wl1271_tm_cmd_nvs_push(struct wl1271 *wl, struct nlattr *tb[]) | |||
209 | 216 | ||
210 | kfree(wl->nvs); | 217 | kfree(wl->nvs); |
211 | 218 | ||
212 | wl->nvs = kmalloc(sizeof(struct wl1271_nvs_file), GFP_KERNEL); | 219 | wl->nvs = kzalloc(sizeof(struct wl1271_nvs_file), GFP_KERNEL); |
213 | if (!wl->nvs) { | 220 | if (!wl->nvs) { |
214 | wl1271_error("could not allocate memory for the nvs file"); | 221 | wl1271_error("could not allocate memory for the nvs file"); |
215 | ret = -ENOMEM; | 222 | ret = -ENOMEM; |
diff --git a/drivers/net/wireless/wl12xx/wl1271_tx.c b/drivers/net/wireless/wl12xx/wl1271_tx.c index 62db79508ddf..c592cc2e9fe8 100644 --- a/drivers/net/wireless/wl12xx/wl1271_tx.c +++ b/drivers/net/wireless/wl12xx/wl1271_tx.c | |||
@@ -36,6 +36,7 @@ static int wl1271_tx_id(struct wl1271 *wl, struct sk_buff *skb) | |||
36 | for (i = 0; i < ACX_TX_DESCRIPTORS; i++) | 36 | for (i = 0; i < ACX_TX_DESCRIPTORS; i++) |
37 | if (wl->tx_frames[i] == NULL) { | 37 | if (wl->tx_frames[i] == NULL) { |
38 | wl->tx_frames[i] = skb; | 38 | wl->tx_frames[i] = skb; |
39 | wl->tx_frames_cnt++; | ||
39 | return i; | 40 | return i; |
40 | } | 41 | } |
41 | 42 | ||
@@ -73,8 +74,10 @@ static int wl1271_tx_allocate(struct wl1271 *wl, struct sk_buff *skb, u32 extra) | |||
73 | wl1271_debug(DEBUG_TX, | 74 | wl1271_debug(DEBUG_TX, |
74 | "tx_allocate: size: %d, blocks: %d, id: %d", | 75 | "tx_allocate: size: %d, blocks: %d, id: %d", |
75 | total_len, total_blocks, id); | 76 | total_len, total_blocks, id); |
76 | } else | 77 | } else { |
77 | wl->tx_frames[id] = NULL; | 78 | wl->tx_frames[id] = NULL; |
79 | wl->tx_frames_cnt--; | ||
80 | } | ||
78 | 81 | ||
79 | return ret; | 82 | return ret; |
80 | } | 83 | } |
@@ -358,6 +361,7 @@ static void wl1271_tx_complete_packet(struct wl1271 *wl, | |||
358 | /* return the packet to the stack */ | 361 | /* return the packet to the stack */ |
359 | ieee80211_tx_status(wl->hw, skb); | 362 | ieee80211_tx_status(wl->hw, skb); |
360 | wl->tx_frames[result->id] = NULL; | 363 | wl->tx_frames[result->id] = NULL; |
364 | wl->tx_frames_cnt--; | ||
361 | } | 365 | } |
362 | 366 | ||
363 | /* Called upon reception of a TX complete interrupt */ | 367 | /* Called upon reception of a TX complete interrupt */ |
@@ -412,7 +416,7 @@ void wl1271_tx_complete(struct wl1271 *wl) | |||
412 | } | 416 | } |
413 | 417 | ||
414 | /* caller must hold wl->mutex */ | 418 | /* caller must hold wl->mutex */ |
415 | void wl1271_tx_flush(struct wl1271 *wl) | 419 | void wl1271_tx_reset(struct wl1271 *wl) |
416 | { | 420 | { |
417 | int i; | 421 | int i; |
418 | struct sk_buff *skb; | 422 | struct sk_buff *skb; |
@@ -421,7 +425,7 @@ void wl1271_tx_flush(struct wl1271 *wl) | |||
421 | /* control->flags = 0; FIXME */ | 425 | /* control->flags = 0; FIXME */ |
422 | 426 | ||
423 | while ((skb = skb_dequeue(&wl->tx_queue))) { | 427 | while ((skb = skb_dequeue(&wl->tx_queue))) { |
424 | wl1271_debug(DEBUG_TX, "flushing skb 0x%p", skb); | 428 | wl1271_debug(DEBUG_TX, "freeing skb 0x%p", skb); |
425 | ieee80211_tx_status(wl->hw, skb); | 429 | ieee80211_tx_status(wl->hw, skb); |
426 | } | 430 | } |
427 | 431 | ||
@@ -429,6 +433,32 @@ void wl1271_tx_flush(struct wl1271 *wl) | |||
429 | if (wl->tx_frames[i] != NULL) { | 433 | if (wl->tx_frames[i] != NULL) { |
430 | skb = wl->tx_frames[i]; | 434 | skb = wl->tx_frames[i]; |
431 | wl->tx_frames[i] = NULL; | 435 | wl->tx_frames[i] = NULL; |
436 | wl1271_debug(DEBUG_TX, "freeing skb 0x%p", skb); | ||
432 | ieee80211_tx_status(wl->hw, skb); | 437 | ieee80211_tx_status(wl->hw, skb); |
433 | } | 438 | } |
439 | wl->tx_frames_cnt = 0; | ||
440 | } | ||
441 | |||
442 | #define WL1271_TX_FLUSH_TIMEOUT 500000 | ||
443 | |||
444 | /* caller must *NOT* hold wl->mutex */ | ||
445 | void wl1271_tx_flush(struct wl1271 *wl) | ||
446 | { | ||
447 | unsigned long timeout; | ||
448 | timeout = jiffies + usecs_to_jiffies(WL1271_TX_FLUSH_TIMEOUT); | ||
449 | |||
450 | while (!time_after(jiffies, timeout)) { | ||
451 | mutex_lock(&wl->mutex); | ||
452 | wl1271_debug(DEBUG_TX, "flushing tx buffer: %d", | ||
453 | wl->tx_frames_cnt); | ||
454 | if ((wl->tx_frames_cnt == 0) && | ||
455 | skb_queue_empty(&wl->tx_queue)) { | ||
456 | mutex_unlock(&wl->mutex); | ||
457 | return; | ||
458 | } | ||
459 | mutex_unlock(&wl->mutex); | ||
460 | msleep(1); | ||
461 | } | ||
462 | |||
463 | wl1271_warning("Unable to flush all TX buffers, timed out."); | ||
434 | } | 464 | } |
diff --git a/drivers/net/wireless/wl12xx/wl1271_tx.h b/drivers/net/wireless/wl12xx/wl1271_tx.h index 91d0adb0ea40..48bf92621c03 100644 --- a/drivers/net/wireless/wl12xx/wl1271_tx.h +++ b/drivers/net/wireless/wl12xx/wl1271_tx.h | |||
@@ -158,6 +158,7 @@ static inline int wl1271_tx_ac_to_tid(int ac) | |||
158 | 158 | ||
159 | void wl1271_tx_work(struct work_struct *work); | 159 | void wl1271_tx_work(struct work_struct *work); |
160 | void wl1271_tx_complete(struct wl1271 *wl); | 160 | void wl1271_tx_complete(struct wl1271 *wl); |
161 | void wl1271_tx_reset(struct wl1271 *wl); | ||
161 | void wl1271_tx_flush(struct wl1271 *wl); | 162 | void wl1271_tx_flush(struct wl1271 *wl); |
162 | u8 wl1271_rate_to_idx(struct wl1271 *wl, int rate); | 163 | u8 wl1271_rate_to_idx(struct wl1271 *wl, int rate); |
163 | u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set); | 164 | u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set); |
diff --git a/drivers/net/wireless/zd1211rw/zd_mac.c b/drivers/net/wireless/zd1211rw/zd_mac.c index b0b666019a93..163a8a06b22d 100644 --- a/drivers/net/wireless/zd1211rw/zd_mac.c +++ b/drivers/net/wireless/zd1211rw/zd_mac.c | |||
@@ -855,7 +855,7 @@ int zd_mac_rx(struct ieee80211_hw *hw, const u8 *buffer, unsigned int length) | |||
855 | if (skb == NULL) | 855 | if (skb == NULL) |
856 | return -ENOMEM; | 856 | return -ENOMEM; |
857 | if (need_padding) { | 857 | if (need_padding) { |
858 | /* Make sure the the payload data is 4 byte aligned. */ | 858 | /* Make sure the payload data is 4 byte aligned. */ |
859 | skb_reserve(skb, 2); | 859 | skb_reserve(skb, 2); |
860 | } | 860 | } |
861 | 861 | ||
diff --git a/drivers/net/wireless/zd1211rw/zd_usb.c b/drivers/net/wireless/zd1211rw/zd_usb.c index c257940b71b6..818e1480ca93 100644 --- a/drivers/net/wireless/zd1211rw/zd_usb.c +++ b/drivers/net/wireless/zd1211rw/zd_usb.c | |||
@@ -844,7 +844,7 @@ out: | |||
844 | * @usb: a &struct zd_usb pointer | 844 | * @usb: a &struct zd_usb pointer |
845 | * @urb: URB to be freed | 845 | * @urb: URB to be freed |
846 | * | 846 | * |
847 | * Frees the the transmission URB, which means to put it on the free URB | 847 | * Frees the transmission URB, which means to put it on the free URB |
848 | * list. | 848 | * list. |
849 | */ | 849 | */ |
850 | static void free_tx_urb(struct zd_usb *usb, struct urb *urb) | 850 | static void free_tx_urb(struct zd_usb *usb, struct urb *urb) |