• Home
  • Raw
  • Download

Lines Matching refs:regaddr

53 			       u32 regaddr, u32 bitmask)  in rtl8723be_phy_query_rf_reg()  argument
61 regaddr, rfpath, bitmask); in rtl8723be_phy_query_rf_reg()
65 original_value = rtl8723_phy_rf_serial_read(hw, rfpath, regaddr); in rtl8723be_phy_query_rf_reg()
73 regaddr, rfpath, bitmask, original_value); in rtl8723be_phy_query_rf_reg()
79 u32 regaddr, u32 bitmask, u32 data) in rtl8723be_phy_set_rf_reg() argument
87 regaddr, bitmask, data, path); in rtl8723be_phy_set_rf_reg()
93 regaddr); in rtl8723be_phy_set_rf_reg()
99 rtl8723_phy_rf_serial_write(hw, path, regaddr, data); in rtl8723be_phy_set_rf_reg()
105 regaddr, bitmask, data, path); in rtl8723be_phy_set_rf_reg()
186 u32 regaddr) in _rtl8723be_config_rf_reg() argument
194 rtl_set_rfreg(hw, rfpath, regaddr, RFREG_OFFSET_MASK, data); in _rtl8723be_config_rf_reg()
634 static u8 _rtl8723be_get_rate_section_index(u32 regaddr) in _rtl8723be_get_rate_section_index() argument
638 switch (regaddr) { in _rtl8723be_get_rate_section_index()
685 regaddr &= 0xFFF; in _rtl8723be_get_rate_section_index()
686 if (regaddr >= 0xC20 && regaddr <= 0xC4C) in _rtl8723be_get_rate_section_index()
687 index = (u8)((regaddr - 0xC20) / 4); in _rtl8723be_get_rate_section_index()
688 else if (regaddr >= 0xE20 && regaddr <= 0xE4C) in _rtl8723be_get_rate_section_index()
689 index = (u8)((regaddr - 0xE20) / 4); in _rtl8723be_get_rate_section_index()
697 u32 txnum, u32 regaddr, in _rtl8723be_store_tx_power_by_rate() argument
702 u8 rate_section = _rtl8723be_get_rate_section_index(regaddr); in _rtl8723be_store_tx_power_by_rate()