summaryrefslogtreecommitdiff
path: root/lib/optee
diff options
context:
space:
mode:
authorBryan O'Donoghue <[email protected]>2018-03-13 16:50:33 +0000
committerTom Rini <[email protected]>2018-03-19 16:14:24 -0400
commitc5a6e8bd00cc7257541a904682206bdc0be2bab4 (patch)
treeed622975ed7ebcdb105f2e65ac2535756f531f9f /lib/optee
parentdd5a12e28799366d3c64434f6b347550a4600231 (diff)
optee: Add optee_verify_bootm_image()
This patch adds optee_verify_bootm_image() which will be subsequently used to verify the parameters encoded in the OPTEE header match the memory allocated to the OPTEE region, OPTEE header magic and version prior to handing off control to the OPTEE image. Signed-off-by: Bryan O'Donoghue <[email protected]> Cc: Harinarayan Bhatta <[email protected]> Cc: Andrew F. Davis <[email protected]> Cc: Tom Rini <[email protected]> Cc: Kever Yang <[email protected]> Cc: Philipp Tomsich <[email protected]> Cc: Peng Fan <[email protected]>
Diffstat (limited to 'lib/optee')
-rw-r--r--lib/optee/optee.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/optee/optee.c b/lib/optee/optee.c
index 2cc16d7c97a..365c078a51d 100644
--- a/lib/optee/optee.c
+++ b/lib/optee/optee.c
@@ -29,3 +29,23 @@ int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start,
return 0;
}
+
+int optee_verify_bootm_image(unsigned long image_addr,
+ unsigned long image_load_addr,
+ unsigned long image_len)
+{
+ struct optee_header *hdr = (struct optee_header *)image_addr;
+ unsigned long tzdram_start = CONFIG_OPTEE_TZDRAM_BASE;
+ unsigned long tzdram_len = CONFIG_OPTEE_TZDRAM_SIZE;
+
+ int ret;
+
+ ret = optee_verify_image(hdr, tzdram_start, tzdram_len, image_len);
+ if (ret)
+ return ret;
+
+ if (image_load_addr + sizeof(*hdr) != hdr->init_load_addr_lo)
+ ret = -EINVAL;
+
+ return ret;
+}