Commit 0d7b6cffa532eecfdc7cb87c2c65cd311344981f

Authored by Lokesh Vutla
Committed by Tom Rini
1 parent a325796da4

remoteproc: k3_system_controller: Increase rx timeout

There is one case where 400ms is not sufficient for loading the
system firmware:
- System firmware is not signed with rsa degenerate key.
- ROM loading the sysfw directly from SPI flash which is in memory
  mapped mode.

The above scenario is definitely not desired in production use cases
as it effects boot time. But still keeping this support as this is
a valid boot scenario.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/remoteproc/k3_system_controller.c
... ... @@ -301,7 +301,7 @@
301 301  
302 302 static const struct k3_sysctrler_desc k3_sysctrler_am654_desc = {
303 303 .host_id = 4, /* HOST_ID_R5_1 */
304   - .max_rx_timeout_us = 400000,
  304 + .max_rx_timeout_us = 800000,
305 305 .max_msg_size = 60,
306 306 };
307 307