rtlwifi: btcoex: Get status of multichannel concurrence

btcoex does different decision according to MCC or SCC status, but
driver is still SCC currently.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Ping-Ke Shih 2018-03-06 09:25:44 +08:00 committed by Kalle Valo
parent a1ee1a09cb
commit 123068f2eb
2 changed files with 11 additions and 0 deletions

View File

@ -577,6 +577,9 @@ static bool halbtc_get(void *void_btcoexist, u8 get_type, void *out_buf)
tmp = true;
*bool_tmp = tmp;
break;
case BTC_GET_BL_WIFI_DUAL_BAND_CONNECTED:
*u8_tmp = BTC_MULTIPORT_SCC;
break;
case BTC_GET_BL_WIFI_BUSY:
if (halbtc_is_wifi_busy(rtlpriv))
*bool_tmp = true;

View File

@ -251,6 +251,7 @@ enum btc_get_type {
BTC_GET_BL_HS_OPERATION,
BTC_GET_BL_HS_CONNECTING,
BTC_GET_BL_WIFI_CONNECTED,
BTC_GET_BL_WIFI_DUAL_BAND_CONNECTED,
BTC_GET_BL_WIFI_BUSY,
BTC_GET_BL_WIFI_SCAN,
BTC_GET_BL_WIFI_LINK,
@ -436,6 +437,13 @@ enum btc_notify_type_stack_operation {
BTC_STACK_OP_MAX
};
enum {
BTC_MULTIPORT_SCC,
BTC_MULTIPORT_MCC_2CHANNEL,
BTC_MULTIPORT_MCC_2BAND,
BTC_MULTIPORT_MAX
};
struct btc_bt_info {
bool bt_disabled;
u8 rssi_adjust_for_agc_table_on;