blob: bba9e9efde484aaf1d8f7f396d501b959ab2cced [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) 2016. 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 BL31 0x43001000UL
44#define BL33 0x41e00000UL
45#define BL31_BASE 0x43000000UL
46#define BL31_SIZE 0x00030000UL /* default is 192K Bytes */
47
48#define ATF_BOOT_ARG_ADDR (0x40000000)
49#define TEE_BOOT_ARG_ADDR (0x40001000)
50#define ATF_BOOTCFG_MAGIC (0x4D415446) // String MATF in little-endian
51
52#define DEVINFO_SIZE 4
53
54/* bootarg for ATF */
55typedef struct {
56 u64 bootarg_loc;
57 u64 bootarg_size;
58 u64 bl33_start_addr;
59 u64 tee_info_addr;
60} mtk_bl_param_t;
61
62typedef struct atf_arg_t{
63 unsigned int atf_magic;
64 unsigned int tee_support;
65 unsigned int tee_entry;
66 unsigned int tee_boot_arg_addr;
67 unsigned int hwuid[4]; // HW Unique id for t-base used
68 unsigned int atf_hrid_size; // Check this atf_hrid_size to read from HRID array
69 unsigned int HRID[8]; // HW random id for t-base used
70 unsigned int atf_log_port;
71 unsigned int atf_log_baudrate;
72 unsigned int atf_log_buf_start;
73 unsigned int atf_log_buf_size;
74 unsigned int atf_irq_num;
75 unsigned int devinfo[DEVINFO_SIZE];
76 unsigned int atf_aee_debug_buf_start;
77 unsigned int atf_aee_debug_buf_size;
78 unsigned int msg_fde_key[4]; /* size of message auth key is 16bytes(128 bits) */
79#if CFG_TEE_SUPPORT
80 unsigned int tee_rpmb_size;
81#endif
82}atf_arg_t, *atf_arg_t_ptr;
83
84#endif /* __TZ_INIT_H__ */