rtlwifi: Do IQK only once to reduce wifi occupy antenna
authorPing-Ke Shih <pkshih@realtek.com>
Wed, 21 Jun 2017 17:15:32 +0000 (12:15 -0500)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 28 Jun 2017 17:50:58 +0000 (20:50 +0300)
Modify 8723be and 8192e only.
8812/8821 do IQK in DM, so we may do it later.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Yan-Hsuan Chuang <yhchuang@realtek.com>
Cc: Birming Chiu <birming@realtek.com>
Cc: Shaofu <shaofu@realtek.com>
Cc: Steven Ting <steventing@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/hw.c
drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.c

index 11d97fa..d84ac7a 100644 (file)
@@ -1670,7 +1670,8 @@ void rtl92ee_card_disable(struct ieee80211_hw *hw)
        _rtl92ee_poweroff_adapter(hw);
 
        /* after power off we should do iqk again */
-       rtlpriv->phy.iqk_initialized = false;
+       if (!rtlpriv->cfg->ops->get_btc_status())
+               rtlpriv->phy.iqk_initialized = false;
 }
 
 void rtl92ee_interrupt_recognized(struct ieee80211_hw *hw,
index 0ce2900..2a7ad5f 100644 (file)
@@ -1443,7 +1443,9 @@ int rtl8723be_hw_init(struct ieee80211_hw *hw)
                 */
                if (rtlpriv->btcoexist.btc_info.ant_num == ANT_X2 ||
                    !rtlpriv->cfg->ops->get_btc_status()) {
-                       rtl8723be_phy_iq_calibrate(hw, false);
+                       rtl8723be_phy_iq_calibrate(hw,
+                                                  (rtlphy->iqk_initialized ?
+                                                   true : false));
                        rtlphy->iqk_initialized = true;
                }
                rtl8723be_dm_check_txpower_tracking(hw);
@@ -1677,7 +1679,8 @@ void rtl8723be_card_disable(struct ieee80211_hw *hw)
        _rtl8723be_poweroff_adapter(hw);
 
        /* after power off we should do iqk again */
-       rtlpriv->phy.iqk_initialized = false;
+       if (!rtlpriv->cfg->ops->get_btc_status())
+               rtlpriv->phy.iqk_initialized = false;
 }
 
 void rtl8723be_interrupt_recognized(struct ieee80211_hw *hw,
index ab0f39e..9752175 100644 (file)
@@ -2352,7 +2352,7 @@ void rtl8723be_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery)
        if (b_recovery) {
                rtl8723_phy_reload_adda_registers(hw, iqk_bb_reg,
                                                  rtlphy->iqk_bb_backup, 9);
-               return;
+               goto label_done;
        }
        /* Save RF Path */
        path_sel_bb = rtl_get_bbreg(hw, 0x948, MASKDWORD);
@@ -2460,6 +2460,7 @@ void rtl8723be_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery)
        rtl_set_bbreg(hw, 0x948, MASKDWORD, path_sel_bb);
        /* rtl_set_rfreg(hw, RF90_PATH_A, 0xb0, 0xfffff, path_sel_rf); */
 
+label_done:
        spin_lock(&rtlpriv->locks.iqk_lock);
        rtlphy->lck_inprogress = false;
        spin_unlock(&rtlpriv->locks.iqk_lock);