2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-2-Clause */
|
2016-11-29 22:33:23 +00:00
|
|
|
/*
|
|
|
|
* OP-TEE related definitions
|
|
|
|
*
|
|
|
|
* (C) Copyright 2016 Linaro Limited
|
|
|
|
* Andrew F. Davis <andrew.davis@linaro.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _OPTEE_H
|
|
|
|
#define _OPTEE_H
|
|
|
|
|
2018-03-13 16:50:27 +00:00
|
|
|
#include <linux/errno.h>
|
|
|
|
|
2016-11-29 22:33:23 +00:00
|
|
|
#define OPTEE_MAGIC 0x4554504f
|
|
|
|
#define OPTEE_VERSION 1
|
|
|
|
#define OPTEE_ARCH_ARM32 0
|
|
|
|
#define OPTEE_ARCH_ARM64 1
|
|
|
|
|
|
|
|
struct optee_header {
|
|
|
|
uint32_t magic;
|
|
|
|
uint8_t version;
|
|
|
|
uint8_t arch;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t init_size;
|
|
|
|
uint32_t init_load_addr_hi;
|
|
|
|
uint32_t init_load_addr_lo;
|
|
|
|
uint32_t init_mem_usage;
|
|
|
|
uint32_t paged_size;
|
|
|
|
};
|
|
|
|
|
2018-03-13 16:50:31 +00:00
|
|
|
static inline uint32_t optee_image_get_entry_point(const image_header_t *hdr)
|
|
|
|
{
|
|
|
|
struct optee_header *optee_hdr = (struct optee_header *)(hdr + 1);
|
|
|
|
|
|
|
|
return optee_hdr->init_load_addr_lo;
|
|
|
|
}
|
|
|
|
|
2018-03-13 16:50:32 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-03-13 16:50:27 +00:00
|
|
|
#if defined(CONFIG_OPTEE)
|
|
|
|
int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start,
|
|
|
|
unsigned long tzdram_len, unsigned long image_len);
|
|
|
|
#else
|
|
|
|
static inline int optee_verify_image(struct optee_header *hdr,
|
|
|
|
unsigned long tzdram_start,
|
|
|
|
unsigned long tzdram_len,
|
|
|
|
unsigned long image_len)
|
|
|
|
{
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-03-13 16:50:33 +00:00
|
|
|
#if defined(CONFIG_OPTEE)
|
|
|
|
int optee_verify_bootm_image(unsigned long image_addr,
|
|
|
|
unsigned long image_load_addr,
|
|
|
|
unsigned long image_len);
|
|
|
|
#else
|
|
|
|
static inline int optee_verify_bootm_image(unsigned long image_addr,
|
|
|
|
unsigned long image_load_addr,
|
|
|
|
unsigned long image_len)
|
|
|
|
{
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-10-23 14:46:40 +00:00
|
|
|
#if defined(CONFIG_OPTEE) && defined(CONFIG_OF_LIBFDT)
|
|
|
|
int optee_copy_fdt_nodes(const void *old_blob, void *new_blob);
|
|
|
|
#else
|
|
|
|
static inline int optee_copy_fdt_nodes(const void *old_blob, void *new_blob)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-11-29 22:33:23 +00:00
|
|
|
#endif /* _OPTEE_H */
|