18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/* Copyright(c) 2009-2012  Realtek Corporation.*/
38c2ecf20Sopenharmony_ci
48c2ecf20Sopenharmony_ci#ifndef __RTL92C_PHY_H__
58c2ecf20Sopenharmony_ci#define __RTL92C_PHY_H__
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci#define MAX_PRECMD_CNT			16
88c2ecf20Sopenharmony_ci#define MAX_RFDEPENDCMD_CNT		16
98c2ecf20Sopenharmony_ci#define MAX_POSTCMD_CNT			16
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ci#define MAX_DOZE_WAITING_TIMES_9x	64
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci#define RT_CANNOT_IO(hw)		false
148c2ecf20Sopenharmony_ci#define HIGHPOWER_RADIOA_ARRAYLEN	22
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci#define MAX_TOLERANCE			5
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci#define	APK_BB_REG_NUM			5
198c2ecf20Sopenharmony_ci#define	APK_AFE_REG_NUM			16
208c2ecf20Sopenharmony_ci#define	APK_CURVE_REG_NUM		4
218c2ecf20Sopenharmony_ci#define	PATH_NUM			2
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci#define LOOP_LIMIT			5
248c2ecf20Sopenharmony_ci#define MAX_STALL_TIME			50
258c2ecf20Sopenharmony_ci#define ANTENNADIVERSITYVALUE		0x80
268c2ecf20Sopenharmony_ci#define MAX_TXPWR_IDX_NMODE_92S		63
278c2ecf20Sopenharmony_ci#define RESET_CNT_LIMIT			3
288c2ecf20Sopenharmony_ci
298c2ecf20Sopenharmony_ci#define IQK_ADDA_REG_NUM		16
308c2ecf20Sopenharmony_ci#define IQK_MAC_REG_NUM			4
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci#define IQK_DELAY_TIME			1
338c2ecf20Sopenharmony_ci
348c2ecf20Sopenharmony_ci#define RF90_PATH_MAX			2
358c2ecf20Sopenharmony_ci
368c2ecf20Sopenharmony_ci#define CT_OFFSET_MAC_ADDR		0X16
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci#define CT_OFFSET_CCK_TX_PWR_IDX	0x5A
398c2ecf20Sopenharmony_ci#define CT_OFFSET_HT401S_TX_PWR_IDX	0x60
408c2ecf20Sopenharmony_ci#define CT_OFFSET_HT402S_TX_PWR_IDX_DIF	0x66
418c2ecf20Sopenharmony_ci#define CT_OFFSET_HT20_TX_PWR_IDX_DIFF	0x69
428c2ecf20Sopenharmony_ci#define CT_OFFSET_OFDM_TX_PWR_IDX_DIFF	0x6C
438c2ecf20Sopenharmony_ci
448c2ecf20Sopenharmony_ci#define CT_OFFSET_HT40_MAX_PWR_OFFSET	0x6F
458c2ecf20Sopenharmony_ci#define CT_OFFSET_HT20_MAX_PWR_OFFSET	0x72
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci#define CT_OFFSET_CHANNEL_PLAH		0x75
488c2ecf20Sopenharmony_ci#define CT_OFFSET_THERMAL_METER		0x78
498c2ecf20Sopenharmony_ci#define CT_OFFSET_RF_OPTION		0x79
508c2ecf20Sopenharmony_ci#define CT_OFFSET_VERSION		0x7E
518c2ecf20Sopenharmony_ci#define CT_OFFSET_CUSTOMER_ID		0x7F
528c2ecf20Sopenharmony_ci
538c2ecf20Sopenharmony_ci#define RTL92C_MAX_PATH_NUM		2
548c2ecf20Sopenharmony_ci
558c2ecf20Sopenharmony_cibool rtl92c_phy_bb_config(struct ieee80211_hw *hw);
568c2ecf20Sopenharmony_ciu32 rtl92c_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
578c2ecf20Sopenharmony_civoid rtl92c_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
588c2ecf20Sopenharmony_ci			   u32 data);
598c2ecf20Sopenharmony_ciu32 rtl92c_phy_query_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
608c2ecf20Sopenharmony_ci			    u32 regaddr, u32 bitmask);
618c2ecf20Sopenharmony_civoid rtl92ce_phy_set_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
628c2ecf20Sopenharmony_ci			    u32 regaddr, u32 bitmask, u32 data);
638c2ecf20Sopenharmony_cibool rtl92c_phy_mac_config(struct ieee80211_hw *hw);
648c2ecf20Sopenharmony_cibool rtl92ce_phy_bb_config(struct ieee80211_hw *hw);
658c2ecf20Sopenharmony_cibool rtl92c_phy_rf_config(struct ieee80211_hw *hw);
668c2ecf20Sopenharmony_cibool rtl92c_phy_config_rf_with_feaderfile(struct ieee80211_hw *hw,
678c2ecf20Sopenharmony_ci					  enum radio_path rfpath);
688c2ecf20Sopenharmony_civoid rtl92c_phy_get_hw_reg_originalvalue(struct ieee80211_hw *hw);
698c2ecf20Sopenharmony_civoid rtl92c_phy_get_txpower_level(struct ieee80211_hw *hw, long *powerlevel);
708c2ecf20Sopenharmony_civoid rtl92c_phy_set_txpower_level(struct ieee80211_hw *hw, u8 channel);
718c2ecf20Sopenharmony_cibool rtl92c_phy_update_txpower_dbm(struct ieee80211_hw *hw,
728c2ecf20Sopenharmony_ci					  long power_indbm);
738c2ecf20Sopenharmony_civoid rtl92c_phy_set_bw_mode(struct ieee80211_hw *hw,
748c2ecf20Sopenharmony_ci			    enum nl80211_channel_type ch_type);
758c2ecf20Sopenharmony_civoid rtl92c_phy_sw_chnl_callback(struct ieee80211_hw *hw);
768c2ecf20Sopenharmony_ciu8 rtl92c_phy_sw_chnl(struct ieee80211_hw *hw);
778c2ecf20Sopenharmony_civoid rtl92c_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery);
788c2ecf20Sopenharmony_civoid rtl92c_phy_set_beacon_hw_reg(struct ieee80211_hw *hw, u16 beaconinterval);
798c2ecf20Sopenharmony_civoid rtl92c_phy_ap_calibrate(struct ieee80211_hw *hw, s8 delta);
808c2ecf20Sopenharmony_civoid rtl92c_phy_lc_calibrate(struct ieee80211_hw *hw);
818c2ecf20Sopenharmony_civoid _rtl92ce_phy_lc_calibrate(struct ieee80211_hw *hw, bool is2t);
828c2ecf20Sopenharmony_civoid rtl92c_phy_set_rfpath_switch(struct ieee80211_hw *hw, bool bmain);
838c2ecf20Sopenharmony_cibool rtl92c_phy_config_rf_with_headerfile(struct ieee80211_hw *hw,
848c2ecf20Sopenharmony_ci					  enum radio_path rfpath);
858c2ecf20Sopenharmony_cibool rtl8192_phy_check_is_legal_rfpath(struct ieee80211_hw *hw,
868c2ecf20Sopenharmony_ci				       u32 rfpath);
878c2ecf20Sopenharmony_cibool rtl92ce_phy_set_rf_power_state(struct ieee80211_hw *hw,
888c2ecf20Sopenharmony_ci				    enum rf_pwrstate rfpwr_state);
898c2ecf20Sopenharmony_civoid rtl92ce_phy_set_rf_on(struct ieee80211_hw *hw);
908c2ecf20Sopenharmony_cibool rtl92c_phy_set_io_cmd(struct ieee80211_hw *hw, enum io_type iotype);
918c2ecf20Sopenharmony_civoid rtl92c_phy_set_io(struct ieee80211_hw *hw);
928c2ecf20Sopenharmony_civoid rtl92c_bb_block_on(struct ieee80211_hw *hw);
938c2ecf20Sopenharmony_ciu32 _rtl92c_phy_rf_serial_read(struct ieee80211_hw *hw, enum radio_path rfpath,
948c2ecf20Sopenharmony_ci			       u32 offset);
958c2ecf20Sopenharmony_ciu32 _rtl92c_phy_fw_rf_serial_read(struct ieee80211_hw *hw,
968c2ecf20Sopenharmony_ci				  enum radio_path rfpath, u32 offset);
978c2ecf20Sopenharmony_civoid _rtl92c_phy_rf_serial_write(struct ieee80211_hw *hw,
988c2ecf20Sopenharmony_ci				 enum radio_path rfpath, u32 offset, u32 data);
998c2ecf20Sopenharmony_civoid _rtl92c_phy_fw_rf_serial_write(struct ieee80211_hw *hw,
1008c2ecf20Sopenharmony_ci				    enum radio_path rfpath, u32 offset,
1018c2ecf20Sopenharmony_ci				    u32 data);
1028c2ecf20Sopenharmony_civoid _rtl92c_store_pwrindex_diffrate_offset(struct ieee80211_hw *hw,
1038c2ecf20Sopenharmony_ci					    u32 regaddr, u32 bitmask, u32 data);
1048c2ecf20Sopenharmony_cibool _rtl92ce_phy_config_mac_with_headerfile(struct ieee80211_hw *hw);
1058c2ecf20Sopenharmony_civoid _rtl92c_phy_init_bb_rf_register_definition(struct ieee80211_hw *hw);
1068c2ecf20Sopenharmony_cibool _rtl92c_phy_bb8192c_config_parafile(struct ieee80211_hw *hw);
1078c2ecf20Sopenharmony_civoid _rtl92c_phy_set_rf_sleep(struct ieee80211_hw *hw);
1088c2ecf20Sopenharmony_cibool rtl92c_phy_set_rf_power_state(struct ieee80211_hw *hw,
1098c2ecf20Sopenharmony_ci				   enum rf_pwrstate rfpwr_state);
1108c2ecf20Sopenharmony_cibool _rtl92ce_phy_config_bb_with_headerfile(struct ieee80211_hw *hw,
1118c2ecf20Sopenharmony_ci					    u8 configtype);
1128c2ecf20Sopenharmony_cibool _rtl92ce_phy_config_bb_with_pgheaderfile(struct ieee80211_hw *hw,
1138c2ecf20Sopenharmony_ci					      u8 configtype);
1148c2ecf20Sopenharmony_civoid rtl92ce_phy_set_bw_mode_callback(struct ieee80211_hw *hw);
1158c2ecf20Sopenharmony_ci
1168c2ecf20Sopenharmony_ci#endif
117