1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2011 Samsung Electronics
6 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
9 #ifndef __CONFIG_TRATS_H
10 #define __CONFIG_TRATS_H
12 #include <configs/exynos4-common.h>
14 #ifndef CONFIG_SYS_L2CACHE_OFF
15 #define CONFIG_SYS_L2_PL310
16 #define CONFIG_SYS_PL310_BASE 0x10502000
19 /* TRATS has 4 banks of DRAM */
20 #define CONFIG_SYS_SDRAM_BASE 0x40000000
21 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
22 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
24 /* Tizen - partitions definitions */
25 #define PARTS_CSA "csa-mmc"
26 #define PARTS_BOOT "boot"
27 #define PARTS_QBOOT "qboot"
28 #define PARTS_CSC "csc"
29 #define PARTS_ROOT "platform"
30 #define PARTS_DATA "data"
31 #define PARTS_UMS "ums"
33 #define PARTS_DEFAULT \
34 "uuid_disk=${uuid_gpt_disk};" \
35 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
36 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
37 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
38 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
39 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
40 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
41 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
43 #define CONFIG_DFU_ALT \
44 "u-boot raw 0x80 0x400;" \
46 "/modem.bin ext4 0 2;" \
47 "/exynos4210-trats.dtb ext4 0 2;" \
48 ""PARTS_CSA" part 0 1;" \
49 ""PARTS_BOOT" part 0 2;" \
50 ""PARTS_QBOOT" part 0 3;" \
51 ""PARTS_CSC" part 0 4;" \
52 ""PARTS_ROOT" part 0 5;" \
53 ""PARTS_DATA" part 0 6;" \
54 ""PARTS_UMS" part 0 7;" \
55 "params.bin raw 0x38 0x8;" \
56 "/Image.itb ext4 0 2\0"
58 #define CONFIG_EXTRA_ENV_SETTINGS \
61 "if run loaddtb; then " \
62 "bootm 0x40007FC0 - ${fdtaddr};" \
64 "bootm 0x40007FC0;\0" \
66 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
69 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
72 "setenv bootargs root=/dev/nfs rw " \
73 "nfsroot=${nfsroot},nolock,tcp " \
74 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
75 "${netmask}:generic:usb0:off ${console} ${meminfo}" \
78 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
79 "${console} ${meminfo} " \
80 "initrd=0x43000000,8M ramdisk=8192\0" \
82 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
83 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
85 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
86 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
87 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
90 "console=console=ttySAC2,115200n8\0" \
91 "meminfo=crashkernel=32M@0x50000000\0" \
92 "nfsroot=/nfsroot/arm\0" \
94 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
95 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
100 "opts=always_resume=1\0" \
101 "partitions=" PARTS_DEFAULT \
102 "dfu_alt_info=" CONFIG_DFU_ALT \
103 "spladdr=0x40000100\0" \
105 "splfile=falcon.bin\0" \
107 "setexpr spl_imgsize ${splsize} + 8 ;" \
108 "setenv spl_imgsize 0x${spl_imgsize};" \
109 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
110 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
111 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
112 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
113 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
114 "spl export atags 0x40007FC0;" \
115 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
116 "mw.l ${spl_addr_tmp} ${splsize};" \
117 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
118 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
119 "setenv spl_imgsize;" \
120 "setenv spl_imgaddr;" \
121 "setenv spl_addr_tmp;\0" \
123 "fdtaddr=40800000\0" \
125 /* Falcon mode definitions */
129 /* Common misc for Samsung */
130 #define CONFIG_MISC_COMMON
132 /* Download menu - Samsung common */
133 #define CONFIG_LCD_MENU
135 /* Download menu - definitions for check keys */
138 #define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
139 #define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
140 #define KEY_PWR_STATUS_MASK (1 << 0)
141 #define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
142 #define KEY_PWR_INTERRUPT_MASK (1 << 0)
144 #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20
145 #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21
146 #endif /* __ASSEMBLY__ */
149 #define LCD_BPP LCD_COLOR16
152 #define CONFIG_FB_ADDR 0x52504000
153 #define CONFIG_EXYNOS_MIPI_DSIM
154 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
156 #endif /* __CONFIG_H */