blob: 23dcf20c1f4eb50905fe7e3caecc477fba640f3a [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
Łukasz Majewskid0460b02012-08-07 05:42:14 +000014#ifndef CONFIG_SYS_L2CACHE_OFF
Łukasz Majewskid0460b02012-08-07 05:42:14 +000015#define CONFIG_SYS_PL310_BASE 0x10502000
16#endif
HeungJun, Kim89f95492012-01-16 21:13:05 +000017
Piotr Wilczekfe601642014-03-07 14:59:48 +010018/* TRATS has 4 banks of DRAM */
Tom Riniaa6e94d2022-11-16 13:10:37 -050019#define CFG_SYS_SDRAM_BASE 0x40000000
20#define PHYS_SDRAM_1 CFG_SYS_SDRAM_BASE
Piotr Wilczekfe601642014-03-07 14:59:48 +010021#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
HeungJun, Kim89f95492012-01-16 21:13:05 +000022
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010023/* Tizen - partitions definitions */
24#define PARTS_CSA "csa-mmc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010025#define PARTS_BOOT "boot"
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010026#define PARTS_QBOOT "qboot"
27#define PARTS_CSC "csc"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010028#define PARTS_ROOT "platform"
29#define PARTS_DATA "data"
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010030#define PARTS_UMS "ums"
31
32#define PARTS_DEFAULT \
33 "uuid_disk=${uuid_gpt_disk};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010034 "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \
35 "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \
36 "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010037 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010038 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \
39 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +010040 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \
41
Lukasz Majewski93a1ab52012-08-06 14:41:11 +020042#define CONFIG_DFU_ALT \
Mateusz Zalegab7d42592014-04-28 21:13:25 +020043 "u-boot raw 0x80 0x400;" \
Łukasz Majewskidcb7eb62014-07-22 10:17:06 +020044 "/uImage ext4 0 2;" \
45 "/modem.bin ext4 0 2;" \
46 "/exynos4210-trats.dtb ext4 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010047 ""PARTS_CSA" part 0 1;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010048 ""PARTS_BOOT" part 0 2;" \
Przemyslaw Marczak18f3e0e2014-02-28 18:53:36 +010049 ""PARTS_QBOOT" part 0 3;" \
50 ""PARTS_CSC" part 0 4;" \
Łukasz Majewskicdd15bc2014-01-14 08:02:24 +010051 ""PARTS_ROOT" part 0 5;" \
52 ""PARTS_DATA" part 0 6;" \
Przemyslaw Marczaka0afc6f2014-01-22 12:02:47 +010053 ""PARTS_UMS" part 0 7;" \
Łukasz Majewski0a1387b2015-04-01 12:34:29 +020054 "params.bin raw 0x38 0x8;" \
55 "/Image.itb ext4 0 2\0"
Lukasz Majewski93a1ab52012-08-06 14:41:11 +020056
HeungJun, Kim89f95492012-01-16 21:13:05 +000057#define CONFIG_EXTRA_ENV_SETTINGS \
58 "bootk=" \
Piotr Wilczek425e26d2014-01-22 15:54:37 +010059 "run loaduimage;" \
60 "if run loaddtb; then " \
61 "bootm 0x40007FC0 - ${fdtaddr};" \
62 "fi;" \
63 "bootm 0x40007FC0;\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000064 "updatebackup=" \
Jaehoon Chung188c42b2014-04-30 09:09:15 +090065 "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \
66 "mmc dev 0 0\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000067 "updatebootb=" \
68 "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
69 "lpj=lpj=3981312\0" \
70 "nfsboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000071 "setenv bootargs root=/dev/nfs rw " \
HeungJun, Kim89f95492012-01-16 21:13:05 +000072 "nfsroot=${nfsroot},nolock,tcp " \
73 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
Tom Rinic8632042021-08-10 17:34:22 -040074 "${netmask}:generic:usb0:off ${console} ${meminfo}" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000075 "; run bootk\0" \
76 "ramfsboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000077 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \
HeungJun, Kim89f95492012-01-16 21:13:05 +000078 "${console} ${meminfo} " \
79 "initrd=0x43000000,8M ramdisk=8192\0" \
80 "mmcboot=" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000081 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
HeungJun, Kim89f95492012-01-16 21:13:05 +000082 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
Piotr Wilczek425e26d2014-01-22 15:54:37 +010083 "run bootk\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000084 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000085 "boottrace=setenv opts initcall_debug; run bootcmd\0" \
86 "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
87 "verify=n\0" \
88 "rootfstype=ext4\0" \
Andre Heider9c042652020-09-17 08:52:01 +020089 "console=console=ttySAC2,115200n8\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000090 "meminfo=crashkernel=32M@0x50000000\0" \
91 "nfsroot=/nfsroot/arm\0" \
Tom Rinic8632042021-08-10 17:34:22 -040092 "bootblock=10\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000093 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \
Łukasz Majewski4ef400b2013-07-18 13:14:22 +020094 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +020095 "${fdtfile}\0" \
HeungJun, Kim89f95492012-01-16 21:13:05 +000096 "mmcdev=0\0" \
97 "mmcbootpart=2\0" \
Łukasz Majewski35777e22013-01-02 06:06:02 +000098 "mmcrootpart=5\0" \
Lukasz Majewski93a1ab52012-08-06 14:41:11 +020099 "opts=always_resume=1\0" \
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100100 "partitions=" PARTS_DEFAULT \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000101 "dfu_alt_info=" CONFIG_DFU_ALT \
102 "spladdr=0x40000100\0" \
103 "splsize=0x200\0" \
104 "splfile=falcon.bin\0" \
105 "spl_export=" \
106 "setexpr spl_imgsize ${splsize} + 8 ;" \
Przemyslaw Marczakdc993a62013-03-12 03:41:49 +0000107 "setenv spl_imgsize 0x${spl_imgsize};" \
Łukasz Majewski35777e22013-01-02 06:06:02 +0000108 "setexpr spl_imgaddr ${spladdr} - 8 ;" \
109 "setexpr spl_addr_tmp ${spladdr} - 4 ;" \
110 "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \
111 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
112 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \
113 "spl export atags 0x40007FC0;" \
114 "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \
115 "mw.l ${spl_addr_tmp} ${splsize};" \
116 "ext4write mmc ${mmcdev}:${mmcbootpart}" \
117 " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \
118 "setenv spl_imgsize;" \
119 "setenv spl_imgaddr;" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200120 "setenv spl_addr_tmp;\0" \
Tom Rinic8632042021-08-10 17:34:22 -0400121 ENV_ITB \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200122 "fdtaddr=40800000\0" \
Arkadiusz Wlodarczykba223bb2013-04-02 15:10:16 +0200123
Łukasz Majewski35777e22013-01-02 06:06:02 +0000124/* Falcon mode definitions */
HeungJun, Kim89f95492012-01-16 21:13:05 +0000125
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100126/* GPT */
Lukasz Majewski9960d9a2012-12-11 11:09:48 +0100127
Przemyslaw Marczak679549d2014-01-22 11:24:12 +0100128/* Common misc for Samsung */
129#define CONFIG_MISC_COMMON
130
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100131/* Download menu - definitions for check keys */
132#ifndef __ASSEMBLY__
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100133
134#define KEY_PWR_PMIC_NAME "MAX8997_PMIC"
135#define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1
136#define KEY_PWR_STATUS_MASK (1 << 0)
137#define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1
138#define KEY_PWR_INTERRUPT_MASK (1 << 0)
139
Akshay Saraswat9b97b722014-05-13 10:30:15 +0530140#define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20
141#define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21
Przemyslaw Marczak00e64ab2014-01-22 11:24:18 +0100142#endif /* __ASSEMBLY__ */
143
HeungJun, Kim89f95492012-01-16 21:13:05 +0000144#endif /* __CONFIG_H */