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