Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 Samsung Electronics |
| 4 | * Heungjun Kim <riverful.kim@samsung.com> |
| 5 | * |
| 6 | * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board. |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 9 | #ifndef __CONFIG_TRATS_H |
| 10 | #define __CONFIG_TRATS_H |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 11 | |
Simon Glass | 4c7bb1d | 2014-10-07 22:01:44 -0600 | [diff] [blame] | 12 | #include <configs/exynos4-common.h> |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 13 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 14 | #define CONFIG_TRATS |
| 15 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 16 | #define CONFIG_TIZEN /* TIZEN lib */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 17 | |
Łukasz Majewski | c4e96db | 2014-01-14 08:02:26 +0100 | [diff] [blame] | 18 | #define CONFIG_SYS_L2CACHE_OFF |
Łukasz Majewski | d0460b0 | 2012-08-07 05:42:14 +0000 | [diff] [blame] | 19 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 20 | #define CONFIG_SYS_L2_PL310 |
| 21 | #define CONFIG_SYS_PL310_BASE 0x10502000 |
| 22 | #endif |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 23 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 24 | /* TRATS has 4 banks of DRAM */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 25 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 26 | #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 27 | #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 28 | |
Łukasz Majewski | 0a1387b | 2015-04-01 12:34:29 +0200 | [diff] [blame] | 29 | #define CONFIG_BOOTCOMMAND "run autoboot" |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 30 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 31 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \ |
| 32 | - GENERATED_GBL_DATA_SIZE) |
| 33 | |
| 34 | #define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */ |
| 35 | |
| 36 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
| 37 | |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 38 | /* Tizen - partitions definitions */ |
| 39 | #define PARTS_CSA "csa-mmc" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 40 | #define PARTS_BOOT "boot" |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 41 | #define PARTS_QBOOT "qboot" |
| 42 | #define PARTS_CSC "csc" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 43 | #define PARTS_ROOT "platform" |
| 44 | #define PARTS_DATA "data" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 45 | #define PARTS_UMS "ums" |
| 46 | |
| 47 | #define PARTS_DEFAULT \ |
| 48 | "uuid_disk=${uuid_gpt_disk};" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 49 | "name="PARTS_CSA",start=5MiB,size=8MiB,uuid=${uuid_gpt_"PARTS_CSA"};" \ |
| 50 | "name="PARTS_BOOT",size=60MiB,uuid=${uuid_gpt_"PARTS_BOOT"};" \ |
| 51 | "name="PARTS_QBOOT",size=100MiB,uuid=${uuid_gpt_"PARTS_QBOOT"};" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 52 | "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 53 | "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \ |
| 54 | "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 55 | "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \ |
| 56 | |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 57 | #define CONFIG_DFU_ALT \ |
Mateusz Zalega | b7d4259 | 2014-04-28 21:13:25 +0200 | [diff] [blame] | 58 | "u-boot raw 0x80 0x400;" \ |
Łukasz Majewski | dcb7eb6 | 2014-07-22 10:17:06 +0200 | [diff] [blame] | 59 | "/uImage ext4 0 2;" \ |
| 60 | "/modem.bin ext4 0 2;" \ |
| 61 | "/exynos4210-trats.dtb ext4 0 2;" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 62 | ""PARTS_CSA" part 0 1;" \ |
Łukasz Majewski | cdd15bc | 2014-01-14 08:02:24 +0100 | [diff] [blame] | 63 | ""PARTS_BOOT" part 0 2;" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 64 | ""PARTS_QBOOT" part 0 3;" \ |
| 65 | ""PARTS_CSC" part 0 4;" \ |
Łukasz Majewski | cdd15bc | 2014-01-14 08:02:24 +0100 | [diff] [blame] | 66 | ""PARTS_ROOT" part 0 5;" \ |
| 67 | ""PARTS_DATA" part 0 6;" \ |
Przemyslaw Marczak | a0afc6f | 2014-01-22 12:02:47 +0100 | [diff] [blame] | 68 | ""PARTS_UMS" part 0 7;" \ |
Łukasz Majewski | 0a1387b | 2015-04-01 12:34:29 +0200 | [diff] [blame] | 69 | "params.bin raw 0x38 0x8;" \ |
| 70 | "/Image.itb ext4 0 2\0" |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 71 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 72 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 73 | "bootk=" \ |
Piotr Wilczek | 425e26d | 2014-01-22 15:54:37 +0100 | [diff] [blame] | 74 | "run loaduimage;" \ |
| 75 | "if run loaddtb; then " \ |
| 76 | "bootm 0x40007FC0 - ${fdtaddr};" \ |
| 77 | "fi;" \ |
| 78 | "bootm 0x40007FC0;\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 79 | "updatebackup=" \ |
Jaehoon Chung | 188c42b | 2014-04-30 09:09:15 +0900 | [diff] [blame] | 80 | "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \ |
| 81 | "mmc dev 0 0\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 82 | "updatebootb=" \ |
| 83 | "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \ |
| 84 | "lpj=lpj=3981312\0" \ |
| 85 | "nfsboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 86 | "setenv bootargs root=/dev/nfs rw " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 87 | "nfsroot=${nfsroot},nolock,tcp " \ |
| 88 | "ip=${ipaddr}:${serverip}:${gatewayip}:" \ |
Tom Rini | c863204 | 2021-08-10 17:34:22 -0400 | [diff] [blame] | 89 | "${netmask}:generic:usb0:off ${console} ${meminfo}" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 90 | "; run bootk\0" \ |
| 91 | "ramfsboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 92 | "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 93 | "${console} ${meminfo} " \ |
| 94 | "initrd=0x43000000,8M ramdisk=8192\0" \ |
| 95 | "mmcboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 96 | "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 97 | "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \ |
Piotr Wilczek | 425e26d | 2014-01-22 15:54:37 +0100 | [diff] [blame] | 98 | "run bootk\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 99 | "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 100 | "boottrace=setenv opts initcall_debug; run bootcmd\0" \ |
| 101 | "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \ |
| 102 | "verify=n\0" \ |
| 103 | "rootfstype=ext4\0" \ |
Andre Heider | 9c04265 | 2020-09-17 08:52:01 +0200 | [diff] [blame] | 104 | "console=console=ttySAC2,115200n8\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 105 | "meminfo=crashkernel=32M@0x50000000\0" \ |
| 106 | "nfsroot=/nfsroot/arm\0" \ |
Tom Rini | c863204 | 2021-08-10 17:34:22 -0400 | [diff] [blame] | 107 | "bootblock=10\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 108 | "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \ |
Łukasz Majewski | 4ef400b | 2013-07-18 13:14:22 +0200 | [diff] [blame] | 109 | "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 110 | "${fdtfile}\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 111 | "mmcdev=0\0" \ |
| 112 | "mmcbootpart=2\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 113 | "mmcrootpart=5\0" \ |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 114 | "opts=always_resume=1\0" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 115 | "partitions=" PARTS_DEFAULT \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 116 | "dfu_alt_info=" CONFIG_DFU_ALT \ |
| 117 | "spladdr=0x40000100\0" \ |
| 118 | "splsize=0x200\0" \ |
| 119 | "splfile=falcon.bin\0" \ |
| 120 | "spl_export=" \ |
| 121 | "setexpr spl_imgsize ${splsize} + 8 ;" \ |
Przemyslaw Marczak | dc993a6 | 2013-03-12 03:41:49 +0000 | [diff] [blame] | 122 | "setenv spl_imgsize 0x${spl_imgsize};" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 123 | "setexpr spl_imgaddr ${spladdr} - 8 ;" \ |
| 124 | "setexpr spl_addr_tmp ${spladdr} - 4 ;" \ |
| 125 | "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \ |
| 126 | "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ |
| 127 | "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \ |
| 128 | "spl export atags 0x40007FC0;" \ |
| 129 | "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \ |
| 130 | "mw.l ${spl_addr_tmp} ${splsize};" \ |
| 131 | "ext4write mmc ${mmcdev}:${mmcbootpart}" \ |
| 132 | " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \ |
| 133 | "setenv spl_imgsize;" \ |
| 134 | "setenv spl_imgaddr;" \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 135 | "setenv spl_addr_tmp;\0" \ |
Tom Rini | c863204 | 2021-08-10 17:34:22 -0400 | [diff] [blame] | 136 | ENV_ITB \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 137 | "fdtaddr=40800000\0" \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 138 | |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 139 | /* Falcon mode definitions */ |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 140 | #define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 141 | |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 142 | /* GPT */ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 143 | |
Przemyslaw Marczak | e002170 | 2014-03-25 10:58:22 +0100 | [diff] [blame] | 144 | /* Security subsystem - enable hw_rand() */ |
| 145 | #define CONFIG_EXYNOS_ACE_SHA |
Przemyslaw Marczak | e002170 | 2014-03-25 10:58:22 +0100 | [diff] [blame] | 146 | |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 147 | /* Common misc for Samsung */ |
| 148 | #define CONFIG_MISC_COMMON |
| 149 | |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 150 | /* Download menu - Samsung common */ |
| 151 | #define CONFIG_LCD_MENU |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 152 | |
| 153 | /* Download menu - definitions for check keys */ |
| 154 | #ifndef __ASSEMBLY__ |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 155 | |
| 156 | #define KEY_PWR_PMIC_NAME "MAX8997_PMIC" |
| 157 | #define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1 |
| 158 | #define KEY_PWR_STATUS_MASK (1 << 0) |
| 159 | #define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1 |
| 160 | #define KEY_PWR_INTERRUPT_MASK (1 << 0) |
| 161 | |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 162 | #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20 |
| 163 | #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21 |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 164 | #endif /* __ASSEMBLY__ */ |
| 165 | |
| 166 | /* LCD console */ |
| 167 | #define LCD_BPP LCD_COLOR16 |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 168 | |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 169 | /* LCD */ |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 170 | #define CONFIG_FB_ADDR 0x52504000 |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 171 | #define CONFIG_EXYNOS_MIPI_DSIM |
Przemyslaw Marczak | 903afe1 | 2013-11-29 18:30:43 +0100 | [diff] [blame] | 172 | #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54) |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 173 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 174 | #endif /* __CONFIG_H */ |