rtlwifi: btcoexist: Convert halbtc8723b1ant.c to use standard debugging
authorLarry Finger <Larry.Finger@lwfinger.net>
Fri, 3 Feb 2017 17:35:17 +0000 (11:35 -0600)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 7 Feb 2017 08:04:37 +0000 (10:04 +0200)
The routines in btcoexist use different debugging routines than are used
in the other drivers. This patch converts halbtc8723b1ant.c to use the
standard routines.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8723b1ant.c

index 16add42..e9f0a76 100644 (file)
@@ -60,9 +60,11 @@ static u32 glcoex_ver_8723b_1ant = 0x47;
 /***************************************************************
  * local function start with halbtc8723b1ant_
  ***************************************************************/
-static u8 halbtc8723b1ant_bt_rssi_state(u8 level_num, u8 rssi_thresh,
+static u8 halbtc8723b1ant_bt_rssi_state(struct btc_coexist *btcoexist,
+                                       u8 level_num, u8 rssi_thresh,
                                        u8 rssi_thresh1)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        s32 bt_rssi = 0;
        u8 bt_rssi_state = coex_sta->pre_bt_rssi_state;
 
@@ -74,28 +76,28 @@ static u8 halbtc8723b1ant_bt_rssi_state(u8 level_num, u8 rssi_thresh,
                        if (bt_rssi >= rssi_thresh +
                                        BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                bt_rssi_state = BTC_RSSI_STATE_HIGH;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to High\n");
                        } else {
                                bt_rssi_state = BTC_RSSI_STATE_STAY_LOW;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state stay at Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state stay at Low\n");
                        }
                } else {
                        if (bt_rssi < rssi_thresh) {
                                bt_rssi_state = BTC_RSSI_STATE_LOW;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to Low\n");
                        } else {
                                bt_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state stay at High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state stay at High\n");
                        }
                }
        } else if (level_num == 3) {
                if (rssi_thresh > rssi_thresh1) {
-                       btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                   "[BTCoex], BT Rssi thresh error!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], BT Rssi thresh error!!\n");
                        return coex_sta->pre_bt_rssi_state;
                }
 
@@ -104,12 +106,12 @@ static u8 halbtc8723b1ant_bt_rssi_state(u8 level_num, u8 rssi_thresh,
                        if (bt_rssi >= rssi_thresh +
                                        BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                bt_rssi_state = BTC_RSSI_STATE_MEDIUM;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to Medium\n");
                        } else {
                                bt_rssi_state = BTC_RSSI_STATE_STAY_LOW;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state stay at Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state stay at Low\n");
                        }
                } else if ((coex_sta->pre_bt_rssi_state ==
                                        BTC_RSSI_STATE_MEDIUM) ||
@@ -118,26 +120,26 @@ static u8 halbtc8723b1ant_bt_rssi_state(u8 level_num, u8 rssi_thresh,
                        if (bt_rssi >= rssi_thresh1 +
                                        BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                bt_rssi_state = BTC_RSSI_STATE_HIGH;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to High\n");
                        } else if (bt_rssi < rssi_thresh) {
                                bt_rssi_state = BTC_RSSI_STATE_LOW;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to Low\n");
                        } else {
                                bt_rssi_state = BTC_RSSI_STATE_STAY_MEDIUM;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state stay at Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state stay at Medium\n");
                        }
                } else {
                        if (bt_rssi < rssi_thresh1) {
                                bt_rssi_state = BTC_RSSI_STATE_MEDIUM;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state switch to Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state switch to Medium\n");
                        } else {
                                bt_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
-                               btc_alg_dbg(ALGO_BT_RSSI_STATE,
-                                           "[BTCoex], BT Rssi state stay at High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Rssi state stay at High\n");
                        }
                }
        }
@@ -151,6 +153,7 @@ static u8 halbtc8723b1ant_wifi_rssi_state(struct btc_coexist *btcoexist,
                                          u8 index, u8 level_num,
                                          u8 rssi_thresh, u8 rssi_thresh1)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        s32 wifi_rssi = 0;
        u8 wifi_rssi_state = coex_sta->pre_wifi_rssi_state[index];
 
@@ -165,28 +168,28 @@ static u8 halbtc8723b1ant_wifi_rssi_state(struct btc_coexist *btcoexist,
                        if (wifi_rssi >= rssi_thresh +
                                        BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                wifi_rssi_state = BTC_RSSI_STATE_HIGH;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to High\n");
                        } else {
                                wifi_rssi_state = BTC_RSSI_STATE_STAY_LOW;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state stay at Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state stay at Low\n");
                        }
                } else {
                        if (wifi_rssi < rssi_thresh) {
                                wifi_rssi_state = BTC_RSSI_STATE_LOW;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to Low\n");
                        } else {
                                wifi_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state stay at High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state stay at High\n");
                        }
                }
        } else if (level_num == 3) {
                if (rssi_thresh > rssi_thresh1) {
-                       btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                   "[BTCoex], wifi RSSI thresh error!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], wifi RSSI thresh error!!\n");
                        return coex_sta->pre_wifi_rssi_state[index];
                }
 
@@ -197,12 +200,12 @@ static u8 halbtc8723b1ant_wifi_rssi_state(struct btc_coexist *btcoexist,
                        if (wifi_rssi >= rssi_thresh +
                                         BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                wifi_rssi_state = BTC_RSSI_STATE_MEDIUM;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to Medium\n");
                        } else {
                                wifi_rssi_state = BTC_RSSI_STATE_STAY_LOW;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state stay at Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state stay at Low\n");
                        }
                } else if ((coex_sta->pre_wifi_rssi_state[index] ==
                                                BTC_RSSI_STATE_MEDIUM) ||
@@ -211,26 +214,26 @@ static u8 halbtc8723b1ant_wifi_rssi_state(struct btc_coexist *btcoexist,
                        if (wifi_rssi >= rssi_thresh1 +
                                         BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
                                wifi_rssi_state = BTC_RSSI_STATE_HIGH;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to High\n");
                        } else if (wifi_rssi < rssi_thresh) {
                                wifi_rssi_state = BTC_RSSI_STATE_LOW;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to Low\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to Low\n");
                        } else {
                                wifi_rssi_state = BTC_RSSI_STATE_STAY_MEDIUM;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state stay at Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state stay at Medium\n");
                        }
                } else {
                        if (wifi_rssi < rssi_thresh1) {
                                wifi_rssi_state = BTC_RSSI_STATE_MEDIUM;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state switch to Medium\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state switch to Medium\n");
                        } else {
                                wifi_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
-                               btc_alg_dbg(ALGO_WIFI_RSSI_STATE,
-                                           "[BTCoex], wifi RSSI state stay at High\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], wifi RSSI state stay at High\n");
                        }
                }
        }
@@ -418,15 +421,16 @@ static void halbtc8723b1ant_monitor_bt_ctr(struct btc_coexist *btcoexist)
 
 static void halbtc8723b1ant_query_bt_info(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 h2c_parameter[1] = {0};
 
        coex_sta->c2h_bt_info_req_sent = true;
 
        h2c_parameter[0] |= BIT0;       /* trigger*/
 
-       btc_alg_dbg(ALGO_TRACE_FW_EXEC,
-                   "[BTCoex], Query Bt Info, FW write 0x61 = 0x%x\n",
-                   h2c_parameter[0]);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], Query Bt Info, FW write 0x61 = 0x%x\n",
+                h2c_parameter[0]);
 
        btcoexist->btc_fill_h2c(btcoexist, 0x61, 1, h2c_parameter);
 }
@@ -513,6 +517,7 @@ static void halbtc8723b1ant_update_bt_link_info(struct btc_coexist *btcoexist)
 
 static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
        bool bt_hs_on = false;
        u8 algorithm = BT_8723B_1ANT_COEX_ALGO_UNDEFINED;
@@ -521,8 +526,8 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
        btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
 
        if (!bt_link_info->bt_link_exist) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], No BT link exists!!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], No BT link exists!!!\n");
                return algorithm;
        }
 
@@ -537,27 +542,29 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
 
        if (numdiffprofile == 1) {
                if (bt_link_info->sco_exist) {
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], BT Profile = SCO only\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], BT Profile = SCO only\n");
                        algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
                } else {
                        if (bt_link_info->hid_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = HID only\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = HID only\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
                        } else if (bt_link_info->a2dp_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = A2DP only\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = A2DP only\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_A2DP;
                        } else if (bt_link_info->pan_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = PAN(HS) only\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = PAN(HS) only\n");
                                        algorithm =
                                                BT_8723B_1ANT_COEX_ALGO_PANHS;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = PAN(EDR) only\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = PAN(EDR) only\n");
                                        algorithm =
                                                BT_8723B_1ANT_COEX_ALGO_PANEDR;
                                }
@@ -566,21 +573,23 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
        } else if (numdiffprofile == 2) {
                if (bt_link_info->sco_exist) {
                        if (bt_link_info->hid_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = SCO + HID\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = SCO + HID\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
                        } else if (bt_link_info->a2dp_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = SCO + A2DP ==> SCO\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = SCO + A2DP ==> SCO\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
                        } else if (bt_link_info->pan_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + PAN(HS)\n");
                                        algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + PAN(EDR)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + PAN(EDR)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
                                }
@@ -588,32 +597,36 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
                } else {
                        if (bt_link_info->hid_exist &&
                            bt_link_info->a2dp_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = HID + A2DP\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = HID + A2DP\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
                        } else if (bt_link_info->hid_exist &&
                                   bt_link_info->pan_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = HID + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = HID + PAN(HS)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = HID + PAN(EDR)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = HID + PAN(EDR)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
                                }
                        } else if (bt_link_info->pan_exist &&
                                   bt_link_info->a2dp_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = A2DP + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = A2DP + PAN(HS)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_A2DP_PANHS;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = A2DP + PAN(EDR)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = A2DP + PAN(EDR)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_A2DP;
                                }
@@ -623,31 +636,35 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
                if (bt_link_info->sco_exist) {
                        if (bt_link_info->hid_exist &&
                            bt_link_info->a2dp_exist) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT Profile = SCO + HID + A2DP ==> HID\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT Profile = SCO + HID + A2DP ==> HID\n");
                                algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
                        } else if (bt_link_info->hid_exist &&
                                   bt_link_info->pan_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + HID + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + HID + PAN(HS)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + HID + PAN(EDR)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + HID + PAN(EDR)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
                                }
                        } else if (bt_link_info->pan_exist &&
                                   bt_link_info->a2dp_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + A2DP + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + A2DP + PAN(HS)\n");
                                        algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + A2DP + PAN(EDR) ==> HID\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + A2DP + PAN(EDR) ==> HID\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
                                }
@@ -657,13 +674,15 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
                            bt_link_info->pan_exist &&
                            bt_link_info->a2dp_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = HID + A2DP + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = HID + A2DP + PAN(HS)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = HID + A2DP + PAN(EDR)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = HID + A2DP + PAN(EDR)\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_HID_A2DP_PANEDR;
                                }
@@ -675,11 +694,13 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
                            bt_link_info->pan_exist &&
                            bt_link_info->a2dp_exist) {
                                if (bt_hs_on) {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], Error!!! BT Profile = SCO + HID + A2DP + PAN(HS)\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], Error!!! BT Profile = SCO + HID + A2DP + PAN(HS)\n");
                                } else {
-                                       btc_alg_dbg(ALGO_TRACE,
-                                                   "[BTCoex], BT Profile = SCO + HID + A2DP + PAN(EDR)==>PAN(EDR)+HID\n");
+                                       RT_TRACE(rtlpriv, COMP_BT_COEXIST,
+                                                DBG_LOUD,
+                                                "[BTCoex], BT Profile = SCO + HID + A2DP + PAN(EDR)==>PAN(EDR)+HID\n");
                                        algorithm =
                                            BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
                                }
@@ -693,6 +714,7 @@ static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
 static void btc8723b1ant_set_sw_pen_tx_rate_adapt(struct btc_coexist *btcoexist,
                                                  bool low_penalty_ra)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 h2c_parameter[6] = {0};
 
        h2c_parameter[0] = 0x6; /* opCode, 0x6= Retry_Penalty */
@@ -706,9 +728,9 @@ static void btc8723b1ant_set_sw_pen_tx_rate_adapt(struct btc_coexist *btcoexist,
                h2c_parameter[5] = 0xf9;  /*MCS5 or OFDM36 */
        }
 
-       btc_alg_dbg(ALGO_TRACE_FW_EXEC,
-                   "[BTCoex], set WiFi Low-Penalty Retry: %s",
-                   (low_penalty_ra ? "ON!!" : "OFF!!"));
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set WiFi Low-Penalty Retry: %s",
+                (low_penalty_ra ? "ON!!" : "OFF!!"));
 
        btcoexist->btc_fill_h2c(btcoexist, 0x69, 6, h2c_parameter);
 }
@@ -732,20 +754,22 @@ static void halbtc8723b1ant_set_coex_table(struct btc_coexist *btcoexist,
                                           u32 val0x6c0, u32 val0x6c4,
                                           u32 val0x6c8, u8 val0x6cc)
 {
-       btc_alg_dbg(ALGO_TRACE_SW_EXEC,
-                   "[BTCoex], set coex table, set 0x6c0 = 0x%x\n", val0x6c0);
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set coex table, set 0x6c0 = 0x%x\n", val0x6c0);
        btcoexist->btc_write_4byte(btcoexist, 0x6c0, val0x6c0);
 
-       btc_alg_dbg(ALGO_TRACE_SW_EXEC,
-                   "[BTCoex], set coex table, set 0x6c4 = 0x%x\n", val0x6c4);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set coex table, set 0x6c4 = 0x%x\n", val0x6c4);
        btcoexist->btc_write_4byte(btcoexist, 0x6c4, val0x6c4);
 
-       btc_alg_dbg(ALGO_TRACE_SW_EXEC,
-                   "[BTCoex], set coex table, set 0x6c8 = 0x%x\n", val0x6c8);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set coex table, set 0x6c8 = 0x%x\n", val0x6c8);
        btcoexist->btc_write_4byte(btcoexist, 0x6c8, val0x6c8);
 
-       btc_alg_dbg(ALGO_TRACE_SW_EXEC,
-                   "[BTCoex], set coex table, set 0x6cc = 0x%x\n", val0x6cc);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set coex table, set 0x6cc = 0x%x\n", val0x6cc);
        btcoexist->btc_write_1byte(btcoexist, 0x6cc, val0x6cc);
 }
 
@@ -754,10 +778,12 @@ static void halbtc8723b1ant_coex_table(struct btc_coexist *btcoexist,
                                       u32 val0x6c4, u32 val0x6c8,
                                       u8 val0x6cc)
 {
-       btc_alg_dbg(ALGO_TRACE_SW,
-                   "[BTCoex], %s write Coex Table 0x6c0 = 0x%x, 0x6c4 = 0x%x, 0x6cc = 0x%x\n",
-                   (force_exec ? "force to" : ""),
-                   val0x6c0, val0x6c4, val0x6cc);
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], %s write Coex Table 0x6c0 = 0x%x, 0x6c4 = 0x%x, 0x6cc = 0x%x\n",
+                (force_exec ? "force to" : ""),
+                val0x6c0, val0x6c4, val0x6cc);
        coex_dm->cur_val0x6c0 = val0x6c0;
        coex_dm->cur_val0x6c4 = val0x6c4;
        coex_dm->cur_val0x6c8 = val0x6c8;
@@ -823,14 +849,15 @@ static void halbtc8723b1ant_coex_table_with_type(struct btc_coexist *btcoexist,
 static void halbtc8723b1ant_SetFwIgnoreWlanAct(struct btc_coexist *btcoexist,
                                               bool enable)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 h2c_parameter[1] = {0};
 
        if (enable)
                h2c_parameter[0] |= BIT0;       /* function enable */
 
-       btc_alg_dbg(ALGO_TRACE_FW_EXEC,
-                   "[BTCoex], set FW for BT Ignore Wlan_Act, FW write 0x63 = 0x%x\n",
-                   h2c_parameter[0]);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], set FW for BT Ignore Wlan_Act, FW write 0x63 = 0x%x\n",
+                h2c_parameter[0]);
 
        btcoexist->btc_fill_h2c(btcoexist, 0x63, 1, h2c_parameter);
 }
