blob: f370160d05981c404eb56a8fc411ab42c4498897 [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//Don't used the typedef of teeloader, as this file will be included in Trustonic tee.
41//Which MUST use specific gcc version compiler, and the compiler have some conflict define
42//with the typedef here.
43//#include "typedefs.h"
44
45#define ATF_BOOTCFG_MAGIC (0x4D415446U) // String MATF in little-endian
46
47#define DEVINFO_SIZE (4U)
48#define HRID_SIZE 2
49/* bootarg for ATF */
50typedef struct {
51 unsigned long long bootarg_loc;
52 unsigned long long bootarg_size;
53 unsigned long long bl33_start_addr;
54 unsigned long long tee_info_addr;
55 unsigned long long boot_reason; // pass boot reason from bl2 to bl33
56} mtk_bl_param_t;
57
58typedef struct {
59 unsigned int atf_magic;
60 unsigned int tee_support;
61 unsigned int tee_entry;
62 unsigned long long tee_boot_arg_addr;
63 unsigned int hwuid[4]; // HW Unique id for t-base used
64 unsigned int HRID[HRID_SIZE]; // HW random id for t-base used
65 unsigned int atf_log_port;
66 unsigned int atf_log_baudrate;
67 unsigned long long atf_log_buf_start;
68 unsigned int atf_log_buf_size;
69 unsigned int atf_irq_num;
70 unsigned int devinfo[DEVINFO_SIZE];
71 unsigned long long atf_aee_debug_buf_start;
72 unsigned int atf_aee_debug_buf_size;
73#if CFG_TEE_SUPPORT
74 unsigned int tee_rpmb_size;
75#endif
76}atf_arg_t, *atf_arg_t_ptr;
77
78extern void tee_set_entry(unsigned int addr);
79extern void tee_set_hwuid(void);
80void trustzone_pre_init(void);
81void trustzone_post_init(void);
82void trustzone_jump(unsigned int addr, unsigned int arg1, unsigned int arg2);
83
84#endif /* TZ_INIT_H */