diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-30 11:29:41 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-30 11:29:41 -0400 |
commit | 8bef03683623d6a7adfff1f859ed44fad9e92ed7 (patch) | |
tree | be2734e3581e083ce199230c259a192914651bff /arch/arm/mach-bcm283x | |
parent | c8988efc884c680eb4f34295df6689a7e312c15d (diff) | |
parent | dced079c53b283e15f04282f405de410a9be584d (diff) | |
download | u-boot-8bef03683623d6a7adfff1f859ed44fad9e92ed7.tar.gz u-boot-8bef03683623d6a7adfff1f859ed44fad9e92ed7.tar.bz2 u-boot-8bef03683623d6a7adfff1f859ed44fad9e92ed7.zip |
Merge tag 'xilinx-for-v2022.01-rc1' of https://source.denx.de/u-boot/custodians/u-boot-microblaze into next
Xilinx changes for v2022.01-rc1
zynq:
- Enable capsule update for qspi and mmc
- Update zed DT qspi compatible string
zynqmp:
- Add missing modeboot for EMMC
- Add missing nand DT properties
- List all eeproms for SC on vck190
- Add vck190 SC psu_init
clk:
- Handle only GATE type clock for Versal
watchdog:
- Update versal driver to handle system reset
Diffstat (limited to 'arch/arm/mach-bcm283x')
-rw-r--r-- | arch/arm/mach-bcm283x/msg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c index e43d7d9b67..01a8ed2a7b 100644 --- a/arch/arm/mach-bcm283x/msg.c +++ b/arch/arm/mach-bcm283x/msg.c @@ -170,6 +170,12 @@ int bcm2711_notify_vl805_reset(void) ALLOC_CACHE_ALIGN_BUFFER(struct msg_notify_vl805_reset, msg_notify_vl805_reset, 1); int ret; + static int done = false; + + if (done) + return 0; + + done = true; BCM2835_MBOX_INIT_HDR(msg_notify_vl805_reset); BCM2835_MBOX_INIT_TAG(&msg_notify_vl805_reset->dev_addr, |