From: Andreas Dannenberg Date: Wed, 24 Apr 2019 19:20:08 +0000 (-0500) Subject: firmware: ti_sci: Fix TISCI mailbox receive timeout handling X-Git-Tag: v2019.07-rc2~27^2~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=32aebcf244bea1c3270aa1f87b2be8e5f0fa546e;p=oweals%2Fu-boot.git firmware: ti_sci: Fix TISCI mailbox receive timeout handling An earlier commit converted the TISCI receive timeouts to be specified in ms rather than us however it failed to take this change into account when passing the actual timeout to be used when invoking the mailbox receive API. This leads to the actual timeout to be 1,000 times shorter than expected and as a result certain TISCI operations would fail. Fix the issue by converting the timeout declared in ms to us on the fly as expected by the respective API. Fixes: fd6b40b1ba20 ("firmware: ti_sci: Add support for NAVSS resource management") Signed-off-by: Andreas Dannenberg Reviewed-by: Lokesh Vutla --- diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c index 1196ce0712..66d7dd48ac 100644 --- a/drivers/firmware/ti_sci.c +++ b/drivers/firmware/ti_sci.c @@ -158,7 +158,7 @@ static inline int ti_sci_get_response(struct ti_sci_info *info, int ret; /* Receive the response */ - ret = mbox_recv(chan, msg, info->desc->max_rx_timeout_ms); + ret = mbox_recv(chan, msg, info->desc->max_rx_timeout_ms * 1000); if (ret) { dev_err(info->dev, "%s: Message receive failed. ret = %d\n", __func__, ret);