blob: 67785892f7399bcbb6ee6b5838bf81d1f64e5ce3 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* Copyright Statement:
2 *
3 * This software/firmware and related documentation ("MediaTek Software") are
4 * protected under relevant copyright laws. The information contained herein is
5 * confidential and proprietary to MediaTek Inc. and/or its licensors. Without
6 * the prior written permission of MediaTek inc. and/or its licensors, any
7 * reproduction, modification, use or disclosure of MediaTek Software, and
8 * information contained herein, in whole or in part, shall be strictly
9 * prohibited.
10 *
11 * MediaTek Inc. (C) 2017. All rights reserved.
12 *
13 * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
14 * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
15 * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER
16 * ON AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL
17 * WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
19 * NONINFRINGEMENT. NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH
20 * RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY,
21 * INCORPORATED IN, OR SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES
22 * TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO.
23 * RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO
24 * OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES CONTAINED IN MEDIATEK
25 * SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE
26 * RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
27 * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S
28 * ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE
29 * RELEASED HEREUNDER WILL BE, AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE
30 * MEDIATEK SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE
31 * CHARGE PAID BY RECEIVER TO MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
32 *
33 * The following software/firmware and/or related documentation ("MediaTek
34 * Software") have been modified by MediaTek Inc. All revisions are subject to
35 * any receiver's applicable license agreements with MediaTek Inc.
36 */
37
38#ifndef TZ_INIT_H
39#define TZ_INIT_H
40
41#include "typedefs.h"
42
43#define ATF_BOOTCFG_MAGIC (0x4D415446U) // String MATF in little-endian
44
45#define DEVINFO_SIZE (4U)
46
47/* bootarg for ATF */
48typedef struct {
49 u64 bootarg_loc;
50 u64 bootarg_size;
51 u64 bl33_start_addr;
52 u64 tee_info_addr;
53 u64 boot_reason; // pass boot reason from bl2 to bl33
54} mtk_bl_param_t;
55
56typedef struct {
57 unsigned int atf_magic;
58 unsigned int tee_support;
59 unsigned int tee_boot_arg_addr;
60 unsigned int tee_entry;
61 unsigned int hwuid[4]; // HW Unique id for t-base used
62 unsigned int HRID[2]; // HW random id for t-base used
63 unsigned int atf_log_port;
64 unsigned int atf_log_baudrate;
65 unsigned int atf_log_buf_start;
66 unsigned int atf_log_buf_size;
67 unsigned int atf_aee_debug_buf_start;
68 unsigned int atf_aee_debug_buf_size;
69 unsigned int devinfo[DEVINFO_SIZE];
70 unsigned int atf_irq_num;
71 unsigned int msg_auth_key[8]; /* size of message auth key is 256 bits */
72#if CFG_TEE_SUPPORT
73 unsigned int tee_rpmb_size;
74#endif
75} atf_arg_t, *atf_arg_t_ptr;
76
77extern void tee_set_entry(unsigned int addr);
78extern void tee_set_hwuid(void);
79void trustzone_pre_init(void);
80void trustzone_post_init(void);
81void trustzone_jump(unsigned int addr, unsigned int arg1, unsigned int arg2);
82
83#endif /* TZ_INIT_H */