blob: c330423a43d0d24a98df422f5571fcb0b2003c1c [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_MEM_H
39#define TZ_MEM_H
40
41#include "tz_init.h"
42
43#define SRAM_BASE_ADDRESS (0x00100000UL)
44#define SRAM_START_ADDR (0x00102140UL)
45#define VECTOR_START (SRAM_START_ADDR + 0xBAC0UL)
46
47typedef struct tz_memory_t {
48 short next, previous;
49} tz_memory_t;
50
51#define FREE ((short)(0x0001U))
52#define IS_FREE(x) ((x)->next & FREE)
53#define CLEAR_FREE(x) ((x)->next &= ~FREE)
54#define SET_FREE(x) ((x)->next |= FREE)
55#define FROM_ADDR(x) ((short)(ptrdiff_t)(x))
56#define TO_ADDR(x) ((tz_memory_t *)(SRAM_BASE_ADDRESS + ((x) & ~FREE)))
57
58/* SEC MEM magic */
59#define SEC_MEM_MAGIC (0x3C562817U)
60/* SEC MEM version */
61#define SEC_MEM_VERSION (0x00010000U)
62/* Tplay Table Size */
63#define SEC_MEM_TPLAY_TABLE_SIZE (0x1000UL) //4KB by default
64#define SEC_MEM_TPLAY_MEMORY_SIZE (0x200000UL) //2MB by default
65
66#define BL31 (0x44e01000UL)
67#define BL31_SIZE (0x40000UL) //change to 256KB (192KB by default)
68#define BL33 (0x73500000UL)
69
70#define ATF_BOOT_ARG_ADDR (0x40000000UL)
71#define ATF_INIT_ARG_ADDR (0x40000100UL)
72#define TEE_BOOT_ARG_ADDR (0x44e00100UL)
73
74#define TEE_PARAMETER_BASE (TEE_BOOT_ARG_ADDR)
75#define TEE_PARAMETER_ADDR (TEE_BOOT_ARG_ADDR + 0x100UL)
76
77#define TEE_SECURE_ISRAM_ADDR (0x0UL)
78#define TEE_SECURE_ISRAM_SIZE (0x0UL)
79
80#if CFG_ATF_LOG_SUPPORT
81#define ATF_LOG_BUFFER_SIZE (0x40000UL) //256KB
82#define ATF_AEE_BUFFER_SIZE (0x4000UL) //16KB
83#else
84#define ATF_LOG_BUFFER_SIZE (0x0UL) //don't support ATF log
85#define ATF_AEE_BUFFER_SIZE (0x0UL) //don't support ATF log
86#endif
87
88typedef struct {
89 unsigned int magic; // Magic number
90 unsigned int version; // version
91 unsigned int svp_mem_start; // MM sec mem pool start addr.
92 unsigned int svp_mem_end; // MM sec mem pool end addr.
93 unsigned int tplay_table_start; // tplay handle-to-physical table start
94 unsigned int tplay_table_size; // tplay handle-to-physical table size
95 unsigned int tplay_mem_start; // tplay physcial memory start address for crypto operation
96 unsigned int tplay_mem_size; // tplay phsycial memory size for crypto operation
97 unsigned int secmem_obfuscation; // MM sec mem obfuscation or not
98 unsigned int rpmb_size; /* size of rpmb partition */
99 unsigned int msg_auth_key[8]; /* size of message auth key is 32bytes(256 bits) */
100 unsigned int emmc_rel_wr_sec_c; // emmc ext_csd[222]
101} sec_mem_arg_t;
102#endif /* TZ_MEM_H */