]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/trats2.h
Convert CONFIG_CMD_SAVES to Kconfig
[people/ms/u-boot.git] / include / configs / trats2.h
1 /*
2 * Copyright (C) 2013 Samsung Electronics
3 * Sanghee Kim <sh0130.kim@samsung.com>
4 * Piotr Wilczek <p.wilczek@samsung.com>
5 *
6 * Configuation settings for the SAMSUNG TRATS2 (EXYNOS4412) board.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11 #ifndef __CONFIG_TRATS2_H
12 #define __CONFIG_TRATS2_H
13
14 #include <configs/exynos4-common.h>
15
16 #define CONFIG_TIZEN /* TIZEN lib */
17
18 #define CONFIG_SYS_L2CACHE_OFF
19 #ifndef CONFIG_SYS_L2CACHE_OFF
20 #define CONFIG_SYS_L2_PL310
21 #define CONFIG_SYS_PL310_BASE 0x10502000
22 #endif
23
24 /* TRATS2 has 4 banks of DRAM */
25 #define CONFIG_NR_DRAM_BANKS 4
26 #define CONFIG_SYS_SDRAM_BASE 0x40000000
27 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
28 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
29 /* memtest works on */
30 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
31 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5E00000)
32 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
33
34 #define CONFIG_SYS_TEXT_BASE 0x43e00000
35
36 /* select serial console configuration */
37 #define CONFIG_SERIAL2
38
39 /* Console configuration */
40
41 #define CONFIG_BOOTARGS "Please use defined boot"
42 #define CONFIG_BOOTCOMMAND "run autoboot"
43 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
44
45 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
46 - GENERATED_GBL_DATA_SIZE)
47
48 #define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
49
50 #define CONFIG_SYS_MONITOR_BASE 0x00000000
51
52 #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
53 #define CONFIG_ENV_SIZE 4096
54 #define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
55
56 #define CONFIG_ENV_OVERWRITE
57
58 #define CONFIG_ENV_VARS_UBOOT_CONFIG
59 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
60
61 /* Tizen - partitions definitions */
62 #define PARTS_CSA "csa-mmc"
63 #define PARTS_BOOT "boot"
64 #define PARTS_QBOOT "qboot"
65 #define PARTS_CSC "csc"
66 #define PARTS_ROOT "platform"
67 #define PARTS_DATA "data"
68 #define PARTS_UMS "ums"
69
70 #define PARTS_DEFAULT \
71 "uuid_disk=${uuid_gpt_disk};" \
72 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
73 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
74 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
75 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
76 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
77 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
78 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
79
80 #define CONFIG_DFU_ALT \
81 "u-boot raw 0x80 0x800;" \
82 "/uImage ext4 0 2;" \
83 "/modem.bin ext4 0 2;" \
84 "/exynos4412-trats2.dtb ext4 0 2;" \
85 ""PARTS_CSA" part 0 1;" \
86 ""PARTS_BOOT" part 0 2;" \
87 ""PARTS_QBOOT" part 0 3;" \
88 ""PARTS_CSC" part 0 4;" \
89 ""PARTS_ROOT" part 0 5;" \
90 ""PARTS_DATA" part 0 6;" \
91 ""PARTS_UMS" part 0 7;" \
92 "params.bin raw 0x38 0x8;" \
93 "/Image.itb ext4 0 2\0"
94
95 #define CONFIG_EXTRA_ENV_SETTINGS \
96 "bootk=" \
97 "run loaduimage;" \
98 "if run loaddtb; then " \
99 "bootm 0x40007FC0 - ${fdtaddr};" \
100 "fi;" \
101 "bootm 0x40007FC0;\0" \
102 "updatebackup=" \
103 "mmc dev 0 2; mmc write 0x51000000 0 0x800;" \
104 " mmc dev 0 0\0" \
105 "updatebootb=" \
106 "mmc read 0x51000000 0x80 0x800; run updatebackup\0" \
107 "mmcboot=" \
108 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
109 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
110 "run bootk\0" \
111 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
112 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
113 "verify=n\0" \
114 "rootfstype=ext4\0" \
115 "console=" CONFIG_DEFAULT_CONSOLE \
116 "kernelname=uImage\0" \
117 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 " \
118 "${kernelname}\0" \
119 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
120 "${fdtfile}\0" \
121 "mmcdev=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
122 "mmcbootpart=2\0" \
123 "mmcrootpart=5\0" \
124 "opts=always_resume=1\0" \
125 "partitions=" PARTS_DEFAULT \
126 "dfu_alt_info=" CONFIG_DFU_ALT \
127 "uartpath=ap\0" \
128 "usbpath=ap\0" \
129 "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
130 "consoleoff=set console console=ram; save; reset\0" \
131 "spladdr=0x40000100\0" \
132 "splsize=0x200\0" \
133 "splfile=falcon.bin\0" \
134 "spl_export=" \
135 "setexpr spl_imgsize ${splsize} + 8 ;" \
136 "setenv spl_imgsize 0x${spl_imgsize};" \
137 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
138 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
139 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
140 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
141 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
142 "spl export atags 0x40007FC0;" \
143 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
144 "mw.l ${spl_addr_tmp} ${splsize};" \
145 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
146 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
147 "setenv spl_imgsize;" \
148 "setenv spl_imgaddr;" \
149 "setenv spl_addr_tmp;\0" \
150 CONFIG_EXTRA_ENV_ITB \
151 "fdtaddr=40800000\0" \
152
153 /* GPT */
154 #define CONFIG_RANDOM_UUID
155
156 /* Security subsystem - enable hw_rand() */
157 #define CONFIG_EXYNOS_ACE_SHA
158 #define CONFIG_LIB_HW_RAND
159
160 /* Common misc for Samsung */
161 #define CONFIG_MISC_COMMON
162
163 #define CONFIG_MISC_INIT_R
164
165 /* Download menu - Samsung common */
166 #define CONFIG_LCD_MENU
167 #define CONFIG_LCD_MENU_BOARD
168
169 /* Download menu - definitions for check keys */
170 #ifndef __ASSEMBLY__
171
172 #define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
173 #define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
174 #define KEY_PWR_STATUS_MASK (1 << 0)
175 #define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
176 #define KEY_PWR_INTERRUPT_MASK (1 << 1)
177
178 #define KEY_VOL_UP_GPIO EXYNOS4X12_GPIO_X22
179 #define KEY_VOL_DOWN_GPIO EXYNOS4X12_GPIO_X33
180 #endif /* __ASSEMBLY__ */
181
182 /* LCD console */
183 #define LCD_BPP LCD_COLOR16
184
185 /* LCD */
186 #define CONFIG_BMP_16BPP
187 #define CONFIG_FB_ADDR 0x52504000
188 #define CONFIG_EXYNOS_MIPI_DSIM
189 #define CONFIG_VIDEO_BMP_GZIP
190 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
191
192 #endif /* __CONFIG_H */