]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
misc: ele_mu: Clear RR when initialize MU
authorPeng Fan <peng.fan@nxp.com>
Sun, 6 Oct 2024 00:22:51 +0000 (08:22 +0800)
committerFabio Estevam <festevam@denx.de>
Sun, 13 Oct 2024 12:43:05 +0000 (09:43 -0300)
When OS is doing ELE API call, before OS get the response, OS is force
reseted, then it is possible that MU RR has data during initialization
in SPL stage. So clear the RR registers, otherwise SPL ELE API call will
work abnormal.

Cc: Alice Guo <alice.guo@nxp.com>
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/misc/imx_ele/ele_mu.c

index f5ba3a4ffa5b2248b6012793f45e06837a7f434c..cdb85b999db522f71a8693ae01543b578e514d5d 100644 (file)
@@ -25,9 +25,20 @@ struct imx8ulp_mu {
 void mu_hal_init(ulong base)
 {
        struct mu_type *mu_base = (struct mu_type *)base;
+       u32 rr_num = (readl(&mu_base->par) & 0xFF00) >> 8;
+       int i;
 
        writel(0, &mu_base->tcr);
        writel(0, &mu_base->rcr);
+
+       while (true) {
+               /* If there is pending RX data, clear them by read them out */
+               if (!(readl(&mu_base->sr) & BIT(6)))
+                       return;
+
+               for (i = 0; i < rr_num; i++)
+                       readl(&mu_base->rr[i]);
+       }
 }
 
 int mu_hal_sendmsg(ulong base, u32 reg_index, u32 msg)