Skip to content

Commit 342bb32

Browse files
jamikeADESTM
authored andcommitted
firmware: arm_scmi: increase mailbox timeout
During linux stress test, arm-scmi timeout is observed. Since the scp firmware maximum timeout to perform a request is 200ms. the max_rx_timeout_ms is set to these value. Change-Id: I9e8dc53ffbd7e75f0cbdca41daa3a9f7e972516e Signed-off-by: Michel JAOUEN <michel.jaouen@st.com> Reviewed-on: https://gerrit.st.com/c/mpu/oe/st/linux-stm32/+/566811 Domain-Review: Christophe KERELLO <christophe.kerello@st.com> ACI: CITOOLS <MDG-smet-aci-reviews@list.st.com> ACI: CIBUILD <MDG-smet-aci-builds@list.st.com> Reviewed-by: Christophe KERELLO <christophe.kerello@st.com>
1 parent 0c9a221 commit 342bb32

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/firmware/arm_scmi/mailbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ static const struct scmi_transport_ops scmi_mailbox_ops = {
336336

337337
const struct scmi_desc scmi_mailbox_desc = {
338338
.ops = &scmi_mailbox_ops,
339-
.max_rx_timeout_ms = 100, /* We may increase this if required */
339+
.max_rx_timeout_ms = 200, /* We may increase this if required */
340340
.max_msg = 20, /* Limited by MBOX_TX_QUEUE_LEN */
341341
.max_msg_size = 128,
342342
};

0 commit comments

Comments
 (0)