1 /* 2 * Copyright (C) 2011 Samsung Electronics 3 * Heungjun Kim <riverful.kim@samsung.com> 4 * 5 * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board. 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef __CONFIG_TRATS_H 11 #define __CONFIG_TRATS_H 12 13 #include <configs/exynos4-dt.h> 14 15 #define CONFIG_SYS_PROMPT "Trats # " /* Monitor Command Prompt */ 16 17 #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 */ 23 24 #define CONFIG_SYS_L2CACHE_OFF 25 #ifndef CONFIG_SYS_L2CACHE_OFF 26 #define CONFIG_SYS_L2_PL310 27 #define CONFIG_SYS_PL310_BASE 0x10502000 28 #endif 29 30 /* TRATS has 4 banks of DRAM */ 31 #define CONFIG_NR_DRAM_BANKS 4 32 #define CONFIG_SYS_SDRAM_BASE 0x40000000 33 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE 34 #define CONFIG_SYS_TEXT_BASE 0x63300000 35 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ 36 37 /* 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) 41 42 #define CONFIG_SYS_TEXT_BASE 0x63300000 43 44 #include <linux/sizes.h> 45 /* Size of malloc() pool */ 46 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M)) 47 48 /* select serial console configuration */ 49 #define CONFIG_SERIAL2 50 #define CONFIG_BAUDRATE 115200 51 52 /* Console configuration */ 53 #define CONFIG_SYS_CONSOLE_INFO_QUIET 54 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 55 56 /* 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 59 60 #define CONFIG_BOOTARGS "Please use defined boot" 61 #define CONFIG_BOOTCOMMAND "run mmcboot" 62 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0" 63 64 #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 71 #define CONFIG_BOOTBLOCK "10" 72 #define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}" 73 74 #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 84 /* Tizen - partitions definitions */ 85 #define PARTS_CSA "csa-mmc" 86 #define PARTS_BOOT "boot" 87 #define PARTS_QBOOT "qboot" 88 #define PARTS_CSC "csc" 89 #define PARTS_ROOT "platform" 90 #define PARTS_DATA "data" 91 #define PARTS_UMS "ums" 92 93 #define PARTS_DEFAULT \ 94 "uuid_disk=${uuid_gpt_disk};" \ 95 "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"};" \ 98 "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \ 99 "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \ 100 "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \ 101 "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \ 102 103 #define CONFIG_DFU_ALT \ 104 "u-boot mmc 80 400;" \ 105 "uImage ext4 0 2;" \ 106 "modem.bin ext4 0 2;" \ 107 "exynos4210-trats.dtb ext4 0 2;" \ 108 ""PARTS_CSA" part 0 1;" \ 109 ""PARTS_BOOT" part 0 2;" \ 110 ""PARTS_QBOOT" part 0 3;" \ 111 ""PARTS_CSC" part 0 4;" \ 112 ""PARTS_ROOT" part 0 5;" \ 113 ""PARTS_DATA" part 0 6;" \ 114 ""PARTS_UMS" part 0 7;" \ 115 "params.bin mmc 0x38 0x8\0" 116 117 #define CONFIG_EXTRA_ENV_SETTINGS \ 118 "bootk=" \ 119 "run loaduimage;" \ 120 "if run loaddtb; then " \ 121 "bootm 0x40007FC0 - ${fdtaddr};" \ 122 "fi;" \ 123 "bootm 0x40007FC0;\0" \ 124 "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=" \ 134 "setenv bootargs root=/dev/nfs rw " \ 135 "nfsroot=${nfsroot},nolock,tcp " \ 136 "ip=${ipaddr}:${serverip}:${gatewayip}:" \ 137 "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \ 138 "; run bootk\0" \ 139 "ramfsboot=" \ 140 "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \ 141 "${console} ${meminfo} " \ 142 "initrd=0x43000000,8M ramdisk=8192\0" \ 143 "mmcboot=" \ 144 "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ 145 "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \ 146 "run bootk\0" \ 147 "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \ 148 "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" \ 156 "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \ 157 "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \ 158 "${fdtfile}\0" \ 159 "mmcdev=0\0" \ 160 "mmcbootpart=2\0" \ 161 "mmcrootpart=5\0" \ 162 "opts=always_resume=1\0" \ 163 "partitions=" PARTS_DEFAULT \ 164 "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 ;" \ 170 "setenv spl_imgsize 0x${spl_imgsize};" \ 171 "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;" \ 183 "setenv spl_addr_tmp;\0" \ 184 "fdtaddr=40800000\0" \ 185 186 /* Falcon mode definitions */ 187 #define CONFIG_CMD_SPL 188 #define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100 189 190 /* GPT */ 191 #define CONFIG_RANDOM_UUID 192 193 /* I2C */ 194 #include <asm/arch/gpio.h> 195 196 #define CONFIG_CMD_I2C 197 198 #define CONFIG_SYS_I2C 199 #define CONFIG_SYS_I2C_S3C24X0 200 #define CONFIG_SYS_I2C_S3C24X0_SPEED 100000 201 #define CONFIG_SYS_I2C_S3C24X0_SLAVE 0xFE 202 #define CONFIG_MAX_I2C_NUM 8 203 #define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */ 204 #define CONFIG_SYS_I2C_SOFT_SPEED 50000 205 #define CONFIG_SYS_I2C_SOFT_SLAVE 0x7F 206 #define CONFIG_SOFT_I2C_READ_REPEATED_START 207 #define CONFIG_SYS_I2C_INIT_BOARD 208 209 /* I2C FG */ 210 #define CONFIG_SOFT_I2C_GPIO_SCL exynos4_gpio_get(2, y4, 1) 211 #define CONFIG_SOFT_I2C_GPIO_SDA exynos4_gpio_get(2, y4, 0) 212 213 /* POWER */ 214 #define CONFIG_POWER 215 #define CONFIG_POWER_I2C 216 #define CONFIG_POWER_MAX8997 217 218 #define CONFIG_POWER_FG 219 #define CONFIG_POWER_FG_MAX17042 220 #define CONFIG_POWER_MUIC 221 #define CONFIG_POWER_MUIC_MAX8997 222 #define CONFIG_POWER_BATTERY 223 #define CONFIG_POWER_BATTERY_TRATS 224 225 /* Security subsystem - enable hw_rand() */ 226 #define CONFIG_EXYNOS_ACE_SHA 227 #define CONFIG_LIB_HW_RAND 228 229 /* Common misc for Samsung */ 230 #define CONFIG_MISC_COMMON 231 232 #define CONFIG_MISC_INIT_R 233 234 /* Download menu - Samsung common */ 235 #define CONFIG_LCD_MENU 236 #define CONFIG_LCD_MENU_BOARD 237 238 /* Download menu - definitions for check keys */ 239 #ifndef __ASSEMBLY__ 240 #include <power/max8997_pmic.h> 241 242 #define KEY_PWR_PMIC_NAME "MAX8997_PMIC" 243 #define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1 244 #define KEY_PWR_STATUS_MASK (1 << 0) 245 #define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1 246 #define KEY_PWR_INTERRUPT_MASK (1 << 0) 247 248 #define KEY_VOL_UP_GPIO exynos4_gpio_get(2, x2, 0) 249 #define KEY_VOL_DOWN_GPIO exynos4_gpio_get(2, x2, 1) 250 #endif /* __ASSEMBLY__ */ 251 252 /* LCD console */ 253 #define LCD_BPP LCD_COLOR16 254 #define CONFIG_SYS_WHITE_ON_BLACK 255 256 /* LCD */ 257 #define CONFIG_EXYNOS_FB 258 #define CONFIG_LCD 259 #define CONFIG_CMD_BMP 260 #define CONFIG_BMP_16BPP 261 #define CONFIG_FB_ADDR 0x52504000 262 #define CONFIG_S6E8AX0 263 #define CONFIG_EXYNOS_MIPI_DSIM 264 #define CONFIG_VIDEO_BMP_GZIP 265 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54) 266 267 #define LCD_XRES 720 268 #define LCD_YRES 1280 269 270 #endif /* __CONFIG_H */ 271