mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

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 <neil.armstrong@linaro.org> Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
26 lines
655 B
C
26 lines
655 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef __QCOM_PRIV_H__
|
|
#define __QCOM_PRIV_H__
|
|
|
|
#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT)
|
|
void qcom_configure_capsule_updates(void);
|
|
#else
|
|
void qcom_configure_capsule_updates(void) {}
|
|
#endif /* EFI_HAVE_CAPSULE_SUPPORT */
|
|
|
|
#if CONFIG_IS_ENABLED(OF_LIVE)
|
|
/**
|
|
* qcom_of_fixup_nodes() - Fixup Qualcomm DT nodes
|
|
*
|
|
* Adjusts nodes in the live tree to improve compatibility with U-Boot.
|
|
*/
|
|
void qcom_of_fixup_nodes(void);
|
|
#else
|
|
static inline void qcom_of_fixup_nodes(void)
|
|
{
|
|
log_debug("Unable to dynamically fixup USB nodes, please enable CONFIG_OF_LIVE\n");
|
|
}
|
|
#endif /* OF_LIVE */
|
|
|
|
#endif /* __QCOM_PRIV_H__ */
|