1 #include <odm.h> 2 3 #define IQK_DELAY_TIME_88E 10 4 #define index_mapping_NUM_88E 15 5 #define AVG_THERMAL_NUM_88E 4 6 #define ODM_TARGET_CHNL_NUM_2G_5G 59 7 8 bool rtl88eu_phy_mac_config(struct adapter *adapt); 9 bool rtl88eu_phy_rf_config(struct adapter *adapt); 10 bool rtl88eu_phy_bb_config(struct adapter *adapt); 11 12 u32 phy_query_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask); 13 void phy_set_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask, u32 data); 14 u32 phy_query_rf_reg(struct adapter *adapt, enum rf_radio_path rf_path, 15 u32 reg_addr, u32 bit_mask); 16 void phy_set_rf_reg(struct adapter *adapt, enum rf_radio_path rf_path, 17 u32 reg_addr, u32 bit_mask, u32 data); 18 19 void phy_set_tx_power_level(struct adapter *adapt, u8 channel); 20 21 void phy_set_bw_mode(struct adapter *adapt, enum ht_channel_width bandwidth, 22 unsigned char offset); 23 void phy_sw_chnl(struct adapter *adapt, u8 channel); 24 25 void rtl88eu_dm_txpower_track_adjust(struct odm_dm_struct *dm_odm, 26 u8 type, u8 *dir, u32 *out_write); 27 28 void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt); 29 void rtl88eu_phy_iq_calibrate(struct adapter *adapter, bool recovery); 30 void rtl88eu_phy_lc_calibrate(struct adapter *adapter); 31