blob: f10a41f3048b63bc1f411359c73ef2ae29343a26 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Andreas Dannenberg6469e1a2016-06-27 09:19:18 -05002/*
3 * (C) Copyright 2016
4 * Texas Instruments, <www.ti.com>
5 *
6 * Andreas Dannenberg <dannenberg@ti.com>
Andreas Dannenberg6469e1a2016-06-27 09:19:18 -05007 */
8#ifndef _OMAP_SEC_COMMON_H_
9#define _OMAP_SEC_COMMON_H_
10
11#include <common.h>
12
13/*
14 * Invoke secure ROM API on high-security (HS) device variants. It formats
15 * the variable argument list into the format expected by the ROM code before
16 * triggering the actual low-level smc entry.
17 */
18u32 secure_rom_call(u32 service, u32 proc_id, u32 flag, ...);
19
Andreas Dannenberg1549e2f2016-06-27 09:19:19 -050020/*
21 * Invoke a secure ROM API on high-secure (HS) device variants that can be used
22 * to verify a secure blob by authenticating and optionally decrypting it. The
23 * exact operation performed depends on how the certificate that was embedded
24 * into the blob during the signing/encryption step when the secure blob was
25 * first created.
26 */
27int secure_boot_verify_image(void **p_image, size_t *p_size);
28
Daniel Allred5f858eb2016-09-02 00:40:21 -050029/*
Andrew F. Davisbb80d4d2017-07-10 14:45:50 -050030 * Return the start of secure reserved RAM, if a default start address has
31 * not been configured then return a region at the end of the external DRAM.
32 */
33u32 get_sec_mem_start(void);
34
35/*
Daniel Allred5f858eb2016-09-02 00:40:21 -050036 * Invoke a secure HAL API that allows configuration of the external memory
37 * firewall regions.
38 */
39int secure_emif_firewall_setup(uint8_t region_num, uint32_t start_addr,
40 uint32_t size, uint32_t access_perm,
41 uint32_t initiator_perm);
42
43/*
44 * Invoke a secure HAL API on high-secure (HS) device variants that reserves a
45 * region of external memory for secure world use, and protects it using memory
46 * firewalls that prevent public world access. This API is intended to setaside
47 * memory that will be used for a secure world OS/TEE.
48 */
49int secure_emif_reserve(void);
50
51/*
52 * Invoke a secure HAL API to lock the external memory firewall configurations.
53 * After this API is called, none of the HAL APIs for configuring the that
54 * firewall will be usable (calls to those APIs will return failure and have
55 * no effect).
56 */
57int secure_emif_firewall_lock(void);
58
Harinarayan Bhatta5bf003b2016-11-29 16:33:23 -060059/*
60 * Invoke a secure HAL API to authenticate and install a Trusted Execution
61 * Environment (TEE) image.
62 */
63int secure_tee_install(u32 tee_image);
64
Andreas Dannenberg6469e1a2016-06-27 09:19:18 -050065#endif /* _OMAP_SEC_COMMON_H_ */