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

Commit a6c6684e authored by Krishna chaitanya chundru's avatar Krishna chaitanya chundru
Browse files

mhi: core: Increase RDDM timeout to 350ms



Increase rddm_timeout_ms to 350ms as time taken for HST
to enter RDDM mode is taking more than 200ms.

Change-Id: I93fc43320a87e85efeef5cb8435a01aa6c1fc494
Signed-off-by: default avatarKrishna chaitanya chundru <quic_krichai@quicinc.com>
parent 2959ed5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ static int __mhi_download_rddm_in_panic(struct mhi_controller *mhi_cntrl)
	enum mhi_ee ee;
	const u32 delayus = 5000;
	u32 retry = (mhi_cntrl->timeout_ms * 1000) / delayus;
	const u32 rddm_timeout_us = 200000;
	const u32 rddm_timeout_us = 350000;
	int rddm_retry = rddm_timeout_us / delayus; /* time to enter rddm */
	void __iomem *base = mhi_cntrl->bhie;