blob: 1f3ce9d94104d7d85a6321c7fe368dfc165f3ae6 [file] [log] [blame]
Piotr Wilczek2b3c92a2013-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 Wilczek87d2e782014-03-07 14:59:49 +010011#ifndef __CONFIG_TRATS2_H
12#define __CONFIG_TRATS2_H
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020013
Simon Glassbe165002014-10-07 22:01:44 -060014#include <configs/exynos4-common.h>
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020015
Piotr Wilczek87d2e782014-03-07 14:59:49 +010016#define CONFIG_TIZEN /* TIZEN lib */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020017
Łukasz Majewski706dfa02014-01-14 08:02:26 +010018#define CONFIG_SYS_L2CACHE_OFF
Piotr Wilczek2b3c92a2013-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 Wilczek87d2e782014-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 Wilczek2b3c92a2013-09-20 15:01:27 +020033
Łukasz Majewskid18a7452014-03-19 14:47:06 +010034#define CONFIG_SYS_TEXT_BASE 0x43e00000
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020035
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020036/* select serial console configuration */
37#define CONFIG_SERIAL2
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020038
Piotr Wilczek87d2e782014-03-07 14:59:49 +010039/* Console configuration */
Piotr Wilczek9317ba12013-11-12 15:22:46 +010040
Piotr Wilczek87d2e782014-03-07 14:59:49 +010041#define CONFIG_BOOTARGS "Please use defined boot"
Łukasz Majewskif106bf52015-04-01 12:34:30 +020042#define CONFIG_BOOTCOMMAND "run autoboot"
Łukasz Majewski059e93d2014-04-09 10:44:33 +020043#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +010044
Piotr Wilczek87d2e782014-03-07 14:59:49 +010045#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
46 - GENERATED_GBL_DATA_SIZE)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020047
Piotr Wilczek87d2e782014-03-07 14:59:49 +010048#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020049
Piotr Wilczek87d2e782014-03-07 14:59:49 +010050#define CONFIG_SYS_MONITOR_BASE 0x00000000
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020051
Piotr Wilczek87d2e782014-03-07 14:59:49 +010052#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
53#define CONFIG_ENV_SIZE 4096
54#define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020055
56#define CONFIG_ENV_OVERWRITE
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020057
Piotr Wilczekb92686f2014-01-22 15:54:36 +010058#define CONFIG_ENV_VARS_UBOOT_CONFIG
59#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
60
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020061/* Tizen - partitions definitions */
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010062#define PARTS_CSA "csa-mmc"
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020063#define PARTS_BOOT "boot"
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010064#define PARTS_QBOOT "qboot"
Piotr Wilczek953b8422013-11-27 11:11:02 +010065#define PARTS_CSC "csc"
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020066#define PARTS_ROOT "platform"
67#define PARTS_DATA "data"
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020068#define PARTS_UMS "ums"
69
70#define PARTS_DEFAULT \
Piotr Wilczek5539e1e2013-12-30 09:40:40 +010071 "uuid_disk=${uuid_gpt_disk};" \
Piotr Wilczek953b8422013-11-27 11:11:02 +010072 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010073 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
74 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020075 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
Piotr Wilczek953b8422013-11-27 11:11:02 +010076 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010077 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020078 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
79
Piotr Wilczek9317ba12013-11-12 15:22:46 +010080#define CONFIG_DFU_ALT \
Mateusz Zalega0ab80bf2014-04-28 21:13:25 +020081 "u-boot raw 0x80 0x800;" \
Łukasz Majewskib7afe212014-07-22 10:17:06 +020082 "/uImage ext4 0 2;" \
83 "/modem.bin ext4 0 2;" \
84 "/exynos4412-trats2.dtb ext4 0 2;" \
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010085 ""PARTS_CSA" part 0 1;" \
Łukasz Majewski5cd4f742014-01-14 08:02:24 +010086 ""PARTS_BOOT" part 0 2;" \
Przemyslaw Marczak276e8d92014-02-28 18:53:36 +010087 ""PARTS_QBOOT" part 0 3;" \
88 ""PARTS_CSC" part 0 4;" \
Łukasz Majewski5cd4f742014-01-14 08:02:24 +010089 ""PARTS_ROOT" part 0 5;" \
90 ""PARTS_DATA" part 0 6;" \
Przemyslaw Marczakea60f022014-01-22 12:02:47 +010091 ""PARTS_UMS" part 0 7;" \
Łukasz Majewskif106bf52015-04-01 12:34:30 +020092 "params.bin raw 0x38 0x8;" \
93 "/Image.itb ext4 0 2\0"
Piotr Wilczek9317ba12013-11-12 15:22:46 +010094
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020095#define CONFIG_EXTRA_ENV_SETTINGS \
96 "bootk=" \
Piotr Wilczek155f67d2014-01-22 15:54:37 +010097 "run loaduimage;" \
98 "if run loaddtb; then " \
99 "bootm 0x40007FC0 - ${fdtaddr};" \
100 "fi;" \
101 "bootm 0x40007FC0;\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200102 "updatebackup=" \
Jaehoon Chung92441af2014-04-30 09:09:15 +0900103 "mmc dev 0 2; mmc write 0x51000000 0 0x800;" \
104 " mmc dev 0 0\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200105 "updatebootb=" \
Jaehoon Chung92441af2014-04-30 09:09:15 +0900106 "mmc read 0x51000000 0x80 0x800; run updatebackup\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200107 "mmcboot=" \
108 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
109 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
Piotr Wilczek155f67d2014-01-22 15:54:37 +0100110 "run bootk\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200111 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
112 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
113 "verify=n\0" \
114 "rootfstype=ext4\0" \
115 "console=" CONFIG_DEFAULT_CONSOLE \
116 "kernelname=uImage\0" \
Piotr Wilczek61bba482013-11-27 11:11:00 +0100117 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 " \
118 "${kernelname}\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200119 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
120 "${fdtfile}\0" \
Piotr Wilczek5539e1e2013-12-30 09:40:40 +0100121 "mmcdev=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200122 "mmcbootpart=2\0" \
123 "mmcrootpart=5\0" \
124 "opts=always_resume=1\0" \
125 "partitions=" PARTS_DEFAULT \
Piotr Wilczek9317ba12013-11-12 15:22:46 +0100126 "dfu_alt_info=" CONFIG_DFU_ALT \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200127 "uartpath=ap\0" \
128 "usbpath=ap\0" \
129 "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
130 "consoleoff=set console console=ram; save; reset\0" \
131 "spladdr=0x40000100\0" \
132 "splsize=0x200\0" \
133 "splfile=falcon.bin\0" \
134 "spl_export=" \
135 "setexpr spl_imgsize ${splsize} + 8 ;" \
136 "setenv spl_imgsize 0x${spl_imgsize};" \
137 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
138 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
139 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
140 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
141 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
142 "spl export atags 0x40007FC0;" \
143 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
144 "mw.l ${spl_addr_tmp} ${splsize};" \
145 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
146 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
147 "setenv spl_imgsize;" \
148 "setenv spl_imgaddr;" \
149 "setenv spl_addr_tmp;\0" \
Łukasz Majewskif106bf52015-04-01 12:34:30 +0200150 CONFIG_EXTRA_ENV_ITB \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200151 "fdtaddr=40800000\0" \
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200152
Albert ARIBAUDb8fb7b82014-04-08 09:25:08 +0200153/* GPT */
Przemyslaw Marczak88a72402014-04-02 10:20:07 +0200154#define CONFIG_RANDOM_UUID
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200155
Przemyslaw Marczaka537a852014-03-25 10:58:22 +0100156/* Security subsystem - enable hw_rand() */
157#define CONFIG_EXYNOS_ACE_SHA
158#define CONFIG_LIB_HW_RAND
159
Przemyslaw Marczak283a3202014-01-22 11:24:12 +0100160/* Common misc for Samsung */
161#define CONFIG_MISC_COMMON
162
163#define CONFIG_MISC_INIT_R
164
Przemyslaw Marczakd87efc92014-01-22 11:24:19 +0100165/* Download menu - Samsung common */
166#define CONFIG_LCD_MENU
167#define CONFIG_LCD_MENU_BOARD
168
169/* Download menu - definitions for check keys */
170#ifndef __ASSEMBLY__
Przemyslaw Marczakd87efc92014-01-22 11:24:19 +0100171
172#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
173#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
174#define KEY_PWR_STATUS_MASK (1 << 0)
175#define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
176#define KEY_PWR_INTERRUPT_MASK (1 << 1)
177
Akshay Saraswatbbb1a622014-05-13 10:30:15 +0530178#define KEY_VOL_UP_GPIO EXYNOS4X12_GPIO_X22
179#define KEY_VOL_DOWN_GPIO EXYNOS4X12_GPIO_X33
Przemyslaw Marczakd87efc92014-01-22 11:24:19 +0100180#endif /* __ASSEMBLY__ */
181
182/* LCD console */
183#define LCD_BPP LCD_COLOR16
Przemyslaw Marczakd87efc92014-01-22 11:24:19 +0100184
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200185/* LCD */
Przemyslaw Marczak42c54e72014-01-22 11:24:16 +0100186#define CONFIG_BMP_16BPP
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200187#define CONFIG_FB_ADDR 0x52504000
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200188#define CONFIG_EXYNOS_MIPI_DSIM
189#define CONFIG_VIDEO_BMP_GZIP
Przemyslaw Marczak02f4a092013-11-29 18:30:43 +0100190#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200191
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200192#endif /* __CONFIG_H */