linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: <pkshih@realtek.com>
To: <kvalo@codeaurora.org>
Cc: <Larry.Finger@lwfinger.net>, <linux-wireless@vger.kernel.org>
Subject: [PATCH v2 07/15] rtlwifi: btcoex: Add interaction with phydm
Date: Tue, 6 Mar 2018 09:25:46 +0800	[thread overview]
Message-ID: <20180306012554.3108-8-pkshih@realtek.com> (raw)
In-Reply-To: <20180306012554.3108-1-pkshih@realtek.com>

From: Ping-Ke Shih <pkshih@realtek.com>

Get phydm's counter and version from the module phydm that is not
submitted so we implement dummy functions.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
---
 .../realtek/rtlwifi/btcoexist/halbtcoutsrc.c       | 38 ++++++++++++++++++++++
 .../realtek/rtlwifi/btcoexist/halbtcoutsrc.h       |  6 ++++
 2 files changed, 44 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
index 1a24aed34094..bfb32d476a70 100644
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
@@ -680,6 +680,21 @@ static bool halbtc_get(void *void_btcoexist, u8 get_type, void *out_buf)
 	case BTC_GET_U4_BT_FORBIDDEN_SLOT_VAL:
 		*u32_tmp = halbtc_get_bt_forbidden_slot_val(btcoexist);
 		break;
+	case BTC_GET_U4_WIFI_IQK_TOTAL:
+		*u32_tmp =
+			btcoexist->btc_phydm_query_phy_counter(btcoexist,
+							       DM_INFO_IQK_ALL);
+		break;
+	case BTC_GET_U4_WIFI_IQK_OK:
+		*u32_tmp =
+			btcoexist->btc_phydm_query_phy_counter(btcoexist,
+							       DM_INFO_IQK_OK);
+		break;
+	case BTC_GET_U4_WIFI_IQK_FAIL:
+		*u32_tmp =
+			btcoexist->btc_phydm_query_phy_counter(btcoexist,
+							       DM_INFO_IQK_NG);
+		break;
 	case BTC_GET_U1_WIFI_DOT11_CHNL:
 		*u8_tmp = rtlphy->current_channel;
 		break;
@@ -1122,6 +1137,25 @@ static bool halbtc_under_ips(struct btc_coexist *btcoexist)
 	return false;
 }
 
+static
+u32 halbtc_get_phydm_version(void *btc_context)
+{
+	return 0;
+}
+
+static
+void halbtc_phydm_modify_ra_pcr_threshold(void *btc_context,
+					  u8 ra_offset_direction,
+					  u8 ra_threshold_offset)
+{
+}
+
+static
+u32 halbtc_phydm_query_phy_counter(void *btc_context, enum dm_info_query dm_id)
+{
+	return 0;
+}
+
 static u8 halbtc_get_ant_det_val_from_bt(void *btc_context)
 {
 	struct btc_coexist *btcoexist = (struct btc_coexist *)btc_context;
@@ -1245,6 +1279,10 @@ bool exhalbtc_initlize_variables(struct rtl_priv *rtlpriv)
 					halbtc_get_bt_coex_supported_feature;
 	btcoexist->btc_get_bt_coex_supported_version =
 					halbtc_get_bt_coex_supported_version;
+	btcoexist->btc_get_bt_phydm_version = halbtc_get_phydm_version;
+	btcoexist->btc_phydm_modify_ra_pcr_threshold =
+					halbtc_phydm_modify_ra_pcr_threshold;
+	btcoexist->btc_phydm_query_phy_counter = halbtc_phydm_query_phy_counter;
 	btcoexist->btc_get_ant_det_val_from_bt = halbtc_get_ant_det_val_from_bt;
 	btcoexist->btc_get_ble_scan_type_from_bt =
 					halbtc_get_ble_scan_type_from_bt;
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
index bc2388f3f953..1f12449363c2 100644
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
@@ -730,6 +730,12 @@ struct btc_coexist {
 			       u32 value);
 	u32 (*btc_get_bt_coex_supported_feature)(void *btcoexist);
 	u32 (*btc_get_bt_coex_supported_version)(void *btcoexist);
+	u32 (*btc_get_bt_phydm_version)(void *btcoexist);
+	void (*btc_phydm_modify_ra_pcr_threshold)(void *btcoexist,
+						  u8 ra_offset_direction,
+						  u8 ra_threshold_offset);
+	u32 (*btc_phydm_query_phy_counter)(void *btcoexist,
+					   enum dm_info_query dm_id);
 	u8 (*btc_get_ant_det_val_from_bt)(void *btcoexist);
 	u8 (*btc_get_ble_scan_type_from_bt)(void *btcoexist);
 	u32 (*btc_get_ble_scan_para_from_bt)(void *btcoexist, u8 scan_type);
-- 
2.15.1

  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 ` pkshih [this message]
2018-03-20  3:59   ` [PATCH v2 07/15] rtlwifi: btcoex: Add interaction with phydm 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 ` [PATCH v2 09/15] rtlwifi: btcoex: add assoc type v2 to connection notify pkshih
2018-03-20  4:01   ` 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-8-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).