HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 10 | #ifndef __CONFIG_TRATS_H |
| 11 | #define __CONFIG_TRATS_H |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 12 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 13 | #include <configs/exynos4-dt.h> |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 14 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 15 | #define CONFIG_SYS_PROMPT "Trats # " /* Monitor Command Prompt */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 16 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 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 */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 23 | |
Łukasz Majewski | c4e96db | 2014-01-14 08:02:26 +0100 | [diff] [blame] | 24 | #define CONFIG_SYS_L2CACHE_OFF |
Łukasz Majewski | d0460b0 | 2012-08-07 05:42:14 +0000 | [diff] [blame] | 25 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 26 | #define CONFIG_SYS_L2_PL310 |
| 27 | #define CONFIG_SYS_PL310_BASE 0x10502000 |
| 28 | #endif |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 29 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 30 | /* TRATS has 4 banks of DRAM */ |
| 31 | #define CONFIG_NR_DRAM_BANKS 4 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 32 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 33 | #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 34 | #define CONFIG_SYS_TEXT_BASE 0x63300000 |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 35 | #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 36 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 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) |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 41 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 42 | #define CONFIG_SYS_TEXT_BASE 0x63300000 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 43 | |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 44 | #include <linux/sizes.h> |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 45 | /* Size of malloc() pool */ |
Lukasz Majewski | e96751d | 2013-10-08 14:30:46 +0200 | [diff] [blame] | 46 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M)) |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 47 | |
| 48 | /* select serial console configuration */ |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 49 | #define CONFIG_SERIAL2 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 50 | #define CONFIG_BAUDRATE 115200 |
| 51 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 52 | /* Console configuration */ |
| 53 | #define CONFIG_SYS_CONSOLE_INFO_QUIET |
| 54 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 55 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 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 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 59 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 60 | #define CONFIG_BOOTARGS "Please use defined boot" |
| 61 | #define CONFIG_BOOTCOMMAND "run mmcboot" |
Łukasz Majewski | 6afc3f6 | 2014-04-09 10:44:34 +0200 | [diff] [blame] | 62 | #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 63 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 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 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 71 | #define CONFIG_BOOTBLOCK "10" |
| 72 | #define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}" |
| 73 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 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 | |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 84 | /* Tizen - partitions definitions */ |
| 85 | #define PARTS_CSA "csa-mmc" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 86 | #define PARTS_BOOT "boot" |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 87 | #define PARTS_QBOOT "qboot" |
| 88 | #define PARTS_CSC "csc" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 89 | #define PARTS_ROOT "platform" |
| 90 | #define PARTS_DATA "data" |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 91 | #define PARTS_UMS "ums" |
| 92 | |
| 93 | #define PARTS_DEFAULT \ |
| 94 | "uuid_disk=${uuid_gpt_disk};" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 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"};" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 98 | "name="PARTS_CSC",size=150MiB,uuid=${uuid_gpt_"PARTS_CSC"};" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 99 | "name="PARTS_ROOT",size=1536MiB,uuid=${uuid_gpt_"PARTS_ROOT"};" \ |
| 100 | "name="PARTS_DATA",size=3000MiB,uuid=${uuid_gpt_"PARTS_DATA"};" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 101 | "name="PARTS_UMS",size=-,uuid=${uuid_gpt_"PARTS_UMS"}\0" \ |
| 102 | |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 103 | #define CONFIG_DFU_ALT \ |
Mateusz Zalega | b7d4259 | 2014-04-28 21:13:25 +0200 | [diff] [blame] | 104 | "u-boot raw 0x80 0x400;" \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 105 | "uImage ext4 0 2;" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 106 | "modem.bin ext4 0 2;" \ |
Lukasz Majewski | e96751d | 2013-10-08 14:30:46 +0200 | [diff] [blame] | 107 | "exynos4210-trats.dtb ext4 0 2;" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 108 | ""PARTS_CSA" part 0 1;" \ |
Łukasz Majewski | cdd15bc | 2014-01-14 08:02:24 +0100 | [diff] [blame] | 109 | ""PARTS_BOOT" part 0 2;" \ |
Przemyslaw Marczak | 18f3e0e | 2014-02-28 18:53:36 +0100 | [diff] [blame] | 110 | ""PARTS_QBOOT" part 0 3;" \ |
| 111 | ""PARTS_CSC" part 0 4;" \ |
Łukasz Majewski | cdd15bc | 2014-01-14 08:02:24 +0100 | [diff] [blame] | 112 | ""PARTS_ROOT" part 0 5;" \ |
| 113 | ""PARTS_DATA" part 0 6;" \ |
Przemyslaw Marczak | a0afc6f | 2014-01-22 12:02:47 +0100 | [diff] [blame] | 114 | ""PARTS_UMS" part 0 7;" \ |
Mateusz Zalega | b7d4259 | 2014-04-28 21:13:25 +0200 | [diff] [blame] | 115 | "params.bin raw 0x38 0x8\0" |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 116 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 117 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 118 | "bootk=" \ |
Piotr Wilczek | 425e26d | 2014-01-22 15:54:37 +0100 | [diff] [blame] | 119 | "run loaduimage;" \ |
| 120 | "if run loaddtb; then " \ |
| 121 | "bootm 0x40007FC0 - ${fdtaddr};" \ |
| 122 | "fi;" \ |
| 123 | "bootm 0x40007FC0;\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 124 | "updatebackup=" \ |
Jaehoon Chung | 188c42b | 2014-04-30 09:09:15 +0900 | [diff] [blame] | 125 | "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \ |
| 126 | "mmc dev 0 0\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 127 | "updatebootb=" \ |
| 128 | "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \ |
| 129 | "lpj=lpj=3981312\0" \ |
| 130 | "nfsboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 131 | "setenv bootargs root=/dev/nfs rw " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 132 | "nfsroot=${nfsroot},nolock,tcp " \ |
| 133 | "ip=${ipaddr}:${serverip}:${gatewayip}:" \ |
| 134 | "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \ |
| 135 | "; run bootk\0" \ |
| 136 | "ramfsboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 137 | "setenv bootargs root=/dev/ram0 rw rootfstype=ext2 " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 138 | "${console} ${meminfo} " \ |
| 139 | "initrd=0x43000000,8M ramdisk=8192\0" \ |
| 140 | "mmcboot=" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 141 | "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 142 | "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \ |
Piotr Wilczek | 425e26d | 2014-01-22 15:54:37 +0100 | [diff] [blame] | 143 | "run bootk\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 144 | "bootchart=setenv opts init=/sbin/bootchartd; run bootcmd\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 145 | "boottrace=setenv opts initcall_debug; run bootcmd\0" \ |
| 146 | "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \ |
| 147 | "verify=n\0" \ |
| 148 | "rootfstype=ext4\0" \ |
| 149 | "console=" CONFIG_DEFAULT_CONSOLE \ |
| 150 | "meminfo=crashkernel=32M@0x50000000\0" \ |
| 151 | "nfsroot=/nfsroot/arm\0" \ |
| 152 | "bootblock=" CONFIG_BOOTBLOCK "\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 153 | "loaduimage=ext4load mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \ |
Łukasz Majewski | 4ef400b | 2013-07-18 13:14:22 +0200 | [diff] [blame] | 154 | "loaddtb=ext4load mmc ${mmcdev}:${mmcbootpart} ${fdtaddr} " \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 155 | "${fdtfile}\0" \ |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 156 | "mmcdev=0\0" \ |
| 157 | "mmcbootpart=2\0" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 158 | "mmcrootpart=5\0" \ |
Lukasz Majewski | 93a1ab5 | 2012-08-06 14:41:11 +0200 | [diff] [blame] | 159 | "opts=always_resume=1\0" \ |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 160 | "partitions=" PARTS_DEFAULT \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 161 | "dfu_alt_info=" CONFIG_DFU_ALT \ |
| 162 | "spladdr=0x40000100\0" \ |
| 163 | "splsize=0x200\0" \ |
| 164 | "splfile=falcon.bin\0" \ |
| 165 | "spl_export=" \ |
| 166 | "setexpr spl_imgsize ${splsize} + 8 ;" \ |
Przemyslaw Marczak | dc993a6 | 2013-03-12 03:41:49 +0000 | [diff] [blame] | 167 | "setenv spl_imgsize 0x${spl_imgsize};" \ |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 168 | "setexpr spl_imgaddr ${spladdr} - 8 ;" \ |
| 169 | "setexpr spl_addr_tmp ${spladdr} - 4 ;" \ |
| 170 | "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \ |
| 171 | "setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ |
| 172 | "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo};" \ |
| 173 | "spl export atags 0x40007FC0;" \ |
| 174 | "crc32 ${spladdr} ${splsize} ${spl_imgaddr};" \ |
| 175 | "mw.l ${spl_addr_tmp} ${splsize};" \ |
| 176 | "ext4write mmc ${mmcdev}:${mmcbootpart}" \ |
| 177 | " /${splfile} ${spl_imgaddr} ${spl_imgsize};" \ |
| 178 | "setenv spl_imgsize;" \ |
| 179 | "setenv spl_imgaddr;" \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 180 | "setenv spl_addr_tmp;\0" \ |
| 181 | "fdtaddr=40800000\0" \ |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 182 | |
Łukasz Majewski | 35777e2 | 2013-01-02 06:06:02 +0000 | [diff] [blame] | 183 | /* Falcon mode definitions */ |
| 184 | #define CONFIG_CMD_SPL |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 185 | #define CONFIG_SYS_SPL_ARGS_ADDR CONFIG_SYS_SDRAM_BASE + 0x100 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 186 | |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 187 | /* GPT */ |
Przemyslaw Marczak | aafd2c5 | 2014-04-02 10:20:07 +0200 | [diff] [blame] | 188 | #define CONFIG_RANDOM_UUID |
Lukasz Majewski | 9960d9a | 2012-12-11 11:09:48 +0100 | [diff] [blame] | 189 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 190 | /* I2C */ |
| 191 | #include <asm/arch/gpio.h> |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 192 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 193 | #define CONFIG_CMD_I2C |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 194 | |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 195 | #define CONFIG_SYS_I2C |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 196 | #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 Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 200 | #define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */ |
| 201 | #define CONFIG_SYS_I2C_SOFT_SPEED 50000 |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 202 | #define CONFIG_SYS_I2C_SOFT_SLAVE 0x7F |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 203 | #define CONFIG_SOFT_I2C_READ_REPEATED_START |
Łukasz Majewski | fd8dca8 | 2012-09-04 23:15:21 +0000 | [diff] [blame] | 204 | #define CONFIG_SYS_I2C_INIT_BOARD |
Łukasz Majewski | fd8dca8 | 2012-09-04 23:15:21 +0000 | [diff] [blame] | 205 | |
Łukasz Majewski | fd8dca8 | 2012-09-04 23:15:21 +0000 | [diff] [blame] | 206 | /* I2C FG */ |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 207 | #define CONFIG_SOFT_I2C_GPIO_SCL EXYNOS4_GPIO_Y41 |
| 208 | #define CONFIG_SOFT_I2C_GPIO_SDA EXYNOS4_GPIO_Y40 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 209 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 210 | /* POWER */ |
Łukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 211 | #define CONFIG_POWER |
| 212 | #define CONFIG_POWER_I2C |
| 213 | #define CONFIG_POWER_MAX8997 |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 214 | |
Łukasz Majewski | 5a77358 | 2012-11-13 03:22:07 +0000 | [diff] [blame] | 215 | #define CONFIG_POWER_FG |
| 216 | #define CONFIG_POWER_FG_MAX17042 |
Łukasz Majewski | 7dcda99 | 2012-11-13 03:22:06 +0000 | [diff] [blame] | 217 | #define CONFIG_POWER_MUIC |
| 218 | #define CONFIG_POWER_MUIC_MAX8997 |
Łukasz Majewski | 61365ff | 2012-11-13 03:22:08 +0000 | [diff] [blame] | 219 | #define CONFIG_POWER_BATTERY |
| 220 | #define CONFIG_POWER_BATTERY_TRATS |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 221 | |
Przemyslaw Marczak | e002170 | 2014-03-25 10:58:22 +0100 | [diff] [blame] | 222 | /* Security subsystem - enable hw_rand() */ |
| 223 | #define CONFIG_EXYNOS_ACE_SHA |
| 224 | #define CONFIG_LIB_HW_RAND |
| 225 | |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 226 | /* Common misc for Samsung */ |
| 227 | #define CONFIG_MISC_COMMON |
| 228 | |
| 229 | #define CONFIG_MISC_INIT_R |
| 230 | |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 231 | /* Download menu - Samsung common */ |
| 232 | #define CONFIG_LCD_MENU |
| 233 | #define CONFIG_LCD_MENU_BOARD |
| 234 | |
| 235 | /* Download menu - definitions for check keys */ |
| 236 | #ifndef __ASSEMBLY__ |
| 237 | #include <power/max8997_pmic.h> |
| 238 | |
| 239 | #define KEY_PWR_PMIC_NAME "MAX8997_PMIC" |
| 240 | #define KEY_PWR_STATUS_REG MAX8997_REG_STATUS1 |
| 241 | #define KEY_PWR_STATUS_MASK (1 << 0) |
| 242 | #define KEY_PWR_INTERRUPT_REG MAX8997_REG_INT1 |
| 243 | #define KEY_PWR_INTERRUPT_MASK (1 << 0) |
| 244 | |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 245 | #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20 |
| 246 | #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21 |
Przemyslaw Marczak | 00e64ab | 2014-01-22 11:24:18 +0100 | [diff] [blame] | 247 | #endif /* __ASSEMBLY__ */ |
| 248 | |
| 249 | /* LCD console */ |
| 250 | #define LCD_BPP LCD_COLOR16 |
| 251 | #define CONFIG_SYS_WHITE_ON_BLACK |
| 252 | |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 253 | /* LCD */ |
| 254 | #define CONFIG_EXYNOS_FB |
| 255 | #define CONFIG_LCD |
Donghwa Lee | 9046497 | 2012-05-09 19:23:46 +0000 | [diff] [blame] | 256 | #define CONFIG_CMD_BMP |
Przemyslaw Marczak | 2df21cb | 2014-01-22 11:24:16 +0100 | [diff] [blame] | 257 | #define CONFIG_BMP_16BPP |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 258 | #define CONFIG_FB_ADDR 0x52504000 |
| 259 | #define CONFIG_S6E8AX0 |
| 260 | #define CONFIG_EXYNOS_MIPI_DSIM |
Donghwa Lee | 9046497 | 2012-05-09 19:23:46 +0000 | [diff] [blame] | 261 | #define CONFIG_VIDEO_BMP_GZIP |
Przemyslaw Marczak | 903afe1 | 2013-11-29 18:30:43 +0100 | [diff] [blame] | 262 | #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54) |
Donghwa Lee | 51b1cd6 | 2012-04-05 19:36:27 +0000 | [diff] [blame] | 263 | |
Piotr Wilczek | fe60164 | 2014-03-07 14:59:48 +0100 | [diff] [blame] | 264 | #define LCD_XRES 720 |
| 265 | #define LCD_YRES 1280 |
Arkadiusz Wlodarczyk | ba223bb | 2013-04-02 15:10:16 +0200 | [diff] [blame] | 266 | |
HeungJun, Kim | 89f9549 | 2012-01-16 21:13:05 +0000 | [diff] [blame] | 267 | #endif /* __CONFIG_H */ |