2 * Copyright (C) 2011 Samsung Electronics
3 * Heungjun Kim <riverful.kim@samsung.com>
5 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
7 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef __CONFIG_TRATS_H
11 #define __CONFIG_TRATS_H
13 #include <configs/exynos4-common.h>
17 #define CONFIG_TIZEN /* TIZEN lib */
19 #define CONFIG_SYS_L2CACHE_OFF
20 #ifndef CONFIG_SYS_L2CACHE_OFF
21 #define CONFIG_SYS_L2_PL310
22 #define CONFIG_SYS_PL310_BASE 0x10502000
25 /* TRATS has 4 banks of DRAM */
26 #define CONFIG_NR_DRAM_BANKS 4
27 #define CONFIG_SYS_SDRAM_BASE 0x40000000
28 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
29 #define CONFIG_SYS_TEXT_BASE 0x63300000
30 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
32 /* memtest works on */
33 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
34 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5000000)
35 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x4800000)
37 #define CONFIG_SYS_TEXT_BASE 0x63300000
39 /* select serial console configuration */
40 #define CONFIG_SERIAL2
41 #define CONFIG_BAUDRATE 115200
43 #define CONFIG_MACH_TYPE MACH_TYPE_TRATS
45 #define CONFIG_BOOTARGS "Please use defined boot"
46 #define CONFIG_BOOTCOMMAND "run autoboot"
47 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
49 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
50 - GENERATED_GBL_DATA_SIZE)
52 #define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
54 #define CONFIG_SYS_MONITOR_BASE 0x00000000
56 #define CONFIG_BOOTBLOCK "10"
57 #define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}"
59 #define CONFIG_ENV_IS_IN_MMC
60 #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
61 #define CONFIG_ENV_SIZE 4096
62 #define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
64 #define CONFIG_ENV_OVERWRITE
66 #define CONFIG_ENV_VARS_UBOOT_CONFIG
67 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
69 /* Tizen - partitions definitions */
70 #define PARTS_CSA "csa-mmc"
71 #define PARTS_BOOT "boot"
72 #define PARTS_QBOOT "qboot"
73 #define PARTS_CSC "csc"
74 #define PARTS_ROOT "platform"
75 #define PARTS_DATA "data"
76 #define PARTS_UMS "ums"
78 #define PARTS_DEFAULT \
79 "uuid_disk=${uuid_gpt_disk};" \
80 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
81 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
82 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
83 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
84 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
85 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
86 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
88 #define CONFIG_DFU_ALT \
89 "u-boot raw 0x80 0x400;" \
91 "/modem.bin ext4 0 2;" \
92 "/exynos4210-trats.dtb ext4 0 2;" \
93 ""PARTS_CSA" part 0 1;" \
94 ""PARTS_BOOT" part 0 2;" \
95 ""PARTS_QBOOT" part 0 3;" \
96 ""PARTS_CSC" part 0 4;" \
97 ""PARTS_ROOT" part 0 5;" \
98 ""PARTS_DATA" part 0 6;" \
99 ""PARTS_UMS" part 0 7;" \
100 "params.bin raw 0x38 0x8;" \
101 "/Image.itb ext4 0 2\0"
103 #define CONFIG_EXTRA_ENV_SETTINGS \
106 "if run loaddtb; then " \
107 "bootm 0x40007FC0 - ${fdtaddr};" \
109 "bootm 0x40007FC0;\0" \
111 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
114 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
115 "lpj=lpj=3981312\0" \
117 "setenv bootargs root=/dev/nfs rw " \
118 "nfsroot=${nfsroot},nolock,tcp " \
119 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
120 "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \
123 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
124 "${console} ${meminfo} " \
125 "initrd=0x43000000,8M ramdisk=8192\0" \
127 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
128 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
130 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
131 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
132 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
134 "rootfstype=ext4\0" \
135 "console=" CONFIG_DEFAULT_CONSOLE \
136 "meminfo=crashkernel=32M@0x50000000\0" \
137 "nfsroot=/nfsroot/arm\0" \
138 "bootblock=" CONFIG_BOOTBLOCK "\0" \
139 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
140 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
145 "opts=always_resume=1\0" \
146 "partitions=" PARTS_DEFAULT \
147 "dfu_alt_info=" CONFIG_DFU_ALT \
148 "spladdr=0x40000100\0" \
150 "splfile=falcon.bin\0" \
152 "setexpr spl_imgsize ${splsize} + 8 ;" \
153 "setenv spl_imgsize 0x${spl_imgsize};" \
154 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
155 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
156 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
157 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
158 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
159 "spl export atags 0x40007FC0;" \
160 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
161 "mw.l ${spl_addr_tmp} ${splsize};" \
162 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
163 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
164 "setenv spl_imgsize;" \
165 "setenv spl_imgaddr;" \
166 "setenv spl_addr_tmp;\0" \
167 CONFIG_EXTRA_ENV_ITB \
168 "fdtaddr=40800000\0" \
170 /* Falcon mode definitions */
171 #define CONFIG_CMD_SPL
172 #define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100
175 #define CONFIG_RANDOM_UUID
177 /* Security subsystem - enable hw_rand() */
178 #define CONFIG_EXYNOS_ACE_SHA
179 #define CONFIG_LIB_HW_RAND
181 /* Common misc for Samsung */
182 #define CONFIG_MISC_COMMON
184 #define CONFIG_MISC_INIT_R
186 /* Download menu - Samsung common */
187 #define CONFIG_LCD_MENU
188 #define CONFIG_LCD_MENU_BOARD
190 /* Download menu - definitions for check keys */
192 #include <power/max8997_pmic.h>
194 #define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
195 #define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
196 #define KEY_PWR_STATUS_MASK (1 << 0)
197 #define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
198 #define KEY_PWR_INTERRUPT_MASK (1 << 0)
200 #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20
201 #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21
202 #endif /* __ASSEMBLY__ */
205 #define LCD_BPP LCD_COLOR16
206 #define CONFIG_SYS_WHITE_ON_BLACK
209 #define CONFIG_BMP_16BPP
210 #define CONFIG_FB_ADDR 0x52504000
211 #define CONFIG_EXYNOS_MIPI_DSIM
212 #define CONFIG_VIDEO_BMP_GZIP
213 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
215 #endif /* __CONFIG_H */