From: <pkshih@realtek.com>
To: <kvalo@codeaurora.org>
Cc: <Larry.Finger@lwfinger.net>, <linux-wireless@vger.kernel.org>
Subject: [PATCH v2 09/15] rtlwifi: btcoex: add assoc type v2 to connection notify
Date: Tue, 6 Mar 2018 09:25:48 +0800 [thread overview]
Message-ID: <20180306012554.3108-10-pkshih@realtek.com> (raw)
In-Reply-To: <20180306012554.3108-1-pkshih@realtek.com>
From: Ping-Ke Shih <pkshih@realtek.com>
In connection notify v1, btcoex only need to know start/end association,
and it will discriminate 2G and 5G band in v2.
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
---
.../net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c | 14 +++++++++++---
.../net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h | 2 ++
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
index 0f664a0490a7..05300b466d34 100644
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
@@ -1610,7 +1610,8 @@ void exhalbtc_scan_notify_wifi_only(struct wifi_only_cfg *wifionly_cfg,
void exhalbtc_connect_notify(struct btc_coexist *btcoexist, u8 action)
{
- u8 asso_type;
+ u8 asso_type, asso_type_v2;
+ bool wifi_under_5g;
if (!halbtc_is_bt_coexist_available(btcoexist))
return;
@@ -1618,10 +1619,17 @@ void exhalbtc_connect_notify(struct btc_coexist *btcoexist, u8 action)
if (btcoexist->manual_control)
return;
- if (action)
+ btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_UNDER_5G, &wifi_under_5g);
+
+ if (action) {
asso_type = BTC_ASSOCIATE_START;
- else
+ asso_type_v2 = wifi_under_5g ? BTC_ASSOCIATE_5G_START :
+ BTC_ASSOCIATE_START;
+ } else {
asso_type = BTC_ASSOCIATE_FINISH;
+ asso_type_v2 = wifi_under_5g ? BTC_ASSOCIATE_5G_FINISH :
+ BTC_ASSOCIATE_FINISH;
+ }
halbtc_leave_low_power(btcoexist);
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
index ad80ec05975e..0a7b09305bc3 100644
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
@@ -401,6 +401,8 @@ enum btc_notify_type_switchband {
enum btc_notify_type_associate {
BTC_ASSOCIATE_FINISH = 0x0,
BTC_ASSOCIATE_START = 0x1,
+ BTC_ASSOCIATE_5G_FINISH = 0x2,
+ BTC_ASSOCIATE_5G_START = 0x3,
BTC_ASSOCIATE_MAX
};
--
2.15.1
next prev parent reply other threads:[~2018-03-06 1:26 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-06 1:25 [PATCH v2 00/15] rtlwifi: Add 8822b 1ant/2ant btcoex files pkshih
2018-03-06 1:25 ` [PATCH v2 01/15] rtlwifi: Add modifier static to functions reported by sparse pkshih
2018-03-27 9:01 ` [v2, " Kalle Valo
2018-03-06 1:25 ` [PATCH v2 02/15] rtlwifi: remove redundant statement found by static checker pkshih
2018-03-06 1:25 ` [PATCH v2 03/15] rtlwifi: btcoex: Add enum DM_INFO for btcoex to query dm's counters pkshih
2018-03-20 3:55 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 04/15] rtlwifi: btcoex: Add customer_id to do special deal to oem vendor pkshih
2018-03-06 1:25 ` [PATCH v2 05/15] rtlwifi: btcoex: Get status of multichannel concurrence pkshih
2018-03-20 3:56 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 06/15] rtlwifi: btcoex: Add rate table for the use of btcoex pkshih
2018-03-20 3:58 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 07/15] rtlwifi: btcoex: Add interaction with phydm pkshih
2018-03-20 3:59 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 08/15] rtlwifi: btcoex: Add pre- and post- normal LPS function pkshih
2018-03-20 4:00 ` Larry Finger
2018-03-06 1:25 ` pkshih [this message]
2018-03-20 4:01 ` [PATCH v2 09/15] rtlwifi: btcoex: add assoc type v2 to connection notify Larry Finger
2018-03-06 1:25 ` [PATCH v2 10/15] rtlwifi: btcoex: new definitions introduced by 8822be pkshih
2018-03-20 4:02 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 11/15] rtlwifi: btcoex: Add new but dummy definitions introduced by 8822b pkshih
2018-03-20 4:02 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 12/15] rtlwifi: btcoex: Add 8822b 1ant/2ant coex files pkshih
2018-03-20 4:12 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 13/15] rtlwifi: btcoex: Add 8822b header files to precomp.h pkshih
2018-03-20 4:03 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 14/15] rtlwifi: btcoex: Add 8822b to Makefile pkshih
2018-03-20 4:04 ` Larry Finger
2018-03-06 1:25 ` [PATCH v2 15/15] rtlwifi: btcoex: Add 8822b routine to btc interfaces pkshih
2018-03-20 4:05 ` Larry Finger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180306012554.3108-10-pkshih@realtek.com \
--to=pkshih@realtek.com \
--cc=Larry.Finger@lwfinger.net \
--cc=kvalo@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).