18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/* Copyright(c) 2009-2010  Realtek Corporation.*/
38c2ecf20Sopenharmony_ci
48c2ecf20Sopenharmony_ci#ifndef __RTL8821AE_PHY_H__
58c2ecf20Sopenharmony_ci#define __RTL8821AE_PHY_H__
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci/* MAX_TX_COUNT must always be set to 4, otherwise read
88c2ecf20Sopenharmony_ci * efuse table sequence will be wrong.
98c2ecf20Sopenharmony_ci */
108c2ecf20Sopenharmony_ci#define MAX_TX_COUNT				4
118c2ecf20Sopenharmony_ci#define	TX_1S					0
128c2ecf20Sopenharmony_ci#define	TX_2S					1
138c2ecf20Sopenharmony_ci#define	TX_3S					2
148c2ecf20Sopenharmony_ci#define	TX_4S					3
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci#define	MAX_POWER_INDEX				0x3F
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci#define MAX_PRECMD_CNT				16
198c2ecf20Sopenharmony_ci#define MAX_RFDEPENDCMD_CNT			16
208c2ecf20Sopenharmony_ci#define MAX_POSTCMD_CNT				16
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci#define MAX_DOZE_WAITING_TIMES_9x		64
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_ci#define RT_CANNOT_IO(hw)			false
258c2ecf20Sopenharmony_ci#define HIGHPOWER_RADIOA_ARRAYLEN		22
268c2ecf20Sopenharmony_ci
278c2ecf20Sopenharmony_ci#define IQK_ADDA_REG_NUM			16
288c2ecf20Sopenharmony_ci#define IQK_BB_REG_NUM				9
298c2ecf20Sopenharmony_ci#define MAX_TOLERANCE				5
308c2ecf20Sopenharmony_ci#define	IQK_DELAY_TIME				10
318c2ecf20Sopenharmony_ci#define	index_mapping_NUM			15
328c2ecf20Sopenharmony_ci
338c2ecf20Sopenharmony_ci#define	APK_BB_REG_NUM				5
348c2ecf20Sopenharmony_ci#define	APK_AFE_REG_NUM				16
358c2ecf20Sopenharmony_ci#define	APK_CURVE_REG_NUM			4
368c2ecf20Sopenharmony_ci#define	PATH_NUM				2
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci#define LOOP_LIMIT				5
398c2ecf20Sopenharmony_ci#define MAX_STALL_TIME				50
408c2ecf20Sopenharmony_ci#define ANTENNADIVERSITYVALUE			0x80
418c2ecf20Sopenharmony_ci#define MAX_TXPWR_IDX_NMODE_92S			63
428c2ecf20Sopenharmony_ci#define RESET_CNT_LIMIT				3
438c2ecf20Sopenharmony_ci
448c2ecf20Sopenharmony_ci#define IQK_ADDA_REG_NUM			16
458c2ecf20Sopenharmony_ci#define IQK_MAC_REG_NUM				4
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci#define RF6052_MAX_PATH				2
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci#define CT_OFFSET_MAC_ADDR			0X16
508c2ecf20Sopenharmony_ci
518c2ecf20Sopenharmony_ci#define CT_OFFSET_CCK_TX_PWR_IDX		0x5A
528c2ecf20Sopenharmony_ci#define CT_OFFSET_HT401S_TX_PWR_IDX		0x60
538c2ecf20Sopenharmony_ci#define CT_OFFSET_HT402S_TX_PWR_IDX_DIFF	0x66
548c2ecf20Sopenharmony_ci#define CT_OFFSET_HT20_TX_PWR_IDX_DIFF		0x69
558c2ecf20Sopenharmony_ci#define CT_OFFSET_OFDM_TX_PWR_IDX_DIFF		0x6C
568c2ecf20Sopenharmony_ci
578c2ecf20Sopenharmony_ci#define CT_OFFSET_HT40_MAX_PWR_OFFSET		0x6F
588c2ecf20Sopenharmony_ci#define CT_OFFSET_HT20_MAX_PWR_OFFSET		0x72
598c2ecf20Sopenharmony_ci
608c2ecf20Sopenharmony_ci#define CT_OFFSET_CHANNEL_PLAH			0x75
618c2ecf20Sopenharmony_ci#define CT_OFFSET_THERMAL_METER			0x78
628c2ecf20Sopenharmony_ci#define CT_OFFSET_RF_OPTION			0x79
638c2ecf20Sopenharmony_ci#define CT_OFFSET_VERSION			0x7E
648c2ecf20Sopenharmony_ci#define CT_OFFSET_CUSTOMER_ID			0x7F
658c2ecf20Sopenharmony_ci
668c2ecf20Sopenharmony_ci#define RTL8821AE_MAX_PATH_NUM			2
678c2ecf20Sopenharmony_ci
688c2ecf20Sopenharmony_ci#define TARGET_CHNL_NUM_2G_5G_8812		59
698c2ecf20Sopenharmony_ci
708c2ecf20Sopenharmony_cienum swchnlcmd_id {
718c2ecf20Sopenharmony_ci	CMDID_END,
728c2ecf20Sopenharmony_ci	CMDID_SET_TXPOWEROWER_LEVEL,
738c2ecf20Sopenharmony_ci	CMDID_BBREGWRITE10,
748c2ecf20Sopenharmony_ci	CMDID_WRITEPORT_ULONG,
758c2ecf20Sopenharmony_ci	CMDID_WRITEPORT_USHORT,
768c2ecf20Sopenharmony_ci	CMDID_WRITEPORT_UCHAR,
778c2ecf20Sopenharmony_ci	CMDID_RF_WRITEREG,
788c2ecf20Sopenharmony_ci};
798c2ecf20Sopenharmony_ci
808c2ecf20Sopenharmony_cistruct swchnlcmd {
818c2ecf20Sopenharmony_ci	enum swchnlcmd_id cmdid;
828c2ecf20Sopenharmony_ci	u32 para1;
838c2ecf20Sopenharmony_ci	u32 para2;
848c2ecf20Sopenharmony_ci	u32 msdelay;
858c2ecf20Sopenharmony_ci};
868c2ecf20Sopenharmony_ci
878c2ecf20Sopenharmony_cienum hw90_block_e {
888c2ecf20Sopenharmony_ci	HW90_BLOCK_MAC = 0,
898c2ecf20Sopenharmony_ci	HW90_BLOCK_PHY0 = 1,
908c2ecf20Sopenharmony_ci	HW90_BLOCK_PHY1 = 2,
918c2ecf20Sopenharmony_ci	HW90_BLOCK_RF = 3,
928c2ecf20Sopenharmony_ci	HW90_BLOCK_MAXIMUM = 4,
938c2ecf20Sopenharmony_ci};
948c2ecf20Sopenharmony_ci
958c2ecf20Sopenharmony_cienum baseband_config_type {
968c2ecf20Sopenharmony_ci	BASEBAND_CONFIG_PHY_REG = 0,
978c2ecf20Sopenharmony_ci	BASEBAND_CONFIG_AGC_TAB = 1,
988c2ecf20Sopenharmony_ci};
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_cienum ra_offset_area {
1018c2ecf20Sopenharmony_ci	RA_OFFSET_LEGACY_OFDM1,
1028c2ecf20Sopenharmony_ci	RA_OFFSET_LEGACY_OFDM2,
1038c2ecf20Sopenharmony_ci	RA_OFFSET_HT_OFDM1,
1048c2ecf20Sopenharmony_ci	RA_OFFSET_HT_OFDM2,
1058c2ecf20Sopenharmony_ci	RA_OFFSET_HT_OFDM3,
1068c2ecf20Sopenharmony_ci	RA_OFFSET_HT_OFDM4,
1078c2ecf20Sopenharmony_ci	RA_OFFSET_HT_CCK,
1088c2ecf20Sopenharmony_ci};
1098c2ecf20Sopenharmony_ci
1108c2ecf20Sopenharmony_cienum antenna_path {
1118c2ecf20Sopenharmony_ci	ANTENNA_NONE,
1128c2ecf20Sopenharmony_ci	ANTENNA_D,
1138c2ecf20Sopenharmony_ci	ANTENNA_C,
1148c2ecf20Sopenharmony_ci	ANTENNA_CD,
1158c2ecf20Sopenharmony_ci	ANTENNA_B,
1168c2ecf20Sopenharmony_ci	ANTENNA_BD,
1178c2ecf20Sopenharmony_ci	ANTENNA_BC,
1188c2ecf20Sopenharmony_ci	ANTENNA_BCD,
1198c2ecf20Sopenharmony_ci	ANTENNA_A,
1208c2ecf20Sopenharmony_ci	ANTENNA_AD,
1218c2ecf20Sopenharmony_ci	ANTENNA_AC,
1228c2ecf20Sopenharmony_ci	ANTENNA_ACD,
1238c2ecf20Sopenharmony_ci	ANTENNA_AB,
1248c2ecf20Sopenharmony_ci	ANTENNA_ABD,
1258c2ecf20Sopenharmony_ci	ANTENNA_ABC,
1268c2ecf20Sopenharmony_ci	ANTENNA_ABCD
1278c2ecf20Sopenharmony_ci};
1288c2ecf20Sopenharmony_ci
1298c2ecf20Sopenharmony_cistruct r_antenna_select_ofdm {
1308c2ecf20Sopenharmony_ci	u32 r_tx_antenna:4;
1318c2ecf20Sopenharmony_ci	u32 r_ant_l:4;
1328c2ecf20Sopenharmony_ci	u32 r_ant_non_ht:4;
1338c2ecf20Sopenharmony_ci	u32 r_ant_ht1:4;
1348c2ecf20Sopenharmony_ci	u32 r_ant_ht2:4;
1358c2ecf20Sopenharmony_ci	u32 r_ant_ht_s1:4;
1368c2ecf20Sopenharmony_ci	u32 r_ant_non_ht_s1:4;
1378c2ecf20Sopenharmony_ci	u32 ofdm_txsc:2;
1388c2ecf20Sopenharmony_ci	u32 reserved:2;
1398c2ecf20Sopenharmony_ci};
1408c2ecf20Sopenharmony_ci
1418c2ecf20Sopenharmony_cistruct r_antenna_select_cck {
1428c2ecf20Sopenharmony_ci	u8 r_cckrx_enable_2:2;
1438c2ecf20Sopenharmony_ci	u8 r_cckrx_enable:2;
1448c2ecf20Sopenharmony_ci	u8 r_ccktx_enable:4;
1458c2ecf20Sopenharmony_ci};
1468c2ecf20Sopenharmony_ci
1478c2ecf20Sopenharmony_cistruct efuse_contents {
1488c2ecf20Sopenharmony_ci	u8 mac_addr[ETH_ALEN];
1498c2ecf20Sopenharmony_ci	u8 cck_tx_power_idx[6];
1508c2ecf20Sopenharmony_ci	u8 ht40_1s_tx_power_idx[6];
1518c2ecf20Sopenharmony_ci	u8 ht40_2s_tx_power_idx_diff[3];
1528c2ecf20Sopenharmony_ci	u8 ht20_tx_power_idx_diff[3];
1538c2ecf20Sopenharmony_ci	u8 ofdm_tx_power_idx_diff[3];
1548c2ecf20Sopenharmony_ci	u8 ht40_max_power_offset[3];
1558c2ecf20Sopenharmony_ci	u8 ht20_max_power_offset[3];
1568c2ecf20Sopenharmony_ci	u8 channel_plan;
1578c2ecf20Sopenharmony_ci	u8 thermal_meter;
1588c2ecf20Sopenharmony_ci	u8 rf_option[5];
1598c2ecf20Sopenharmony_ci	u8 version;
1608c2ecf20Sopenharmony_ci	u8 oem_id;
1618c2ecf20Sopenharmony_ci	u8 regulatory;
1628c2ecf20Sopenharmony_ci};
1638c2ecf20Sopenharmony_ci
1648c2ecf20Sopenharmony_cistruct tx_power_struct {
1658c2ecf20Sopenharmony_ci	u8 cck[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1668c2ecf20Sopenharmony_ci	u8 ht40_1s[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1678c2ecf20Sopenharmony_ci	u8 ht40_2s[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1688c2ecf20Sopenharmony_ci	u8 ht20_diff[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1698c2ecf20Sopenharmony_ci	u8 legacy_ht_diff[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1708c2ecf20Sopenharmony_ci	u8 legacy_ht_txpowerdiff;
1718c2ecf20Sopenharmony_ci	u8 groupht20[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1728c2ecf20Sopenharmony_ci	u8 groupht40[RTL8821AE_MAX_PATH_NUM][CHANNEL_MAX_NUMBER];
1738c2ecf20Sopenharmony_ci	u8 pwrgroup_cnt;
1748c2ecf20Sopenharmony_ci	u32 mcs_original_offset[4][16];
1758c2ecf20Sopenharmony_ci};
1768c2ecf20Sopenharmony_cienum _ANT_DIV_TYPE {
1778c2ecf20Sopenharmony_ci	NO_ANTDIV			= 0xFF,
1788c2ecf20Sopenharmony_ci	CG_TRX_HW_ANTDIV		= 0x01,
1798c2ecf20Sopenharmony_ci	CGCS_RX_HW_ANTDIV		= 0x02,
1808c2ecf20Sopenharmony_ci	FIXED_HW_ANTDIV     		= 0x03,
1818c2ecf20Sopenharmony_ci	CG_TRX_SMART_ANTDIV		= 0x04,
1828c2ecf20Sopenharmony_ci	CGCS_RX_SW_ANTDIV		= 0x05,
1838c2ecf20Sopenharmony_ci
1848c2ecf20Sopenharmony_ci};
1858c2ecf20Sopenharmony_ci
1868c2ecf20Sopenharmony_ciu32 rtl8821ae_phy_query_bb_reg(struct ieee80211_hw *hw,
1878c2ecf20Sopenharmony_ci			       u32 regaddr, u32 bitmask);
1888c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_bb_reg(struct ieee80211_hw *hw,
1898c2ecf20Sopenharmony_ci			      u32 regaddr, u32 bitmask, u32 data);
1908c2ecf20Sopenharmony_ciu32 rtl8821ae_phy_query_rf_reg(struct ieee80211_hw *hw,
1918c2ecf20Sopenharmony_ci			       enum radio_path rfpath, u32 regaddr,
1928c2ecf20Sopenharmony_ci			       u32 bitmask);
1938c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_rf_reg(struct ieee80211_hw *hw,
1948c2ecf20Sopenharmony_ci			      enum radio_path rfpath, u32 regaddr,
1958c2ecf20Sopenharmony_ci			      u32 bitmask, u32 data);
1968c2ecf20Sopenharmony_cibool rtl8821ae_phy_mac_config(struct ieee80211_hw *hw);
1978c2ecf20Sopenharmony_cibool rtl8821ae_phy_bb_config(struct ieee80211_hw *hw);
1988c2ecf20Sopenharmony_cibool rtl8821ae_phy_rf_config(struct ieee80211_hw *hw);
1998c2ecf20Sopenharmony_civoid rtl8821ae_phy_switch_wirelessband(struct ieee80211_hw *hw,
2008c2ecf20Sopenharmony_ci				       u8 band);
2018c2ecf20Sopenharmony_civoid rtl8821ae_phy_get_hw_reg_originalvalue(struct ieee80211_hw *hw);
2028c2ecf20Sopenharmony_civoid rtl8821ae_phy_get_txpower_level(struct ieee80211_hw *hw,
2038c2ecf20Sopenharmony_ci				     long *powerlevel);
2048c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_txpower_level(struct ieee80211_hw *hw,
2058c2ecf20Sopenharmony_ci				     u8 channel);
2068c2ecf20Sopenharmony_civoid rtl8821ae_phy_scan_operation_backup(struct ieee80211_hw *hw,
2078c2ecf20Sopenharmony_ci					 u8 operation);
2088c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_bw_mode_callback(struct ieee80211_hw *hw);
2098c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_bw_mode(struct ieee80211_hw *hw,
2108c2ecf20Sopenharmony_ci			       enum nl80211_channel_type ch_type);
2118c2ecf20Sopenharmony_civoid rtl8821ae_phy_sw_chnl_callback(struct ieee80211_hw *hw);
2128c2ecf20Sopenharmony_ciu8 rtl8821ae_phy_sw_chnl(struct ieee80211_hw *hw);
2138c2ecf20Sopenharmony_civoid rtl8821ae_phy_iq_calibrate(struct ieee80211_hw *hw,
2148c2ecf20Sopenharmony_ci				bool b_recovery);
2158c2ecf20Sopenharmony_civoid rtl8812ae_phy_iq_calibrate(struct ieee80211_hw *hw,
2168c2ecf20Sopenharmony_ci				bool b_recovery);
2178c2ecf20Sopenharmony_civoid rtl8821ae_phy_ap_calibrate(struct ieee80211_hw *hw, s8 delta);
2188c2ecf20Sopenharmony_civoid rtl8821ae_phy_lc_calibrate(struct ieee80211_hw *hw);
2198c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_rfpath_switch(struct ieee80211_hw *hw, bool bmain);
2208c2ecf20Sopenharmony_cibool rtl8812ae_phy_config_rf_with_headerfile(struct ieee80211_hw *hw,
2218c2ecf20Sopenharmony_ci					     enum radio_path rfpath);
2228c2ecf20Sopenharmony_cibool rtl8821ae_phy_config_rf_with_headerfile(struct ieee80211_hw *hw,
2238c2ecf20Sopenharmony_ci					     enum radio_path rfpath);
2248c2ecf20Sopenharmony_cibool rtl8821ae_phy_set_io_cmd(struct ieee80211_hw *hw, enum io_type iotype);
2258c2ecf20Sopenharmony_cibool rtl8821ae_phy_set_rf_power_state(struct ieee80211_hw *hw,
2268c2ecf20Sopenharmony_ci				      enum rf_pwrstate rfpwr_state);
2278c2ecf20Sopenharmony_ciu8 _rtl8812ae_get_right_chnl_place_for_iqk(u8 chnl);
2288c2ecf20Sopenharmony_civoid rtl8821ae_phy_set_txpower_level_by_path(struct ieee80211_hw *hw,
2298c2ecf20Sopenharmony_ci					     u8 channel, u8 path);
2308c2ecf20Sopenharmony_civoid rtl8812ae_do_iqk(struct ieee80211_hw *hw, u8 delta_thermal_index,
2318c2ecf20Sopenharmony_ci	u8 thermal_value, u8 threshold);
2328c2ecf20Sopenharmony_civoid rtl8821ae_do_iqk(struct ieee80211_hw *hw, u8 delta_thermal_index,
2338c2ecf20Sopenharmony_ci		      u8 thermal_value, u8 threshold);
2348c2ecf20Sopenharmony_civoid rtl8821ae_reset_iqk_result(struct ieee80211_hw *hw);
2358c2ecf20Sopenharmony_ciu32 phy_get_tx_swing_8812A(struct ieee80211_hw *hw, u8 band, u8 rf_path);
2368c2ecf20Sopenharmony_ci
2378c2ecf20Sopenharmony_ci#endif
238