summaryrefslogtreecommitdiff
path: root/include/tee/optee.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tee/optee.h')
-rw-r--r--include/tee/optee.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/tee/optee.h b/include/tee/optee.h
index eb328d3cc6..e782cb0e0e 100644
--- a/include/tee/optee.h
+++ b/include/tee/optee.h
@@ -36,6 +36,11 @@ static inline uint32_t optee_image_get_entry_point(const image_header_t *hdr)
return optee_hdr->init_load_addr_lo;
}
+static inline uint32_t optee_image_get_load_addr(const image_header_t *hdr)
+{
+ return optee_image_get_entry_point(hdr) - sizeof(struct optee_header);
+}
+
#if defined(CONFIG_OPTEE)
int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start,
unsigned long tzdram_len, unsigned long image_len);