xref: /linux/drivers/net/wireless/realtek/rtw89/rtw8852a_rfk.h (revision 9410645520e9b820069761f3450ef6661418e279)
1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2 /* Copyright(c) 2019-2020  Realtek Corporation
3  */
4 
5 #ifndef __RTW89_8852A_RFK_H__
6 #define __RTW89_8852A_RFK_H__
7 
8 #include "core.h"
9 
10 void rtw8852a_rck(struct rtw89_dev *rtwdev);
11 void rtw8852a_dack(struct rtw89_dev *rtwdev,
12 		   enum rtw89_chanctx_idx chanctx_idx);
13 void rtw8852a_iqk(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx,
14 		  enum rtw89_chanctx_idx chanctx_idx);
15 void rtw8852a_rx_dck(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx,
16 		     bool is_afe, enum rtw89_chanctx_idx chanctx_idx);
17 void rtw8852a_dpk(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx,
18 		  enum rtw89_chanctx_idx chanctx_idx);
19 void rtw8852a_dpk_track(struct rtw89_dev *rtwdev);
20 void rtw8852a_tssi(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy,
21 		   enum rtw89_chanctx_idx chanctx_idx);
22 void rtw8852a_tssi_scan(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy,
23 			const struct rtw89_chan *chan);
24 void rtw8852a_tssi_track(struct rtw89_dev *rtwdev);
25 void rtw8852a_wifi_scan_notify(struct rtw89_dev *rtwdev, bool scan_start,
26 			       enum rtw89_phy_idx phy_idx);
27 
28 #endif
29