Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 444004bd authored by Jes Sorensen's avatar Jes Sorensen Committed by Kalle Valo
Browse files

rtl8xxxu: Handle BB init for 8192eu



The 8192eu does not use REG_AFE_PLL_CTRL in it's BB init sequence, so
provide device specific handling.

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 9e24772a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -3649,6 +3649,11 @@ static int rtl8xxxu_init_phy_bb(struct rtl8xxxu_priv *priv)
		rtl8xxxu_write16(priv, REG_SYS_FUNC, val16);

		rtl8xxxu_write32(priv, REG_S0S1_PATH_SWITCH, 0x00);
	} else if (priv->rtl_chip == RTL8192E) {
		val16 = rtl8xxxu_read16(priv, REG_SYS_FUNC);
		val16 |= SYS_FUNC_BB_GLB_RSTN | SYS_FUNC_BBRSTB |
			SYS_FUNC_DIO_RF;
		rtl8xxxu_write16(priv, REG_SYS_FUNC, val16);
	} else {
		val8 = rtl8xxxu_read8(priv, REG_AFE_PLL_CTRL);
		udelay(2);