From: Peng Fan Date: Fri, 26 Sep 2025 16:06:19 +0000 (+0800) Subject: firmware: scmi: mailbox: Update timeout to 30ms X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f116ec5b9105ffa4792bfced12aab822e492ff5f;p=thirdparty%2Fu-boot.git firmware: scmi: mailbox: Update timeout to 30ms Following Linux Kernel drivers/firmware/arm_scmi/transports/mailbox.c to set the default timeout to 30ms. Signed-off-by: Peng Fan --- diff --git a/drivers/firmware/scmi/mailbox_agent.c b/drivers/firmware/scmi/mailbox_agent.c index 6d4497f4b92..32b0fd9f589 100644 --- a/drivers/firmware/scmi/mailbox_agent.c +++ b/drivers/firmware/scmi/mailbox_agent.c @@ -16,7 +16,7 @@ #include "smt.h" -#define TIMEOUT_US_10MS 10000 +#define TIMEOUT_US_30MS 30000 /** * struct scmi_mbox_channel - Description of an SCMI mailbox transport @@ -87,7 +87,7 @@ static int setup_channel(struct udevice *dev, struct scmi_mbox_channel *chan) return ret; } - chan->timeout_us = TIMEOUT_US_10MS; + chan->timeout_us = TIMEOUT_US_30MS; return 0; }