rtlwifi: rtl8723be: btcoexist: Add single_ant_path
Some devices with RTL8732BE wifi/Bluetooth adapters are shipped with only a single antenna. On a subset of these, the EEPROM is incorectly coded to indicate the wrong connection. The resulting problems have been fixed for wifi. This change handles them for BT. Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
d46fa3e47a
commit
db8cb0095b
|
@ -146,6 +146,11 @@ static u8 halbtc_get_wifi_central_chnl(struct btc_coexist *btcoexist)
|
||||||
return chnl;
|
return chnl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
u8 rtl_get_hwpg_single_ant_path(struct rtl_priv *rtlpriv)
|
||||||
|
{
|
||||||
|
return rtlpriv->btcoexist.btc_info.single_ant_path;
|
||||||
|
}
|
||||||
|
|
||||||
static void halbtc_leave_lps(struct btc_coexist *btcoexist)
|
static void halbtc_leave_lps(struct btc_coexist *btcoexist)
|
||||||
{
|
{
|
||||||
struct rtl_priv *rtlpriv;
|
struct rtl_priv *rtlpriv;
|
||||||
|
|
|
@ -49,6 +49,7 @@ struct rtl_btc_ops *rtl_btc_get_ops_pointer(void);
|
||||||
u8 rtl_get_hwpg_ant_num(struct rtl_priv *rtlpriv);
|
u8 rtl_get_hwpg_ant_num(struct rtl_priv *rtlpriv);
|
||||||
u8 rtl_get_hwpg_bt_exist(struct rtl_priv *rtlpriv);
|
u8 rtl_get_hwpg_bt_exist(struct rtl_priv *rtlpriv);
|
||||||
u8 rtl_get_hwpg_bt_type(struct rtl_priv *rtlpriv);
|
u8 rtl_get_hwpg_bt_type(struct rtl_priv *rtlpriv);
|
||||||
|
u8 rtl_get_hwpg_single_ant_path(struct rtl_priv *rtlpriv);
|
||||||
enum rt_media_status mgnt_link_status_query(struct ieee80211_hw *hw);
|
enum rt_media_status mgnt_link_status_query(struct ieee80211_hw *hw);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2657,6 +2657,7 @@ void rtl8723be_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw,
|
||||||
rtlpriv->btcoexist.btc_info.btcoexist = 0;
|
rtlpriv->btcoexist.btc_info.btcoexist = 0;
|
||||||
rtlpriv->btcoexist.btc_info.bt_type = BT_RTL8723B;
|
rtlpriv->btcoexist.btc_info.bt_type = BT_RTL8723B;
|
||||||
rtlpriv->btcoexist.btc_info.ant_num = ANT_X2;
|
rtlpriv->btcoexist.btc_info.ant_num = ANT_X2;
|
||||||
|
rtlpriv->btcoexist.btc_info.single_ant_path = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* override ant_num / ant_path */
|
/* override ant_num / ant_path */
|
||||||
|
|
|
@ -2454,6 +2454,7 @@ struct rtl_btc_info {
|
||||||
u8 bt_type;
|
u8 bt_type;
|
||||||
u8 btcoexist;
|
u8 btcoexist;
|
||||||
u8 ant_num;
|
u8 ant_num;
|
||||||
|
u8 single_ant_path;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct bt_coexist_info {
|
struct bt_coexist_info {
|
||||||
|
|
Loading…
Reference in New Issue