summaryrefslogtreecommitdiff
path: root/core/arch/arm/plat-s5p6818/platform_config.h
blob: e21ea2a96f772c3acbdae1788c5e6cd8b89eef4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
 * Copyright (C) 2016  Nexell Co., Ltd.
 * Author: Bon-gyu, KOO <freestyle@nexell.co.kr>
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef PLATFORM_CONFIG_H
#define PLATFORM_CONFIG_H

/* Make stacks aligned to data cache line length */
#define STACK_ALIGNMENT		64

#ifdef ARM64
#ifdef CFG_WITH_PAGER
#error "Pager not supported for ARM64"
#endif
#endif /* ARM64 */

#define GIC_BASE				0xC0009000
#define GICD_OFFSET				0x0
#define GICC_OFFSET				0x1000

#define UART0_BASE				0xC00A1000
#define UART1_BASE				0xC00A0000
#define UART2_BASE				0xC00A2000
#define UART3_BASE				0xC00A3000
#define UART4_BASE				0xC006D000
#define UART5_BASE				0xC006F000

/* S5P6818 UART */
#ifdef PLAT_UART_BASE
#define CONSOLE_UART_BASE		(PLAT_UART_BASE)
#else
#define CONSOLE_UART_BASE		(UART3_BASE)
#endif
#define CONSOLE_BAUDRATE		115200
#define CONSOLE_UART_CLK_IN_HZ	19200000

/*
 * nexell memory map
 *
 * We use only non-secure DRAM (TZDRAM and TZSRAM are emulated).
 */
#if defined(PLAT_DRAM_SIZE) && PLAT_DRAM_SIZE == 2048
#define DRAM_SIZE		0x80000000
#define DRAM0_SIZE		0x7DB00000
#ifdef CFG_WITH_PAGER
#define TZSRAM_BASE		0xBDB00000
#define TZDRAM_BASE		0xBDC00000
#else /* CFG_WITH_PAGER */
#define TZDRAM_BASE		0xBEA00000
#endif /* CFG_WITH_PAGER */
#define CFG_SHMEM_START		0xBDE00000
#define CFG_TEE_LOAD_ADDR	0xBEA00000

#elif defined(PLAT_DRAM_SIZE) && PLAT_DRAM_SIZE == 512
#define DRAM_SIZE		0x20000000
#define DRAM0_SIZE		0x1DB00000
#ifdef CFG_WITH_PAGER
#define TZSRAM_BASE		0x5DB00000
#define TZDRAM_BASE		0x5DC00000
#else /* CFG_WITH_PAGER */
#define TZDRAM_BASE		0x5EA00000
#endif /* CFG_WITH_PAGER */
#define CFG_SHMEM_START		0x5DE00000
#define CFG_TEE_LOAD_ADDR	0x5EA00000

#else /* PLAT_DRAM_SIZE */
/* default: DRAM size is 1GB. */
#define DRAM_SIZE		0x40000000
#define DRAM0_SIZE		0x3DB00000
#ifdef CFG_WITH_PAGER
#define TZSRAM_BASE		0x7DB00000
#define TZDRAM_BASE		0x7DC00000
#else /* CFG_WITH_PAGER */
#define TZDRAM_BASE		0x7EA00000
#endif /* CFG_WITH_PAGER */
#define CFG_SHMEM_START		0x7DE00000
#define CFG_TEE_LOAD_ADDR	0x7EA00000

#endif /* PLAT_DRAM_SIZE */


#define DRAM_BASE		0x40000000
#define DRAM0_BASE		DRAM_BASE

#ifdef CFG_WITH_PAGER
#define TZSRAM_SIZE		(200 * 1024)
#define TZDRAM_SIZE		(15 * 1024 * 1024)
#else /* CFG_WITH_PAGER */
#define TZDRAM_SIZE		(16 * 1024 * 1024)
#endif /* CFG_WITH_PAGER */

#define CFG_SHMEM_SIZE		(1024 * 1024)

#define CFG_TEE_CORE_NB_CORE	8

#define CFG_TEE_RAM_VA_SIZE	(1024 * 1024)

#ifdef CFG_WITH_PAGER

#define CFG_TEE_RAM_START	TZSRAM_BASE
#define CFG_TEE_RAM_PH_SIZE	TZSRAM_SIZE
#define CFG_TA_RAM_START	ROUNDUP(TZDRAM_BASE, CORE_MMU_DEVICE_SIZE)
#define CFG_TA_RAM_SIZE		ROUNDDOWN(TZDRAM_SIZE, CORE_MMU_DEVICE_SIZE)

#else /* CFG_WITH_PAGER */

#define CFG_TEE_RAM_PH_SIZE	CFG_TEE_RAM_VA_SIZE
#define CFG_TEE_RAM_START	TZDRAM_BASE
#define CFG_TA_RAM_START	ROUNDUP((TZDRAM_BASE + CFG_TEE_RAM_VA_SIZE), \
					CORE_MMU_DEVICE_SIZE)

#define CFG_TA_RAM_SIZE		ROUNDDOWN((TZDRAM_SIZE - CFG_TEE_RAM_VA_SIZE),\
					CORE_MMU_DEVICE_SIZE)

#endif /* CFG_WITH_PAGER */

#define DEVICE0_BASE		ROUNDDOWN(CONSOLE_UART_BASE, \
					CORE_MMU_DEVICE_SIZE)
#define DEVICE0_PA_BASE		DEVICE0_BASE
#define DEVICE0_SIZE		CORE_MMU_DEVICE_SIZE
#define DEVICE0_TYPE		MEM_AREA_IO_NSEC

#endif /* PLATFORM_CONFIG_H */