1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2 /* Copyright(c) 2024 Realtek Corporation 3 */ 4 5 #ifndef __RTW89_8852BT_RFK_H__ 6 #define __RTW89_8852BT_RFK_H__ 7 8 #include "core.h" 9 10 void rtw8852bt_rck(struct rtw89_dev *rtwdev); 11 void rtw8852bt_dack(struct rtw89_dev *rtwdev); 12 void rtw8852bt_iqk(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx); 13 void rtw8852bt_rx_dck(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx); 14 void rtw8852bt_dpk_init(struct rtw89_dev *rtwdev); 15 void rtw8852bt_dpk(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy); 16 void rtw8852bt_dpk_track(struct rtw89_dev *rtwdev); 17 void rtw8852bt_tssi(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy, bool hwtx_en); 18 void rtw8852bt_tssi_scan(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy); 19 void rtw8852bt_wifi_scan_notify(struct rtw89_dev *rtwdev, bool scan_start, 20 enum rtw89_phy_idx phy_idx); 21 22 #endif 23