diff options
| author | Tom Rini <[email protected]> | 2026-04-27 08:05:40 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-27 08:05:40 -0600 |
| commit | e0991f42aa7f973e09f38bbe60cd12b28a46e491 (patch) | |
| tree | 66619177875432ae895a1e068532bfaa036b686e /cmd | |
| parent | 1a4cb8dc03810f2fb0b1499e26bae32e5116df4c (diff) | |
| parent | fabf5878bb86b3e1e2b19301afc2a9180bf79cf6 (diff) | |
Merge branch 'casey/qcom-main-13Apr2026' of https://source.denx.de/u-boot/custodians/u-boot-snapdragon
Various Qualcomm additions this cycle:
* USB superspeed support for 1 platform
* Initial support for the Milos platform and the Fairphone Gen 6
(chainloaded from ABL)
* Improved support for booting with OP-TEE on supported platforms
* Initial basic power domain support
Notably there is a generic change to the device core, missing power
domains will no longer cause a device to fail probe and instead will
just print a warning. This shouldn't affect any existing platforms.
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/boot.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/boot.c b/cmd/boot.c index 23496cafdf5..d80f9d8c05d 100644 --- a/cmd/boot.c +++ b/cmd/boot.c @@ -60,6 +60,9 @@ U_BOOT_CMD( reset, 2, 0, do_reset, "Perform RESET of the CPU", "- cold boot without level specifier\n" +#ifdef CONFIG_SYSRESET_QCOM_PSCI + "reset -edl - Boot to Emergency DownLoad mode\n" +#endif "reset -w - warm reset if implemented" ); |
