git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2ae109
)
firmware: scmi: mailbox: Update timeout to 30ms
author
Peng Fan
<peng.fan@nxp.com>
Fri, 26 Sep 2025 16:06:19 +0000
(
00:06
+0800)
committer
Tom Rini
<trini@konsulko.com>
Thu, 9 Oct 2025 20:16:11 +0000
(14:16 -0600)
Following Linux Kernel drivers/firmware/arm_scmi/transports/mailbox.c to
set the default timeout to 30ms.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/firmware/scmi/mailbox_agent.c
patch
|
blob
|
history
diff --git
a/drivers/firmware/scmi/mailbox_agent.c
b/drivers/firmware/scmi/mailbox_agent.c
index
6d4497f
..
32b0fd9
100644
(file)
--- 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 1
0000
+#define TIMEOUT_US_
30MS 3
0000
/**
* 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_
1
0MS;
+ chan->timeout_us = TIMEOUT_US_
3
0MS;
return 0;
}