blob: f39a7c726a2b5baf380d82565caf7ad212d90a90 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
HeungJun, Kim89f95492012-01-16 21:13:05 +00002/*
3 * Copyright (C) 2011 Samsung Electronics
4 * Heungjun Kim <riverful.kim@samsung.com>
5 *
6 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
HeungJun, Kim89f95492012-01-16 21:13:05 +00007 */
8
Piotr Wilczekfe601642014-03-07 14:59:48 +01009#ifndef __CONFIG_TRATS_H
10#define __CONFIG_TRATS_H
HeungJun, Kim89f95492012-01-16 21:13:05 +000011
Simon Glass4c7bb1d2014-10-07 22:01:44 -060012#include <configs/exynos4-common.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000013
Piotr Wilczekfe601642014-03-07 14:59:48 +010014#define CONFIG_TRATS
15
Piotr Wilczekfe601642014-03-07 14:59:48 +010016#define CONFIG_TIZEN /* TIZEN lib */
HeungJun, Kim89f95492012-01-16 21:13:05 +000017
Łukasz Majewskic4e96db2014-01-14 08:02:26 +010018#define CONFIG_SYS_L2CACHE_OFF
Łukasz Majewskid0460b02012-08-07 05:42:14 +000019#ifndef CONFIG_SYS_L2CACHE_OFF
20#define CONFIG_SYS_L2_PL310
21#define CONFIG_SYS_PL310_BASE 0x10502000
22#endif
HeungJun, Kim89f95492012-01-16 21:13:05 +000023
Piotr Wilczekfe601642014-03-07 14:59:48 +010024/* TRATS has 4 banks of DRAM */
HeungJun, Kim89f95492012-01-16 21:13:05 +000025#define CONFIG_SYS_SDRAM_BASE 0x40000000
Piotr Wilczekfe601642014-03-07 14:59:48 +010026#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
Piotr Wilczekfe601642014-03-07 14:59:48 +010027#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
HeungJun, Kim89f95492012-01-16 21:13:05 +000028
Piotr Wilczekfe601642014-03-07 14:59:48 +010029/* memtest works on */
Piotr Wilczekfe601642014-03-07 14:59:48 +010030#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x4800000)
HeungJun, Kim89f95492012-01-16 21:13:05 +000031
HeungJun, Kim89f95492012-01-16 21:13:05 +000032/* select serial console configuration */
HeungJun, Kim89f95492012-01-16 21:13:05 +000033
Piotr Wilczekfe601642014-03-07 14:59:48 +010034#define CONFIG_MACH_TYPE MACH_TYPE_TRATS
HeungJun, Kim89f95492012-01-16 21:13:05 +000035
Łukasz Majewski0a1387b2015-04-01 12:34:29 +020036#define CONFIG_BOOTCOMMAND "run autoboot"
Seung-Woo Kim767edf02018-11-20 14:54:39 +090037#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
HeungJun, Kim89f95492012-01-16 21:13:05 +000038
Piotr Wilczekfe601642014-03-07 14:59:48 +010039#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
40 - GENERATED_GBL_DATA_SIZE)
41
42#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
43
44#define CONFIG_SYS_MONITOR_BASE 0x00000000
45
HeungJun, Kim89f95492012-01-16 21:13:05 +000046#define CONFIG_BOOTBLOCK "10"
47#define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}"
48
Piotr Wilczekfe601642014-03-07 14:59:48 +010049#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
Piotr Wilczekfe601642014-03-07 14:59:48 +010050
51#define CONFIG_ENV_OVERWRITE
52
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010053/* Tizen - partitions definitions */
54#define PARTS_CSA "csa-mmc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010055#define PARTS_BOOT "boot"
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010056#define PARTS_QBOOT "qboot"
57#define PARTS_CSC "csc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010058#define PARTS_ROOT "platform"
59#define PARTS_DATA "data"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010060#define PARTS_UMS "ums"
61
62#define PARTS_DEFAULT \
63 "uuid_disk=${uuid_gpt_disk};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010064 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
65 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
66 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010067 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010068 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
69 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010070 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
71
Lukasz Majewski93a1ab52012-08-06 14:41:11 +020072#define CONFIG_DFU_ALT \
Mateusz Zalegab7d42592014-04-28 21:13:25 +020073 "u-boot raw 0x80 0x400;" \
Łukasz Majewskidcb7eb62014-07-22 10:17:06 +020074 "/uImage ext4 0 2;" \
75 "/modem.bin ext4 0 2;" \
76 "/exynos4210-trats.dtb ext4 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010077 ""PARTS_CSA" part 0 1;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010078 ""PARTS_BOOT" part 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010079 ""PARTS_QBOOT" part 0 3;" \
80 ""PARTS_CSC" part 0 4;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010081 ""PARTS_ROOT" part 0 5;" \
82 ""PARTS_DATA" part 0 6;" \
Przemyslaw Marczaka0afc6f2014-01-22 12:02:47 +010083 ""PARTS_UMS" part 0 7;" \
Łukasz Majewski0a1387b2015-04-01 12:34:29 +020084 "params.bin raw 0x38 0x8;" \
85 "/Image.itb ext4 0 2\0"
Lukasz Majewski93a1ab52012-08-06 14:41:11 +020086
HeungJun, Kim89f95492012-01-16 21:13:05 +000087#define CONFIG_EXTRA_ENV_SETTINGS \
88 "bootk=" \
Piotr Wilczek425e26d2014-01-22 15:54:37 +010089 "run loaduimage;" \
90 "if run loaddtb; then " \
91 "bootm 0x40007FC0 - ${fdtaddr};" \
92 "fi;" \
93 "bootm 0x40007FC0;\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000094 "updatebackup=" \
Jaehoon Chung188c42b2014-04-30 09:09:15 +090095 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
96 "mmc dev 0 0\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000097 "updatebootb=" \
98 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
99 "lpj=lpj=3981312\0" \
100 "nfsboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000101 "setenv bootargs root=/dev/nfs rw " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000102 "nfsroot=${nfsroot},nolock,tcp " \
103 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
104 "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \
105 "; run bootk\0" \
106 "ramfsboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000107 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000108 "${console} ${meminfo} " \
109 "initrd=0x43000000,8M ramdisk=8192\0" \
110 "mmcboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000111 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000112 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
Piotr Wilczek425e26d2014-01-22 15:54:37 +0100113 "run bootk\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000114 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000115 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
116 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
117 "verify=n\0" \
118 "rootfstype=ext4\0" \
Seung-Woo Kim767edf02018-11-20 14:54:39 +0900119 "console=" CONFIG_DEFAULT_CONSOLE \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000120 "meminfo=crashkernel=32M@0x50000000\0" \
121 "nfsroot=/nfsroot/arm\0" \
122 "bootblock=" CONFIG_BOOTBLOCK "\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000123 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
Łukasz Majewski4ef400b2013-07-18 13:14:22 +0200124 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200125 "${fdtfile}\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000126 "mmcdev=0\0" \
127 "mmcbootpart=2\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000128 "mmcrootpart=5\0" \
Lukasz Majewski93a1ab52012-08-06 14:41:11 +0200129 "opts=always_resume=1\0" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100130 "partitions=" PARTS_DEFAULT \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000131 "dfu_alt_info=" CONFIG_DFU_ALT \
132 "spladdr=0x40000100\0" \
133 "splsize=0x200\0" \
134 "splfile=falcon.bin\0" \
135 "spl_export=" \
136 "setexpr spl_imgsize ${splsize} + 8 ;" \
Przemyslaw Marczakdc993a62013-03-12 03:41:49 +0000137 "setenv spl_imgsize 0x${spl_imgsize};" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000138 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
139 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
140 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
141 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
142 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
143 "spl export atags 0x40007FC0;" \
144 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
145 "mw.l ${spl_addr_tmp} ${splsize};" \
146 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
147 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
148 "setenv spl_imgsize;" \
149 "setenv spl_imgaddr;" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200150 "setenv spl_addr_tmp;\0" \
Łukasz Majewski0a1387b2015-04-01 12:34:29 +0200151 CONFIG_EXTRA_ENV_ITB \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200152 "fdtaddr=40800000\0" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200153
Łukasz Majewski35777e22013-01-02 06:06:02 +0000154/* Falcon mode definitions */
Piotr Wilczekfe601642014-03-07 14:59:48 +0100155#define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100
HeungJun, Kim89f95492012-01-16 21:13:05 +0000156
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100157/* GPT */
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100158
Przemyslaw Marczake0021702014-03-25 10:58:22 +0100159/* Security subsystem - enable hw_rand() */
160#define CONFIG_EXYNOS_ACE_SHA
Przemyslaw Marczake0021702014-03-25 10:58:22 +0100161
Przemyslaw Marczak679549d2014-01-22 11:24:12 +0100162/* Common misc for Samsung */
163#define CONFIG_MISC_COMMON
164
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100165/* Download menu - Samsung common */
166#define CONFIG_LCD_MENU
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100167
168/* Download menu - definitions for check keys */
169#ifndef __ASSEMBLY__
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100170
171#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
172#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
173#define KEY_PWR_STATUS_MASK (1 << 0)
174#define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
175#define KEY_PWR_INTERRUPT_MASK (1 << 0)
176
Akshay Saraswat9b97b722014-05-13 10:30:15 +0530177#define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20
178#define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100179#endif /* __ASSEMBLY__ */
180
181/* LCD console */
182#define LCD_BPP LCD_COLOR16
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100183
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000184/* LCD */
Przemyslaw Marczak2df21cb2014-01-22 11:24:16 +0100185#define CONFIG_BMP_16BPP
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000186#define CONFIG_FB_ADDR 0x52504000
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000187#define CONFIG_EXYNOS_MIPI_DSIM
Donghwa Lee90464972012-05-09 19:23:46 +0000188#define CONFIG_VIDEO_BMP_GZIP
Przemyslaw Marczak903afe12013-11-29 18:30:43 +0100189#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000190
HeungJun, Kim89f95492012-01-16 21:13:05 +0000191#endif /* __CONFIG_H */