blob: 66b1c95b4ad8ab24013ea47c828740b2116e8a22 [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
11#ifndef __CONFIG_H
12#define __CONFIG_H
13
14/*
15 * High Level Configuration Options
16 * (easy to change)
17 */
18#define CONFIG_SAMSUNG /* in a SAMSUNG core */
19#define CONFIG_S5P /* which is in a S5P Family */
20#define CONFIG_EXYNOS4 /* which is in a EXYNOS4XXX */
21#define CONFIG_TIZEN /* TIZEN lib */
22
23#define PLATFORM_NO_UNALIGNED
24
25#include <asm/arch/cpu.h> /* get chip and board defs */
26
27#define CONFIG_ARCH_CPU_INIT
28#define CONFIG_DISPLAY_CPUINFO
29#define CONFIG_DISPLAY_BOARDINFO
30
31#define CONFIG_SKIP_LOWLEVEL_INIT
32
33#define CONFIG_SYS_CACHELINE_SIZE 32
34
35#ifndef CONFIG_SYS_L2CACHE_OFF
36#define CONFIG_SYS_L2_PL310
37#define CONFIG_SYS_PL310_BASE 0x10502000
38#endif
39
40#define CONFIG_NR_DRAM_BANKS 4
41#define PHYS_SDRAM_1 0x40000000 /* LDDDR2 DMC 0 */
42#define PHYS_SDRAM_1_SIZE (256 << 20) /* 256 MB in CS 0 */
43#define PHYS_SDRAM_2 0x50000000 /* LPDDR2 DMC 1 */
44#define PHYS_SDRAM_2_SIZE (256 << 20) /* 256 MB in CS 0 */
45#define PHYS_SDRAM_3 0x60000000 /* LPDDR2 DMC 1 */
46#define PHYS_SDRAM_3_SIZE (256 << 20) /* 256 MB in CS 0 */
47#define PHYS_SDRAM_4 0x70000000 /* LPDDR2 DMC 1 */
48#define PHYS_SDRAM_4_SIZE (256 << 20) /* 256 MB in CS 0 */
49#define PHYS_SDRAM_END 0x80000000
50
51#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
52
53#define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
54#define CONFIG_SYS_TEXT_BASE 0x78100000
55
56#define CONFIG_SYS_CLK_FREQ 24000000
57
58#define CONFIG_SETUP_MEMORY_TAGS
59#define CONFIG_CMDLINE_TAG
60#define CONFIG_REVISION_TAG
61
62/* MACH_TYPE_TRATS2 */
63#define MACH_TYPE_TRATS2 3765
64#define CONFIG_MACH_TYPE MACH_TYPE_TRATS2
65
66#define CONFIG_DISPLAY_CPUINFO
67
68/*
69 * Size of malloc() pool
70 */
71#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (2 << 20))
72
73/* select serial console configuration */
74#define CONFIG_SERIAL2
75
76#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
77#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
78
79#define CONFIG_CMDLINE_EDITING
80
81#define CONFIG_BAUDRATE 115200
82
83/* It should define before config_cmd_default.h */
84#define CONFIG_SYS_NO_FLASH
85
86/***********************************************************
87 * Command definition
88 ***********************************************************/
89#include <config_cmd_default.h>
90
91#undef CONFIG_CMD_ECHO
92#undef CONFIG_CMD_FPGA
93#undef CONFIG_CMD_FLASH
94#undef CONFIG_CMD_IMLS
95#undef CONFIG_CMD_NAND
96#undef CONFIG_CMD_MISC
97#undef CONFIG_CMD_NFS
98#undef CONFIG_CMD_SOURCE
99#undef CONFIG_CMD_XIMG
100#define CONFIG_CMD_CACHE
101#define CONFIG_CMD_I2C
102#define CONFIG_CMD_MMC
103#define CONFIG_CMD_GPT
104#define CONFIG_CMD_PMIC
105
106#define CONFIG_BOOTDELAY 3
107#define CONFIG_ZERO_BOOTDELAY_CHECK
108
109#define CONFIG_CMD_FAT
110#define CONFIG_FAT_WRITE
111
112/* EXT4 */
113#define CONFIG_CMD_EXT4
114#define CONFIG_CMD_EXT4_WRITE
115
Piotr Wilczekab8efbb2013-11-21 15:46:45 +0100116/* USB Composite download gadget - g_dnl */
117#define CONFIG_USBDOWNLOAD_GADGET
118#define CONFIG_DFU_FUNCTION
119#define CONFIG_DFU_MMC
120
121/* USB Samsung's IDs */
122#define CONFIG_G_DNL_VENDOR_NUM 0x04E8
123#define CONFIG_G_DNL_PRODUCT_NUM 0x6601
124#define CONFIG_G_DNL_MANUFACTURER "Samsung"
125
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200126/* To use the TFTPBOOT over USB, Please enable the CONFIG_CMD_NET */
127#undef CONFIG_CMD_NET
128
129/* MMC */
130#define CONFIG_GENERIC_MMC
131#define CONFIG_MMC
132#define CONFIG_S5P_SDHCI
133#define CONFIG_SDHCI
134#define CONFIG_MMC_SDMA
135#define CONFIG_MMC_DEFAULT_DEV 0
136
137/* PWM */
138#define CONFIG_PWM
139
140#define CONFIG_BOOTARGS "Please use defined boot"
141#define CONFIG_BOOTCOMMAND "run mmcboot"
142#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0"
143
144#define CONFIG_ENV_OVERWRITE
145#define CONFIG_SYS_CONSOLE_INFO_QUIET
146#define CONFIG_SYS_CONSOLE_IS_IN_ENV
147
148/* Tizen - partitions definitions */
149#define PARTS_CSA "csa-mmc"
150#define PARTS_BOOTLOADER "u-boot"
151#define PARTS_BOOT "boot"
152#define PARTS_ROOT "platform"
153#define PARTS_DATA "data"
154#define PARTS_CSC "csc"
155#define PARTS_UMS "ums"
156
157#define PARTS_DEFAULT \
158 "uuid_disk=${uuid_gpt_disk};" \
159 "name="PARTS_CSA",size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
160 "name="PARTS_BOOTLOADER",size=60MiB," \
161 "uuid=${uuid_gpt_"PARTS_BOOTLOADER"};" \
162 "name="PARTS_BOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
163 "name="PARTS_ROOT",size=1GiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
164 "name="PARTS_DATA",size=3GiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
165 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
166 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
167
168#define CONFIG_EXTRA_ENV_SETTINGS \
169 "bootk=" \
170 "run loaddtb; run loaduimage; bootm 0x40007FC0 - ${fdtaddr}\0" \
171 "updatemmc=" \
172 "mmc boot 0 1 1 1; mmc write 0x42008000 0 0x200;" \
173 "mmc boot 0 1 1 0\0" \
174 "updatebackup=" \
175 "mmc boot 0 1 1 2; mmc write 0x42100000 0 0x200;" \
176 " mmc boot 0 1 1 0\0" \
177 "updatebootb=" \
178 "mmc read 0x51000000 0x80 0x200; run updatebackup\0" \
179 "updateuboot=" \
180 "mmc write 0x50000000 0x80 0x400\0" \
181 "mmcboot=" \
182 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
183 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
184 "run loaddtb; run loaduimage; bootm 0x40007FC0 - ${fdtaddr}\0" \
185 "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
186 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
187 "verify=n\0" \
188 "rootfstype=ext4\0" \
189 "console=" CONFIG_DEFAULT_CONSOLE \
190 "kernelname=uImage\0" \
191 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
192 "0x40007FC0 ${kernelname}\0" \
193 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
194 "${fdtfile}\0" \
195 "mmcdev=0\0" \
196 "mmcbootpart=2\0" \
197 "mmcrootpart=5\0" \
198 "opts=always_resume=1\0" \
199 "partitions=" PARTS_DEFAULT \
200 "uartpath=ap\0" \
201 "usbpath=ap\0" \
202 "consoleon=set console console=ttySAC2,115200n8; save; reset\0" \
203 "consoleoff=set console console=ram; save; reset\0" \
204 "spladdr=0x40000100\0" \
205 "splsize=0x200\0" \
206 "splfile=falcon.bin\0" \
207 "spl_export=" \
208 "setexpr spl_imgsize ${splsize} + 8 ;" \
209 "setenv spl_imgsize 0x${spl_imgsize};" \
210 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
211 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
212 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
213 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
214 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
215 "spl export atags 0x40007FC0;" \
216 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
217 "mw.l ${spl_addr_tmp} ${splsize};" \
218 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
219 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
220 "setenv spl_imgsize;" \
221 "setenv spl_imgaddr;" \
222 "setenv spl_addr_tmp;\0" \
223 "fdtaddr=40800000\0" \
224 "fdtfile=exynos4412-trats2.dtb\0"
225
226/*
227 * Miscellaneous configurable options
228 */
229#define CONFIG_SYS_LONGHELP /* undef to save memory */
230#define CONFIG_SYS_PROMPT "Trats2 # " /* Monitor Command Prompt */
231#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
232#define CONFIG_SYS_PBSIZE 384 /* Print Buffer Size */
233#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
234
235/* Boot Argument Buffer Size */
236#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
237
238/* memtest works on */
239#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
240#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5000000)
241#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x4800000)
242
243#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
244 - GENERATED_GBL_DATA_SIZE)
245
246#define CONFIG_SYS_HZ 1000
247
248/* valid baudrates */
249#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
250
251#define CONFIG_SYS_MONITOR_BASE 0x00000000
252
253/*-----------------------------------------------------------------------
254 * FLASH and environment organization
255 */
256
257#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
258
259#define CONFIG_ENV_IS_IN_MMC
260#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
261#define CONFIG_ENV_SIZE 4096
262#define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */
263#define CONFIG_EFI_PARTITION
264#define CONFIG_PARTITION_UUIDS
265
266#define CONFIG_MISC_INIT_R
267#define CONFIG_BOARD_EARLY_INIT_F
268
269/* I2C */
270#include <asm/arch/gpio.h>
271
272#define CONFIG_SYS_I2C
273#define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
274#define CONFIG_SYS_I2C_SOFT_SPEED 50000
275#define CONFIG_SYS_I2C_SOFT_SLAVE 0x00
276#define I2C_SOFT_DECLARATIONS2
277#define CONFIG_SYS_I2C_SOFT_SPEED_2 50000
278#define CONFIG_SYS_I2C_SOFT_SLAVE_2 0x00
279#define I2C_SOFT_DECLARATIONS3
280#define CONFIG_SYS_I2C_SOFT_SPEED_3 50000
281#define CONFIG_SYS_I2C_SOFT_SLAVE_3 0x00
282#define CONFIG_SOFT_I2C_READ_REPEATED_START
283#define CONFIG_SYS_I2C_INIT_BOARD
284#define CONFIG_I2C_MULTI_BUS
285#define CONFIG_SOFT_I2C_MULTI_BUS
286#define CONFIG_SYS_MAX_I2C_BUS 15
287
288#define CONFIG_SOFT_I2C_I2C5_SCL exynos4x12_gpio_part1_get_nr(d0, 3)
289#define CONFIG_SOFT_I2C_I2C5_SDA exynos4x12_gpio_part1_get_nr(d0, 2)
290#define CONFIG_SOFT_I2C_I2C9_SCL exynos4x12_gpio_part1_get_nr(f1, 4)
291#define CONFIG_SOFT_I2C_I2C9_SDA exynos4x12_gpio_part1_get_nr(f1, 5)
292#define CONFIG_SOFT_I2C_I2C10_SCL exynos4x12_gpio_part2_get_nr(m2, 1)
293#define CONFIG_SOFT_I2C_I2C10_SDA exynos4x12_gpio_part2_get_nr(m2, 0)
294#define CONFIG_SOFT_I2C_GPIO_SCL get_multi_scl_pin()
295#define CONFIG_SOFT_I2C_GPIO_SDA get_multi_sda_pin()
296#define I2C_INIT multi_i2c_init()
297
298/* POWER */
299#define CONFIG_POWER
300#define CONFIG_POWER_I2C
301#define CONFIG_POWER_MAX77686
302#define CONFIG_POWER_PMIC_MAX77693
303#define CONFIG_POWER_MUIC_MAX77693
304#define CONFIG_POWER_FG_MAX77693
305#define CONFIG_POWER_BATTERY_TRATS2
Piotr Wilczekab8efbb2013-11-21 15:46:45 +0100306#define CONFIG_USB_GADGET
307#define CONFIG_USB_GADGET_S3C_UDC_OTG
308#define CONFIG_USB_GADGET_DUALSPEED
309#define CONFIG_USB_GADGET_VBUS_DRAW 2
310#define CONFIG_USB_CABLE_CHECK
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200311
312/* LCD */
313#define CONFIG_EXYNOS_FB
314#define CONFIG_LCD
315#define CONFIG_CMD_BMP
316#define CONFIG_BMP_32BPP
317#define CONFIG_FB_ADDR 0x52504000
318#define CONFIG_S6E8AX0
319#define CONFIG_EXYNOS_MIPI_DSIM
320#define CONFIG_VIDEO_BMP_GZIP
321#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 250 * 4) + (1 << 12))
322
Piotr Wilczekab8efbb2013-11-21 15:46:45 +0100323#define CONFIG_CMD_USB_MASS_STORAGE
324#define CONFIG_USB_GADGET_MASS_STORAGE
325
Piotr Wilczek4d6c9672013-09-20 15:01:27 +0200326/* Pass open firmware flat tree */
327#define CONFIG_OF_LIBFDT 1
328
329#endif /* __CONFIG_H */