blob: 9446928fd4896de4e728a3940c586e47315cad8f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: BSD-2-Clause */
Harinarayan Bhatta57de1ea2016-11-29 16:33:23 -06002/*
3 * OP-TEE related definitions
4 *
5 * (C) Copyright 2016 Linaro Limited
6 * Andrew F. Davis <andrew.davis@linaro.org>
Harinarayan Bhatta57de1ea2016-11-29 16:33:23 -06007 */
8
9#ifndef _OPTEE_H
10#define _OPTEE_H
11
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +000012#include <linux/errno.h>
13
Harinarayan Bhatta57de1ea2016-11-29 16:33:23 -060014#define OPTEE_MAGIC 0x4554504f
15#define OPTEE_VERSION 1
16#define OPTEE_ARCH_ARM32 0
17#define OPTEE_ARCH_ARM64 1
18
19struct optee_header {
20 uint32_t magic;
21 uint8_t version;
22 uint8_t arch;
23 uint16_t flags;
24 uint32_t init_size;
25 uint32_t init_load_addr_hi;
26 uint32_t init_load_addr_lo;
27 uint32_t init_mem_usage;
28 uint32_t paged_size;
29};
30
Bryan O'Donoghuef7944362018-03-13 16:50:31 +000031static inline uint32_t optee_image_get_entry_point(const image_header_t *hdr)
32{
33 struct optee_header *optee_hdr = (struct optee_header *)(hdr + 1);
34
35 return optee_hdr->init_load_addr_lo;
36}
37
Bryan O'Donoghuedd5a12e2018-03-13 16:50:32 +000038static inline uint32_t optee_image_get_load_addr(const image_header_t *hdr)
39{
40 return optee_image_get_entry_point(hdr) - sizeof(struct optee_header);
41}
42
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +000043#if defined(CONFIG_OPTEE)
44int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start,
45 unsigned long tzdram_len, unsigned long image_len);
46#else
47static inline int optee_verify_image(struct optee_header *hdr,
48 unsigned long tzdram_start,
49 unsigned long tzdram_len,
50 unsigned long image_len)
51{
52 return -EPERM;
53}
54
55#endif
56
Bryan O'Donoghuec5a6e8b2018-03-13 16:50:33 +000057#if defined(CONFIG_OPTEE)
58int optee_verify_bootm_image(unsigned long image_addr,
59 unsigned long image_load_addr,
60 unsigned long image_len);
61#else
62static inline int optee_verify_bootm_image(unsigned long image_addr,
63 unsigned long image_load_addr,
64 unsigned long image_len)
65{
66 return -EPERM;
67}
68#endif
69
Harinarayan Bhatta57de1ea2016-11-29 16:33:23 -060070#endif /* _OPTEE_H */