common: add CMD_GPIO to Kconfig
[platform/kernel/u-boot.git] / include / configs / odroid.h
1 /*
2  * Copyright (C) 2014 Samsung Electronics
3  * Sanghee Kim <sh0130.kim@samsung.com>
4  * Piotr Wilczek <p.wilczek@samsung.com>
5  * Przemyslaw Marczak <p.marczak@samsung.com>
6  *
7  * Configuation settings for the Odroid-U3 (EXYNOS4412) board.
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef __CONFIG_ODROID_U3_H
13 #define __CONFIG_ODROID_U3_H
14
15 #include <configs/exynos4-common.h>
16
17 #define CONFIG_SYS_L2CACHE_OFF
18 #ifndef CONFIG_SYS_L2CACHE_OFF
19 #define CONFIG_SYS_L2_PL310
20 #define CONFIG_SYS_PL310_BASE   0x10502000
21 #endif
22
23 #define CONFIG_MACH_TYPE        4289
24
25 #define CONFIG_NR_DRAM_BANKS    8
26 #define CONFIG_SYS_SDRAM_BASE   0x40000000
27 #define SDRAM_BANK_SIZE         (256 << 20)     /* 256 MB */
28 #define PHYS_SDRAM_1            CONFIG_SYS_SDRAM_BASE
29 /* Reserve the last 1 MiB for the secure firmware */
30 #define CONFIG_SYS_MEM_TOP_HIDE         (1UL << 20UL)
31 #define CONFIG_TZSW_RESERVED_DRAM_SIZE  CONFIG_SYS_MEM_TOP_HIDE
32
33 /* memtest works on */
34 #define CONFIG_SYS_MEMTEST_START        CONFIG_SYS_SDRAM_BASE
35 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_SDRAM_BASE + 0x5E00000)
36 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
37 #define CONFIG_SYS_TEXT_BASE            0x43e00000
38
39 #include <linux/sizes.h>
40
41 /* select serial console configuration */
42 #define CONFIG_SERIAL1
43 #define CONFIG_BAUDRATE                 115200
44
45 /* Console configuration */
46 #define CONFIG_SYS_CONSOLE_INFO_QUIET
47 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
48
49 #define CONFIG_CMD_BOOTZ
50 #define CONFIG_FIT
51 #define CONFIG_FIT_VERBOSE
52 #define CONFIG_BOOTARGS                 "Please use defined boot"
53 #define CONFIG_BOOTCOMMAND              "run autoboot"
54 #define CONFIG_DEFAULT_CONSOLE          "console=ttySAC1,115200n8\0"
55
56 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
57                                         - GENERATED_GBL_DATA_SIZE)
58
59 #define CONFIG_SYS_MONITOR_BASE 0x00000000
60
61 #define CONFIG_ENV_IS_IN_MMC
62 #define CONFIG_SYS_MMC_ENV_DEV          CONFIG_MMC_DEFAULT_DEV
63 #define CONFIG_ENV_SIZE                 4096
64 #define CONFIG_ENV_OFFSET               (SZ_1K * 1280) /* 1.25 MiB offset */
65 #define CONFIG_ENV_OVERWRITE
66
67 /* Partitions name */
68 #define PARTS_BOOT              "boot"
69 #define PARTS_ROOT              "platform"
70
71 #define CONFIG_DFU_ALT \
72         "uImage fat 0 1;" \
73         "zImage fat 0 1;" \
74         "Image.itb fat 0 1;" \
75         "uInitrd fat 0 1;" \
76         "exynos4412-odroidu3.dtb fat 0 1;" \
77         "exynos4412-odroidx2.dtb fat 0 1;" \
78         ""PARTS_BOOT" part 0 1;" \
79         ""PARTS_ROOT" part 0 2\0" \
80
81 #define CONFIG_SET_DFU_ALT_INFO
82 #define CONFIG_SET_DFU_ALT_BUF_LEN      (SZ_1K)
83
84 #define CONFIG_DFU_ALT_BOOT_EMMC \
85         "u-boot raw 0x3e 0x800 mmcpart 1;" \
86         "bl1 raw 0x0 0x1e mmcpart 1;" \
87         "bl2 raw 0x1e 0x1d mmcpart 1;" \
88         "tzsw raw 0x83e 0x138 mmcpart 1\0"
89
90 #define CONFIG_DFU_ALT_BOOT_SD \
91         "u-boot raw 0x3f 0x800;" \
92         "bl1 raw 0x1 0x1e;" \
93         "bl2 raw 0x1f 0x1d;" \
94         "tzsw raw 0x83f 0x138\0"
95
96 /*
97  * Bootable media layout:
98  * dev:    SD   eMMC(part boot)
99  * BL1      1    0
100  * BL2     31   30
101  * UBOOT   63   62
102  * TZSW  2111 2110
103  * ENV   2560 2560(part user)
104  *
105  * MBR Primary partiions:
106  * Num Name   Size  Offset
107  * 1.  BOOT:  100MiB 2MiB
108  * 2.  ROOT:  -
109 */
110 #define CONFIG_EXTRA_ENV_SETTINGS \
111         "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \
112                 "boot.scr\0" \
113         "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
114                 "${kernelname}\0" \
115         "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
116                 "${initrdname}\0" \
117         "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
118                 "${fdtfile}\0" \
119         "check_ramdisk=" \
120                 "if run loadinitrd; then " \
121                         "setenv initrd_addr ${initrdaddr};" \
122                 "else " \
123                         "setenv initrd_addr -;" \
124                 "fi;\0" \
125         "check_dtb=" \
126                 "if run loaddtb; then " \
127                         "setenv fdt_addr ${fdtaddr};" \
128                 "else " \
129                         "setenv fdt_addr;" \
130                 "fi;\0" \
131         "kernel_args=" \
132                 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
133                 " rootwait ${console} ${opts}\0" \
134         "boot_script=" \
135                 "run loadbootscript;" \
136                 "source ${scriptaddr}\0" \
137         "boot_fit=" \
138                 "setenv kerneladdr 0x42000000;" \
139                 "setenv kernelname Image.itb;" \
140                 "run loadkernel;" \
141                 "run kernel_args;" \
142                 "bootm ${kerneladdr}#${boardname}\0" \
143         "boot_uimg=" \
144                 "setenv kerneladdr 0x40007FC0;" \
145                 "setenv kernelname uImage;" \
146                 "run check_dtb;" \
147                 "run check_ramdisk;" \
148                 "run loadkernel;" \
149                 "run kernel_args;" \
150                 "bootm ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
151         "boot_zimg=" \
152                 "setenv kerneladdr 0x40007FC0;" \
153                 "setenv kernelname zImage;" \
154                 "run check_dtb;" \
155                 "run check_ramdisk;" \
156                 "run loadkernel;" \
157                 "run kernel_args;" \
158                 "bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
159         "autoboot=" \
160                 "if test -e mmc 0 boot.scr; then; " \
161                         "run boot_script; " \
162                 "elif test -e mmc 0 Image.itb; then; " \
163                         "run boot_fit;" \
164                 "elif test -e mmc 0 zImage; then; " \
165                         "run boot_zimg;" \
166                 "elif test -e mmc 0 uImage; then; " \
167                         "run boot_uimg;" \
168                 "fi;\0" \
169         "console=" CONFIG_DEFAULT_CONSOLE \
170         "mmcbootdev=0\0" \
171         "mmcbootpart=1\0" \
172         "mmcrootdev=0\0" \
173         "mmcrootpart=2\0" \
174         "bootdelay=0\0" \
175         "dfu_alt_system="CONFIG_DFU_ALT \
176         "dfu_alt_info=Please reset the board\0" \
177         "consoleon=set console console=ttySAC1,115200n8; save; reset\0" \
178         "consoleoff=set console console=ram; save; reset\0" \
179         "initrdname=uInitrd\0" \
180         "initrdaddr=42000000\0" \
181         "scriptaddr=0x42000000\0" \
182         "fdtaddr=40800000\0"
183
184 /* I2C */
185 #define CONFIG_CMD_I2C
186 #define CONFIG_SYS_I2C_S3C24X0
187 #define CONFIG_SYS_I2C_S3C24X0_SPEED    100000
188 #define CONFIG_SYS_I2C_S3C24X0_SLAVE    0
189
190 /* GPT */
191 #define CONFIG_RANDOM_UUID
192
193 /* Security subsystem - enable hw_rand() */
194 #define CONFIG_EXYNOS_ACE_SHA
195 #define CONFIG_LIB_HW_RAND
196
197
198 /* USB */
199 #define CONFIG_CMD_USB
200 #define CONFIG_USB_EHCI
201 #define CONFIG_USB_EHCI_EXYNOS
202 #define CONFIG_USB_STORAGE
203
204 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS      3
205 #define CONFIG_CMD_PING
206 #define CONFIG_CMD_DHCP
207 #define CONFIG_USB_HOST_ETHER
208 #define CONFIG_USB_ETHER_SMSC95XX
209
210 /*
211  * Supported Odroid boards: X3, U3
212  * TODO: Add Odroid X support
213  */
214 #define CONFIG_MISC_COMMON
215 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
216 #define CONFIG_BOARD_TYPES
217 #define CONFIG_MISC_INIT_R
218
219 #undef CONFIG_REVISION_TAG
220
221 #endif  /* __CONFIG_H */