Convert CONFIG_SYS_MEM_TOP_HIDE to Kconfig
[platform/kernel/u-boot.git] / include / configs / trats.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2011 Samsung Electronics
4  * Heungjun Kim <riverful.kim@samsung.com>
5  *
6  * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
7  */
8
9 #ifndef __CONFIG_TRATS_H
10 #define __CONFIG_TRATS_H
11
12 #include <configs/exynos4-common.h>
13
14 #define CONFIG_TRATS
15
16 #define CONFIG_TIZEN                    /* TIZEN lib */
17
18 #ifndef CONFIG_SYS_L2CACHE_OFF
19 #define CONFIG_SYS_L2_PL310
20 #define CONFIG_SYS_PL310_BASE   0x10502000
21 #endif
22
23 /* TRATS has 4 banks of DRAM */
24 #define CONFIG_SYS_SDRAM_BASE           0x40000000
25 #define PHYS_SDRAM_1                    CONFIG_SYS_SDRAM_BASE
26 #define SDRAM_BANK_SIZE                 (256 << 20)     /* 256 MB */
27
28 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
29                                         - GENERATED_GBL_DATA_SIZE)
30
31 /* Tizen - partitions definitions */
32 #define PARTS_CSA               "csa-mmc"
33 #define PARTS_BOOT              "boot"
34 #define PARTS_QBOOT             "qboot"
35 #define PARTS_CSC               "csc"
36 #define PARTS_ROOT              "platform"
37 #define PARTS_DATA              "data"
38 #define PARTS_UMS               "ums"
39
40 #define PARTS_DEFAULT \
41         "uuid_disk=${uuid_gpt_disk};" \
42         "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
43         "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
44         "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
45         "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
46         "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
47         "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
48         "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
49
50 #define CONFIG_DFU_ALT \
51         "u-boot raw 0x80 0x400;" \
52         "/uImage ext4 0 2;" \
53         "/modem.bin ext4 0 2;" \
54         "/exynos4210-trats.dtb ext4 0 2;" \
55         ""PARTS_CSA" part 0 1;" \
56         ""PARTS_BOOT" part 0 2;" \
57         ""PARTS_QBOOT" part 0 3;" \
58         ""PARTS_CSC" part 0 4;" \
59         ""PARTS_ROOT" part 0 5;" \
60         ""PARTS_DATA" part 0 6;" \
61         ""PARTS_UMS" part 0 7;" \
62         "params.bin raw 0x38 0x8;" \
63         "/Image.itb ext4 0 2\0"
64
65 #define CONFIG_EXTRA_ENV_SETTINGS \
66         "bootk=" \
67                 "run loaduimage;" \
68                 "if run loaddtb; then " \
69                         "bootm 0x40007FC0 - ${fdtaddr};" \
70                 "fi;" \
71                 "bootm 0x40007FC0;\0" \
72         "updatebackup=" \
73                 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
74                 "mmc dev 0 0\0" \
75         "updatebootb=" \
76                 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
77         "lpj=lpj=3981312\0" \
78         "nfsboot=" \
79                 "setenv bootargs root=/dev/nfs rw " \
80                 "nfsroot=${nfsroot},nolock,tcp " \
81                 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
82                 "${netmask}:generic:usb0:off ${console} ${meminfo}" \
83                 "; run bootk\0" \
84         "ramfsboot=" \
85                 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
86                 "${console} ${meminfo} " \
87                 "initrd=0x43000000,8M ramdisk=8192\0" \
88         "mmcboot=" \
89                 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
90                 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
91                 "run bootk\0" \
92         "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
93         "boottrace=setenv opts initcall_debug; run bootcmd\0" \
94         "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
95         "verify=n\0" \
96         "rootfstype=ext4\0" \
97         "console=console=ttySAC2,115200n8\0" \
98         "meminfo=crashkernel=32M@0x50000000\0" \
99         "nfsroot=/nfsroot/arm\0" \
100         "bootblock=10\0" \
101         "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
102         "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
103                 "${fdtfile}\0" \
104         "mmcdev=0\0" \
105         "mmcbootpart=2\0" \
106         "mmcrootpart=5\0" \
107         "opts=always_resume=1\0" \
108         "partitions=" PARTS_DEFAULT \
109         "dfu_alt_info=" CONFIG_DFU_ALT \
110         "spladdr=0x40000100\0" \
111         "splsize=0x200\0" \
112         "splfile=falcon.bin\0" \
113         "spl_export=" \
114                    "setexpr spl_imgsize ${splsize} + 8 ;" \
115                    "setenv spl_imgsize 0x${spl_imgsize};" \
116                    "setexpr spl_imgaddr ${spladdr} - 8 ;" \
117                    "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
118                    "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
119                    "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
120                    "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
121                    "spl export atags 0x40007FC0;" \
122                    "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
123                    "mw.l ${spl_addr_tmp} ${splsize};" \
124                    "ext4write mmc ${mmcdev}:${mmcbootpart}" \
125                    " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
126                    "setenv spl_imgsize;" \
127                    "setenv spl_imgaddr;" \
128                    "setenv spl_addr_tmp;\0" \
129         ENV_ITB \
130         "fdtaddr=40800000\0" \
131
132 /* Falcon mode definitions */
133 #define CONFIG_SYS_SPL_ARGS_ADDR        CONFIG_SYS_SDRAM_BASE + 0x100
134
135 /* GPT */
136
137 /* Security subsystem - enable hw_rand() */
138 #define CONFIG_EXYNOS_ACE_SHA
139
140 /* Common misc for Samsung */
141 #define CONFIG_MISC_COMMON
142
143 /* Download menu - Samsung common */
144 #define CONFIG_LCD_MENU
145
146 /* Download menu - definitions for check keys */
147 #ifndef __ASSEMBLY__
148
149 #define KEY_PWR_PMIC_NAME               "MAX8997_PMIC"
150 #define KEY_PWR_STATUS_REG              MAX8997_REG_STATUS1
151 #define KEY_PWR_STATUS_MASK             (1 << 0)
152 #define KEY_PWR_INTERRUPT_REG           MAX8997_REG_INT1
153 #define KEY_PWR_INTERRUPT_MASK          (1 << 0)
154
155 #define KEY_VOL_UP_GPIO                 EXYNOS4_GPIO_X20
156 #define KEY_VOL_DOWN_GPIO               EXYNOS4_GPIO_X21
157 #endif /* __ASSEMBLY__ */
158
159 /* LCD console */
160 #define LCD_BPP                 LCD_COLOR16
161
162 /* LCD */
163 #define CONFIG_FB_ADDR          0x52504000
164 #define CONFIG_EXYNOS_MIPI_DSIM
165 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  ((500 * 160 * 4) + 54)
166
167 #endif  /* __CONFIG_H */