@@ -838,16 +865,18 @@ static void halbtc8723b1ant_SetFwIgnoreWlanAct(struct btc_coexist *btcoexist,
 static void halbtc8723b1ant_ignore_wlan_act(struct btc_coexist *btcoexist,
                                            bool force_exec, bool enable)
 {
-       btc_alg_dbg(ALGO_TRACE_FW,
-                   "[BTCoex], %s turn Ignore WlanAct %s\n",
-                   (force_exec ? "force to" : ""), (enable ? "ON" : "OFF"));
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], %s turn Ignore WlanAct %s\n",
+                (force_exec ? "force to" : ""), (enable ? "ON" : "OFF"));
        coex_dm->cur_ignore_wlan_act = enable;
 
        if (!force_exec) {
-               btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                           "[BTCoex], bPreIgnoreWlanAct = %d, bCurIgnoreWlanAct = %d!!\n",
-                           coex_dm->pre_ignore_wlan_act,
-                           coex_dm->cur_ignore_wlan_act);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], bPreIgnoreWlanAct = %d, bCurIgnoreWlanAct = %d!!\n",
+                        coex_dm->pre_ignore_wlan_act,
+                        coex_dm->cur_ignore_wlan_act);
 
                if (coex_dm->pre_ignore_wlan_act ==
                    coex_dm->cur_ignore_wlan_act)
@@ -862,6 +891,7 @@ static void halbtc8723b1ant_set_fw_ps_tdma(struct btc_coexist *btcoexist,
                                           u8 byte1, u8 byte2, u8 byte3,
                                           u8 byte4, u8 byte5)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 h2c_parameter[5] = {0};
        u8 real_byte1 = byte1, real_byte5 = byte5;
        bool ap_enable = false;
@@ -871,8 +901,8 @@ static void halbtc8723b1ant_set_fw_ps_tdma(struct btc_coexist *btcoexist,
 
        if (ap_enable) {
                if ((byte1 & BIT4) && !(byte1 & BIT5)) {
-                       btc_iface_dbg(INTF_NOTIFY,
-                                     "[BTCoex], FW for 1Ant AP mode\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], FW for 1Ant AP mode\n");
                        real_byte1 &= ~BIT4;
                        real_byte1 |= BIT5;
 
@@ -893,8 +923,8 @@ static void halbtc8723b1ant_set_fw_ps_tdma(struct btc_coexist *btcoexist,
        coex_dm->ps_tdma_para[3] = byte4;
        coex_dm->ps_tdma_para[4] = real_byte5;
 
-       btc_alg_dbg(ALGO_TRACE_FW_EXEC,
-                   "[BTCoex], PS-TDMA H2C cmd =0x%x%08x\n",
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], PS-TDMA H2C cmd =0x%x%08x\n",
                    h2c_parameter[0],
                    h2c_parameter[1] << 24 |
                    h2c_parameter[2] << 16 |
@@ -918,22 +948,24 @@ static void halbtc8723b1ant_LpsRpwm(struct btc_coexist *btcoexist,
                                    bool force_exec,
                                    u8 lps_val, u8 rpwm_val)
 {
-       btc_alg_dbg(ALGO_TRACE_FW,
-                   "[BTCoex], %s set lps/rpwm = 0x%x/0x%x\n",
-                   (force_exec ? "force to" : ""), lps_val, rpwm_val);
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], %s set lps/rpwm = 0x%x/0x%x\n",
+                (force_exec ? "force to" : ""), lps_val, rpwm_val);
        coex_dm->cur_lps = lps_val;
        coex_dm->cur_rpwm = rpwm_val;
 
        if (!force_exec) {
-               btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                           "[BTCoex], LPS-RxBeaconMode = 0x%x , LPS-RPWM = 0x%x!!\n",
-                           coex_dm->cur_lps, coex_dm->cur_rpwm);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], LPS-RxBeaconMode = 0x%x , LPS-RPWM = 0x%x!!\n",
+                        coex_dm->cur_lps, coex_dm->cur_rpwm);
 
                if ((coex_dm->pre_lps == coex_dm->cur_lps) &&
                    (coex_dm->pre_rpwm == coex_dm->cur_rpwm)) {
-                       btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                   "[BTCoex], LPS-RPWM_Last = 0x%x , LPS-RPWM_Now = 0x%x!!\n",
-                                   coex_dm->pre_rpwm, coex_dm->cur_rpwm);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], LPS-RPWM_Last = 0x%x , LPS-RPWM_Now = 0x%x!!\n",
+                                coex_dm->pre_rpwm, coex_dm->cur_rpwm);
 
                        return;
                }
@@ -947,8 +979,10 @@ static void halbtc8723b1ant_LpsRpwm(struct btc_coexist *btcoexist,
 static void halbtc8723b1ant_sw_mechanism(struct btc_coexist *btcoexist,
                                         bool low_penalty_ra)
 {
-       btc_alg_dbg(ALGO_BT_MONITOR,
-                   "[BTCoex], SM[LpRA] = %d\n", low_penalty_ra);
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], SM[LpRA] = %d\n", low_penalty_ra);
 
        halbtc8723b1ant_low_penalty_ra(btcoexist, NORMAL_EXEC, low_penalty_ra);
 }
@@ -1153,6 +1187,7 @@ static void halbtc8723b1ant_SetAntPath(struct btc_coexist *btcoexist,
 static void halbtc8723b1ant_ps_tdma(struct btc_coexist *btcoexist,
                                    bool force_exec, bool turn_on, u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool wifi_busy = false;
        u8 rssi_adjust_val = 0;
 
@@ -1163,13 +1198,13 @@ static void halbtc8723b1ant_ps_tdma(struct btc_coexist *btcoexist,
 
        if (!force_exec) {
                if (coex_dm->cur_ps_tdma_on)
-                       btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                   "[BTCoex], ******** TDMA(on, %d) *********\n",
-                                   coex_dm->cur_ps_tdma);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], ******** TDMA(on, %d) *********\n",
+                                coex_dm->cur_ps_tdma);
                else
-                       btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                   "[BTCoex], ******** TDMA(off, %d) ********\n",
-                                   coex_dm->cur_ps_tdma);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], ******** TDMA(off, %d) ********\n",
+                                coex_dm->cur_ps_tdma);
 
                if ((coex_dm->pre_ps_tdma_on == coex_dm->cur_ps_tdma_on) &&
                    (coex_dm->pre_ps_tdma == coex_dm->cur_ps_tdma))
@@ -1374,6 +1409,7 @@ static void halbtc8723b1ant_ps_tdma(struct btc_coexist *btcoexist,
 
 static bool halbtc8723b1ant_is_common_action(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool commom = false, wifi_connected = false;
        bool wifi_busy = false;
 
@@ -1383,45 +1419,45 @@ static bool halbtc8723b1ant_is_common_action(struct btc_coexist *btcoexist)
 
        if (!wifi_connected &&
            BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE == coex_dm->bt_status) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], Wifi non connected-idle + BT non connected-idle!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Wifi non connected-idle + BT non connected-idle!!\n");
                halbtc8723b1ant_sw_mechanism(btcoexist, false);
                commom = true;
        } else if (wifi_connected &&
                   (BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE ==
                    coex_dm->bt_status)) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], Wifi connected + BT non connected-idle!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Wifi connected + BT non connected-idle!!\n");
                halbtc8723b1ant_sw_mechanism(btcoexist, false);
                commom = true;
        } else if (!wifi_connected &&
                   (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
                    coex_dm->bt_status)) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], Wifi non connected-idle + BT connected-idle!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Wifi non connected-idle + BT connected-idle!!\n");
                halbtc8723b1ant_sw_mechanism(btcoexist, false);
                commom = true;
        } else if (wifi_connected &&
                   (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
                    coex_dm->bt_status)) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], Wifi connected + BT connected-idle!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Wifi connected + BT connected-idle!!\n");
                halbtc8723b1ant_sw_mechanism(btcoexist, false);
                commom = true;
        } else if (!wifi_connected &&
                   (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE !=
                    coex_dm->bt_status)) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], Wifi non connected-idle + BT Busy!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Wifi non connected-idle + BT Busy!!\n");
                halbtc8723b1ant_sw_mechanism(btcoexist, false);
                commom = true;
        } else {
                if (wifi_busy)
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Wifi Connected-Busy + BT Busy!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Wifi Connected-Busy + BT Busy!!\n");
                else
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Wifi Connected-Idle + BT Busy!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Wifi Connected-Idle + BT Busy!!\n");
 
                commom = false;
        }
