Skip to content

Commit

Permalink
remoteproc: k3_system_controller: Increase rx timeout
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
lokeshvutla authored and trini committed May 10, 2019
1 parent a325796 commit 0d7b6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/remoteproc/k3_system_controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ static int k3_sysctrler_probe(struct udevice *dev)

static const struct k3_sysctrler_desc k3_sysctrler_am654_desc = {
.host_id = 4, /* HOST_ID_R5_1 */
.max_rx_timeout_us = 400000,
.max_rx_timeout_us = 800000,
.max_msg_size = 60,
};

Expand Down

0 comments on commit 0d7b6cf

Please sign in to comment.