summaryrefslogtreecommitdiff
path: root/include/vboot.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/vboot.h')
-rw-r--r--include/vboot.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/vboot.h b/include/vboot.h
index b9f03c6423..d757d0a3e7 100644
--- a/include/vboot.h
+++ b/include/vboot.h
@@ -46,3 +46,15 @@ int vboot_is_padding_valid(const uint8_t *data, uint32_t start, uint32_t end);
*/
int vboot_verify(const uint8_t *data, int len,
const struct rsa_public_key *key, const uint8_t *sig);
+
+/**
+ * Entry point of EC EFS
+ */
+void vboot_main(void);
+
+/**
+ * Get if vboot requires PD comm to be enabled or not
+ *
+ * @return 1: need PD communication. 0: PD communication is not needed.
+ */
+int vboot_need_pd_comm(void);