@@ -1432,6 +1468,7 @@ static bool halbtc8723b1ant_is_common_action(struct btc_coexist *btcoexist)
 static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
                                              u8 wifi_status)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        static s32 up, dn, m, n, wait_count;
        /* 0: no change, +1: increase WiFi duration,
         * -1: decrease WiFi duration
@@ -1440,8 +1477,8 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
        u8 retry_count = 0, bt_info_ext;
        bool wifi_busy = false;
 
-       btc_alg_dbg(ALGO_TRACE_FW,
-                   "[BTCoex], TdmaDurationAdjustForAcl()\n");
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], TdmaDurationAdjustForAcl()\n");
 
        if (BT_8723B_1ANT_WIFI_STATUS_CONNECTED_BUSY == wifi_status)
                wifi_busy = true;
@@ -1470,8 +1507,8 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
 
        if (!coex_dm->auto_tdma_adjust) {
                coex_dm->auto_tdma_adjust = true;
-               btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                           "[BTCoex], first run TdmaDurationAdjust()!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], first run TdmaDurationAdjust()!!\n");
 
                halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 2);
                coex_dm->tdma_adj_type = 2;
@@ -1502,8 +1539,8 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
                                up = 0;
                                dn = 0;
                                result = 1;
-                               btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                           "[BTCoex], Increase wifi duration!!\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], Increase wifi duration!!\n");
                        }
                } else if (retry_count <= 3) {
                        up--;
@@ -1526,8 +1563,8 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
                                dn = 0;
                                wait_count = 0;
                                result = -1;
-                               btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                           "[BTCoex], Decrease wifi duration for retryCounter<3!!\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], Decrease wifi duration for retryCounter<3!!\n");
                        }
                } else {
                        if (wait_count == 1)
@@ -1543,8 +1580,8 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
                        dn = 0;
                        wait_count = 0;
                        result = -1;
-                       btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                   "[BTCoex], Decrease wifi duration for retryCounter>3!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Decrease wifi duration for retryCounter>3!!\n");
                }
 
                if (result == -1) {
@@ -1589,9 +1626,9 @@ static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
                        }
                } else {          /*no change */
                        /*if busy / idle change */
-                       btc_alg_dbg(ALGO_TRACE_FW_DETAIL,
-                                   "[BTCoex],********* TDMA(on, %d) ********\n",
-                                   coex_dm->cur_ps_tdma);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex],********* TDMA(on, %d) ********\n",
+                                coex_dm->cur_ps_tdma);
                }
 
                if (coex_dm->cur_ps_tdma != 1 && coex_dm->cur_ps_tdma != 2 &&
@@ -1807,7 +1844,7 @@ static void halbtc8723b1ant_action_wifi_connected_bt_acl_busy(
 
        struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
 
-       bt_rssi_state = halbtc8723b1ant_bt_rssi_state(2, 28, 0);
+       bt_rssi_state = halbtc8723b1ant_bt_rssi_state(btcoexist, 2, 28, 0);
 
        if (bt_link_info->hid_only) {  /*HID */
                btc8723b1ant_act_bt_sco_hid_only_busy(btcoexist, wifi_status);
@@ -1993,19 +2030,20 @@ static void halbtc8723b1ant_action_wifi_connected_special_packet(
 
 static void halbtc8723b1ant_action_wifi_connected(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool wifi_busy = false;
        bool scan = false, link = false, roam = false;
        bool under_4way = false, ap_enable = false;
 
-       btc_alg_dbg(ALGO_TRACE,
-                   "[BTCoex], CoexForWifiConnect()===>\n");
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], CoexForWifiConnect()===>\n");
 
        btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_4_WAY_PROGRESS,
                           &under_4way);
        if (under_4way) {
                halbtc8723b1ant_action_wifi_connected_special_packet(btcoexist);
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], CoexForWifiConnect(), return for wifi is under 4way<===\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], CoexForWifiConnect(), return for wifi is under 4way<===\n");
                return;
        }
 
@@ -2019,8 +2057,8 @@ static void halbtc8723b1ant_action_wifi_connected(struct btc_coexist *btcoexist)
                else
                        halbtc8723b1ant_action_wifi_connected_special_packet(
                                                                     btcoexist);
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], CoexForWifiConnect(), return for wifi is under scan<===\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], CoexForWifiConnect(), return for wifi is under scan<===\n");
                return;
        }
 
@@ -2081,6 +2119,7 @@ static void halbtc8723b1ant_action_wifi_connected(struct btc_coexist *btcoexist)
 
 static void btc8723b1ant_run_sw_coex_mech(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 algorithm = 0;
 
        algorithm = halbtc8723b1ant_action_algorithm(btcoexist);
@@ -2089,58 +2128,58 @@ static void btc8723b1ant_run_sw_coex_mech(struct btc_coexist *btcoexist)
        if (!halbtc8723b1ant_is_common_action(btcoexist)) {
                switch (coex_dm->cur_algorithm) {
                case BT_8723B_1ANT_COEX_ALGO_SCO:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = SCO\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = SCO\n");
                        halbtc8723b1ant_action_sco(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_HID:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = HID\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = HID\n");
                        halbtc8723b1ant_action_hid(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_A2DP:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = A2DP\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = A2DP\n");
                        halbtc8723b1ant_action_a2dp(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_A2DP_PANHS:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = A2DP+PAN(HS)\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = A2DP+PAN(HS)\n");
                        halbtc8723b1ant_action_a2dp_pan_hs(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_PANEDR:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = PAN(EDR)\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = PAN(EDR)\n");
                        halbtc8723b1ant_action_pan_edr(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_PANHS:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = HS mode\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = HS mode\n");
                        halbtc8723b1ant_action_pan_hs(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_PANEDR_A2DP:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = PAN+A2DP\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = PAN+A2DP\n");
                        halbtc8723b1ant_action_pan_edr_a2dp(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_PANEDR_HID:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = PAN(EDR)+HID\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = PAN(EDR)+HID\n");
                        halbtc8723b1ant_action_pan_edr_hid(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_HID_A2DP_PANEDR:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = HID+A2DP+PAN\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = HID+A2DP+PAN\n");
                        btc8723b1ant_action_hid_a2dp_pan_edr(btcoexist);
                        break;
                case BT_8723B_1ANT_COEX_ALGO_HID_A2DP:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = HID+A2DP\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = HID+A2DP\n");
                        halbtc8723b1ant_action_hid_a2dp(btcoexist);
                        break;
                default:
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], Action algorithm = coexist All Off!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], Action algorithm = coexist All Off!!\n");
                        break;
                }
                coex_dm->pre_algorithm = coex_dm->cur_algorithm;
@@ -2149,6 +2188,7 @@ static void btc8723b1ant_run_sw_coex_mech(struct btc_coexist *btcoexist)
 
 static void halbtc8723b1ant_run_coexist_mechanism(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
        bool wifi_connected = false, bt_hs_on = false;
        bool increase_scan_dev_num = false;
@@ -2158,24 +2198,24 @@ static void halbtc8723b1ant_run_coexist_mechanism(struct btc_coexist *btcoexist)
        u32 wifi_link_status = 0;
        u32 num_of_wifi_link = 0;
 
-       btc_alg_dbg(ALGO_TRACE,
-                   "[BTCoex], RunCoexistMechanism()===>\n");
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], RunCoexistMechanism()===>\n");
 
        if (btcoexist->manual_control) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], RunCoexistMechanism(), return for Manual CTRL <===\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], RunCoexistMechanism(), return for Manual CTRL <===\n");
                return;
        }
 
        if (btcoexist->stop_coex_dm) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], RunCoexistMechanism(), return for Stop Coex DM <===\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], RunCoexistMechanism(), return for Stop Coex DM <===\n");
                return;
        }
 
        if (coex_sta->under_ips) {
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], wifi is under IPS !!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], wifi is under IPS !!!\n");
                return;
        }
 
@@ -2254,8 +2294,8 @@ static void halbtc8723b1ant_run_coexist_mechanism(struct btc_coexist *btcoexist)
        if (!wifi_connected) {
                bool scan = false, link = false, roam = false;
 
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], wifi is non connected-idle !!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], wifi is non connected-idle !!!\n");
 
                btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan);
                btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link);
@@ -2288,12 +2328,13 @@ static void halbtc8723b1ant_init_coex_dm(struct btc_coexist *btcoexist)
 static void halbtc8723b1ant_init_hw_config(struct btc_coexist *btcoexist,
                                           bool backup)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u32 u32tmp = 0;
        u8 u8tmp = 0;
        u32 cnt_bt_cal_chk = 0;
 
