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

Commit d28bcc30 authored by Vladimir Kondratiev's avatar Vladimir Kondratiev Committed by John W. Linville
Browse files

wil6210: target reset flow update



Use 'real' indication for hardware state.

Signed-off-by: default avatarVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b5998e6a
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ void wil_priv_deinit(struct wil6210_priv *wil)
static void wil_target_reset(struct wil6210_priv *wil)
{
	int delay = 0;
	u32 baud_rate;
	u32 hw_state;
	u32 rev_id;

	wil_dbg_misc(wil, "Resetting...\n");
@@ -312,15 +312,16 @@ static void wil_target_reset(struct wil6210_priv *wil)
	}
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_0, 0);

	/* wait until device ready. Use baud rate */
	/* wait until device ready */
	do {
		msleep(1);
		baud_rate = R(RGF_USER_SERIAL_BAUD_RATE);
		hw_state = R(RGF_USER_HW_MACHINE_STATE);
		if (delay++ > 100) {
			wil_err(wil, "Reset not completed\n");
			wil_err(wil, "Reset not completed, hw_state 0x%08x\n",
				hw_state);
			return;
		}
	} while (baud_rate != 0x15e);
	} while (hw_state != HW_MACHINE_BOOT_DONE);

	if (rev_id == 2)
		W(RGF_PCIE_LOS_COUNTER_CTL, BIT(8));
+2 −1
Original line number Diff line number Diff line
@@ -74,7 +74,8 @@ struct RGF_ICR {
} __packed;

/* registers - FW addresses */
#define RGF_USER_SERIAL_BAUD_RATE	(0x880050)
#define RGF_USER_HW_MACHINE_STATE	(0x8801dc)
	#define HW_MACHINE_BOOT_DONE	(0x3fffffd)
#define RGF_USER_USER_CPU_0		(0x8801e0)
#define RGF_USER_MAC_CPU_0		(0x8801fc)
#define RGF_USER_USER_SCRATCH_PAD	(0x8802bc)