blob: b8bf574e8bbb2103d5c23f8f08ae9092e74796fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// SPDX-License-Identifier: GPL-2.0
#ifndef __QCOM_PRIV_H__
#define __QCOM_PRIV_H__
/**
* enum qcom_boot_source - Track where we got loaded from.
* Used for capsule update logic.
*
* @QCOM_BOOT_SOURCE_ANDROID: chainloaded (typically from ABL)
* @QCOM_BOOT_SOURCE_XBL: flashed to the XBL or UEFI partition
*/
enum qcom_boot_source {
QCOM_BOOT_SOURCE_ANDROID = 1,
QCOM_BOOT_SOURCE_XBL,
};
extern enum qcom_boot_source qcom_boot_source;
#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 */
#endif /* __QCOM_PRIV_H__ */
|