diff options
| author | Ingo Molnar <mingo@kernel.org> | 2013-12-17 09:27:08 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2013-12-17 09:27:08 -0500 |
| commit | bb799d3b980eb803ca2da4a4eefbd9308f8d988a (patch) | |
| tree | 69fbe0cd6d47b23a50f5e1d87bf7489532fae149 /drivers/net/wireless | |
| parent | 919fc6e34831d1c2b58bfb5ae261dc3facc9b269 (diff) | |
| parent | 319e2e3f63c348a9b66db4667efa73178e18b17d (diff) | |
Merge tag 'v3.13-rc4' into core/locking
Merge Linux 3.13-rc4, to refresh this rather old tree with the latest fixes.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/net/wireless')
33 files changed, 259 insertions, 96 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c index 1ec52356b5a1..130657db5c43 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | |||
| @@ -3984,18 +3984,20 @@ static void ar9003_hw_quick_drop_apply(struct ath_hw *ah, u16 freq) | |||
| 3984 | int quick_drop; | 3984 | int quick_drop; |
| 3985 | s32 t[3], f[3] = {5180, 5500, 5785}; | 3985 | s32 t[3], f[3] = {5180, 5500, 5785}; |
| 3986 | 3986 | ||
| 3987 | if (!(pBase->miscConfiguration & BIT(1))) | 3987 | if (!(pBase->miscConfiguration & BIT(4))) |
| 3988 | return; | 3988 | return; |
| 3989 | 3989 | ||
| 3990 | if (freq < 4000) | 3990 | if (AR_SREV_9300(ah) || AR_SREV_9580(ah) || AR_SREV_9340(ah)) { |
| 3991 | quick_drop = eep->modalHeader2G.quick_drop; | 3991 | if (freq < 4000) { |
| 3992 | else { | 3992 | quick_drop = eep->modalHeader2G.quick_drop; |
| 3993 | t[0] = eep->base_ext1.quick_drop_low; | 3993 | } else { |
| 3994 | t[1] = eep->modalHeader5G.quick_drop; | 3994 | t[0] = eep->base_ext1.quick_drop_low; |
| 3995 | t[2] = eep->base_ext1.quick_drop_high; | 3995 | t[1] = eep->modalHeader5G.quick_drop; |
| 3996 | quick_drop = ar9003_hw_power_interpolate(freq, f, t, 3); | 3996 | t[2] = eep->base_ext1.quick_drop_high; |
| 3997 | quick_drop = ar9003_hw_power_interpolate(freq, f, t, 3); | ||
| 3998 | } | ||
| 3999 | REG_RMW_FIELD(ah, AR_PHY_AGC, AR_PHY_AGC_QUICK_DROP, quick_drop); | ||
| 3997 | } | 4000 | } |
| 3998 | REG_RMW_FIELD(ah, AR_PHY_AGC, AR_PHY_AGC_QUICK_DROP, quick_drop); | ||
| 3999 | } | 4001 | } |
| 4000 | 4002 | ||
| 4001 | static void ar9003_hw_txend_to_xpa_off_apply(struct ath_hw *ah, bool is2ghz) | 4003 | static void ar9003_hw_txend_to_xpa_off_apply(struct ath_hw *ah, bool is2ghz) |
| @@ -4035,7 +4037,7 @@ static void ar9003_hw_xlna_bias_strength_apply(struct ath_hw *ah, bool is2ghz) | |||
| 4035 | struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep; | 4037 | struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep; |
| 4036 | u8 bias; | 4038 | u8 bias; |
| 4037 | 4039 | ||
| 4038 | if (!(eep->baseEepHeader.featureEnable & 0x40)) | 4040 | if (!(eep->baseEepHeader.miscConfiguration & 0x40)) |
| 4039 | return; | 4041 | return; |
| 4040 | 4042 | ||
| 4041 | if (!AR_SREV_9300(ah)) | 4043 | if (!AR_SREV_9300(ah)) |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c index 11f53589a3f3..d39b79f5e841 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c | |||
| @@ -701,6 +701,54 @@ static int ar9550_hw_get_modes_txgain_index(struct ath_hw *ah, | |||
| 701 | return ret; | 701 | return ret; |
| 702 | } | 702 | } |
| 703 | 703 | ||
| 704 | static void ar9003_doubler_fix(struct ath_hw *ah) | ||
| 705 | { | ||
| 706 | if (AR_SREV_9300(ah) || AR_SREV_9580(ah) || AR_SREV_9550(ah)) { | ||
| 707 | REG_RMW(ah, AR_PHY_65NM_CH0_RXTX2, | ||
| 708 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 709 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S, 0); | ||
| 710 | REG_RMW(ah, AR_PHY_65NM_CH1_RXTX2, | ||
| 711 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 712 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S, 0); | ||
| 713 | REG_RMW(ah, AR_PHY_65NM_CH2_RXTX2, | ||
| 714 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 715 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S, 0); | ||
| 716 | |||
| 717 | udelay(200); | ||
| 718 | |||
| 719 | REG_CLR_BIT(ah, AR_PHY_65NM_CH0_RXTX2, | ||
| 720 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK); | ||
| 721 | REG_CLR_BIT(ah, AR_PHY_65NM_CH1_RXTX2, | ||
| 722 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK); | ||
| 723 | REG_CLR_BIT(ah, AR_PHY_65NM_CH2_RXTX2, | ||
| 724 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK); | ||
| 725 | |||
| 726 | udelay(1); | ||
| 727 | |||
| 728 | REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX2, | ||
| 729 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK, 1); | ||
| 730 | REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX2, | ||
| 731 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK, 1); | ||
| 732 | REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX2, | ||
| 733 | AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK, 1); | ||
| 734 | |||
| 735 | udelay(200); | ||
| 736 | |||
| 737 | REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_SYNTH12, | ||
| 738 | AR_PHY_65NM_CH0_SYNTH12_VREFMUL3, 0xf); | ||
| 739 | |||
| 740 | REG_RMW(ah, AR_PHY_65NM_CH0_RXTX2, 0, | ||
| 741 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 742 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S); | ||
| 743 | REG_RMW(ah, AR_PHY_65NM_CH1_RXTX2, 0, | ||
| 744 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 745 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S); | ||
| 746 | REG_RMW(ah, AR_PHY_65NM_CH2_RXTX2, 0, | ||
| 747 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S | | ||
| 748 | 1 << AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S); | ||
| 749 | } | ||
| 750 | } | ||
| 751 | |||
| 704 | static int ar9003_hw_process_ini(struct ath_hw *ah, | 752 | static int ar9003_hw_process_ini(struct ath_hw *ah, |
| 705 | struct ath9k_channel *chan) | 753 | struct ath9k_channel *chan) |
| 706 | { | 754 | { |
| @@ -726,6 +774,8 @@ static int ar9003_hw_process_ini(struct ath_hw *ah, | |||
| 726 | modesIndex); | 774 | modesIndex); |
| 727 | } | 775 | } |
| 728 | 776 | ||
| 777 | ar9003_doubler_fix(ah); | ||
| 778 | |||
| 729 | /* | 779 | /* |
| 730 | * RXGAIN initvals. | 780 | * RXGAIN initvals. |
| 731 | */ | 781 | */ |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.h b/drivers/net/wireless/ath/ath9k/ar9003_phy.h index fca624322dc8..2af667beb273 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.h +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.h | |||
| @@ -656,13 +656,24 @@ | |||
| 656 | #define AR_PHY_SYNTH4_LONG_SHIFT_SELECT ((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0x00000001 : 0x00000002) | 656 | #define AR_PHY_SYNTH4_LONG_SHIFT_SELECT ((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0x00000001 : 0x00000002) |
| 657 | #define AR_PHY_SYNTH4_LONG_SHIFT_SELECT_S ((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0 : 1) | 657 | #define AR_PHY_SYNTH4_LONG_SHIFT_SELECT_S ((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0 : 1) |
| 658 | #define AR_PHY_65NM_CH0_SYNTH7 0x16098 | 658 | #define AR_PHY_65NM_CH0_SYNTH7 0x16098 |
| 659 | #define AR_PHY_65NM_CH0_SYNTH12 0x160ac | ||
| 659 | #define AR_PHY_65NM_CH0_BIAS1 0x160c0 | 660 | #define AR_PHY_65NM_CH0_BIAS1 0x160c0 |
| 660 | #define AR_PHY_65NM_CH0_BIAS2 0x160c4 | 661 | #define AR_PHY_65NM_CH0_BIAS2 0x160c4 |
| 661 | #define AR_PHY_65NM_CH0_BIAS4 0x160cc | 662 | #define AR_PHY_65NM_CH0_BIAS4 0x160cc |
| 663 | #define AR_PHY_65NM_CH0_RXTX2 0x16104 | ||
| 664 | #define AR_PHY_65NM_CH1_RXTX2 0x16504 | ||
| 665 | #define AR_PHY_65NM_CH2_RXTX2 0x16904 | ||
| 662 | #define AR_PHY_65NM_CH0_RXTX4 0x1610c | 666 | #define AR_PHY_65NM_CH0_RXTX4 0x1610c |
| 663 | #define AR_PHY_65NM_CH1_RXTX4 0x1650c | 667 | #define AR_PHY_65NM_CH1_RXTX4 0x1650c |
| 664 | #define AR_PHY_65NM_CH2_RXTX4 0x1690c | 668 | #define AR_PHY_65NM_CH2_RXTX4 0x1690c |
| 665 | 669 | ||
| 670 | #define AR_PHY_65NM_CH0_SYNTH12_VREFMUL3 0x00780000 | ||
| 671 | #define AR_PHY_65NM_CH0_SYNTH12_VREFMUL3_S 19 | ||
| 672 | #define AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK 0x00000004 | ||
| 673 | #define AR_PHY_65NM_CH0_RXTX2_SYNTHON_MASK_S 2 | ||
| 674 | #define AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK 0x00000008 | ||
| 675 | #define AR_PHY_65NM_CH0_RXTX2_SYNTHOVR_MASK_S 3 | ||
| 676 | |||
| 666 | #define AR_CH0_TOP (AR_SREV_9300(ah) ? 0x16288 : \ | 677 | #define AR_CH0_TOP (AR_SREV_9300(ah) ? 0x16288 : \ |
| 667 | (((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0x1628c : 0x16280))) | 678 | (((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0x1628c : 0x16280))) |
| 668 | #define AR_CH0_TOP_XPABIASLVL (AR_SREV_9550(ah) ? 0x3c0 : 0x300) | 679 | #define AR_CH0_TOP_XPABIASLVL (AR_SREV_9550(ah) ? 0x3c0 : 0x300) |
diff --git a/drivers/net/wireless/ath/ath9k/ar9462_2p1_initvals.h b/drivers/net/wireless/ath/ath9k/ar9462_2p1_initvals.h index 4dbc294df7e3..57fc5f459d0a 100644 --- a/drivers/net/wireless/ath/ath9k/ar9462_2p1_initvals.h +++ b/drivers/net/wireless/ath/ath9k/ar9462_2p1_initvals.h | |||
| @@ -361,7 +361,7 @@ static const u32 ar9462_2p1_baseband_postamble[][5] = { | |||
| 361 | {0x00009e14, 0x37b95d5e, 0x37b9605e, 0x3236605e, 0x32365a5e}, | 361 | {0x00009e14, 0x37b95d5e, 0x37b9605e, 0x3236605e, 0x32365a5e}, |
| 362 | {0x00009e18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | 362 | {0x00009e18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, |
| 363 | {0x00009e1c, 0x0001cf9c, 0x0001cf9c, 0x00021f9c, 0x00021f9c}, | 363 | {0x00009e1c, 0x0001cf9c, 0x0001cf9c, 0x00021f9c, 0x00021f9c}, |
| 364 | {0x00009e20, 0x000003b5, 0x000003b5, 0x000003ce, 0x000003ce}, | 364 | {0x00009e20, 0x000003a5, 0x000003a5, 0x000003a5, 0x000003a5}, |
| 365 | {0x00009e2c, 0x0000001c, 0x0000001c, 0x00000021, 0x00000021}, | 365 | {0x00009e2c, 0x0000001c, 0x0000001c, 0x00000021, 0x00000021}, |
| 366 | {0x00009e3c, 0xcf946220, 0xcf946220, 0xcfd5c782, 0xcfd5c282}, | 366 | {0x00009e3c, 0xcf946220, 0xcf946220, 0xcfd5c782, 0xcfd5c282}, |
| 367 | {0x00009e44, 0x62321e27, 0x62321e27, 0xfe291e27, 0xfe291e27}, | 367 | {0x00009e44, 0x62321e27, 0x62321e27, 0xfe291e27, 0xfe291e27}, |
| @@ -400,7 +400,7 @@ static const u32 ar9462_2p1_baseband_postamble[][5] = { | |||
| 400 | {0x0000ae04, 0x001c0000, 0x001c0000, 0x001c0000, 0x00100000}, | 400 | {0x0000ae04, 0x001c0000, 0x001c0000, 0x001c0000, 0x00100000}, |
| 401 | {0x0000ae18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | 401 | {0x0000ae18, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, |
| 402 | {0x0000ae1c, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, | 402 | {0x0000ae1c, 0x0000019c, 0x0000019c, 0x0000019c, 0x0000019c}, |
| 403 | {0x0000ae20, 0x000001b5, 0x000001b5, 0x000001ce, 0x000001ce}, | 403 | {0x0000ae20, 0x000001a6, 0x000001a6, 0x000001aa, 0x000001aa}, |
| 404 | {0x0000b284, 0x00000000, 0x00000000, 0x00000550, 0x00000550}, | 404 | {0x0000b284, 0x00000000, 0x00000000, 0x00000550, 0x00000550}, |
| 405 | }; | 405 | }; |
| 406 | 406 | ||
| @@ -472,7 +472,7 @@ static const u32 ar9462_2p1_radio_postamble[][5] = { | |||
| 472 | 472 | ||
| 473 | static const u32 ar9462_2p1_soc_preamble[][2] = { | 473 | static const u32 ar9462_2p1_soc_preamble[][2] = { |
| 474 | /* Addr allmodes */ | 474 | /* Addr allmodes */ |
| 475 | {0x000040a4, 0x00a0c1c9}, | 475 | {0x000040a4, 0x00a0c9c9}, |
| 476 | {0x00007020, 0x00000000}, | 476 | {0x00007020, 0x00000000}, |
| 477 | {0x00007034, 0x00000002}, | 477 | {0x00007034, 0x00000002}, |
| 478 | {0x00007038, 0x000004c2}, | 478 | {0x00007038, 0x000004c2}, |
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 54b04155e43b..8918035da3a3 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
| @@ -146,10 +146,9 @@ static void ath9k_hw_set_clockrate(struct ath_hw *ah) | |||
| 146 | else | 146 | else |
| 147 | clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM; | 147 | clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM; |
| 148 | 148 | ||
| 149 | if (IS_CHAN_HT40(chan)) | 149 | if (chan) { |
| 150 | clockrate *= 2; | 150 | if (IS_CHAN_HT40(chan)) |
| 151 | 151 | clockrate *= 2; | |
| 152 | if (ah->curchan) { | ||
| 153 | if (IS_CHAN_HALF_RATE(chan)) | 152 | if (IS_CHAN_HALF_RATE(chan)) |
| 154 | clockrate /= 2; | 153 | clockrate /= 2; |
| 155 | if (IS_CHAN_QUARTER_RATE(chan)) | 154 | if (IS_CHAN_QUARTER_RATE(chan)) |
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index 09cdbcd09739..b5a19e098f2d 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c | |||
| @@ -1276,6 +1276,10 @@ static void ath_tx_fill_desc(struct ath_softc *sc, struct ath_buf *bf, | |||
| 1276 | if (!rts_thresh || (len > rts_thresh)) | 1276 | if (!rts_thresh || (len > rts_thresh)) |
| 1277 | rts = true; | 1277 | rts = true; |
| 1278 | } | 1278 | } |
| 1279 | |||
| 1280 | if (!aggr) | ||
| 1281 | len = fi->framelen; | ||
| 1282 | |||
| 1279 | ath_buf_set_rate(sc, bf, &info, len, rts); | 1283 | ath_buf_set_rate(sc, bf, &info, len, rts); |
| 1280 | } | 1284 | } |
| 1281 | 1285 | ||
diff --git a/drivers/net/wireless/ath/regd.c b/drivers/net/wireless/ath/regd.c index c00687e05688..1217c52ab28e 100644 --- a/drivers/net/wireless/ath/regd.c +++ b/drivers/net/wireless/ath/regd.c | |||
| @@ -362,7 +362,8 @@ static int __ath_reg_dyn_country(struct wiphy *wiphy, | |||
| 362 | { | 362 | { |
| 363 | u16 country_code; | 363 | u16 country_code; |
| 364 | 364 | ||
| 365 | if (!ath_is_world_regd(reg)) | 365 | if (request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE && |
| 366 | !ath_is_world_regd(reg)) | ||
| 366 | return -EINVAL; | 367 | return -EINVAL; |
| 367 | 368 | ||
| 368 | country_code = ath_regd_find_country_by_name(request->alpha2); | 369 | country_code = ath_regd_find_country_by_name(request->alpha2); |
diff --git a/drivers/net/wireless/ath/wcn36xx/smd.c b/drivers/net/wireless/ath/wcn36xx/smd.c index de9eb2cfbf4b..366339421d4f 100644 --- a/drivers/net/wireless/ath/wcn36xx/smd.c +++ b/drivers/net/wireless/ath/wcn36xx/smd.c | |||
| @@ -2041,13 +2041,20 @@ static void wcn36xx_smd_rsp_process(struct wcn36xx *wcn, void *buf, size_t len) | |||
| 2041 | case WCN36XX_HAL_DELETE_STA_CONTEXT_IND: | 2041 | case WCN36XX_HAL_DELETE_STA_CONTEXT_IND: |
| 2042 | mutex_lock(&wcn->hal_ind_mutex); | 2042 | mutex_lock(&wcn->hal_ind_mutex); |
| 2043 | msg_ind = kmalloc(sizeof(*msg_ind), GFP_KERNEL); | 2043 | msg_ind = kmalloc(sizeof(*msg_ind), GFP_KERNEL); |
| 2044 | msg_ind->msg_len = len; | 2044 | if (msg_ind) { |
| 2045 | msg_ind->msg = kmalloc(len, GFP_KERNEL); | 2045 | msg_ind->msg_len = len; |
| 2046 | memcpy(msg_ind->msg, buf, len); | 2046 | msg_ind->msg = kmalloc(len, GFP_KERNEL); |
| 2047 | list_add_tail(&msg_ind->list, &wcn->hal_ind_queue); | 2047 | memcpy(msg_ind->msg, buf, len); |
| 2048 | queue_work(wcn->hal_ind_wq, &wcn->hal_ind_work); | 2048 | list_add_tail(&msg_ind->list, &wcn->hal_ind_queue); |
| 2049 | wcn36xx_dbg(WCN36XX_DBG_HAL, "indication arrived\n"); | 2049 | queue_work(wcn->hal_ind_wq, &wcn->hal_ind_work); |
| 2050 | wcn36xx_dbg(WCN36XX_DBG_HAL, "indication arrived\n"); | ||
| 2051 | } | ||
| 2050 | mutex_unlock(&wcn->hal_ind_mutex); | 2052 | mutex_unlock(&wcn->hal_ind_mutex); |
| 2053 | if (msg_ind) | ||
| 2054 | break; | ||
| 2055 | /* FIXME: Do something smarter then just printing an error. */ | ||
| 2056 | wcn36xx_err("Run out of memory while handling SMD_EVENT (%d)\n", | ||
| 2057 | msg_header->msg_type); | ||
| 2051 | break; | 2058 | break; |
| 2052 | default: | 2059 | default: |
| 2053 | wcn36xx_err("SMD_EVENT (%d) not supported\n", | 2060 | wcn36xx_err("SMD_EVENT (%d) not supported\n", |
diff --git a/drivers/net/wireless/brcm80211/Kconfig b/drivers/net/wireless/brcm80211/Kconfig index b00a7e92225f..54e36fcb3954 100644 --- a/drivers/net/wireless/brcm80211/Kconfig +++ b/drivers/net/wireless/brcm80211/Kconfig | |||
| @@ -5,6 +5,8 @@ config BRCMSMAC | |||
| 5 | tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver" | 5 | tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver" |
| 6 | depends on MAC80211 | 6 | depends on MAC80211 |
| 7 | depends on BCMA | 7 | depends on BCMA |
| 8 | select NEW_LEDS if BCMA_DRIVER_GPIO | ||
| 9 | select LEDS_CLASS if BCMA_DRIVER_GPIO | ||
| 8 | select BRCMUTIL | 10 | select BRCMUTIL |
| 9 | select FW_LOADER | 11 | select FW_LOADER |
| 10 | select CRC_CCITT | 12 | select CRC_CCITT |
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c index 905704e335d7..abc9ceca70f3 100644 --- a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c +++ b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c | |||
| @@ -109,6 +109,8 @@ static inline int brcmf_sdioh_f0_write_byte(struct brcmf_sdio_dev *sdiodev, | |||
| 109 | brcmf_err("Disable F2 failed:%d\n", | 109 | brcmf_err("Disable F2 failed:%d\n", |
| 110 | err_ret); | 110 | err_ret); |
| 111 | } | 111 | } |
| 112 | } else { | ||
| 113 | err_ret = -ENOENT; | ||
| 112 | } | 114 | } |
| 113 | } else if ((regaddr == SDIO_CCCR_ABORT) || | 115 | } else if ((regaddr == SDIO_CCCR_ABORT) || |
| 114 | (regaddr == SDIO_CCCR_IENx)) { | 116 | (regaddr == SDIO_CCCR_IENx)) { |
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/p2p.c b/drivers/net/wireless/brcm80211/brcmfmac/p2p.c index 5b5b952d47b1..4a2293041821 100644 --- a/drivers/net/wireless/brcm80211/brcmfmac/p2p.c +++ b/drivers/net/wireless/brcm80211/brcmfmac/p2p.c | |||
| @@ -823,6 +823,7 @@ static s32 brcmf_p2p_run_escan(struct brcmf_cfg80211_info *cfg, | |||
| 823 | } | 823 | } |
| 824 | err = brcmf_p2p_escan(p2p, num_nodfs, chanspecs, search_state, | 824 | err = brcmf_p2p_escan(p2p, num_nodfs, chanspecs, search_state, |
| 825 | action, P2PAPI_BSSCFG_DEVICE); | 825 | action, P2PAPI_BSSCFG_DEVICE); |
| 826 | kfree(chanspecs); | ||
| 826 | } | 827 | } |
| 827 | exit: | 828 | exit: |
| 828 | if (err) | 829 | if (err) |
diff --git a/drivers/net/wireless/iwlwifi/iwl-7000.c b/drivers/net/wireless/iwlwifi/iwl-7000.c index 85879dbaa402..3c34a72a5d64 100644 --- a/drivers/net/wireless/iwlwifi/iwl-7000.c +++ b/drivers/net/wireless/iwlwifi/iwl-7000.c | |||
| @@ -67,8 +67,8 @@ | |||
| 67 | #include "iwl-agn-hw.h" | 67 | #include "iwl-agn-hw.h" |
| 68 | 68 | ||
| 69 | /* Highest firmware API version supported */ | 69 | /* Highest firmware API version supported */ |
| 70 | #define IWL7260_UCODE_API_MAX 7 | 70 | #define IWL7260_UCODE_API_MAX 8 |
| 71 | #define IWL3160_UCODE_API_MAX 7 | 71 | #define IWL3160_UCODE_API_MAX 8 |
| 72 | 72 | ||
| 73 | /* Oldest version we won't warn about */ | 73 | /* Oldest version we won't warn about */ |
| 74 | #define IWL7260_UCODE_API_OK 7 | 74 | #define IWL7260_UCODE_API_OK 7 |
| @@ -130,6 +130,7 @@ const struct iwl_cfg iwl7260_2ac_cfg = { | |||
| 130 | .ht_params = &iwl7000_ht_params, | 130 | .ht_params = &iwl7000_ht_params, |
| 131 | .nvm_ver = IWL7260_NVM_VERSION, | 131 | .nvm_ver = IWL7260_NVM_VERSION, |
| 132 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, | 132 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, |
| 133 | .host_interrupt_operation_mode = true, | ||
| 133 | }; | 134 | }; |
| 134 | 135 | ||
| 135 | const struct iwl_cfg iwl7260_2ac_cfg_high_temp = { | 136 | const struct iwl_cfg iwl7260_2ac_cfg_high_temp = { |
| @@ -140,6 +141,7 @@ const struct iwl_cfg iwl7260_2ac_cfg_high_temp = { | |||
| 140 | .nvm_ver = IWL7260_NVM_VERSION, | 141 | .nvm_ver = IWL7260_NVM_VERSION, |
| 141 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, | 142 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, |
| 142 | .high_temp = true, | 143 | .high_temp = true, |
| 144 | .host_interrupt_operation_mode = true, | ||
| 143 | }; | 145 | }; |
| 144 | 146 | ||
| 145 | const struct iwl_cfg iwl7260_2n_cfg = { | 147 | const struct iwl_cfg iwl7260_2n_cfg = { |
| @@ -149,6 +151,7 @@ const struct iwl_cfg iwl7260_2n_cfg = { | |||
| 149 | .ht_params = &iwl7000_ht_params, | 151 | .ht_params = &iwl7000_ht_params, |
| 150 | .nvm_ver = IWL7260_NVM_VERSION, | 152 | .nvm_ver = IWL7260_NVM_VERSION, |
| 151 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, | 153 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, |
| 154 | .host_interrupt_operation_mode = true, | ||
| 152 | }; | 155 | }; |
| 153 | 156 | ||
| 154 | const struct iwl_cfg iwl7260_n_cfg = { | 157 | const struct iwl_cfg iwl7260_n_cfg = { |
| @@ -158,6 +161,7 @@ const struct iwl_cfg iwl7260_n_cfg = { | |||
| 158 | .ht_params = &iwl7000_ht_params, | 161 | .ht_params = &iwl7000_ht_params, |
| 159 | .nvm_ver = IWL7260_NVM_VERSION, | 162 | .nvm_ver = IWL7260_NVM_VERSION, |
| 160 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, | 163 | .nvm_calib_ver = IWL7260_TX_POWER_VERSION, |
| 164 | .host_interrupt_operation_mode = true, | ||
| 161 | }; | 165 | }; |
| 162 | 166 | ||
| 163 | const struct iwl_cfg iwl3160_2ac_cfg = { | 167 | const struct iwl_cfg iwl3160_2ac_cfg = { |
| @@ -167,6 +171,7 @@ const struct iwl_cfg iwl3160_2ac_cfg = { | |||
| 167 | .ht_params = &iwl7000_ht_params, | 171 | .ht_params = &iwl7000_ht_params, |
| 168 | .nvm_ver = IWL3160_NVM_VERSION, | 172 | .nvm_ver = IWL3160_NVM_VERSION, |
| 169 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, | 173 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, |
| 174 | .host_interrupt_operation_mode = true, | ||
| 170 | }; | 175 | }; |
| 171 | 176 | ||
| 172 | const struct iwl_cfg iwl3160_2n_cfg = { | 177 | const struct iwl_cfg iwl3160_2n_cfg = { |
| @@ -176,6 +181,7 @@ const struct iwl_cfg iwl3160_2n_cfg = { | |||
| 176 | .ht_params = &iwl7000_ht_params, | 181 | .ht_params = &iwl7000_ht_params, |
| 177 | .nvm_ver = IWL3160_NVM_VERSION, | 182 | .nvm_ver = IWL3160_NVM_VERSION, |
| 178 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, | 183 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, |
| 184 | .host_interrupt_operation_mode = true, | ||
| 179 | }; | 185 | }; |
| 180 | 186 | ||
| 181 | const struct iwl_cfg iwl3160_n_cfg = { | 187 | const struct iwl_cfg iwl3160_n_cfg = { |
| @@ -185,6 +191,7 @@ const struct iwl_cfg iwl3160_n_cfg = { | |||
| 185 | .ht_params = &iwl7000_ht_params, | 191 | .ht_params = &iwl7000_ht_params, |
| 186 | .nvm_ver = IWL3160_NVM_VERSION, | 192 | .nvm_ver = IWL3160_NVM_VERSION, |
| 187 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, | 193 | .nvm_calib_ver = IWL3160_TX_POWER_VERSION, |
| 194 | .host_interrupt_operation_mode = true, | ||
| 188 | }; | 195 | }; |
| 189 | 196 | ||
| 190 | const struct iwl_cfg iwl7265_2ac_cfg = { | 197 | const struct iwl_cfg iwl7265_2ac_cfg = { |
| @@ -196,5 +203,23 @@ const struct iwl_cfg iwl7265_2ac_cfg = { | |||
| 196 | .nvm_calib_ver = IWL7265_TX_POWER_VERSION, | 203 | .nvm_calib_ver = IWL7265_TX_POWER_VERSION, |
| 197 | }; | 204 | }; |
| 198 | 205 | ||
| 206 | const struct iwl_cfg iwl7265_2n_cfg = { | ||
| 207 | .name = "Intel(R) Dual Band Wireless N 7265", | ||
| 208 | .fw_name_pre = IWL7265_FW_PRE, | ||
| 209 | IWL_DEVICE_7000, | ||
| 210 | .ht_params = &iwl7000_ht_params, | ||
| 211 | .nvm_ver = IWL7265_NVM_VERSION, | ||
| 212 | .nvm_calib_ver = IWL7265_TX_POWER_VERSION, | ||
| 213 | }; | ||
| 214 | |||
| 215 | const struct iwl_cfg iwl7265_n_cfg = { | ||
| 216 | .name = "Intel(R) Wireless N 7265", | ||
| 217 | .fw_name_pre = IWL7265_FW_PRE, | ||
| 218 | IWL_DEVICE_7000, | ||
| 219 | .ht_params = &iwl7000_ht_params, | ||
| 220 | .nvm_ver = IWL7265_NVM_VERSION, | ||
| 221 | .nvm_calib_ver = IWL7265_TX_POWER_VERSION, | ||
| 222 | }; | ||
| 223 | |||
| 199 | MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK)); | 224 | MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK)); |
| 200 | MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL3160_UCODE_API_OK)); | 225 | MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL3160_UCODE_API_OK)); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-config.h b/drivers/net/wireless/iwlwifi/iwl-config.h index 18f232e8e812..03fd9aa8bfda 100644 --- a/drivers/net/wireless/iwlwifi/iwl-config.h +++ b/drivers/net/wireless/iwlwifi/iwl-config.h | |||
| @@ -207,6 +207,8 @@ struct iwl_eeprom_params { | |||
| 207 | * @rx_with_siso_diversity: 1x1 device with rx antenna diversity | 207 | * @rx_with_siso_diversity: 1x1 device with rx antenna diversity |
| 208 | * @internal_wimax_coex: internal wifi/wimax combo device | 208 | * @internal_wimax_coex: internal wifi/wimax combo device |
| 209 | * @high_temp: Is this NIC is designated to be in high temperature. | 209 | * @high_temp: Is this NIC is designated to be in high temperature. |
| 210 | * @host_interrupt_operation_mode: device needs host interrupt operation | ||
| 211 | * mode set | ||
| 210 | * | 212 | * |
| 211 | * We enable the driver to be backward compatible wrt. hardware features. | 213 | * We enable the driver to be backward compatible wrt. hardware features. |
| 212 | * API differences in uCode shouldn't be handled here but through TLVs | 214 | * API differences in uCode shouldn't be handled here but through TLVs |
| @@ -235,6 +237,7 @@ struct iwl_cfg { | |||
| 235 | enum iwl_led_mode led_mode; | 237 | enum iwl_led_mode led_mode; |
| 236 | const bool rx_with_siso_diversity; | 238 | const bool rx_with_siso_diversity; |
| 237 | const bool internal_wimax_coex; | 239 | const bool internal_wimax_coex; |
| 240 | const bool host_interrupt_operation_mode; | ||
| 238 | bool high_temp; | 241 | bool high_temp; |
| 239 | }; | 242 | }; |
| 240 | 243 | ||
| @@ -294,6 +297,8 @@ extern const struct iwl_cfg iwl3160_2ac_cfg; | |||
| 294 | extern const struct iwl_cfg iwl3160_2n_cfg; | 297 | extern const struct iwl_cfg iwl3160_2n_cfg; |
| 295 | extern const struct iwl_cfg iwl3160_n_cfg; | 298 | extern const struct iwl_cfg iwl3160_n_cfg; |
| 296 | extern const struct iwl_cfg iwl7265_2ac_cfg; | 299 | extern const struct iwl_cfg iwl7265_2ac_cfg; |
| 300 | extern const struct iwl_cfg iwl7265_2n_cfg; | ||
| 301 | extern const struct iwl_cfg iwl7265_n_cfg; | ||
| 297 | #endif /* CONFIG_IWLMVM */ | 302 | #endif /* CONFIG_IWLMVM */ |
| 298 | 303 | ||
| 299 | #endif /* __IWL_CONFIG_H__ */ | 304 | #endif /* __IWL_CONFIG_H__ */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-csr.h b/drivers/net/wireless/iwlwifi/iwl-csr.h index 54a4fdc631b7..da4eca8b3007 100644 --- a/drivers/net/wireless/iwlwifi/iwl-csr.h +++ b/drivers/net/wireless/iwlwifi/iwl-csr.h | |||
| @@ -495,14 +495,11 @@ enum secure_load_status_reg { | |||
| 495 | * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit | 495 | * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit |
| 496 | * | 496 | * |
| 497 | * default interrupt coalescing timer is 64 x 32 = 2048 usecs | 497 | * default interrupt coalescing timer is 64 x 32 = 2048 usecs |
| 498 | * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs | ||
| 499 | */ | 498 | */ |
| 500 | #define IWL_HOST_INT_TIMEOUT_MAX (0xFF) | 499 | #define IWL_HOST_INT_TIMEOUT_MAX (0xFF) |
| 501 | #define IWL_HOST_INT_TIMEOUT_DEF (0x40) | 500 | #define IWL_HOST_INT_TIMEOUT_DEF (0x40) |
| 502 | #define IWL_HOST_INT_TIMEOUT_MIN (0x0) | 501 | #define IWL_HOST_INT_TIMEOUT_MIN (0x0) |
| 503 | #define IWL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF) | 502 | #define IWL_HOST_INT_OPER_MODE BIT(31) |
| 504 | #define IWL_HOST_INT_CALIB_TIMEOUT_DEF (0x10) | ||
| 505 | #define IWL_HOST_INT_CALIB_TIMEOUT_MIN (0x0) | ||
| 506 | 503 | ||
| 507 | /***************************************************************************** | 504 | /***************************************************************************** |
| 508 | * 7000/3000 series SHR DTS addresses * | 505 | * 7000/3000 series SHR DTS addresses * |
diff --git a/drivers/net/wireless/iwlwifi/mvm/bt-coex.c b/drivers/net/wireless/iwlwifi/mvm/bt-coex.c index 5d066cbc5ac7..75b72a956552 100644 --- a/drivers/net/wireless/iwlwifi/mvm/bt-coex.c +++ b/drivers/net/wireless/iwlwifi/mvm/bt-coex.c | |||
| @@ -391,7 +391,6 @@ int iwl_send_bt_init_conf(struct iwl_mvm *mvm) | |||
| 391 | BT_VALID_LUT | | 391 | BT_VALID_LUT | |
| 392 | BT_VALID_WIFI_RX_SW_PRIO_BOOST | | 392 | BT_VALID_WIFI_RX_SW_PRIO_BOOST | |
| 393 | BT_VALID_WIFI_TX_SW_PRIO_BOOST | | 393 | BT_VALID_WIFI_TX_SW_PRIO_BOOST | |
| 394 | BT_VALID_MULTI_PRIO_LUT | | ||
| 395 | BT_VALID_CORUN_LUT_20 | | 394 | BT_VALID_CORUN_LUT_20 | |
| 396 | BT_VALID_CORUN_LUT_40 | | 395 | BT_VALID_CORUN_LUT_40 | |
| 397 | BT_VALID_ANT_ISOLATION | | 396 | BT_VALID_ANT_ISOLATION | |
| @@ -842,6 +841,11 @@ static void iwl_mvm_bt_rssi_iterator(void *_data, u8 *mac, | |||
| 842 | 841 | ||
| 843 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], | 842 | sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], |
| 844 | lockdep_is_held(&mvm->mutex)); | 843 | lockdep_is_held(&mvm->mutex)); |
| 844 | |||
| 845 | /* This can happen if the station has been removed right now */ | ||
| 846 | if (IS_ERR_OR_NULL(sta)) | ||
| 847 | return; | ||
| 848 | |||
| 845 | mvmsta = (void *)sta->drv_priv; | 849 | mvmsta = (void *)sta->drv_priv; |
| 846 | 850 | ||
| 847 | data->num_bss_ifaces++; | 851 | data->num_bss_ifaces++; |
diff --git a/drivers/net/wireless/iwlwifi/mvm/d3.c b/drivers/net/wireless/iwlwifi/mvm/d3.c index 6f45966817bb..b9b81e881dd0 100644 --- a/drivers/net/wireless/iwlwifi/mvm/d3.c +++ b/drivers/net/wireless/iwlwifi/mvm/d3.c | |||
| @@ -895,7 +895,7 @@ static int iwl_mvm_get_last_nonqos_seq(struct iwl_mvm *mvm, | |||
| 895 | /* new API returns next, not last-used seqno */ | 895 | /* new API returns next, not last-used seqno */ |
| 896 | if (mvm->fw->ucode_capa.flags & | 896 | if (mvm->fw->ucode_capa.flags & |
| 897 | IWL_UCODE_TLV_FLAGS_D3_CONTINUITY_API) | 897 | IWL_UCODE_TLV_FLAGS_D3_CONTINUITY_API) |
| 898 | err -= 0x10; | 898 | err = (u16) (err - 0x10); |
| 899 | } | 899 | } |
| 900 | 900 | ||
| 901 | iwl_free_resp(&cmd); | 901 | iwl_free_resp(&cmd); |
| @@ -1549,7 +1549,7 @@ static bool iwl_mvm_setup_connection_keep(struct iwl_mvm *mvm, | |||
| 1549 | if (gtkdata.unhandled_cipher) | 1549 | if (gtkdata.unhandled_cipher) |
| 1550 | return false; | 1550 | return false; |
| 1551 | if (!gtkdata.num_keys) | 1551 | if (!gtkdata.num_keys) |
| 1552 | return true; | 1552 | goto out; |
| 1553 | if (!gtkdata.last_gtk) | 1553 | if (!gtkdata.last_gtk) |
| 1554 | return false; | 1554 | return false; |
| 1555 | 1555 | ||
| @@ -1600,6 +1600,7 @@ static bool iwl_mvm_setup_connection_keep(struct iwl_mvm *mvm, | |||
| 1600 | (void *)&replay_ctr, GFP_KERNEL); | 1600 | (void *)&replay_ctr, GFP_KERNEL); |
| 1601 | } | 1601 | } |
| 1602 | 1602 | ||
| 1603 | out: | ||
| 1603 | mvmvif->seqno_valid = true; | 1604 | mvmvif->seqno_valid = true; |
| 1604 | /* +0x10 because the set API expects next-to-use, not last-used */ | 1605 | /* +0x10 because the set API expects next-to-use, not last-used */ |
| 1605 | mvmvif->seqno = le16_to_cpu(status->non_qos_seq_ctr) + 0x10; | 1606 | mvmvif->seqno = le16_to_cpu(status->non_qos_seq_ctr) + 0x10; |
diff --git a/drivers/net/wireless/iwlwifi/mvm/debugfs.c b/drivers/net/wireless/iwlwifi/mvm/debugfs.c index 9864d713eb2c..a8fe6b41f9a3 100644 --- a/drivers/net/wireless/iwlwifi/mvm/debugfs.c +++ b/drivers/net/wireless/iwlwifi/mvm/debugfs.c | |||
| @@ -119,6 +119,10 @@ static ssize_t iwl_dbgfs_sta_drain_write(struct file *file, | |||
| 119 | 119 | ||
| 120 | if (sscanf(buf, "%d %d", &sta_id, &drain) != 2) | 120 | if (sscanf(buf, "%d %d", &sta_id, &drain) != 2) |
| 121 | return -EINVAL; | 121 | return -EINVAL; |
| 122 | if (sta_id < 0 || sta_id >= IWL_MVM_STATION_COUNT) | ||
| 123 | return -EINVAL; | ||
| 124 | if (drain < 0 || drain > 1) | ||
| 125 | return -EINVAL; | ||
| 122 | 126 | ||
| 123 | mutex_lock(&mvm->mutex); | 127 | mutex_lock(&mvm->mutex); |
| 124 | 128 | ||
diff --git a/drivers/net/wireless/iwlwifi/mvm/time-event.c b/drivers/net/wireless/iwlwifi/mvm/time-event.c index 33cf56fdfc41..95ce4b601fef 100644 --- a/drivers/net/wireless/iwlwifi/mvm/time-event.c +++ b/drivers/net/wireless/iwlwifi/mvm/time-event.c | |||
| @@ -176,8 +176,11 @@ static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm, | |||
| 176 | * P2P Device discoveribility, while there are other higher priority | 176 | * P2P Device discoveribility, while there are other higher priority |
| 177 | * events in the system). | 177 | * events in the system). |
| 178 | */ | 178 | */ |
| 179 | if (WARN_ONCE(!le32_to_cpu(notif->status), | 179 | if (!le32_to_cpu(notif->status)) { |
| 180 | "Failed to schedule time event\n")) { | 180 | bool start = le32_to_cpu(notif->action) & |
| 181 | TE_V2_NOTIF_HOST_EVENT_START; | ||
| 182 | IWL_WARN(mvm, "Time Event %s notification failure\n", | ||
| 183 | start ? "start" : "end"); | ||
| 181 | if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, NULL)) { | 184 | if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, NULL)) { |
| 182 | iwl_mvm_te_clear_data(mvm, te_data); | 185 | iwl_mvm_te_clear_data(mvm, te_data); |
| 183 | return; | 186 | return; |
diff --git a/drivers/net/wireless/iwlwifi/pcie/drv.c b/drivers/net/wireless/iwlwifi/pcie/drv.c index 941c0c88f982..86605027c41d 100644 --- a/drivers/net/wireless/iwlwifi/pcie/drv.c +++ b/drivers/net/wireless/iwlwifi/pcie/drv.c | |||
| @@ -353,6 +353,27 @@ static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = { | |||
| 353 | 353 | ||
| 354 | /* 7265 Series */ | 354 | /* 7265 Series */ |
| 355 | {IWL_PCI_DEVICE(0x095A, 0x5010, iwl7265_2ac_cfg)}, | 355 | {IWL_PCI_DEVICE(0x095A, 0x5010, iwl7265_2ac_cfg)}, |
| 356 | {IWL_PCI_DEVICE(0x095A, 0x5110, iwl7265_2ac_cfg)}, | ||
| 357 | {IWL_PCI_DEVICE(0x095B, 0x5310, iwl7265_2ac_cfg)}, | ||
| 358 | {IWL_PCI_DEVICE(0x095B, 0x5302, iwl7265_2ac_cfg)}, | ||
| 359 | {IWL_PCI_DEVICE(0x095B, 0x5210, iwl7265_2ac_cfg)}, | ||
| 360 | {IWL_PCI_DEVICE(0x095B, 0x5012, iwl7265_2ac_cfg)}, | ||
| 361 | {IWL_PCI_DEVICE(0x095B, 0x500A, iwl7265_2ac_cfg)}, | ||
| 362 | {IWL_PCI_DEVICE(0x095A, 0x5410, iwl7265_2ac_cfg)}, | ||
| 363 | {IWL_PCI_DEVICE(0x095A, 0x1010, iwl7265_2ac_cfg)}, | ||
| 364 | {IWL_PCI_DEVICE(0x095A, 0x5000, iwl7265_2n_cfg)}, | ||
| 365 | {IWL_PCI_DEVICE(0x095B, 0x5200, iwl7265_2n_cfg)}, | ||
| 366 | {IWL_PCI_DEVICE(0x095A, 0x5002, iwl7265_n_cfg)}, | ||
| 367 | {IWL_PCI_DEVICE(0x095B, 0x5202, iwl7265_n_cfg)}, | ||
| 368 | {IWL_PCI_DEVICE(0x095A, 0x9010, iwl7265_2ac_cfg)}, | ||
| 369 | {IWL_PCI_DEVICE(0x095A, 0x9210, iwl7265_2ac_cfg)}, | ||
| 370 | {IWL_PCI_DEVICE(0x095A, 0x9410, iwl7265_2ac_cfg)}, | ||
| 371 | {IWL_PCI_DEVICE(0x095A, 0x5020, iwl7265_2n_cfg)}, | ||
| 372 | {IWL_PCI_DEVICE(0x095A, 0x502A, iwl7265_2n_cfg)}, | ||
| 373 | {IWL_PCI_DEVICE(0x095A, 0x5420, iwl7265_2n_cfg)}, | ||
| 374 | {IWL_PCI_DEVICE(0x095A, 0x5090, iwl7265_2ac_cfg)}, | ||
| 375 | {IWL_PCI_DEVICE(0x095B, 0x5290, iwl7265_2ac_cfg)}, | ||
| 376 | {IWL_PCI_DEVICE(0x095A, 0x5490, iwl7265_2ac_cfg)}, | ||
| 356 | #endif /* CONFIG_IWLMVM */ | 377 | #endif /* CONFIG_IWLMVM */ |
| 357 | 378 | ||
| 358 | {0} | 379 | {0} |
diff --git a/drivers/net/wireless/iwlwifi/pcie/internal.h b/drivers/net/wireless/iwlwifi/pcie/internal.h index fa22639b63c9..051268c037b1 100644 --- a/drivers/net/wireless/iwlwifi/pcie/internal.h +++ b/drivers/net/wireless/iwlwifi/pcie/internal.h | |||
| @@ -477,4 +477,12 @@ static inline bool iwl_is_rfkill_set(struct iwl_trans *trans) | |||
| 477 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW); | 477 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW); |
| 478 | } | 478 | } |
| 479 | 479 | ||
| 480 | static inline void iwl_nic_error(struct iwl_trans *trans) | ||
| 481 | { | ||
| 482 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | ||
| 483 | |||
| 484 | set_bit(STATUS_FW_ERROR, &trans_pcie->status); | ||
| 485 | iwl_op_mode_nic_error(trans->op_mode); | ||
| 486 | } | ||
| 487 | |||
| 480 | #endif /* __iwl_trans_int_pcie_h__ */ | 488 | #endif /* __iwl_trans_int_pcie_h__ */ |
diff --git a/drivers/net/wireless/iwlwifi/pcie/rx.c b/drivers/net/wireless/iwlwifi/pcie/rx.c index 3f237b42eb36..be3995afa9d0 100644 --- a/drivers/net/wireless/iwlwifi/pcie/rx.c +++ b/drivers/net/wireless/iwlwifi/pcie/rx.c | |||
| @@ -489,6 +489,10 @@ static void iwl_pcie_rx_hw_init(struct iwl_trans *trans, struct iwl_rxq *rxq) | |||
| 489 | 489 | ||
| 490 | /* Set interrupt coalescing timer to default (2048 usecs) */ | 490 | /* Set interrupt coalescing timer to default (2048 usecs) */ |
| 491 | iwl_write8(trans, CSR_INT_COALESCING, IWL_HOST_INT_TIMEOUT_DEF); | 491 | iwl_write8(trans, CSR_INT_COALESCING, IWL_HOST_INT_TIMEOUT_DEF); |
| 492 | |||
| 493 | /* W/A for interrupt coalescing bug in 7260 and 3160 */ | ||
| 494 | if (trans->cfg->host_interrupt_operation_mode) | ||
| 495 | iwl_set_bit(trans, CSR_INT_COALESCING, IWL_HOST_INT_OPER_MODE); | ||
| 492 | } | 496 | } |
| 493 | 497 | ||
| 494 | static void iwl_pcie_rx_init_rxb_lists(struct iwl_rxq *rxq) | 498 | static void iwl_pcie_rx_init_rxb_lists(struct iwl_rxq *rxq) |
| @@ -796,12 +800,13 @@ static void iwl_pcie_irq_handle_error(struct iwl_trans *trans) | |||
| 796 | iwl_pcie_dump_csr(trans); | 800 | iwl_pcie_dump_csr(trans); |
| 797 | iwl_dump_fh(trans, NULL); | 801 | iwl_dump_fh(trans, NULL); |
| 798 | 802 | ||
| 803 | /* set the ERROR bit before we wake up the caller */ | ||
| 799 | set_bit(STATUS_FW_ERROR, &trans_pcie->status); | 804 | set_bit(STATUS_FW_ERROR, &trans_pcie->status); |
| 800 | clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status); | 805 | clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status); |
| 801 | wake_up(&trans_pcie->wait_command_queue); | 806 | wake_up(&trans_pcie->wait_command_queue); |
| 802 | 807 | ||
| 803 | local_bh_disable(); | 808 | local_bh_disable(); |
| 804 | iwl_op_mode_nic_error(trans->op_mode); | 809 | iwl_nic_error(trans); |
| 805 | local_bh_enable(); | 810 | local_bh_enable(); |
| 806 | } | 811 | } |
| 807 | 812 | ||
diff --git a/drivers/net/wireless/iwlwifi/pcie/trans.c b/drivers/net/wireless/iwlwifi/pcie/trans.c index 5d9337bec67a..cde9c16f6e4f 100644 --- a/drivers/net/wireless/iwlwifi/pcie/trans.c +++ b/drivers/net/wireless/iwlwifi/pcie/trans.c | |||
| @@ -279,9 +279,6 @@ static int iwl_pcie_nic_init(struct iwl_trans *trans) | |||
| 279 | spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 279 | spin_lock_irqsave(&trans_pcie->irq_lock, flags); |
| 280 | iwl_pcie_apm_init(trans); | 280 | iwl_pcie_apm_init(trans); |
| 281 | 281 | ||
| 282 | /* Set interrupt coalescing calibration timer to default (512 usecs) */ | ||
| 283 | iwl_write8(trans, CSR_INT_COALESCING, IWL_HOST_INT_CALIB_TIMEOUT_DEF); | ||
| 284 | |||
| 285 | spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 282 | spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); |
| 286 | 283 | ||
| 287 | iwl_pcie_set_pwr(trans, false); | 284 | iwl_pcie_set_pwr(trans, false); |
diff --git a/drivers/net/wireless/iwlwifi/pcie/tx.c b/drivers/net/wireless/iwlwifi/pcie/tx.c index 059c5acad3a0..0adde919a258 100644 --- a/drivers/net/wireless/iwlwifi/pcie/tx.c +++ b/drivers/net/wireless/iwlwifi/pcie/tx.c | |||
| @@ -207,7 +207,7 @@ static void iwl_pcie_txq_stuck_timer(unsigned long data) | |||
| 207 | IWL_ERR(trans, "scratch %d = 0x%08x\n", i, | 207 | IWL_ERR(trans, "scratch %d = 0x%08x\n", i, |
| 208 | le32_to_cpu(txq->scratchbufs[i].scratch)); | 208 | le32_to_cpu(txq->scratchbufs[i].scratch)); |
| 209 | 209 | ||
| 210 | iwl_op_mode_nic_error(trans->op_mode); | 210 | iwl_nic_error(trans); |
| 211 | } | 211 | } |
| 212 | 212 | ||
| 213 | /* | 213 | /* |
| @@ -1023,7 +1023,7 @@ static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx) | |||
| 1023 | if (nfreed++ > 0) { | 1023 | if (nfreed++ > 0) { |
| 1024 | IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n", | 1024 | IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n", |
| 1025 | idx, q->write_ptr, q->read_ptr); | 1025 | idx, q->write_ptr, q->read_ptr); |
| 1026 | iwl_op_mode_nic_error(trans->op_mode); | 1026 | iwl_nic_error(trans); |
| 1027 | } | 1027 | } |
| 1028 | } | 1028 | } |
| 1029 | 1029 | ||
| @@ -1562,7 +1562,7 @@ static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans, | |||
| 1562 | get_cmd_string(trans_pcie, cmd->id)); | 1562 | get_cmd_string(trans_pcie, cmd->id)); |
| 1563 | ret = -ETIMEDOUT; | 1563 | ret = -ETIMEDOUT; |
| 1564 | 1564 | ||
| 1565 | iwl_op_mode_nic_error(trans->op_mode); | 1565 | iwl_nic_error(trans); |
| 1566 | 1566 | ||
| 1567 | goto cancel; | 1567 | goto cancel; |
| 1568 | } | 1568 | } |
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index 9df7bc91a26f..c72438bb2faf 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c | |||
| @@ -383,6 +383,14 @@ struct hwsim_radiotap_hdr { | |||
| 383 | __le16 rt_chbitmask; | 383 | __le16 rt_chbitmask; |
| 384 | } __packed; | 384 | } __packed; |
| 385 | 385 | ||
| 386 | struct hwsim_radiotap_ack_hdr { | ||
| 387 | struct ieee80211_radiotap_header hdr; | ||
| 388 | u8 rt_flags; | ||
| 389 | u8 pad; | ||
| 390 | __le16 rt_channel; | ||
| 391 | __le16 rt_chbitmask; | ||
| 392 | } __packed; | ||
| 393 | |||
| 386 | /* MAC80211_HWSIM netlinf family */ | 394 | /* MAC80211_HWSIM netlinf family */ |
| 387 | static struct genl_family hwsim_genl_family = { | 395 | static struct genl_family hwsim_genl_family = { |
| 388 | .id = GENL_ID_GENERATE, | 396 | .id = GENL_ID_GENERATE, |
| @@ -500,7 +508,7 @@ static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan, | |||
| 500 | const u8 *addr) | 508 | const u8 *addr) |
| 501 | { | 509 | { |
| 502 | struct sk_buff *skb; | 510 | struct sk_buff *skb; |
| 503 | struct hwsim_radiotap_hdr *hdr; | 511 | struct hwsim_radiotap_ack_hdr *hdr; |
| 504 | u16 flags; | 512 | u16 flags; |
| 505 | struct ieee80211_hdr *hdr11; | 513 | struct ieee80211_hdr *hdr11; |
| 506 | 514 | ||
| @@ -511,14 +519,14 @@ static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan, | |||
| 511 | if (skb == NULL) | 519 | if (skb == NULL) |
| 512 | return; | 520 | return; |
| 513 | 521 | ||
| 514 | hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr)); | 522 | hdr = (struct hwsim_radiotap_ack_hdr *) skb_put(skb, sizeof(*hdr)); |
| 515 | hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION; | 523 | hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION; |
| 516 | hdr->hdr.it_pad = 0; | 524 | hdr->hdr.it_pad = 0; |
| 517 | hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr)); | 525 | hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr)); |
| 518 | hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) | | 526 | hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) | |
| 519 | (1 << IEEE80211_RADIOTAP_CHANNEL)); | 527 | (1 << IEEE80211_RADIOTAP_CHANNEL)); |
| 520 | hdr->rt_flags = 0; | 528 | hdr->rt_flags = 0; |
| 521 | hdr->rt_rate = 0; | 529 | hdr->pad = 0; |
| 522 | hdr->rt_channel = cpu_to_le16(chan->center_freq); | 530 | hdr->rt_channel = cpu_to_le16(chan->center_freq); |
| 523 | flags = IEEE80211_CHAN_2GHZ; | 531 | flags = IEEE80211_CHAN_2GHZ; |
| 524 | hdr->rt_chbitmask = cpu_to_le16(flags); | 532 | hdr->rt_chbitmask = cpu_to_le16(flags); |
| @@ -1230,7 +1238,7 @@ static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw, | |||
| 1230 | HRTIMER_MODE_REL); | 1238 | HRTIMER_MODE_REL); |
| 1231 | } else if (!info->enable_beacon) { | 1239 | } else if (!info->enable_beacon) { |
| 1232 | unsigned int count = 0; | 1240 | unsigned int count = 0; |
| 1233 | ieee80211_iterate_active_interfaces( | 1241 | ieee80211_iterate_active_interfaces_atomic( |
| 1234 | data->hw, IEEE80211_IFACE_ITER_NORMAL, | 1242 | data->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1235 | mac80211_hwsim_bcn_en_iter, &count); | 1243 | mac80211_hwsim_bcn_en_iter, &count); |
| 1236 | wiphy_debug(hw->wiphy, " beaconing vifs remaining: %u", | 1244 | wiphy_debug(hw->wiphy, " beaconing vifs remaining: %u", |
diff --git a/drivers/net/wireless/mwifiex/cfg80211.c b/drivers/net/wireless/mwifiex/cfg80211.c index fbad00a5abc8..aeaea0e3b4c4 100644 --- a/drivers/net/wireless/mwifiex/cfg80211.c +++ b/drivers/net/wireless/mwifiex/cfg80211.c | |||
| @@ -2210,8 +2210,10 @@ struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy, | |||
| 2210 | priv->bss_started = 0; | 2210 | priv->bss_started = 0; |
| 2211 | priv->bss_num = 0; | 2211 | priv->bss_num = 0; |
| 2212 | 2212 | ||
| 2213 | if (mwifiex_cfg80211_init_p2p_client(priv)) | 2213 | if (mwifiex_cfg80211_init_p2p_client(priv)) { |
| 2214 | return ERR_PTR(-EFAULT); | 2214 | wdev = ERR_PTR(-EFAULT); |
| 2215 | goto done; | ||
| 2216 | } | ||
| 2215 | 2217 | ||
| 2216 | break; | 2218 | break; |
| 2217 | default: | 2219 | default: |
| @@ -2224,7 +2226,8 @@ struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy, | |||
| 2224 | if (!dev) { | 2226 | if (!dev) { |
| 2225 | wiphy_err(wiphy, "no memory available for netdevice\n"); | 2227 | wiphy_err(wiphy, "no memory available for netdevice\n"); |
| 2226 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; | 2228 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; |
| 2227 | return ERR_PTR(-ENOMEM); | 2229 | wdev = ERR_PTR(-ENOMEM); |
| 2230 | goto done; | ||
| 2228 | } | 2231 | } |
| 2229 | 2232 | ||
| 2230 | mwifiex_init_priv_params(priv, dev); | 2233 | mwifiex_init_priv_params(priv, dev); |
| @@ -2264,7 +2267,9 @@ struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy, | |||
| 2264 | wiphy_err(wiphy, "cannot register virtual network device\n"); | 2267 | wiphy_err(wiphy, "cannot register virtual network device\n"); |
| 2265 | free_netdev(dev); | 2268 | free_netdev(dev); |
| 2266 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; | 2269 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; |
| 2267 | return ERR_PTR(-EFAULT); | 2270 | priv->netdev = NULL; |
| 2271 | wdev = ERR_PTR(-EFAULT); | ||
| 2272 | goto done; | ||
| 2268 | } | 2273 | } |
| 2269 | 2274 | ||
| 2270 | sema_init(&priv->async_sem, 1); | 2275 | sema_init(&priv->async_sem, 1); |
| @@ -2274,6 +2279,13 @@ struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy, | |||
| 2274 | #ifdef CONFIG_DEBUG_FS | 2279 | #ifdef CONFIG_DEBUG_FS |
| 2275 | mwifiex_dev_debugfs_init(priv); | 2280 | mwifiex_dev_debugfs_init(priv); |
| 2276 | #endif | 2281 | #endif |
| 2282 | |||
| 2283 | done: | ||
| 2284 | if (IS_ERR(wdev)) { | ||
| 2285 | kfree(priv->wdev); | ||
| 2286 | priv->wdev = NULL; | ||
| 2287 | } | ||
| 2288 | |||
| 2277 | return wdev; | 2289 | return wdev; |
| 2278 | } | 2290 | } |
| 2279 | EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf); | 2291 | EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf); |
| @@ -2298,7 +2310,10 @@ int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev) | |||
| 2298 | unregister_netdevice(wdev->netdev); | 2310 | unregister_netdevice(wdev->netdev); |
| 2299 | 2311 | ||
| 2300 | /* Clear the priv in adapter */ | 2312 | /* Clear the priv in adapter */ |
| 2313 | priv->netdev->ieee80211_ptr = NULL; | ||
| 2301 | priv->netdev = NULL; | 2314 | priv->netdev = NULL; |
| 2315 | kfree(wdev); | ||
| 2316 | priv->wdev = NULL; | ||
| 2302 | 2317 | ||
| 2303 | priv->media_connected = false; | 2318 | priv->media_connected = false; |
| 2304 | 2319 | ||
diff --git a/drivers/net/wireless/mwifiex/main.c b/drivers/net/wireless/mwifiex/main.c index 9d7c9d354d34..78e8a6666cc6 100644 --- a/drivers/net/wireless/mwifiex/main.c +++ b/drivers/net/wireless/mwifiex/main.c | |||
| @@ -411,13 +411,14 @@ static void mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter) | |||
| 411 | */ | 411 | */ |
| 412 | static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) | 412 | static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) |
| 413 | { | 413 | { |
| 414 | int ret, i; | 414 | int ret; |
| 415 | char fmt[64]; | 415 | char fmt[64]; |
| 416 | struct mwifiex_private *priv; | 416 | struct mwifiex_private *priv; |
| 417 | struct mwifiex_adapter *adapter = context; | 417 | struct mwifiex_adapter *adapter = context; |
| 418 | struct mwifiex_fw_image fw; | 418 | struct mwifiex_fw_image fw; |
| 419 | struct semaphore *sem = adapter->card_sem; | 419 | struct semaphore *sem = adapter->card_sem; |
| 420 | bool init_failed = false; | 420 | bool init_failed = false; |
| 421 | struct wireless_dev *wdev; | ||
| 421 | 422 | ||
| 422 | if (!firmware) { | 423 | if (!firmware) { |
| 423 | dev_err(adapter->dev, | 424 | dev_err(adapter->dev, |
| @@ -469,14 +470,16 @@ static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) | |||
| 469 | priv = adapter->priv[MWIFIEX_BSS_ROLE_STA]; | 470 | priv = adapter->priv[MWIFIEX_BSS_ROLE_STA]; |
| 470 | if (mwifiex_register_cfg80211(adapter)) { | 471 | if (mwifiex_register_cfg80211(adapter)) { |
| 471 | dev_err(adapter->dev, "cannot register with cfg80211\n"); | 472 | dev_err(adapter->dev, "cannot register with cfg80211\n"); |
| 472 | goto err_register_cfg80211; | 473 | goto err_init_fw; |
| 473 | } | 474 | } |
| 474 | 475 | ||
| 475 | rtnl_lock(); | 476 | rtnl_lock(); |
| 476 | /* Create station interface by default */ | 477 | /* Create station interface by default */ |
| 477 | if (!mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d", | 478 | wdev = mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d", |
| 478 | NL80211_IFTYPE_STATION, NULL, NULL)) { | 479 | NL80211_IFTYPE_STATION, NULL, NULL); |
| 480 | if (IS_ERR(wdev)) { | ||
| 479 | dev_err(adapter->dev, "cannot create default STA interface\n"); | 481 | dev_err(adapter->dev, "cannot create default STA interface\n"); |
| 482 | rtnl_unlock(); | ||
| 480 | goto err_add_intf; | 483 | goto err_add_intf; |
| 481 | } | 484 | } |
| 482 | rtnl_unlock(); | 485 | rtnl_unlock(); |
| @@ -486,17 +489,6 @@ static void mwifiex_fw_dpc(const struct firmware *firmware, void *context) | |||
| 486 | goto done; | 489 | goto done; |
| 487 | 490 | ||
| 488 | err_add_intf: | 491 | err_add_intf: |
| 489 | for (i = 0; i < adapter->priv_num; i++) { | ||
| 490 | priv = adapter->priv[i]; | ||
| 491 | |||
| 492 | if (!priv) | ||
| 493 | continue; | ||
| 494 | |||
| 495 | if (priv->wdev && priv->netdev) | ||
| 496 | mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev); | ||
| 497 | } | ||
| 498 | rtnl_unlock(); | ||
| 499 | err_register_cfg80211: | ||
| 500 | wiphy_unregister(adapter->wiphy); | 492 | wiphy_unregister(adapter->wiphy); |
| 501 | wiphy_free(adapter->wiphy); | 493 | wiphy_free(adapter->wiphy); |
| 502 | err_init_fw: | 494 | err_init_fw: |
| @@ -1006,12 +998,6 @@ int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem) | |||
| 1006 | wiphy_unregister(priv->wdev->wiphy); | 998 | wiphy_unregister(priv->wdev->wiphy); |
| 1007 | wiphy_free(priv->wdev->wiphy); | 999 | wiphy_free(priv->wdev->wiphy); |
| 1008 | 1000 | ||
| 1009 | for (i = 0; i < adapter->priv_num; i++) { | ||
| 1010 | priv = adapter->priv[i]; | ||
| 1011 | if (priv) | ||
| 1012 | kfree(priv->wdev); | ||
| 1013 | } | ||
| 1014 | |||
| 1015 | mwifiex_terminate_workqueue(adapter); | 1001 | mwifiex_terminate_workqueue(adapter); |
| 1016 | 1002 | ||
| 1017 | /* Unregister device */ | 1003 | /* Unregister device */ |
diff --git a/drivers/net/wireless/mwifiex/pcie.c b/drivers/net/wireless/mwifiex/pcie.c index 33fa9432b241..03688aa14e8a 100644 --- a/drivers/net/wireless/mwifiex/pcie.c +++ b/drivers/net/wireless/mwifiex/pcie.c | |||
| @@ -232,7 +232,6 @@ static void mwifiex_pcie_remove(struct pci_dev *pdev) | |||
| 232 | } | 232 | } |
| 233 | 233 | ||
| 234 | mwifiex_remove_card(card->adapter, &add_remove_card_sem); | 234 | mwifiex_remove_card(card->adapter, &add_remove_card_sem); |
| 235 | kfree(card); | ||
| 236 | } | 235 | } |
| 237 | 236 | ||
| 238 | static void mwifiex_pcie_shutdown(struct pci_dev *pdev) | 237 | static void mwifiex_pcie_shutdown(struct pci_dev *pdev) |
| @@ -2313,6 +2312,7 @@ static void mwifiex_pcie_cleanup(struct mwifiex_adapter *adapter) | |||
| 2313 | pci_release_region(pdev, 0); | 2312 | pci_release_region(pdev, 0); |
| 2314 | pci_set_drvdata(pdev, NULL); | 2313 | pci_set_drvdata(pdev, NULL); |
| 2315 | } | 2314 | } |
| 2315 | kfree(card); | ||
| 2316 | } | 2316 | } |
| 2317 | 2317 | ||
| 2318 | /* | 2318 | /* |
diff --git a/drivers/net/wireless/mwifiex/sdio.c b/drivers/net/wireless/mwifiex/sdio.c index 9bf8898743ab..b44a31523461 100644 --- a/drivers/net/wireless/mwifiex/sdio.c +++ b/drivers/net/wireless/mwifiex/sdio.c | |||
| @@ -196,7 +196,6 @@ mwifiex_sdio_remove(struct sdio_func *func) | |||
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | mwifiex_remove_card(card->adapter, &add_remove_card_sem); | 198 | mwifiex_remove_card(card->adapter, &add_remove_card_sem); |
| 199 | kfree(card); | ||
| 200 | } | 199 | } |
| 201 | 200 | ||
| 202 | /* | 201 | /* |
| @@ -1745,7 +1744,6 @@ mwifiex_unregister_dev(struct mwifiex_adapter *adapter) | |||
| 1745 | sdio_claim_host(card->func); | 1744 | sdio_claim_host(card->func); |
| 1746 | sdio_disable_func(card->func); | 1745 | sdio_disable_func(card->func); |
| 1747 | sdio_release_host(card->func); | 1746 | sdio_release_host(card->func); |
| 1748 | sdio_set_drvdata(card->func, NULL); | ||
| 1749 | } | 1747 | } |
| 1750 | } | 1748 | } |
| 1751 | 1749 | ||
| @@ -1773,7 +1771,6 @@ static int mwifiex_register_dev(struct mwifiex_adapter *adapter) | |||
| 1773 | return ret; | 1771 | return ret; |
| 1774 | } | 1772 | } |
| 1775 | 1773 | ||
| 1776 | sdio_set_drvdata(func, card); | ||
| 1777 | 1774 | ||
| 1778 | adapter->dev = &func->dev; | 1775 | adapter->dev = &func->dev; |
| 1779 | 1776 | ||
| @@ -1801,6 +1798,8 @@ static int mwifiex_init_sdio(struct mwifiex_adapter *adapter) | |||
| 1801 | int ret; | 1798 | int ret; |
| 1802 | u8 sdio_ireg; | 1799 | u8 sdio_ireg; |
| 1803 | 1800 | ||
| 1801 | sdio_set_drvdata(card->func, card); | ||
| 1802 | |||
| 1804 | /* | 1803 | /* |
| 1805 | * Read the HOST_INT_STATUS_REG for ACK the first interrupt got | 1804 | * Read the HOST_INT_STATUS_REG for ACK the first interrupt got |
| 1806 | * from the bootloader. If we don't do this we get a interrupt | 1805 | * from the bootloader. If we don't do this we get a interrupt |
| @@ -1883,6 +1882,8 @@ static void mwifiex_cleanup_sdio(struct mwifiex_adapter *adapter) | |||
| 1883 | kfree(card->mpa_rx.len_arr); | 1882 | kfree(card->mpa_rx.len_arr); |
| 1884 | kfree(card->mpa_tx.buf); | 1883 | kfree(card->mpa_tx.buf); |
| 1885 | kfree(card->mpa_rx.buf); | 1884 | kfree(card->mpa_rx.buf); |
| 1885 | sdio_set_drvdata(card->func, NULL); | ||
| 1886 | kfree(card); | ||
| 1886 | } | 1887 | } |
| 1887 | 1888 | ||
| 1888 | /* | 1889 | /* |
diff --git a/drivers/net/wireless/mwifiex/sta_ioctl.c b/drivers/net/wireless/mwifiex/sta_ioctl.c index c8e029df770e..a09398fe9e2a 100644 --- a/drivers/net/wireless/mwifiex/sta_ioctl.c +++ b/drivers/net/wireless/mwifiex/sta_ioctl.c | |||
| @@ -319,8 +319,8 @@ int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss, | |||
| 319 | if (bss_desc && bss_desc->ssid.ssid_len && | 319 | if (bss_desc && bss_desc->ssid.ssid_len && |
| 320 | (!mwifiex_ssid_cmp(&priv->curr_bss_params.bss_descriptor. | 320 | (!mwifiex_ssid_cmp(&priv->curr_bss_params.bss_descriptor. |
| 321 | ssid, &bss_desc->ssid))) { | 321 | ssid, &bss_desc->ssid))) { |
| 322 | kfree(bss_desc); | 322 | ret = 0; |
| 323 | return 0; | 323 | goto done; |
| 324 | } | 324 | } |
| 325 | 325 | ||
| 326 | /* Exit Adhoc mode first */ | 326 | /* Exit Adhoc mode first */ |
diff --git a/drivers/net/wireless/mwifiex/usb.c b/drivers/net/wireless/mwifiex/usb.c index 1c70b8d09227..edf5b7a24900 100644 --- a/drivers/net/wireless/mwifiex/usb.c +++ b/drivers/net/wireless/mwifiex/usb.c | |||
| @@ -350,7 +350,6 @@ static int mwifiex_usb_probe(struct usb_interface *intf, | |||
| 350 | 350 | ||
| 351 | card->udev = udev; | 351 | card->udev = udev; |
| 352 | card->intf = intf; | 352 | card->intf = intf; |
| 353 | usb_card = card; | ||
| 354 | 353 | ||
| 355 | pr_debug("info: bcdUSB=%#x Device Class=%#x SubClass=%#x Protocol=%#x\n", | 354 | pr_debug("info: bcdUSB=%#x Device Class=%#x SubClass=%#x Protocol=%#x\n", |
| 356 | udev->descriptor.bcdUSB, udev->descriptor.bDeviceClass, | 355 | udev->descriptor.bcdUSB, udev->descriptor.bDeviceClass, |
| @@ -525,25 +524,28 @@ static int mwifiex_usb_resume(struct usb_interface *intf) | |||
| 525 | static void mwifiex_usb_disconnect(struct usb_interface *intf) | 524 | static void mwifiex_usb_disconnect(struct usb_interface *intf) |
| 526 | { | 525 | { |
| 527 | struct usb_card_rec *card = usb_get_intfdata(intf); | 526 | struct usb_card_rec *card = usb_get_intfdata(intf); |
| 528 | struct mwifiex_adapter *adapter; | ||
| 529 | 527 | ||
| 530 | if (!card || !card->adapter) { | 528 | if (!card) { |
| 531 | pr_err("%s: card or card->adapter is NULL\n", __func__); | 529 | pr_err("%s: card is NULL\n", __func__); |
| 532 | return; | 530 | return; |
| 533 | } | 531 | } |
| 534 | 532 | ||
| 535 | adapter = card->adapter; | ||
| 536 | if (!adapter->priv_num) | ||
| 537 | return; | ||
| 538 | |||
| 539 | mwifiex_usb_free(card); | 533 | mwifiex_usb_free(card); |
| 540 | 534 | ||
| 541 | dev_dbg(adapter->dev, "%s: removing card\n", __func__); | 535 | if (card->adapter) { |
| 542 | mwifiex_remove_card(adapter, &add_remove_card_sem); | 536 | struct mwifiex_adapter *adapter = card->adapter; |
| 537 | |||
| 538 | if (!adapter->priv_num) | ||
| 539 | return; | ||
| 540 | |||
| 541 | dev_dbg(adapter->dev, "%s: removing card\n", __func__); | ||
| 542 | mwifiex_remove_card(adapter, &add_remove_card_sem); | ||
| 543 | } | ||
| 543 | 544 | ||
| 544 | usb_set_intfdata(intf, NULL); | 545 | usb_set_intfdata(intf, NULL); |
| 545 | usb_put_dev(interface_to_usbdev(intf)); | 546 | usb_put_dev(interface_to_usbdev(intf)); |
| 546 | kfree(card); | 547 | kfree(card); |
| 548 | usb_card = NULL; | ||
| 547 | 549 | ||
| 548 | return; | 550 | return; |
| 549 | } | 551 | } |
| @@ -754,6 +756,7 @@ static int mwifiex_register_dev(struct mwifiex_adapter *adapter) | |||
| 754 | card->adapter = adapter; | 756 | card->adapter = adapter; |
| 755 | adapter->dev = &card->udev->dev; | 757 | adapter->dev = &card->udev->dev; |
| 756 | strcpy(adapter->fw_name, USB8797_DEFAULT_FW_NAME); | 758 | strcpy(adapter->fw_name, USB8797_DEFAULT_FW_NAME); |
| 759 | usb_card = card; | ||
| 757 | 760 | ||
| 758 | return 0; | 761 | return 0; |
| 759 | } | 762 | } |
| @@ -762,7 +765,7 @@ static void mwifiex_unregister_dev(struct mwifiex_adapter *adapter) | |||
| 762 | { | 765 | { |
| 763 | struct usb_card_rec *card = (struct usb_card_rec *)adapter->card; | 766 | struct usb_card_rec *card = (struct usb_card_rec *)adapter->card; |
| 764 | 767 | ||
| 765 | usb_set_intfdata(card->intf, NULL); | 768 | card->adapter = NULL; |
| 766 | } | 769 | } |
| 767 | 770 | ||
| 768 | static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter, | 771 | static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter, |
| @@ -1004,7 +1007,7 @@ static void mwifiex_usb_cleanup_module(void) | |||
| 1004 | if (!down_interruptible(&add_remove_card_sem)) | 1007 | if (!down_interruptible(&add_remove_card_sem)) |
| 1005 | up(&add_remove_card_sem); | 1008 | up(&add_remove_card_sem); |
| 1006 | 1009 | ||
| 1007 | if (usb_card) { | 1010 | if (usb_card && usb_card->adapter) { |
| 1008 | struct mwifiex_adapter *adapter = usb_card->adapter; | 1011 | struct mwifiex_adapter *adapter = usb_card->adapter; |
| 1009 | int i; | 1012 | int i; |
| 1010 | 1013 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 080b1fcae5fa..9dd92a700442 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
| @@ -181,6 +181,7 @@ static void rt2x00lib_autowakeup(struct work_struct *work) | |||
| 181 | static void rt2x00lib_bc_buffer_iter(void *data, u8 *mac, | 181 | static void rt2x00lib_bc_buffer_iter(void *data, u8 *mac, |
| 182 | struct ieee80211_vif *vif) | 182 | struct ieee80211_vif *vif) |
| 183 | { | 183 | { |
| 184 | struct ieee80211_tx_control control = {}; | ||
| 184 | struct rt2x00_dev *rt2x00dev = data; | 185 | struct rt2x00_dev *rt2x00dev = data; |
| 185 | struct sk_buff *skb; | 186 | struct sk_buff *skb; |
| 186 | 187 | ||
| @@ -195,7 +196,7 @@ static void rt2x00lib_bc_buffer_iter(void *data, u8 *mac, | |||
| 195 | */ | 196 | */ |
| 196 | skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif); | 197 | skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif); |
| 197 | while (skb) { | 198 | while (skb) { |
| 198 | rt2x00mac_tx(rt2x00dev->hw, NULL, skb); | 199 | rt2x00mac_tx(rt2x00dev->hw, &control, skb); |
| 199 | skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif); | 200 | skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif); |
| 200 | } | 201 | } |
| 201 | } | 202 | } |
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/mac.c b/drivers/net/wireless/rtlwifi/rtl8192cu/mac.c index 393685390f3e..e26312fb4356 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192cu/mac.c +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/mac.c | |||
| @@ -769,7 +769,7 @@ static long _rtl92c_signal_scale_mapping(struct ieee80211_hw *hw, | |||
| 769 | 769 | ||
| 770 | static void _rtl92c_query_rxphystatus(struct ieee80211_hw *hw, | 770 | static void _rtl92c_query_rxphystatus(struct ieee80211_hw *hw, |
| 771 | struct rtl_stats *pstats, | 771 | struct rtl_stats *pstats, |
| 772 | struct rx_desc_92c *pdesc, | 772 | struct rx_desc_92c *p_desc, |
| 773 | struct rx_fwinfo_92c *p_drvinfo, | 773 | struct rx_fwinfo_92c *p_drvinfo, |
| 774 | bool packet_match_bssid, | 774 | bool packet_match_bssid, |
| 775 | bool packet_toself, | 775 | bool packet_toself, |
| @@ -784,11 +784,11 @@ static void _rtl92c_query_rxphystatus(struct ieee80211_hw *hw, | |||
| 784 | u32 rssi, total_rssi = 0; | 784 | u32 rssi, total_rssi = 0; |
| 785 | bool in_powersavemode = false; | 785 | bool in_powersavemode = false; |
| 786 | bool is_cck_rate; | 786 | bool is_cck_rate; |
| 787 | u8 *pdesc = (u8 *)p_desc; | ||
| 787 | 788 | ||
| 788 | is_cck_rate = RX_HAL_IS_CCK_RATE(pdesc); | 789 | is_cck_rate = RX_HAL_IS_CCK_RATE(p_desc); |
| 789 | pstats->packet_matchbssid = packet_match_bssid; | 790 | pstats->packet_matchbssid = packet_match_bssid; |
| 790 | pstats->packet_toself = packet_toself; | 791 | pstats->packet_toself = packet_toself; |
| 791 | pstats->is_cck = is_cck_rate; | ||
| 792 | pstats->packet_beacon = packet_beacon; | 792 | pstats->packet_beacon = packet_beacon; |
| 793 | pstats->is_cck = is_cck_rate; | 793 | pstats->is_cck = is_cck_rate; |
| 794 | pstats->RX_SIGQ[0] = -1; | 794 | pstats->RX_SIGQ[0] = -1; |
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/trx.c b/drivers/net/wireless/rtlwifi/rtl8192cu/trx.c index b0c346a9e4b8..1bc21ccfa71b 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192cu/trx.c +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/trx.c | |||
| @@ -303,10 +303,10 @@ out: | |||
| 303 | bool rtl92cu_rx_query_desc(struct ieee80211_hw *hw, | 303 | bool rtl92cu_rx_query_desc(struct ieee80211_hw *hw, |
| 304 | struct rtl_stats *stats, | 304 | struct rtl_stats *stats, |
| 305 | struct ieee80211_rx_status *rx_status, | 305 | struct ieee80211_rx_status *rx_status, |
| 306 | u8 *p_desc, struct sk_buff *skb) | 306 | u8 *pdesc, struct sk_buff *skb) |
| 307 | { | 307 | { |
| 308 | struct rx_fwinfo_92c *p_drvinfo; | 308 | struct rx_fwinfo_92c *p_drvinfo; |
| 309 | struct rx_desc_92c *pdesc = (struct rx_desc_92c *)p_desc; | 309 | struct rx_desc_92c *p_desc = (struct rx_desc_92c *)pdesc; |
| 310 | u32 phystatus = GET_RX_DESC_PHY_STATUS(pdesc); | 310 | u32 phystatus = GET_RX_DESC_PHY_STATUS(pdesc); |
| 311 | 311 | ||
| 312 | stats->length = (u16) GET_RX_DESC_PKT_LEN(pdesc); | 312 | stats->length = (u16) GET_RX_DESC_PKT_LEN(pdesc); |
| @@ -345,7 +345,7 @@ bool rtl92cu_rx_query_desc(struct ieee80211_hw *hw, | |||
| 345 | if (phystatus) { | 345 | if (phystatus) { |
| 346 | p_drvinfo = (struct rx_fwinfo_92c *)(skb->data + | 346 | p_drvinfo = (struct rx_fwinfo_92c *)(skb->data + |
| 347 | stats->rx_bufshift); | 347 | stats->rx_bufshift); |
| 348 | rtl92c_translate_rx_signal_stuff(hw, skb, stats, pdesc, | 348 | rtl92c_translate_rx_signal_stuff(hw, skb, stats, p_desc, |
| 349 | p_drvinfo); | 349 | p_drvinfo); |
| 350 | } | 350 | } |
| 351 | /*rx_status->qual = stats->signal; */ | 351 | /*rx_status->qual = stats->signal; */ |
