mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-06 06:21:51 +00:00
mailbox: zynqmp: Extend timeout for getting observation bit
In case of fpga loading (which can be huge) 100ms is not enough. That's why extend timeout 10 times to wait maximum 1s to get ACK back. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
5690128f70
commit
f08d0c51b5
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ static int zynqmp_ipi_send(struct mbox_chan *chan, const void *data)
|
|||
|
||||
/* Wait until observation bit is cleared */
|
||||
ret = wait_for_bit_le32(&ipi_int_apu->obs, IPI_BIT_MASK_PMU0, false,
|
||||
100, false);
|
||||
1000, false);
|
||||
|
||||
debug("%s, send %ld bytes\n", __func__, msg->len);
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue