Merge tag 'xilinx-for-v2022.10' of https://source.denx.de/u-boot/custodians/u-boot...
[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 /* Tizen - partitions definitions */
29 #define PARTS_CSA               "csa-mmc"
30 #define PARTS_BOOT              "boot"
31 #define PARTS_QBOOT             "qboot"
32 #define PARTS_CSC               "csc"
33 #define PARTS_ROOT              "platform"
34 #define PARTS_DATA              "data"
35 #define PARTS_UMS               "ums"
36
37 #define PARTS_DEFAULT \
38         "uuid_disk=${uuid_gpt_disk};" \
39         "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
40         "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
41         "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
42         "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
43         "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
44         "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
45         "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
46
47 #define CONFIG_DFU_ALT \
48         "u-boot raw 0x80 0x400;" \
49         "/uImage ext4 0 2;" \
50         "/modem.bin ext4 0 2;" \
51         "/exynos4210-trats.dtb ext4 0 2;" \
52         ""PARTS_CSA" part 0 1;" \
53         ""PARTS_BOOT" part 0 2;" \
54         ""PARTS_QBOOT" part 0 3;" \
55         ""PARTS_CSC" part 0 4;" \
56         ""PARTS_ROOT" part 0 5;" \
57         ""PARTS_DATA" part 0 6;" \
58         ""PARTS_UMS" part 0 7;" \
59         "params.bin raw 0x38 0x8;" \
60         "/Image.itb ext4 0 2\0"
61
62 #define CONFIG_EXTRA_ENV_SETTINGS \
63         "bootk=" \
64                 "run loaduimage;" \
65                 "if run loaddtb; then " \
66                         "bootm 0x40007FC0 - ${fdtaddr};" \
67                 "fi;" \
68                 "bootm 0x40007FC0;\0" \
69         "updatebackup=" \
70                 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
71                 "mmc dev 0 0\0" \
72         "updatebootb=" \
73                 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
74         "lpj=lpj=3981312\0" \
75         "nfsboot=" \
76                 "setenv bootargs root=/dev/nfs rw " \
77                 "nfsroot=${nfsroot},nolock,tcp " \
78                 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
79                 "${netmask}:generic:usb0:off ${console} ${meminfo}" \
80                 "; run bootk\0" \
81         "ramfsboot=" \
82                 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
83                 "${console} ${meminfo} " \
84                 "initrd=0x43000000,8M ramdisk=8192\0" \
85         "mmcboot=" \
86                 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
87                 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
88                 "run bootk\0" \
89         "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
90         "boottrace=setenv opts initcall_debug; run bootcmd\0" \
91         "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
92         "verify=n\0" \
93         "rootfstype=ext4\0" \
94         "console=console=ttySAC2,115200n8\0" \
95         "meminfo=crashkernel=32M@0x50000000\0" \
96         "nfsroot=/nfsroot/arm\0" \
97         "bootblock=10\0" \
98         "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
99         "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
100                 "${fdtfile}\0" \
101         "mmcdev=0\0" \
102         "mmcbootpart=2\0" \
103         "mmcrootpart=5\0" \
104         "opts=always_resume=1\0" \
105         "partitions=" PARTS_DEFAULT \
106         "dfu_alt_info=" CONFIG_DFU_ALT \
107         "spladdr=0x40000100\0" \
108         "splsize=0x200\0" \
109         "splfile=falcon.bin\0" \
110         "spl_export=" \
111                    "setexpr spl_imgsize ${splsize} + 8 ;" \
112                    "setenv spl_imgsize 0x${spl_imgsize};" \
113                    "setexpr spl_imgaddr ${spladdr} - 8 ;" \
114                    "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
115                    "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
116                    "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
117                    "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
118                    "spl export atags 0x40007FC0;" \
119                    "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
120                    "mw.l ${spl_addr_tmp} ${splsize};" \
121                    "ext4write mmc ${mmcdev}:${mmcbootpart}" \
122                    " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
123                    "setenv spl_imgsize;" \
124                    "setenv spl_imgaddr;" \
125                    "setenv spl_addr_tmp;\0" \
126         ENV_ITB \
127         "fdtaddr=40800000\0" \
128
129 /* Falcon mode definitions */
130
131 /* GPT */
132
133 /* Security subsystem - enable hw_rand() */
134 #define CONFIG_EXYNOS_ACE_SHA
135
136 /* Common misc for Samsung */
137 #define CONFIG_MISC_COMMON
138
139 /* Download menu - Samsung common */
140 #define CONFIG_LCD_MENU
141
142 /* Download menu - definitions for check keys */
143 #ifndef __ASSEMBLY__
144
145 #define KEY_PWR_PMIC_NAME               "MAX8997_PMIC"
146 #define KEY_PWR_STATUS_REG              MAX8997_REG_STATUS1
147 #define KEY_PWR_STATUS_MASK             (1 << 0)
148 #define KEY_PWR_INTERRUPT_REG           MAX8997_REG_INT1
149 #define KEY_PWR_INTERRUPT_MASK          (1 << 0)
150
151 #define KEY_VOL_UP_GPIO                 EXYNOS4_GPIO_X20
152 #define KEY_VOL_DOWN_GPIO               EXYNOS4_GPIO_X21
153 #endif /* __ASSEMBLY__ */
154
155 /* LCD console */
156 #define LCD_BPP                 LCD_COLOR16
157
158 /* LCD */
159 #define CONFIG_FB_ADDR          0x52504000
160 #define CONFIG_EXYNOS_MIPI_DSIM
161 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  ((500 * 160 * 4) + 54)
162
163 #endif  /* __CONFIG_H */