-       btc_iface_dbg(INTF_INIT,
-                     "[BTCoex], 1Ant Init HW Config!!\n");
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], 1Ant Init HW Config!!\n");
 
        if (backup) {/* backup rf 0x1e value */
                coex_dm->backup_arfr_cnt1 =
@@ -2320,13 +2361,13 @@ static void halbtc8723b1ant_init_hw_config(struct btc_coexist *btcoexist,
                u32tmp = btcoexist->btc_read_4byte(btcoexist, 0x49d);
                cnt_bt_cal_chk++;
                if (u32tmp & BIT0) {
-                       btc_iface_dbg(INTF_INIT,
-                                     "[BTCoex], ########### BT calibration(cnt=%d) ###########\n",
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], ########### BT calibration(cnt=%d) ###########\n",
                                      cnt_bt_cal_chk);
                        mdelay(50);
                } else {
-                       btc_iface_dbg(INTF_INIT,
-                                     "[BTCoex], ********** BT NOT calibration (cnt=%d)**********\n",
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], ********** BT NOT calibration (cnt=%d)**********\n",
                                      cnt_bt_cal_chk);
                        break;
                }
@@ -2370,8 +2411,10 @@ void ex_halbtc8723b1ant_init_hwconfig(struct btc_coexist *btcoexist)
 
 void ex_halbtc8723b1ant_init_coex_dm(struct btc_coexist *btcoexist)
 {
-       btc_iface_dbg(INTF_INIT,
-                     "[BTCoex], Coex Mechanism Init!!\n");
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], Coex Mechanism Init!!\n");
 
        btcoexist->stop_coex_dm = false;
 
@@ -2398,19 +2441,19 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
        u32 fw_ver = 0, bt_patch_ver = 0;
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                  "\r\n ============[BT Coexist info]============");
+                "\r\n ============[BT Coexist info]============");
 
        if (btcoexist->manual_control) {
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                          "\r\n ============[Under Manual Control]==========");
+                        "\r\n ============[Under Manual Control]==========");
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                          "\r\n ==========================================");
+                        "\r\n ==========================================");
        }
        if (btcoexist->stop_coex_dm) {
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                          "\r\n ============[Coex is STOPPED]============");
+                        "\r\n ============[Coex is STOPPED]============");
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                          "\r\n ==========================================");
+                        "\r\n ==========================================");
        }
 
        if (!board_info->bt_exist) {
@@ -2419,45 +2462,45 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
        }
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d/ %d",
-                  "Ant PG Num/ Ant Mech/ Ant Pos:",
-                  board_info->pg_ant_num, board_info->btdm_ant_num,
-                  board_info->btdm_ant_pos);
+                "Ant PG Num/ Ant Mech/ Ant Pos:",
+                board_info->pg_ant_num, board_info->btdm_ant_num,
+                board_info->btdm_ant_pos);
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %s / %d",
-                  "BT stack/ hci ext ver",
-                  ((stack_info->profile_notified) ? "Yes" : "No"),
-                  stack_info->hci_version);
+                "BT stack/ hci ext ver",
+                ((stack_info->profile_notified) ? "Yes" : "No"),
+                stack_info->hci_version);
 
        btcoexist->btc_get(btcoexist, BTC_GET_U4_BT_PATCH_VER, &bt_patch_ver);
        btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_FW_VER, &fw_ver);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                  "\r\n %-35s = %d_%x/ 0x%x/ 0x%x(%d)",
-                  "CoexVer/ FwVer/ PatchVer",
-                  glcoex_ver_date_8723b_1ant, glcoex_ver_8723b_1ant,
-                  fw_ver, bt_patch_ver, bt_patch_ver);
+                "\r\n %-35s = %d_%x/ 0x%x/ 0x%x(%d)",
+                "CoexVer/ FwVer/ PatchVer",
+                glcoex_ver_date_8723b_1ant, glcoex_ver_8723b_1ant,
+                fw_ver, bt_patch_ver, bt_patch_ver);
 
        btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
        btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_DOT11_CHNL,
                           &wifi_dot11_chnl);
        btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_HS_CHNL, &wifi_hs_chnl);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d / %d(%d)",
-                  "Dot11 channel / HsChnl(HsMode)",
-                  wifi_dot11_chnl, wifi_hs_chnl, bt_hs_on);
+                "Dot11 channel / HsChnl(HsMode)",
+                wifi_dot11_chnl, wifi_hs_chnl, bt_hs_on);
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %3ph ",
-                  "H2C Wifi inform bt chnl Info",
-                  coex_dm->wifi_chnl_info);
+                "H2C Wifi inform bt chnl Info",
+                coex_dm->wifi_chnl_info);
 
        btcoexist->btc_get(btcoexist, BTC_GET_S4_WIFI_RSSI, &wifi_rssi);
        btcoexist->btc_get(btcoexist, BTC_GET_S4_HS_RSSI, &bt_hs_rssi);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d",
-                  "Wifi rssi/ HS rssi", wifi_rssi, bt_hs_rssi);
+                "Wifi rssi/ HS rssi", wifi_rssi, bt_hs_rssi);
 
        btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan);
        btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link);
        btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_ROAM, &roam);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d/ %d ",
-                  "Wifi link/ roam/ scan", link, roam, scan);
+                "Wifi link/ roam/ scan", link, roam, scan);
 
        btcoexist->btc_get(btcoexist , BTC_GET_BL_WIFI_UNDER_5G,
                           &wifi_under_5g);
@@ -2467,106 +2510,106 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
                           &wifi_traffic_dir);
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %s / %s/ %s ",
-                  "Wifi status", (wifi_under_5g ? "5G" : "2.4G"),
-                  ((BTC_WIFI_BW_LEGACY == wifi_bw) ? "Legacy" :
-                       (((BTC_WIFI_BW_HT40 == wifi_bw) ? "HT40" : "HT20"))),
-                  ((!wifi_busy) ? "idle" :
-                       ((BTC_WIFI_TRAFFIC_TX == wifi_traffic_dir) ?
-                               "uplink" : "downlink")));
+                "Wifi status", (wifi_under_5g ? "5G" : "2.4G"),
+                ((wifi_bw == BTC_WIFI_BW_LEGACY) ? "Legacy" :
+                 ((wifi_bw == BTC_WIFI_BW_HT40) ? "HT40" : "HT20")),
+                 ((!wifi_busy) ? "idle" :
+                  ((wifi_traffic_dir == BTC_WIFI_TRAFFIC_TX) ?
+                  "uplink" : "downlink")));
 
        btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
                           &wifi_link_status);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d/ %d/ %d/ %d",
