mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
rtlwifi: rtl8192cu: Bring rtl92cu_phy_bb_config() up to date
The latest vendor driver contains some changes not in the kernel version. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d3af1ce138
commit
8a7192080f
1 changed files with 5 additions and 1 deletions
|
@ -120,6 +120,7 @@ bool rtl92cu_phy_bb_config(struct ieee80211_hw *hw)
|
||||||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||||
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
|
struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
|
||||||
u16 regval;
|
u16 regval;
|
||||||
|
u32 regval32;
|
||||||
u8 b_reg_hwparafile = 1;
|
u8 b_reg_hwparafile = 1;
|
||||||
|
|
||||||
_rtl92c_phy_init_bb_rf_register_definition(hw);
|
_rtl92c_phy_init_bb_rf_register_definition(hw);
|
||||||
|
@ -135,8 +136,11 @@ bool rtl92cu_phy_bb_config(struct ieee80211_hw *hw)
|
||||||
} else if (IS_HARDWARE_TYPE_8192CU(rtlhal)) {
|
} else if (IS_HARDWARE_TYPE_8192CU(rtlhal)) {
|
||||||
rtl_write_byte(rtlpriv, REG_SYS_FUNC_EN, FEN_USBA | FEN_USBD |
|
rtl_write_byte(rtlpriv, REG_SYS_FUNC_EN, FEN_USBA | FEN_USBD |
|
||||||
FEN_BB_GLB_RSTn | FEN_BBRSTB);
|
FEN_BB_GLB_RSTn | FEN_BBRSTB);
|
||||||
rtl_write_byte(rtlpriv, REG_LDOHCI12_CTRL, 0x0f);
|
|
||||||
}
|
}
|
||||||
|
regval32 = rtl_read_dword(rtlpriv, 0x87c);
|
||||||
|
rtl_write_dword(rtlpriv, 0x87c, regval32 & (~BIT(31)));
|
||||||
|
if (IS_HARDWARE_TYPE_8192CU(rtlhal))
|
||||||
|
rtl_write_byte(rtlpriv, REG_LDOHCI12_CTRL, 0x0f);
|
||||||
rtl_write_byte(rtlpriv, REG_AFE_XTAL_CTRL + 1, 0x80);
|
rtl_write_byte(rtlpriv, REG_AFE_XTAL_CTRL + 1, 0x80);
|
||||||
if (b_reg_hwparafile == 1)
|
if (b_reg_hwparafile == 1)
|
||||||
rtstatus = _rtl92c_phy_bb8192c_config_parafile(hw);
|
rtstatus = _rtl92c_phy_bb8192c_config_parafile(hw);
|
||||||
|
|
Loading…
Reference in a new issue