diff options
| author | Caleb Connolly <[email protected]> | 2024-10-12 15:57:19 +0200 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2024-11-20 17:57:58 +0100 |
| commit | b10b4c0e1ea032520ff4737e88638ac95a2ab81f (patch) | |
| tree | f9b004b9882ec9ee48b3b97e042be95b5b7791a6 /include | |
| parent | eab4675f93dfedd29a37ffe3b1fa3fbeae831839 (diff) | |
mach-snapdragon: implement capsule update support
Qualcomm boards flash U-Boot a variety of partitions, implement support
for determining which slot U-Boot is running from, finding the correct
partition for that slot and configuring the appropriate DFU string.
Initially, we only support the RB3 Gen 2 where U-Boot is flashed to the
UEFI partition, and ignore handling of slots. In the future we will
additionally support booting U-Boot from other partitions (e.g. boot)
and correct handling for A/B.
Reviewed-by: Neil Armstrong <[email protected]>
Acked-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/qcom.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/qcom.h b/include/configs/qcom.h index 5b5ebbd844d..9b41ab9e982 100644 --- a/include/configs/qcom.h +++ b/include/configs/qcom.h @@ -11,4 +11,9 @@ #define CFG_SYS_BAUDRATE_TABLE { 115200, 230400, 460800, 921600 } +// 2a5aa852-b856-4d97-baa9-5c5f4421551f +#define QUALCOMM_UBOOT_BOOT_IMAGE_GUID \ + EFI_GUID(0x2a5aa852, 0xb856, 0x4d97, 0xba, 0xa9, \ + 0x5c, 0x5f, 0x44, 0x21, 0x55, 0x1f) + #endif |