-                  "sta/vwifi/hs/p2pGo/p2pGc",
-                  ((wifi_link_status & WIFI_STA_CONNECTED) ? 1 : 0),
-                  ((wifi_link_status & WIFI_AP_CONNECTED) ? 1 : 0),
-                  ((wifi_link_status & WIFI_HS_CONNECTED) ? 1 : 0),
-                  ((wifi_link_status & WIFI_P2P_GO_CONNECTED) ? 1 : 0),
-                  ((wifi_link_status & WIFI_P2P_GC_CONNECTED) ? 1 : 0));
+                "sta/vwifi/hs/p2pGo/p2pGc",
+                ((wifi_link_status & WIFI_STA_CONNECTED) ? 1 : 0),
+                ((wifi_link_status & WIFI_AP_CONNECTED) ? 1 : 0),
+                ((wifi_link_status & WIFI_HS_CONNECTED) ? 1 : 0),
+                ((wifi_link_status & WIFI_P2P_GO_CONNECTED) ? 1 : 0),
+                ((wifi_link_status & WIFI_P2P_GC_CONNECTED) ? 1 : 0));
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = [%s/ %d/ %d] ",
-                  "BT [status/ rssi/ retryCnt]",
-                  ((btcoexist->bt_info.bt_disabled) ? ("disabled") :
-                   ((coex_sta->c2h_bt_inquiry_page) ? ("inquiry/page scan") :
-                    ((BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE ==
-                      coex_dm->bt_status) ?
-                     "non-connected idle" :
-                     ((BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
-                       coex_dm->bt_status) ?
-                      "connected-idle" : "busy")))),
+                "BT [status/ rssi/ retryCnt]",
+                ((btcoexist->bt_info.bt_disabled) ? ("disabled") :
+                 ((coex_sta->c2h_bt_inquiry_page) ? ("inquiry/page scan") :
+                  ((BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE ==
+                    coex_dm->bt_status) ?
+                   "non-connected idle" :
+                   ((BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
+                     coex_dm->bt_status) ?
+                    "connected-idle" : "busy")))),
                     coex_sta->bt_rssi, coex_sta->bt_retry_cnt);
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                  "\r\n %-35s = %d / %d / %d / %d",
-                  "SCO/HID/PAN/A2DP", bt_link_info->sco_exist,
-                  bt_link_info->hid_exist, bt_link_info->pan_exist,
-                  bt_link_info->a2dp_exist);
+                "\r\n %-35s = %d / %d / %d / %d",
+                "SCO/HID/PAN/A2DP", bt_link_info->sco_exist,
+                bt_link_info->hid_exist, bt_link_info->pan_exist,
+                bt_link_info->a2dp_exist);
        btcoexist->btc_disp_dbg_msg(btcoexist, BTC_DBG_DISP_BT_LINK_INFO);
 
        bt_info_ext = coex_sta->bt_info_ext;
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %s",
-                  "BT Info A2DP rate",
-                  (bt_info_ext & BIT0) ? "Basic rate" : "EDR rate");
+                "BT Info A2DP rate",
+                (bt_info_ext & BIT0) ? "Basic rate" : "EDR rate");
 
        for (i = 0; i < BT_INFO_SRC_8723B_1ANT_MAX; i++) {
                if (coex_sta->bt_info_c2h_cnt[i]) {
                        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                                  "\r\n %-35s = %7ph(%d)",
-                                  GLBtInfoSrc8723b1Ant[i],
-                                  coex_sta->bt_info_c2h[i],
-                                  coex_sta->bt_info_c2h_cnt[i]);
+                                "\r\n %-35s = %7ph(%d)",
+                                GLBtInfoSrc8723b1Ant[i],
+                                coex_sta->bt_info_c2h[i],
+                                coex_sta->bt_info_c2h_cnt[i]);
                }
        }
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                  "\r\n %-35s = %s/%s, (0x%x/0x%x)",
-                  "PS state, IPS/LPS, (lps/rpwm)",
-                  ((coex_sta->under_ips ? "IPS ON" : "IPS OFF")),
-                  ((coex_sta->under_lps ? "LPS ON" : "LPS OFF")),
-                  btcoexist->bt_info.lps_val,
-                  btcoexist->bt_info.rpwm_val);
+                "\r\n %-35s = %s/%s, (0x%x/0x%x)",
+                "PS state, IPS/LPS, (lps/rpwm)",
+                ((coex_sta->under_ips ? "IPS ON" : "IPS OFF")),
+                ((coex_sta->under_lps ? "LPS ON" : "LPS OFF")),
+                btcoexist->bt_info.lps_val,
+                btcoexist->bt_info.rpwm_val);
        btcoexist->btc_disp_dbg_msg(btcoexist, BTC_DBG_DISP_FW_PWR_MODE_CMD);
 
        if (!btcoexist->manual_control) {
                /* Sw mechanism */
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s",
-                          "============[Sw mechanism]============");
+                        "============[Sw mechanism]============");
 
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/",
-                          "SM[LowPenaltyRA]", coex_dm->cur_low_penalty_ra);
+                        "SM[LowPenaltyRA]", coex_dm->cur_low_penalty_ra);
 
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %s/ %s/ %d ",
-                          "DelBA/ BtCtrlAgg/ AggSize",
+                        "DelBA/ BtCtrlAgg/ AggSize",
                           (btcoexist->bt_info.reject_agg_pkt ? "Yes" : "No"),
                           (btcoexist->bt_info.bt_ctrl_buf_size ? "Yes" : "No"),
                           btcoexist->bt_info.agg_buf_size);
 
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x ",
-                          "Rate Mask", btcoexist->bt_info.ra_mask);
+                        "Rate Mask", btcoexist->bt_info.ra_mask);
 
                /* Fw mechanism */
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s",
-                          "============[Fw mechanism]============");
+                        "============[Fw mechanism]============");
 
                pstdmacase = coex_dm->cur_ps_tdma;
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                          "\r\n %-35s = %5ph case-%d (auto:%d)",
+                        "\r\n %-35s = %5ph case-%d (auto:%d)",
                           "PS TDMA", coex_dm->ps_tdma_para,
                           pstdmacase, coex_dm->auto_tdma_adjust);
 
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d ",
-                          "IgnWlanAct", coex_dm->cur_ignore_wlan_act);
+                        "IgnWlanAct", coex_dm->cur_ignore_wlan_act);
 
                RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x ",
-                          "Latest error condition(should be 0)",
+                        "Latest error condition(should be 0)",
                           coex_dm->error_condition);
        }
 
        /* Hw setting */
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s",
-                  "============[Hw setting]============");
+                "============[Hw setting]============");
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/0x%x/0x%x/0x%x",
-                  "backup ARFR1/ARFR2/RL/AMaxTime", coex_dm->backup_arfr_cnt1,
+                "backup ARFR1/ARFR2/RL/AMaxTime", coex_dm->backup_arfr_cnt1,
                   coex_dm->backup_arfr_cnt2, coex_dm->backup_retry_limit,
                   coex_dm->backup_ampdu_max_time);
 
@@ -2575,49 +2618,49 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
        u16tmp[0] = btcoexist->btc_read_2byte(btcoexist, 0x42a);
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x456);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/0x%x/0x%x/0x%x",
-                  "0x430/0x434/0x42a/0x456",
-                  u32tmp[0], u32tmp[1], u16tmp[0], u8tmp[0]);
+                "0x430/0x434/0x42a/0x456",
+                u32tmp[0], u32tmp[1], u16tmp[0], u8tmp[0]);
 
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x778);
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x6cc);
        u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x880);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
-                  "0x778/0x6cc/0x880[29:25]", u8tmp[0], u32tmp[0],
-                  (u32tmp[1] & 0x3e000000) >> 25);
+                "0x778/0x6cc/0x880[29:25]", u8tmp[0], u32tmp[0],
+                (u32tmp[1] & 0x3e000000) >> 25);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x948);
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x67);
        u8tmp[1] = btcoexist->btc_read_1byte(btcoexist, 0x765);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
-                  "0x948/ 0x67[5] / 0x765",
-                  u32tmp[0], ((u8tmp[0] & 0x20) >> 5), u8tmp[1]);
+                "0x948/ 0x67[5] / 0x765",
+                u32tmp[0], ((u8tmp[0] & 0x20) >> 5), u8tmp[1]);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x92c);
        u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x930);
        u32tmp[2] = btcoexist->btc_read_4byte(btcoexist, 0x944);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
-                  "0x92c[1:0]/ 0x930[7:0]/0x944[1:0]",
-                  u32tmp[0] & 0x3, u32tmp[1] & 0xff, u32tmp[2] & 0x3);
+                "0x92c[1:0]/ 0x930[7:0]/0x944[1:0]",
+                u32tmp[0] & 0x3, u32tmp[1] & 0xff, u32tmp[2] & 0x3);
 
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x39);
        u8tmp[1] = btcoexist->btc_read_1byte(btcoexist, 0x40);
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x4c);
        u8tmp[2] = btcoexist->btc_read_1byte(btcoexist, 0x64);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
-                  "\r\n %-35s = 0x%x/ 0x%x/ 0x%x/ 0x%x",
-                  "0x38[11]/0x40/0x4c[24:23]/0x64[0]",
-                  ((u8tmp[0] & 0x8)>>3), u8tmp[1],
-                  ((u32tmp[0] & 0x01800000) >> 23), u8tmp[2] & 0x1);
+                "\r\n %-35s = 0x%x/ 0x%x/ 0x%x/ 0x%x",
+                "0x38[11]/0x40/0x4c[24:23]/0x64[0]",
+                ((u8tmp[0] & 0x8) >> 3), u8tmp[1],
+                 ((u32tmp[0] & 0x01800000) >> 23), u8tmp[2] & 0x1);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x550);
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x522);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x",
-                  "0x550(bcn ctrl)/0x522", u32tmp[0], u8tmp[0]);
+                "0x550(bcn ctrl)/0x522", u32tmp[0], u8tmp[0]);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0xc50);
        u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x49c);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x",
-                  "0xc50(dig)/0x49c(null-drop)", u32tmp[0] & 0xff, u8tmp[0]);
+                "0xc50(dig)/0x49c(null-drop)", u32tmp[0] & 0xff, u8tmp[0]);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0xda0);
        u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0xda4);
