}
 }
 
+static void halbtc_pre_normal_lps(struct btc_coexist *btcoexist)
+{
+       struct rtl_priv *rtlpriv = btcoexist->adapter;
+
+       if (btcoexist->bt_info.bt_ctrl_lps) {
+               btcoexist->bt_info.bt_lps_on = false;
+               rtl_lps_leave(rtlpriv->mac80211.hw);
+       }
+}
+
+static void halbtc_post_normal_lps(struct btc_coexist *btcoexist)
+{
+       if (btcoexist->bt_info.bt_ctrl_lps)
+               btcoexist->bt_info.bt_ctrl_lps = false;
+}
+
 static void halbtc_leave_low_power(struct btc_coexist *btcoexist)
 {
 }
        case BTC_SET_ACT_NORMAL_LPS:
                halbtc_normal_lps(btcoexist);
                break;
+       case BTC_SET_ACT_PRE_NORMAL_LPS:
+               halbtc_pre_normal_lps(btcoexist);
+               break;
+       case BTC_SET_ACT_POST_NORMAL_LPS:
+               halbtc_post_normal_lps(btcoexist);
+               break;
        case BTC_SET_ACT_DISABLE_LOW_POWER:
                halbtc_disable_low_power(btcoexist, *bool_tmp);
                break;
 
        BTC_SET_ACT_LEAVE_LPS,
        BTC_SET_ACT_ENTER_LPS,
        BTC_SET_ACT_NORMAL_LPS,
+       BTC_SET_ACT_PRE_NORMAL_LPS,
+       BTC_SET_ACT_POST_NORMAL_LPS,
        BTC_SET_ACT_INC_FORCE_EXEC_PWR_CMD_CNT,
        BTC_SET_ACT_DISABLE_LOW_POWER,
        BTC_SET_ACT_UPDATE_RAMASK,