blob: 84c71ced46662176b567e4b8eb7c5f9d516cbd14 [file] [log] [blame]
HeungJun, Kim89f95492012-01-16 21:13:05 +00001/*
2 * Copyright (C) 2011 Samsung Electronics
3 * Heungjun Kim <riverful.kim@samsung.com>
4 *
5 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
HeungJun, Kim89f95492012-01-16 21:13:05 +00008 */
9
Piotr Wilczekfe601642014-03-07 14:59:48 +010010#ifndef __CONFIG_TRATS_H
11#define __CONFIG_TRATS_H
HeungJun, Kim89f95492012-01-16 21:13:05 +000012
Piotr Wilczekfe601642014-03-07 14:59:48 +010013#include <configs/exynos4-dt.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000014
Piotr Wilczekfe601642014-03-07 14:59:48 +010015#define CONFIG_SYS_PROMPT "Trats # " /* Monitor Command Prompt */
HeungJun, Kim89f95492012-01-16 21:13:05 +000016
Piotr Wilczekfe601642014-03-07 14:59:48 +010017#define CONFIG_TRATS
18
19#undef CONFIG_DEFAULT_DEVICE_TREE
20#define CONFIG_DEFAULT_DEVICE_TREE exynos4210-trats
21
22#define CONFIG_TIZEN /* TIZEN lib */
HeungJun, Kim89f95492012-01-16 21:13:05 +000023
Łukasz Majewskic4e96db2014-01-14 08:02:26 +010024#define CONFIG_SYS_L2CACHE_OFF
Łukasz Majewskid0460b02012-08-07 05:42:14 +000025#ifndef CONFIG_SYS_L2CACHE_OFF
26#define CONFIG_SYS_L2_PL310
27#define CONFIG_SYS_PL310_BASE 0x10502000
28#endif
HeungJun, Kim89f95492012-01-16 21:13:05 +000029
Piotr Wilczekfe601642014-03-07 14:59:48 +010030/* TRATS has 4 banks of DRAM */
31#define CONFIG_NR_DRAM_BANKS 4
HeungJun, Kim89f95492012-01-16 21:13:05 +000032#define CONFIG_SYS_SDRAM_BASE 0x40000000
Piotr Wilczekfe601642014-03-07 14:59:48 +010033#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
HeungJun, Kim89f95492012-01-16 21:13:05 +000034#define CONFIG_SYS_TEXT_BASE 0x63300000
Piotr Wilczekfe601642014-03-07 14:59:48 +010035#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
HeungJun, Kim89f95492012-01-16 21:13:05 +000036
Piotr Wilczekfe601642014-03-07 14:59:48 +010037/* 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)
HeungJun, Kim89f95492012-01-16 21:13:05 +000041
Piotr Wilczekfe601642014-03-07 14:59:48 +010042#define CONFIG_SYS_TEXT_BASE 0x63300000
HeungJun, Kim89f95492012-01-16 21:13:05 +000043
Alexey Brodkin1ace4022014-02-26 17:47:58 +040044#include <linux/sizes.h>
HeungJun, Kim89f95492012-01-16 21:13:05 +000045/* Size of malloc() pool */
Lukasz Majewskie96751d2013-10-08 14:30:46 +020046#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M))
HeungJun, Kim89f95492012-01-16 21:13:05 +000047
48/* select serial console configuration */
Piotr Wilczekfe601642014-03-07 14:59:48 +010049#define CONFIG_SERIAL2
HeungJun, Kim89f95492012-01-16 21:13:05 +000050#define CONFIG_BAUDRATE 115200
51
Piotr Wilczekfe601642014-03-07 14:59:48 +010052/* Console configuration */
53#define CONFIG_SYS_CONSOLE_INFO_QUIET
54#define CONFIG_SYS_CONSOLE_IS_IN_ENV
HeungJun, Kim89f95492012-01-16 21:13:05 +000055
Piotr Wilczekfe601642014-03-07 14:59:48 +010056/* 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
HeungJun, Kim89f95492012-01-16 21:13:05 +000059
HeungJun, Kim89f95492012-01-16 21:13:05 +000060#define CONFIG_BOOTARGS "Please use defined boot"
61#define CONFIG_BOOTCOMMAND "run mmcboot"
Piotr Wilczekfe601642014-03-07 14:59:48 +010062#define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0"
HeungJun, Kim89f95492012-01-16 21:13:05 +000063
Piotr Wilczekfe601642014-03-07 14:59:48 +010064#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
70
HeungJun, Kim89f95492012-01-16 21:13:05 +000071#define CONFIG_BOOTBLOCK "10"
72#define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}"
73
Piotr Wilczekfe601642014-03-07 14:59:48 +010074#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
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010084/* Tizen - partitions definitions */
85#define PARTS_CSA "csa-mmc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010086#define PARTS_BOOT "boot"
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010087#define PARTS_QBOOT "qboot"
88#define PARTS_CSC "csc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010089#define PARTS_ROOT "platform"
90#define PARTS_DATA "data"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010091#define PARTS_UMS "ums"
92
93#define PARTS_DEFAULT \
94 "uuid_disk=${uuid_gpt_disk};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010095 "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"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010098 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010099 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
100 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100101 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
102
Lukasz Majewski93a1ab52012-08-06 14:41:11 +0200103#define CONFIG_DFU_ALT \
Lukasz Majewski93a1ab52012-08-06 14:41:11 +0200104 "u-boot mmc 80 400;" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200105 "uImage ext4 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +0100106 "modem.bin ext4 0 2;" \
Lukasz Majewskie96751d2013-10-08 14:30:46 +0200107 "exynos4210-trats.dtb ext4 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +0100108 ""PARTS_CSA" part 0 1;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +0100109 ""PARTS_BOOT" part 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +0100110 ""PARTS_QBOOT" part 0 3;" \
111 ""PARTS_CSC" part 0 4;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +0100112 ""PARTS_ROOT" part 0 5;" \
113 ""PARTS_DATA" part 0 6;" \
Przemyslaw Marczaka0afc6f2014-01-22 12:02:47 +0100114 ""PARTS_UMS" part 0 7;" \
115 "params.bin mmc 0x38 0x8\0"
Lukasz Majewski93a1ab52012-08-06 14:41:11 +0200116
HeungJun, Kim89f95492012-01-16 21:13:05 +0000117#define CONFIG_EXTRA_ENV_SETTINGS \
118 "bootk=" \
Piotr Wilczek425e26d2014-01-22 15:54:37 +0100119 "run loaduimage;" \
120 "if run loaddtb; then " \
121 "bootm 0x40007FC0 - ${fdtaddr};" \
122 "fi;" \
123 "bootm 0x40007FC0;\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000124 "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=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000134 "setenv bootargs root=/dev/nfs rw " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000135 "nfsroot=${nfsroot},nolock,tcp " \
136 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
137 "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \
138 "; run bootk\0" \
139 "ramfsboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000140 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000141 "${console} ${meminfo} " \
142 "initrd=0x43000000,8M ramdisk=8192\0" \
143 "mmcboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000144 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000145 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
Piotr Wilczek425e26d2014-01-22 15:54:37 +0100146 "run bootk\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000147 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000148 "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" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000156 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
Łukasz Majewski4ef400b2013-07-18 13:14:22 +0200157 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200158 "${fdtfile}\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +0000159 "mmcdev=0\0" \
160 "mmcbootpart=2\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000161 "mmcrootpart=5\0" \
Lukasz Majewski93a1ab52012-08-06 14:41:11 +0200162 "opts=always_resume=1\0" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100163 "partitions=" PARTS_DEFAULT \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000164 "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 ;" \
Przemyslaw Marczakdc993a62013-03-12 03:41:49 +0000170 "setenv spl_imgsize 0x${spl_imgsize};" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000171 "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;" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200183 "setenv spl_addr_tmp;\0" \
184 "fdtaddr=40800000\0" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200185
Łukasz Majewski35777e22013-01-02 06:06:02 +0000186/* Falcon mode definitions */
187#define CONFIG_CMD_SPL
Piotr Wilczekfe601642014-03-07 14:59:48 +0100188#define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100
HeungJun, Kim89f95492012-01-16 21:13:05 +0000189
Piotr Wilczekfe601642014-03-07 14:59:48 +0100190/* I2C */
191#include <asm/arch/gpio.h>
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100192
Piotr Wilczekfe601642014-03-07 14:59:48 +0100193#define CONFIG_CMD_I2C
HeungJun, Kim89f95492012-01-16 21:13:05 +0000194
Heiko Schocherea818db2013-01-29 08:53:15 +0100195#define CONFIG_SYS_I2C
Piotr Wilczek2d8f1e22013-11-20 10:43:49 +0100196#define CONFIG_SYS_I2C_S3C24X0
197#define CONFIG_SYS_I2C_S3C24X0_SPEED 100000
198#define CONFIG_SYS_I2C_S3C24X0_SLAVE 0xFE
199#define CONFIG_MAX_I2C_NUM 8
Heiko Schocherea818db2013-01-29 08:53:15 +0100200#define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
201#define CONFIG_SYS_I2C_SOFT_SPEED 50000
Piotr Wilczek2d8f1e22013-11-20 10:43:49 +0100202#define CONFIG_SYS_I2C_SOFT_SLAVE 0x7F
HeungJun, Kim89f95492012-01-16 21:13:05 +0000203#define CONFIG_SOFT_I2C_READ_REPEATED_START
Łukasz Majewskifd8dca82012-09-04 23:15:21 +0000204#define CONFIG_SYS_I2C_INIT_BOARD
Łukasz Majewskifd8dca82012-09-04 23:15:21 +0000205
Łukasz Majewskifd8dca82012-09-04 23:15:21 +0000206/* I2C FG */
Przemyslaw Marczak8475c862014-01-22 11:24:10 +0100207#define CONFIG_SOFT_I2C_GPIO_SCL exynos4_gpio_get(2, y4, 1)
208#define CONFIG_SOFT_I2C_GPIO_SDA exynos4_gpio_get(2, y4, 0)
HeungJun, Kim89f95492012-01-16 21:13:05 +0000209
Piotr Wilczekfe601642014-03-07 14:59:48 +0100210/* POWER */
Łukasz Majewskibe3b51a2012-11-13 03:22:14 +0000211#define CONFIG_POWER
212#define CONFIG_POWER_I2C
213#define CONFIG_POWER_MAX8997
HeungJun, Kim89f95492012-01-16 21:13:05 +0000214
Łukasz Majewski5a773582012-11-13 03:22:07 +0000215#define CONFIG_POWER_FG
216#define CONFIG_POWER_FG_MAX17042
Łukasz Majewski7dcda992012-11-13 03:22:06 +0000217#define CONFIG_POWER_MUIC
218#define CONFIG_POWER_MUIC_MAX8997
Łukasz Majewski61365ff2012-11-13 03:22:08 +0000219#define CONFIG_POWER_BATTERY
220#define CONFIG_POWER_BATTERY_TRATS
HeungJun, Kim89f95492012-01-16 21:13:05 +0000221
Przemyslaw Marczak679549d2014-01-22 11:24:12 +0100222/* Common misc for Samsung */
223#define CONFIG_MISC_COMMON
224
225#define CONFIG_MISC_INIT_R
226
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100227/* Download menu - Samsung common */
228#define CONFIG_LCD_MENU
229#define CONFIG_LCD_MENU_BOARD
230
231/* Download menu - definitions for check keys */
232#ifndef __ASSEMBLY__
233#include <power/max8997_pmic.h>
234
235#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
236#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
237#define KEY_PWR_STATUS_MASK (1 << 0)
238#define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
239#define KEY_PWR_INTERRUPT_MASK (1 << 0)
240
241#define KEY_VOL_UP_GPIO exynos4_gpio_get(2, x2, 0)
242#define KEY_VOL_DOWN_GPIO exynos4_gpio_get(2, x2, 1)
243#endif /* __ASSEMBLY__ */
244
245/* LCD console */
246#define LCD_BPP LCD_COLOR16
247#define CONFIG_SYS_WHITE_ON_BLACK
248
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000249/* LCD */
250#define CONFIG_EXYNOS_FB
251#define CONFIG_LCD
Donghwa Lee90464972012-05-09 19:23:46 +0000252#define CONFIG_CMD_BMP
Przemyslaw Marczak2df21cb2014-01-22 11:24:16 +0100253#define CONFIG_BMP_16BPP
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000254#define CONFIG_FB_ADDR 0x52504000
255#define CONFIG_S6E8AX0
256#define CONFIG_EXYNOS_MIPI_DSIM
Donghwa Lee90464972012-05-09 19:23:46 +0000257#define CONFIG_VIDEO_BMP_GZIP
Przemyslaw Marczak903afe12013-11-29 18:30:43 +0100258#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54)
Donghwa Lee51b1cd62012-04-05 19:36:27 +0000259
Piotr Wilczekfe601642014-03-07 14:59:48 +0100260#define LCD_XRES 720
261#define LCD_YRES 1280
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200262
HeungJun, Kim89f95492012-01-16 21:13:05 +0000263#endif /* __CONFIG_H */