@@ -2636,22 +2679,22 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
        fa_cck = (u8tmp[0] << 8) + u8tmp[1];
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
-                  "OFDM-CCA/OFDM-FA/CCK-FA",
-                  u32tmp[0] & 0xffff, fa_ofdm, fa_cck);
+                "OFDM-CCA/OFDM-FA/CCK-FA",
+                u32tmp[0] & 0xffff, fa_ofdm, fa_cck);
 
        u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x6c0);
        u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x6c4);
        u32tmp[2] = btcoexist->btc_read_4byte(btcoexist, 0x6c8);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
-                  "0x6c0/0x6c4/0x6c8(coexTable)",
-                  u32tmp[0], u32tmp[1], u32tmp[2]);
+                "0x6c0/0x6c4/0x6c8(coexTable)",
+                u32tmp[0], u32tmp[1], u32tmp[2]);
 
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d",
-                  "0x770(high-pri rx/tx)", coex_sta->high_priority_rx,
-                  coex_sta->high_priority_tx);
+                "0x770(high-pri rx/tx)", coex_sta->high_priority_rx,
+                coex_sta->high_priority_tx);
        RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "\r\n %-35s = %d/ %d",
-                  "0x774(low-pri rx/tx)", coex_sta->low_priority_rx,
-                  coex_sta->low_priority_tx);
+                "0x774(low-pri rx/tx)", coex_sta->low_priority_rx,
+                coex_sta->low_priority_tx);
 #if (BT_AUTO_REPORT_ONLY_8723B_1ANT == 1)
        halbtc8723b1ant_monitor_bt_ctr(btcoexist);
 #endif
@@ -2660,12 +2703,14 @@ void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
 
 void ex_halbtc8723b1ant_ips_notify(struct btc_coexist *btcoexist, u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
        if (btcoexist->manual_control || btcoexist->stop_coex_dm)
                return;
 
        if (BTC_IPS_ENTER == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], IPS ENTER notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], IPS ENTER notify\n");
                coex_sta->under_ips = true;
 
                halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT,
@@ -2676,8 +2721,8 @@ void ex_halbtc8723b1ant_ips_notify(struct btc_coexist *btcoexist, u8 type)
                                                     NORMAL_EXEC, 0);
                halbtc8723b1ant_wifi_off_hw_cfg(btcoexist);
        } else if (BTC_IPS_LEAVE == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], IPS LEAVE notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], IPS LEAVE notify\n");
                coex_sta->under_ips = false;
 
                halbtc8723b1ant_init_hw_config(btcoexist, false);
@@ -2688,22 +2733,25 @@ void ex_halbtc8723b1ant_ips_notify(struct btc_coexist *btcoexist, u8 type)
 
 void ex_halbtc8723b1ant_lps_notify(struct btc_coexist *btcoexist, u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
        if (btcoexist->manual_control || btcoexist->stop_coex_dm)
                return;
 
        if (BTC_LPS_ENABLE == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], LPS ENABLE notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], LPS ENABLE notify\n");
                coex_sta->under_lps = true;
        } else if (BTC_LPS_DISABLE == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], LPS DISABLE notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], LPS DISABLE notify\n");
                coex_sta->under_lps = false;
        }
 }
 
 void ex_halbtc8723b1ant_scan_notify(struct btc_coexist *btcoexist, u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool wifi_connected = false, bt_hs_on = false;
        u32 wifi_link_status = 0;
        u32 num_of_wifi_link = 0;
@@ -2740,15 +2788,15 @@ void ex_halbtc8723b1ant_scan_notify(struct btc_coexist *btcoexist, u8 type)
        }
 
        if (BTC_SCAN_START == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], SCAN START notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], SCAN START notify\n");
                if (!wifi_connected)    /* non-connected scan */
                        btc8723b1ant_action_wifi_not_conn_scan(btcoexist);
                else    /* wifi is connected */
                        btc8723b1ant_action_wifi_conn_scan(btcoexist);
        } else if (BTC_SCAN_FINISH == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], SCAN FINISH notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], SCAN FINISH notify\n");
                if (!wifi_connected)    /* non-connected scan */
                        btc8723b1ant_action_wifi_not_conn(btcoexist);
                else
@@ -2758,6 +2806,7 @@ void ex_halbtc8723b1ant_scan_notify(struct btc_coexist *btcoexist, u8 type)
 
 void ex_halbtc8723b1ant_connect_notify(struct btc_coexist *btcoexist, u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool wifi_connected = false, bt_hs_on = false;
        u32 wifi_link_status = 0;
        u32 num_of_wifi_link = 0;
@@ -2789,12 +2838,12 @@ void ex_halbtc8723b1ant_connect_notify(struct btc_coexist *btcoexist, u8 type)
        }
 
        if (BTC_ASSOCIATE_START == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], CONNECT START notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], CONNECT START notify\n");
                btc8723b1ant_act_wifi_not_conn_asso_auth(btcoexist);
        } else if (BTC_ASSOCIATE_FINISH == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], CONNECT FINISH notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], CONNECT FINISH notify\n");
 
                btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
                                   &wifi_connected);
@@ -2808,6 +2857,7 @@ void ex_halbtc8723b1ant_connect_notify(struct btc_coexist *btcoexist, u8 type)
 void ex_halbtc8723b1ant_media_status_notify(struct btc_coexist *btcoexist,
                                            u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 h2c_parameter[3] = {0};
        u32 wifi_bw;
        u8 wifiCentralChnl;
@@ -2817,11 +2867,11 @@ void ex_halbtc8723b1ant_media_status_notify(struct btc_coexist *btcoexist,
                return;
 
        if (BTC_MEDIA_CONNECT == type)
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], MEDIA connect notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], MEDIA connect notify\n");
        else
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], MEDIA disconnect notify\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], MEDIA disconnect notify\n");
 
        /* only 2.4G we need to inform bt the chnl mask */
        btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_CENTRAL_CHNL,
@@ -2842,10 +2892,10 @@ void ex_halbtc8723b1ant_media_status_notify(struct btc_coexist *btcoexist,
        coex_dm->wifi_chnl_info[1] = h2c_parameter[1];
        coex_dm->wifi_chnl_info[2] = h2c_parameter[2];
 
-       btc_alg_dbg(ALGO_TRACE_FW_EXEC,
-                   "[BTCoex], FW write 0x66 = 0x%x\n",
-                   h2c_parameter[0] << 16 | h2c_parameter[1] << 8 |
-                   h2c_parameter[2]);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], FW write 0x66 = 0x%x\n",
+                h2c_parameter[0] << 16 | h2c_parameter[1] << 8 |
+                h2c_parameter[2]);
 
        btcoexist->btc_fill_h2c(btcoexist, 0x66, 3, h2c_parameter);
 }
@@ -2853,6 +2903,7 @@ void ex_halbtc8723b1ant_media_status_notify(struct btc_coexist *btcoexist,
 void ex_halbtc8723b1ant_special_packet_notify(struct btc_coexist *btcoexist,
                                              u8 type)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        bool bt_hs_on = false;
        u32 wifi_link_status = 0;
        u32 num_of_wifi_link = 0;
@@ -2887,8 +2938,8 @@ void ex_halbtc8723b1ant_special_packet_notify(struct btc_coexist *btcoexist,
 
        if (BTC_PACKET_DHCP == type ||
            BTC_PACKET_EAPOL == type) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], special Packet(%d) notify\n", type);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], special Packet(%d) notify\n", type);
                halbtc8723b1ant_action_wifi_connected_special_packet(btcoexist);
        }
 }
@@ -2896,6 +2947,7 @@ void ex_halbtc8723b1ant_special_packet_notify(struct btc_coexist *btcoexist,
 void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
                                       u8 *tmp_buf, u8 length)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        u8 bt_info = 0;
        u8 i, rsp_source = 0;
        bool wifi_connected = false;
@@ -2908,19 +2960,19 @@ void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
                rsp_source = BT_INFO_SRC_8723B_1ANT_WIFI_FW;
        coex_sta->bt_info_c2h_cnt[rsp_source]++;
 
