blob: 7f6a61a1db63406a4e3ae627daaebf1f9896bc76 [file] [log] [blame]
Piotr Wilczek4d6c9672013-09-20 15:01:27 +02001/*
2 * Copyright (C) 2013 Samsung Electronics
3 * Sanghee Kim <sh0130.kim@samsung.com>
4 * Piotr Wilczek <p.wilczek@samsung.com>
5 *
6 * Configuation settings for the SAMSUNG TRATS2 (EXYNOS4412) board.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010011#ifndef __CONFIG_TRATS2_H
12#define __CONFIG_TRATS2_H
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020013
Simon Glass4c7bb1d2014-10-07 22:01:44 -060014#include <configs/exynos4-common.h>
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020015
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010016#define CONFIG_TIZEN /* TIZEN lib */
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020017
Łukasz Majewskic4e96db2014-01-14 08:02:26 +010018#define CONFIG_SYS_L2CACHE_OFF
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020019#ifndef CONFIG_SYS_L2CACHE_OFF
20#define CONFIG_SYS_L2_PL310
21#define CONFIG_SYS_PL310_BASE 0x10502000
22#endif
23
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010024/* TRATS2 has 4 banks of DRAM */
25#define CONFIG_NR_DRAM_BANKS 4
26#define CONFIG_SYS_SDRAM_BASE 0x40000000
27#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
28#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
29/* memtest works on */
30#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
31#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5E00000)
32#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020033
Łukasz Majewski00b132b2014-03-19 14:47:06 +010034#define CONFIG_SYS_TEXT_BASE 0x43e00000
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020035
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020036/* select serial console configuration */
37#define CONFIG_SERIAL2
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020038
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010039/* Console configuration */
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020040
Łukasz Majewski1018b0a2015-04-01 12:34:30 +020041#define CONFIG_BOOTCOMMAND "run autoboot"
Łukasz Majewski2ee93242014-04-09 10:44:33 +020042#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010043
44#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
45 - GENERATED_GBL_DATA_SIZE)
46
47#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
48
49#define CONFIG_SYS_MONITOR_BASE 0x00000000
50
Piotr Wilczek1ecab0f2014-03-07 14:59:49 +010051#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
52#define CONFIG_ENV_SIZE 4096
53#define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
54
55#define CONFIG_ENV_OVERWRITE
56
Piotr Wilczek8c57fb72014-01-22 15:54:36 +010057#define CONFIG_ENV_VARS_UBOOT_CONFIG
58#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
59
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020060/* Tizen - partitions definitions */
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010061#define PARTS_CSA "csa-mmc"
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020062#define PARTS_BOOT "boot"
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010063#define PARTS_QBOOT "qboot"
Piotr Wilczekdca36682013-11-27 11:11:02 +010064#define PARTS_CSC "csc"
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020065#define PARTS_ROOT "platform"
66#define PARTS_DATA "data"
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020067#define PARTS_UMS "ums"
68
69#define PARTS_DEFAULT \
Piotr Wilczeka5e15bb2013-12-30 09:40:40 +010070 "uuid_disk=${uuid_gpt_disk};" \
Piotr Wilczekdca36682013-11-27 11:11:02 +010071 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010072 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
73 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020074 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
Piotr Wilczekdca36682013-11-27 11:11:02 +010075 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010076 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020077 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
78
Piotr Wilczek09f98012013-11-12 15:22:46 +010079#define CONFIG_DFU_ALT \
Mateusz Zalegab7d42592014-04-28 21:13:25 +020080 "u-boot raw 0x80 0x800;" \
Łukasz Majewskidcb7eb62014-07-22 10:17:06 +020081 "/uImage ext4 0 2;" \
82 "/modem.bin ext4 0 2;" \
83 "/exynos4412-trats2.dtb ext4 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010084 ""PARTS_CSA" part 0 1;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010085 ""PARTS_BOOT" part 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010086 ""PARTS_QBOOT" part 0 3;" \
87 ""PARTS_CSC" part 0 4;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010088 ""PARTS_ROOT" part 0 5;" \
89 ""PARTS_DATA" part 0 6;" \
Przemyslaw Marczaka0afc6f2014-01-22 12:02:47 +010090 ""PARTS_UMS" part 0 7;" \
Łukasz Majewski1018b0a2015-04-01 12:34:30 +020091 "params.bin raw 0x38 0x8;" \
92 "/Image.itb ext4 0 2\0"
Piotr Wilczek09f98012013-11-12 15:22:46 +010093
Piotr Wilczek4d6c9672013-09-20 15:01:27 +020094#define CONFIG_EXTRA_ENV_SETTINGS \
95 "bootk=" \
Piotr Wilczek425e26d2014-01-22 15:54:37 +010096 "run loaduimage;" \
97 "if run loaddtb; then " \
98 "bootm 0x40007FC0 - ${fdtaddr};" \
99 "fi;" \
100 "bootm 0x40007FC0;\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200101 "updatebackup=" \
Jaehoon Chung188c42b2014-04-30 09:09:15 +0900102 "mmc dev 0 2; mmc write 0x51000000 0 0x800;" \
103 " mmc dev 0 0\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200104 "updatebootb=" \
Jaehoon Chung188c42b2014-04-30 09:09:15 +0900105 "mmc read 0x51000000 0x80 0x800; run updatebackup\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200106 "mmcboot=" \
107 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
108 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
Piotr Wilczek425e26d2014-01-22 15:54:37 +0100109 "run bootk\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200110 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
111 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
112 "verify=n\0" \
113 "rootfstype=ext4\0" \
114 "console=" CONFIG_DEFAULT_CONSOLE \
115 "kernelname=uImage\0" \
Piotr Wilczek2c8043c2013-11-27 11:11:00 +0100116 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 " \
117 "${kernelname}\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200118 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
119 "${fdtfile}\0" \
Piotr Wilczeka5e15bb2013-12-30 09:40:40 +0100120 "mmcdev=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200121 "mmcbootpart=2\0" \
122 "mmcrootpart=5\0" \
123 "opts=always_resume=1\0" \
124 "partitions=" PARTS_DEFAULT \
Piotr Wilczek09f98012013-11-12 15:22:46 +0100125 "dfu_alt_info=" CONFIG_DFU_ALT \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200126 "uartpath=ap\0" \
127 "usbpath=ap\0" \
128 "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
129 "consoleoff=set console console=ram; save; reset\0" \
130 "spladdr=0x40000100\0" \
131 "splsize=0x200\0" \
132 "splfile=falcon.bin\0" \
133 "spl_export=" \
134 "setexpr spl_imgsize ${splsize} + 8 ;" \
135 "setenv spl_imgsize 0x${spl_imgsize};" \
136 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
137 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
138 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
139 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
140 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
141 "spl export atags 0x40007FC0;" \
142 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
143 "mw.l ${spl_addr_tmp} ${splsize};" \
144 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
145 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
146 "setenv spl_imgsize;" \
147 "setenv spl_imgaddr;" \
148 "setenv spl_addr_tmp;\0" \
Łukasz Majewski1018b0a2015-04-01 12:34:30 +0200149 CONFIG_EXTRA_ENV_ITB \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200150 "fdtaddr=40800000\0" \
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200151
Albert ARIBAUD519fdde2014-04-08 09:25:08 +0200152/* GPT */
Przemyslaw Marczakaafd2c52014-04-02 10:20:07 +0200153#define CONFIG_RANDOM_UUID
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200154
Przemyslaw Marczake0021702014-03-25 10:58:22 +0100155/* Security subsystem - enable hw_rand() */
156#define CONFIG_EXYNOS_ACE_SHA
157#define CONFIG_LIB_HW_RAND
158
Przemyslaw Marczak679549d2014-01-22 11:24:12 +0100159/* Common misc for Samsung */
160#define CONFIG_MISC_COMMON
161
162#define CONFIG_MISC_INIT_R
163
Przemyslaw Marczakf64236a2014-01-22 11:24:19 +0100164/* Download menu - Samsung common */
165#define CONFIG_LCD_MENU
166#define CONFIG_LCD_MENU_BOARD
167
168/* Download menu - definitions for check keys */
169#ifndef __ASSEMBLY__
Przemyslaw Marczakf64236a2014-01-22 11:24:19 +0100170
171#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
172#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
173#define KEY_PWR_STATUS_MASK (1 << 0)
174#define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
175#define KEY_PWR_INTERRUPT_MASK (1 << 1)
176
Akshay Saraswat9b97b722014-05-13 10:30:15 +0530177#define KEY_VOL_UP_GPIO EXYNOS4X12_GPIO_X22
178#define KEY_VOL_DOWN_GPIO EXYNOS4X12_GPIO_X33
Przemyslaw Marczakf64236a2014-01-22 11:24:19 +0100179#endif /* __ASSEMBLY__ */
180
181/* LCD console */
182#define LCD_BPP LCD_COLOR16
Przemyslaw Marczakf64236a2014-01-22 11:24:19 +0100183
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200184/* LCD */
Przemyslaw Marczak2df21cb2014-01-22 11:24:16 +0100185#define CONFIG_BMP_16BPP
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200186#define CONFIG_FB_ADDR 0x52504000
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200187#define CONFIG_EXYNOS_MIPI_DSIM
188#define CONFIG_VIDEO_BMP_GZIP
Przemyslaw Marczak903afe12013-11-29 18:30:43 +0100189#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200190
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200191#endif /* __CONFIG_H */