You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
From ac6eb6a8bbca1aa358b288ee694c62c740623283 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=8D=C3=B1igo=20Huguet?= <ihuguet@redhat.com>
|
|
Date: Fri, 21 Jan 2022 08:49:04 +0100
|
|
Subject: [PATCH 29/36] rtw89: coex: Define LPS state for BTC using
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Bugzilla: http://bugzilla.redhat.com/2033291
|
|
|
|
commit 2200ff3f0d1df9f41d0a5589e4a9572b4f627796
|
|
Author: Ching-Te Ku <ku920601@realtek.com>
|
|
Date: Thu Dec 9 16:32:26 2021 +0800
|
|
|
|
rtw89: coex: Define LPS state for BTC using
|
|
|
|
To distinguish three types of LPS state.
|
|
|
|
Signed-off-by: Ching-Te Ku <ku920601@realtek.com>
|
|
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
|
|
Signed-off-by: Kalle Valo <kvalo@kernel.org>
|
|
Link: https://lore.kernel.org/r/20211209083229.10815-5-pkshih@realtek.com
|
|
|
|
Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>
|
|
---
|
|
drivers/net/wireless/realtek/rtw89/coex.c | 8 ++++----
|
|
drivers/net/wireless/realtek/rtw89/coex.h | 6 ++++++
|
|
2 files changed, 10 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/drivers/net/wireless/realtek/rtw89/coex.c b/drivers/net/wireless/realtek/rtw89/coex.c
|
|
index 8763114eab27..436f5ccb193a 100644
|
|
--- a/drivers/net/wireless/realtek/rtw89/coex.c
|
|
+++ b/drivers/net/wireless/realtek/rtw89/coex.c
|
|
@@ -1622,7 +1622,7 @@ static void _set_rf_trx_para(struct rtw89_dev *rtwdev)
|
|
_set_bt_rx_gain(rtwdev, para.bt_rx_gain);
|
|
|
|
if (bt->enable.now == 0 || wl->status.map.rf_off == 1 ||
|
|
- wl->status.map.lps == 1)
|
|
+ wl->status.map.lps == BTC_LPS_RF_OFF)
|
|
wl_stb_chg = 0;
|
|
else
|
|
wl_stb_chg = 1;
|
|
@@ -4225,16 +4225,16 @@ void rtw89_btc_ntfy_radio_state(struct rtw89_dev *rtwdev, enum btc_rfctrl rf_sta
|
|
switch (rf_state) {
|
|
case BTC_RFCTRL_WL_OFF:
|
|
wl->status.map.rf_off = 1;
|
|
- wl->status.map.lps = 0;
|
|
+ wl->status.map.lps = BTC_LPS_OFF;
|
|
break;
|
|
case BTC_RFCTRL_FW_CTRL:
|
|
wl->status.map.rf_off = 0;
|
|
- wl->status.map.lps = 1;
|
|
+ wl->status.map.lps = BTC_LPS_RF_OFF;
|
|
break;
|
|
case BTC_RFCTRL_WL_ON:
|
|
default:
|
|
wl->status.map.rf_off = 0;
|
|
- wl->status.map.lps = 0;
|
|
+ wl->status.map.lps = BTC_LPS_OFF;
|
|
break;
|
|
}
|
|
|
|
diff --git a/drivers/net/wireless/realtek/rtw89/coex.h b/drivers/net/wireless/realtek/rtw89/coex.h
|
|
index 4b4565d15c9e..c3a722d259d7 100644
|
|
--- a/drivers/net/wireless/realtek/rtw89/coex.h
|
|
+++ b/drivers/net/wireless/realtek/rtw89/coex.h
|
|
@@ -130,6 +130,12 @@ enum btc_rfctrl {
|
|
BTC_RFCTRL_MAX
|
|
};
|
|
|
|
+enum btc_lps_state {
|
|
+ BTC_LPS_OFF = 0,
|
|
+ BTC_LPS_RF_OFF = 1,
|
|
+ BTC_LPS_RF_ON = 2
|
|
+};
|
|
+
|
|
void rtw89_btc_ntfy_poweron(struct rtw89_dev *rtwdev);
|
|
void rtw89_btc_ntfy_poweroff(struct rtw89_dev *rtwdev);
|
|
void rtw89_btc_ntfy_init(struct rtw89_dev *rtwdev, u8 mode);
|
|
--
|
|
2.13.6
|
|
|