-       btc_iface_dbg(INTF_NOTIFY,
-                     "[BTCoex], Bt info[%d], length=%d, hex data = [",
-                     rsp_source, length);
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], Bt info[%d], length=%d, hex data = [",
+                rsp_source, length);
        for (i = 0; i < length; i++) {
                coex_sta->bt_info_c2h[rsp_source][i] = tmp_buf[i];
                if (i == 1)
                        bt_info = tmp_buf[i];
                if (i == length - 1)
-                       btc_iface_dbg(INTF_NOTIFY,
-                                     "0x%02x]\n", tmp_buf[i]);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "0x%02x]\n", tmp_buf[i]);
                else
-                       btc_iface_dbg(INTF_NOTIFY,
-                                     "0x%02x, ", tmp_buf[i]);
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "0x%02x, ", tmp_buf[i]);
        }
 
        if (BT_INFO_SRC_8723B_1ANT_WIFI_FW != rsp_source) {
@@ -2937,8 +2989,8 @@ void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
                 * because bt is reset and loss of the info.
                 */
                if (coex_sta->bt_info_ext & BIT1) {
-                       btc_alg_dbg(ALGO_TRACE,
-                                   "[BTCoex], BT ext info bit1 check, send wifi BW&Chnl to BT!!\n");
+                       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                "[BTCoex], BT ext info bit1 check, send wifi BW&Chnl to BT!!\n");
                        btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
                                           &wifi_connected);
                        if (wifi_connected)
@@ -2952,8 +3004,8 @@ void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
                if (coex_sta->bt_info_ext & BIT3) {
                        if (!btcoexist->manual_control &&
                            !btcoexist->stop_coex_dm) {
-                               btc_alg_dbg(ALGO_TRACE,
-                                           "[BTCoex], BT ext info bit3 check, set BT NOT ignore Wlan active!!\n");
+                               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                                        "[BTCoex], BT ext info bit3 check, set BT NOT ignore Wlan active!!\n");
                                halbtc8723b1ant_ignore_wlan_act(btcoexist,
                                                                FORCE_EXEC,
                                                                false);
@@ -3008,30 +3060,30 @@ void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
 
        if (!(bt_info&BT_INFO_8723B_1ANT_B_CONNECTION)) {
                coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE;
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], BtInfoNotify(), BT Non-Connected idle!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BtInfoNotify(), BT Non-Connected idle!\n");
        /* connection exists but no busy */
        } else if (bt_info == BT_INFO_8723B_1ANT_B_CONNECTION) {
                coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE;
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], BtInfoNotify(), BT Connected-idle!!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BtInfoNotify(), BT Connected-idle!!!\n");
        } else if ((bt_info & BT_INFO_8723B_1ANT_B_SCO_ESCO) ||
                (bt_info & BT_INFO_8723B_1ANT_B_SCO_BUSY)) {
                coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_SCO_BUSY;
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], BtInfoNotify(), BT SCO busy!!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BtInfoNotify(), BT SCO busy!!!\n");
        } else if (bt_info & BT_INFO_8723B_1ANT_B_ACL_BUSY) {
                if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY != coex_dm->bt_status)
                        coex_dm->auto_tdma_adjust = false;
 
                coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_ACL_BUSY;
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], BtInfoNotify(), BT ACL busy!!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BtInfoNotify(), BT ACL busy!!!\n");
        } else {
                coex_dm->bt_status =
                        BT_8723B_1ANT_BT_STATUS_MAX;
-               btc_alg_dbg(ALGO_TRACE,
-                           "[BTCoex], BtInfoNotify(), BT Non-Defined state!!\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BtInfoNotify(), BT Non-Defined state!!\n");
        }
 
        if ((BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) ||
@@ -3047,7 +3099,9 @@ void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
 
 void ex_halbtc8723b1ant_halt_notify(struct btc_coexist *btcoexist)
 {
-       btc_iface_dbg(INTF_NOTIFY, "[BTCoex], Halt notify\n");
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "[BTCoex], Halt notify\n");
 
        btcoexist->stop_coex_dm = true;
 
@@ -3065,11 +3119,13 @@ void ex_halbtc8723b1ant_halt_notify(struct btc_coexist *btcoexist)
 
 void ex_halbtc8723b1ant_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state)
 {
-       btc_iface_dbg(INTF_NOTIFY, "[BTCoex], Pnp notify\n");
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD, "[BTCoex], Pnp notify\n");
 
        if (BTC_WIFI_PNP_SLEEP == pnp_state) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], Pnp notify to SLEEP\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Pnp notify to SLEEP\n");
                btcoexist->stop_coex_dm = true;
                halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT, false,
                                           true);
@@ -3079,8 +3135,8 @@ void ex_halbtc8723b1ant_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state)
                halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
                halbtc8723b1ant_wifi_off_hw_cfg(btcoexist);
        } else if (BTC_WIFI_PNP_WAKE_UP == pnp_state) {
-               btc_iface_dbg(INTF_NOTIFY,
-                             "[BTCoex], Pnp notify to WAKE UP\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Pnp notify to WAKE UP\n");
                btcoexist->stop_coex_dm = false;
                halbtc8723b1ant_init_hw_config(btcoexist, false);
                halbtc8723b1ant_init_coex_dm(btcoexist);
@@ -3090,8 +3146,10 @@ void ex_halbtc8723b1ant_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state)
 
 void ex_halbtc8723b1ant_coex_dm_reset(struct btc_coexist *btcoexist)
 {
-       btc_alg_dbg(ALGO_TRACE,
-                   "[BTCoex], *****************Coex DM Reset****************\n");
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], *****************Coex DM Reset****************\n");
 
        halbtc8723b1ant_init_hw_config(btcoexist, false);
        btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x1, 0xfffff, 0x0);
@@ -3101,36 +3159,37 @@ void ex_halbtc8723b1ant_coex_dm_reset(struct btc_coexist *btcoexist)
 
 void ex_halbtc8723b1ant_periodical(struct btc_coexist *btcoexist)
 {
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
        struct btc_board_info *board_info = &btcoexist->board_info;
        struct btc_stack_info *stack_info = &btcoexist->stack_info;
        static u8 dis_ver_info_cnt;
        u32 fw_ver = 0, bt_patch_ver = 0;
 
-       btc_alg_dbg(ALGO_TRACE,
-                   "[BTCoex], ==========================Periodical===========================\n");
+       RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                "[BTCoex], ==========================Periodical===========================\n");
 
        if (dis_ver_info_cnt <= 5) {
                dis_ver_info_cnt += 1;
-               btc_iface_dbg(INTF_INIT,
-                             "[BTCoex], ****************************************************************\n");
-               btc_iface_dbg(INTF_INIT,
-                             "[BTCoex], Ant PG Num/ Ant Mech/ Ant Pos = %d/ %d/ %d\n",
-                             board_info->pg_ant_num, board_info->btdm_ant_num,
-                             board_info->btdm_ant_pos);
-               btc_iface_dbg(INTF_INIT,
-                             "[BTCoex], BT stack/ hci ext ver = %s / %d\n",
-                             stack_info->profile_notified ? "Yes" : "No",
-                             stack_info->hci_version);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], ****************************************************************\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], Ant PG Num/ Ant Mech/ Ant Pos = %d/ %d/ %d\n",
+                        board_info->pg_ant_num, board_info->btdm_ant_num,
+                        board_info->btdm_ant_pos);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], BT stack/ hci ext ver = %s / %d\n",
+                        stack_info->profile_notified ? "Yes" : "No",
+                        stack_info->hci_version);
                btcoexist->btc_get(btcoexist, BTC_GET_U4_BT_PATCH_VER,
                                   &bt_patch_ver);
                btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_FW_VER, &fw_ver);
-               btc_iface_dbg(INTF_INIT,
-                             "[BTCoex], CoexVer/ FwVer/ PatchVer = %d_%x/ 0x%x/ 0x%x(%d)\n",
-                             glcoex_ver_date_8723b_1ant,
-                             glcoex_ver_8723b_1ant, fw_ver,
-                             bt_patch_ver, bt_patch_ver);
-               btc_iface_dbg(INTF_INIT,
-                             "[BTCoex], ****************************************************************\n");
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], CoexVer/ FwVer/ PatchVer = %d_%x/ 0x%x/ 0x%x(%d)\n",
+                        glcoex_ver_date_8723b_1ant,
+                        glcoex_ver_8723b_1ant, fw_ver,
+                        bt_patch_ver, bt_patch_ver);
+               RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
+                        "[BTCoex], ****************************************************************\n");
        }
 
 #if (BT_AUTO_REPORT_ONLY_8723B_1ANT == 0)