Commit 1af4072b authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: Introduce rtl8723a_BT_coexist() - and use it!

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bf2a7b99
...@@ -9484,7 +9484,7 @@ static void BTDM_Display8723ABtCoexInfo(struct rtw_adapter *padapter) ...@@ -9484,7 +9484,7 @@ static void BTDM_Display8723ABtCoexInfo(struct rtw_adapter *padapter)
rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n ============[BT Coexist info]============"); rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n ============[BT Coexist info]============");
DCMD_Printf(btCoexDbgBuf); DCMD_Printf(btCoexDbgBuf);
if (!pHalData->bt_coexist.BluetoothCoexist) { if (!rtl8723a_BT_coexist(padapter)) {
rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n BT not exists !!!"); rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n BT not exists !!!");
DCMD_Printf(btCoexDbgBuf); DCMD_Printf(btCoexDbgBuf);
return; return;
...@@ -9930,7 +9930,7 @@ void BTDM_CheckBTIdleChange1Ant(struct rtw_adapter *padapter) ...@@ -9930,7 +9930,7 @@ void BTDM_CheckBTIdleChange1Ant(struct rtw_adapter *padapter)
u32 BT_Active, BT_State; u32 BT_Active, BT_State;
u32 regBTActive = 0, regBTState = 0, regBTPolling = 0; u32 regBTActive = 0, regBTState = 0, regBTPolling = 0;
if (!pHalData->bt_coexist.BluetoothCoexist) if (!rtl8723a_BT_coexist(padapter))
return; return;
if (pBtMgnt->ExtConfig.bManualControl) if (pBtMgnt->ExtConfig.bManualControl)
return; return;
...@@ -10560,7 +10560,7 @@ u8 BTDM_DisableEDCATurbo(struct rtw_adapter *padapter) ...@@ -10560,7 +10560,7 @@ u8 BTDM_DisableEDCATurbo(struct rtw_adapter *padapter)
pHalData = GET_HAL_DATA(padapter); pHalData = GET_HAL_DATA(padapter);
pBtMgnt = &pHalData->BtInfo.BtMgnt; pBtMgnt = &pHalData->BtInfo.BtMgnt;
if (!pHalData->bt_coexist.BluetoothCoexist) { if (!rtl8723a_BT_coexist(padapter)) {
bRet = false; bRet = false;
pHalData->bt_coexist.lastBtEdca = 0; pHalData->bt_coexist.lastBtEdca = 0;
return bRet; return bRet;
...@@ -10743,10 +10743,9 @@ void BTDM_CoexAllOff(struct rtw_adapter *padapter) ...@@ -10743,10 +10743,9 @@ void BTDM_CoexAllOff(struct rtw_adapter *padapter)
void BTDM_TurnOffBtCoexistBeforeEnterIPS(struct rtw_adapter *padapter) void BTDM_TurnOffBtCoexistBeforeEnterIPS(struct rtw_adapter *padapter)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);
struct pwrctrl_priv *ppwrctrl = &padapter->pwrctrlpriv; struct pwrctrl_priv *ppwrctrl = &padapter->pwrctrlpriv;
if (!pHalData->bt_coexist.BluetoothCoexist) if (!rtl8723a_BT_coexist(padapter))
return; return;
/* 8723 1Ant doesn't need to turn off bt coexist mechanism. */ /* 8723 1Ant doesn't need to turn off bt coexist mechanism. */
...@@ -10771,7 +10770,7 @@ void BTDM_Coexist(struct rtw_adapter *padapter) ...@@ -10771,7 +10770,7 @@ void BTDM_Coexist(struct rtw_adapter *padapter)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);
if (!pHalData->bt_coexist.BluetoothCoexist) { if (!rtl8723a_BT_coexist(padapter)) {
RTPRINT(FBT, BT_TRACE, ("[DM][BT], BT not exists!!\n")); RTPRINT(FBT, BT_TRACE, ("[DM][BT], BT not exists!!\n"));
return; return;
} }
...@@ -10981,9 +10980,7 @@ void BTDM_SetBtCoexCurrAntNum(struct rtw_adapter *padapter, u8 antNum) ...@@ -10981,9 +10980,7 @@ void BTDM_SetBtCoexCurrAntNum(struct rtw_adapter *padapter, u8 antNum)
void BTDM_ForHalt(struct rtw_adapter *padapter) void BTDM_ForHalt(struct rtw_adapter *padapter)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); if (!rtl8723a_BT_coexist(padapter))
if (!pHalData->bt_coexist.BluetoothCoexist)
return; return;
BTDM_ForHalt8723A(padapter); BTDM_ForHalt8723A(padapter);
...@@ -10992,9 +10989,7 @@ void BTDM_ForHalt(struct rtw_adapter *padapter) ...@@ -10992,9 +10989,7 @@ void BTDM_ForHalt(struct rtw_adapter *padapter)
void BTDM_WifiScanNotify(struct rtw_adapter *padapter, u8 scanType) void BTDM_WifiScanNotify(struct rtw_adapter *padapter, u8 scanType)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); if (!rtl8723a_BT_coexist(padapter))
if (!pHalData->bt_coexist.BluetoothCoexist)
return; return;
BTDM_WifiScanNotify8723A(padapter, scanType); BTDM_WifiScanNotify8723A(padapter, scanType);
...@@ -11002,9 +10997,7 @@ void BTDM_WifiScanNotify(struct rtw_adapter *padapter, u8 scanType) ...@@ -11002,9 +10997,7 @@ void BTDM_WifiScanNotify(struct rtw_adapter *padapter, u8 scanType)
void BTDM_WifiAssociateNotify(struct rtw_adapter *padapter, u8 action) void BTDM_WifiAssociateNotify(struct rtw_adapter *padapter, u8 action)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); if (!rtl8723a_BT_coexist(padapter))
if (!pHalData->bt_coexist.BluetoothCoexist)
return; return;
BTDM_WifiAssociateNotify8723A(padapter, action); BTDM_WifiAssociateNotify8723A(padapter, action);
...@@ -11012,9 +11005,7 @@ void BTDM_WifiAssociateNotify(struct rtw_adapter *padapter, u8 action) ...@@ -11012,9 +11005,7 @@ void BTDM_WifiAssociateNotify(struct rtw_adapter *padapter, u8 action)
void BTDM_MediaStatusNotify(struct rtw_adapter *padapter, enum rt_media_status mstatus) void BTDM_MediaStatusNotify(struct rtw_adapter *padapter, enum rt_media_status mstatus)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); if (!rtl8723a_BT_coexist(padapter))
if (!pHalData->bt_coexist.BluetoothCoexist)
return; return;
BTDM_MediaStatusNotify8723A(padapter, mstatus); BTDM_MediaStatusNotify8723A(padapter, mstatus);
...@@ -11022,9 +11013,7 @@ void BTDM_MediaStatusNotify(struct rtw_adapter *padapter, enum rt_media_status m ...@@ -11022,9 +11013,7 @@ void BTDM_MediaStatusNotify(struct rtw_adapter *padapter, enum rt_media_status m
void BTDM_ForDhcp(struct rtw_adapter *padapter) void BTDM_ForDhcp(struct rtw_adapter *padapter)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); if (!rtl8723a_BT_coexist(padapter))
if (!pHalData->bt_coexist.BluetoothCoexist)
return; return;
BTDM_ForDhcp8723A(padapter); BTDM_ForDhcp8723A(padapter);
...@@ -11315,8 +11304,10 @@ void HALBT_InitBTVars8723A(struct rtw_adapter *padapter) ...@@ -11315,8 +11304,10 @@ void HALBT_InitBTVars8723A(struct rtw_adapter *padapter)
pHalData->bt_coexist.BT_Ant_isolation = pHalData->EEPROMBluetoothAntIsolation; pHalData->bt_coexist.BT_Ant_isolation = pHalData->EEPROMBluetoothAntIsolation;
pHalData->bt_coexist.bt_radiosharedtype = pHalData->EEPROMBluetoothRadioShared; pHalData->bt_coexist.bt_radiosharedtype = pHalData->EEPROMBluetoothRadioShared;
RT_TRACE(_module_hal_init_c_, _drv_info_, ("BT Coexistance = 0x%x\n", pHalData->bt_coexist.BluetoothCoexist)); RT_TRACE(_module_hal_init_c_, _drv_info_,
if (pHalData->bt_coexist.BluetoothCoexist) { ("BT Coexistance = 0x%x\n", rtl8723a_BT_coexist(padapter)));
if (rtl8723a_BT_coexist(padapter)) {
if (pHalData->bt_coexist.BT_Ant_Num == Ant_x2) { if (pHalData->bt_coexist.BT_Ant_Num == Ant_x2) {
BTDM_SetBtCoexCurrAntNum(padapter, 2); BTDM_SetBtCoexCurrAntNum(padapter, 2);
RT_TRACE(_module_hal_init_c_, _drv_info_, ("BlueTooth BT_Ant_Num = Antx2\n")); RT_TRACE(_module_hal_init_c_, _drv_info_, ("BlueTooth BT_Ant_Num = Antx2\n"));
...@@ -11336,7 +11327,7 @@ void HALBT_InitBTVars8723A(struct rtw_adapter *padapter) ...@@ -11336,7 +11327,7 @@ void HALBT_InitBTVars8723A(struct rtw_adapter *padapter)
} }
} }
u8 HALBT_IsBTExist(struct rtw_adapter *padapter) bool rtl8723a_BT_coexist(struct rtw_adapter *padapter)
{ {
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter); struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#ifdef CONFIG_8723AU_BT_COEXIST #ifdef CONFIG_8723AU_BT_COEXIST
bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter); bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter);
bool rtl8723a_BT_enabled(struct rtw_adapter *padapter); bool rtl8723a_BT_enabled(struct rtw_adapter *padapter);
bool rtl8723a_BT_coexist(struct rtw_adapter *padapter);
#else #else
static inline bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter) static inline bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter)
{ {
...@@ -30,6 +31,10 @@ static inline bool rtl8723a_BT_enabled(struct rtw_adapter *padapter) ...@@ -30,6 +31,10 @@ static inline bool rtl8723a_BT_enabled(struct rtw_adapter *padapter)
{ {
return false; return false;
} }
static inline bool rtl8723a_BT_coexist(struct rtw_adapter *padapter)
{
return false;
}
#endif #endif
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment