]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/trats.h
trats: config: fix: Set default console to ttySAC2
[people/ms/u-boot.git] / include / configs / trats.h
CommitLineData
89f95492
HK
1/*
2 * Copyright (C) 2011 Samsung Electronics
3 * Heungjun Kim <riverful.kim@samsung.com>
4 *
5 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
89f95492
HK
8 */
9
fe601647
PW
10#ifndef __CONFIG_TRATS_H
11#define __CONFIG_TRATS_H
89f95492 12
fe601647
PW
13#include <configs/exynos4-dt.h>
14
15#define CONFIG_SYS_PROMPT "Trats # " /* Monitor Command Prompt */
16
17#define CONFIG_TRATS
89f95492 18
fe601647
PW
19#undef CONFIG_DEFAULT_DEVICE_TREE
20#define CONFIG_DEFAULT_DEVICE_TREE exynos4210-trats
89f95492 21
fe601647 22#define CONFIG_TIZEN /* TIZEN lib */
89f95492 23
c4e96dbf 24#define CONFIG_SYS_L2CACHE_OFF
d0460b01
ŁM
25#ifndef CONFIG_SYS_L2CACHE_OFF
26#define CONFIG_SYS_L2_PL310
27#define CONFIG_SYS_PL310_BASE 0x10502000
28#endif
89f95492 29
fe601647
PW
30/* TRATS has 4 banks of DRAM */
31#define CONFIG_NR_DRAM_BANKS 4
89f95492 32#define CONFIG_SYS_SDRAM_BASE 0x40000000
fe601647 33#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
89f95492 34#define CONFIG_SYS_TEXT_BASE 0x63300000
fe601647 35#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
89f95492 36
fe601647
PW
37/* memtest works on */
38#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
39#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5000000)
40#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x4800000)
89f95492 41
fe601647 42#define CONFIG_SYS_TEXT_BASE 0x63300000
89f95492 43
1ace4022 44#include <linux/sizes.h>
89f95492 45/* Size of malloc() pool */
e96751da 46#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M))
89f95492
HK
47
48/* select serial console configuration */
fe601647 49#define CONFIG_SERIAL2
89f95492
HK
50#define CONFIG_BAUDRATE 115200
51
fe601647
PW
52/* Console configuration */
53#define CONFIG_SYS_CONSOLE_INFO_QUIET
54#define CONFIG_SYS_CONSOLE_IS_IN_ENV
55
56/* MACH_TYPE_TRATS macro will be removed once added to mach-types */
57#define MACH_TYPE_TRATS 3928
58#define CONFIG_MACH_TYPE MACH_TYPE_TRATS
59
89f95492
HK
60#define CONFIG_BOOTARGS "Please use defined boot"
61#define CONFIG_BOOTCOMMAND "run mmcboot"
6afc3f6e 62#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
fe601647
PW
63
64#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
65 - GENERATED_GBL_DATA_SIZE)
66
67#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
68
69#define CONFIG_SYS_MONITOR_BASE 0x00000000
89f95492 70
89f95492
HK
71#define CONFIG_BOOTBLOCK "10"
72#define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}"
73
fe601647
PW
74#define CONFIG_ENV_IS_IN_MMC
75#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
76#define CONFIG_ENV_SIZE 4096
77#define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
78
79#define CONFIG_ENV_OVERWRITE
80
81#define CONFIG_ENV_VARS_UBOOT_CONFIG
82#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
83
9960d9a8
ŁM
84/* Tizen - partitions definitions */
85#define PARTS_CSA "csa-mmc"
9960d9a8 86#define PARTS_BOOT "boot"
18f3e0eb
PM
87#define PARTS_QBOOT "qboot"
88#define PARTS_CSC "csc"
9960d9a8
ŁM
89#define PARTS_ROOT "platform"
90#define PARTS_DATA "data"
9960d9a8
ŁM
91#define PARTS_UMS "ums"
92
93#define PARTS_DEFAULT \
94 "uuid_disk=${uuid_gpt_disk};" \
18f3e0eb
PM
95 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
96 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
97 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
9960d9a8 98 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
18f3e0eb
PM
99 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
100 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
9960d9a8
ŁM
101 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
102
93a1ab57 103#define CONFIG_DFU_ALT \
93a1ab57 104 "u-boot mmc 80 400;" \
ba223bb2 105 "uImage ext4 0 2;" \
18f3e0eb 106 "modem.bin ext4 0 2;" \
e96751da 107 "exynos4210-trats.dtb ext4 0 2;" \
18f3e0eb 108 ""PARTS_CSA" part 0 1;" \
cdd15bce 109 ""PARTS_BOOT" part 0 2;" \
18f3e0eb
PM
110 ""PARTS_QBOOT" part 0 3;" \
111 ""PARTS_CSC" part 0 4;" \
cdd15bce
ŁM
112 ""PARTS_ROOT" part 0 5;" \
113 ""PARTS_DATA" part 0 6;" \
a0afc6f3
PM
114 ""PARTS_UMS" part 0 7;" \
115 "params.bin mmc 0x38 0x8\0"
93a1ab57 116
89f95492
HK
117#define CONFIG_EXTRA_ENV_SETTINGS \
118 "bootk=" \
425e26de
PW
119 "run loaduimage;" \
120 "if run loaddtb; then " \
121 "bootm 0x40007FC0 - ${fdtaddr};" \
122 "fi;" \
123 "bootm 0x40007FC0;\0" \
89f95492
HK
124 "updatemmc=" \
125 "mmc boot 0 1 1 1; mmc write 0 0x42008000 0 0x200;" \
126 "mmc boot 0 1 1 0\0" \
127 "updatebackup=" \
128 "mmc boot 0 1 1 2; mmc write 0 0x42100000 0 0x200;" \
129 "mmc boot 0 1 1 0\0" \
130 "updatebootb=" \
131 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
132 "lpj=lpj=3981312\0" \
133 "nfsboot=" \
35777e22 134 "setenv bootargs root=/dev/nfs rw " \
89f95492
HK
135 "nfsroot=${nfsroot},nolock,tcp " \
136 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
137 "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \
138 "; run bootk\0" \
139 "ramfsboot=" \
35777e22 140 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
89f95492
HK
141 "${console} ${meminfo} " \
142 "initrd=0x43000000,8M ramdisk=8192\0" \
143 "mmcboot=" \
35777e22 144 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
89f95492 145 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
425e26de 146 "run bootk\0" \
35777e22 147 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
89f95492
HK
148 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
149 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
150 "verify=n\0" \
151 "rootfstype=ext4\0" \
152 "console=" CONFIG_DEFAULT_CONSOLE \
153 "meminfo=crashkernel=32M@0x50000000\0" \
154 "nfsroot=/nfsroot/arm\0" \
155 "bootblock=" CONFIG_BOOTBLOCK "\0" \
35777e22 156 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
4ef400b9 157 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
ba223bb2 158 "${fdtfile}\0" \
89f95492
HK
159 "mmcdev=0\0" \
160 "mmcbootpart=2\0" \
35777e22 161 "mmcrootpart=5\0" \
93a1ab57 162 "opts=always_resume=1\0" \
9960d9a8 163 "partitions=" PARTS_DEFAULT \
35777e22
ŁM
164 "dfu_alt_info=" CONFIG_DFU_ALT \
165 "spladdr=0x40000100\0" \
166 "splsize=0x200\0" \
167 "splfile=falcon.bin\0" \
168 "spl_export=" \
169 "setexpr spl_imgsize ${splsize} + 8 ;" \
dc993a65 170 "setenv spl_imgsize 0x${spl_imgsize};" \
35777e22
ŁM
171 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
172 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
173 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
174 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
175 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
176 "spl export atags 0x40007FC0;" \
177 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
178 "mw.l ${spl_addr_tmp} ${splsize};" \
179 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
180 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
181 "setenv spl_imgsize;" \
182 "setenv spl_imgaddr;" \
ba223bb2
AW
183 "setenv spl_addr_tmp;\0" \
184 "fdtaddr=40800000\0" \
ba223bb2 185
35777e22
ŁM
186/* Falcon mode definitions */
187#define CONFIG_CMD_SPL
fe601647 188#define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100
89f95492 189
9960d9a8 190/* GPT */
aafd2c5d 191#define CONFIG_RANDOM_UUID
9960d9a8 192
fe601647
PW
193/* I2C */
194#include <asm/arch/gpio.h>
9960d9a8 195
fe601647 196#define CONFIG_CMD_I2C
89f95492 197
ea818dbb 198#define CONFIG_SYS_I2C
2d8f1e27
PW
199#define CONFIG_SYS_I2C_S3C24X0
200#define CONFIG_SYS_I2C_S3C24X0_SPEED 100000
201#define CONFIG_SYS_I2C_S3C24X0_SLAVE 0xFE
202#define CONFIG_MAX_I2C_NUM 8
ea818dbb
HS
203#define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
204#define CONFIG_SYS_I2C_SOFT_SPEED 50000
2d8f1e27 205#define CONFIG_SYS_I2C_SOFT_SLAVE 0x7F
89f95492 206#define CONFIG_SOFT_I2C_READ_REPEATED_START
fd8dca83 207#define CONFIG_SYS_I2C_INIT_BOARD
fd8dca83 208
fd8dca83 209/* I2C FG */
8475c869
PM
210#define CONFIG_SOFT_I2C_GPIO_SCL exynos4_gpio_get(2, y4, 1)
211#define CONFIG_SOFT_I2C_GPIO_SDA exynos4_gpio_get(2, y4, 0)
89f95492 212
fe601647 213/* POWER */
be3b51aa
ŁM
214#define CONFIG_POWER
215#define CONFIG_POWER_I2C
216#define CONFIG_POWER_MAX8997
89f95492 217
5a77358c
ŁM
218#define CONFIG_POWER_FG
219#define CONFIG_POWER_FG_MAX17042
7dcda99d
ŁM
220#define CONFIG_POWER_MUIC
221#define CONFIG_POWER_MUIC_MAX8997
61365ffc
ŁM
222#define CONFIG_POWER_BATTERY
223#define CONFIG_POWER_BATTERY_TRATS
89f95492 224
e0021706
PM
225/* Security subsystem - enable hw_rand() */
226#define CONFIG_EXYNOS_ACE_SHA
227#define CONFIG_LIB_HW_RAND
228
679549d1
PM
229/* Common misc for Samsung */
230#define CONFIG_MISC_COMMON
231
232#define CONFIG_MISC_INIT_R
233
00e64ab6
PM
234/* Download menu - Samsung common */
235#define CONFIG_LCD_MENU
236#define CONFIG_LCD_MENU_BOARD
237
238/* Download menu - definitions for check keys */
239#ifndef __ASSEMBLY__
240#include <power/max8997_pmic.h>
241
242#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
243#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
244#define KEY_PWR_STATUS_MASK (1 << 0)
245#define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
246#define KEY_PWR_INTERRUPT_MASK (1 << 0)
247
248#define KEY_VOL_UP_GPIO exynos4_gpio_get(2, x2, 0)
249#define KEY_VOL_DOWN_GPIO exynos4_gpio_get(2, x2, 1)
250#endif /* __ASSEMBLY__ */
251
252/* LCD console */
253#define LCD_BPP LCD_COLOR16
254#define CONFIG_SYS_WHITE_ON_BLACK
255
51b1cd6d
DL
256/* LCD */
257#define CONFIG_EXYNOS_FB
258#define CONFIG_LCD
90464971 259#define CONFIG_CMD_BMP
2df21cb3 260#define CONFIG_BMP_16BPP
51b1cd6d
DL
261#define CONFIG_FB_ADDR 0x52504000
262#define CONFIG_S6E8AX0
263#define CONFIG_EXYNOS_MIPI_DSIM
90464971 264#define CONFIG_VIDEO_BMP_GZIP
903afe18 265#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
51b1cd6d 266
fe601647
PW
267#define LCD_XRES 720
268#define LCD_YRES 1280
ba223bb2 269
89f95492 270#endif /* __CONFIG_H */