Convert CONFIG_SYS_CONSOLE_IS_IN_ENV and CONFIG_CONSOLE_MUX 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
48 #define CONFIG_BOOTARGS                 "Please use defined boot"
49 #define CONFIG_BOOTCOMMAND              "run autoboot"
50 #define CONFIG_DEFAULT_CONSOLE          "console=ttySAC1,115200n8\0"
51
52 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
53                                         - GENERATED_GBL_DATA_SIZE)
54
55 #define CONFIG_SYS_MONITOR_BASE 0x00000000
56
57 #define CONFIG_ENV_IS_IN_MMC
58 #define CONFIG_SYS_MMC_ENV_DEV          CONFIG_MMC_DEFAULT_DEV
59 #define CONFIG_ENV_SIZE                 4096
60 #define CONFIG_ENV_OFFSET               (SZ_1K * 1280) /* 1.25 MiB offset */
61 #define CONFIG_ENV_OVERWRITE
62
63 /* Partitions name */
64 #define PARTS_BOOT              "boot"
65 #define PARTS_ROOT              "platform"
66
67 #define CONFIG_DFU_ALT \
68         "uImage fat 0 1;" \
69         "zImage fat 0 1;" \
70         "Image.itb fat 0 1;" \
71         "uInitrd fat 0 1;" \
72         "exynos4412-odroidu3.dtb fat 0 1;" \
73         "exynos4412-odroidx2.dtb fat 0 1;" \
74         ""PARTS_BOOT" part 0 1;" \
75         ""PARTS_ROOT" part 0 2\0" \
76
77 #define CONFIG_SET_DFU_ALT_INFO
78 #define CONFIG_SET_DFU_ALT_BUF_LEN      (SZ_1K)
79
80 #define CONFIG_DFU_ALT_BOOT_EMMC \
81         "u-boot raw 0x3e 0x800 mmcpart 1;" \
82         "bl1 raw 0x0 0x1e mmcpart 1;" \
83         "bl2 raw 0x1e 0x1d mmcpart 1;" \
84         "tzsw raw 0x83e 0x138 mmcpart 1\0"
85
86 #define CONFIG_DFU_ALT_BOOT_SD \
87         "u-boot raw 0x3f 0x800;" \
88         "bl1 raw 0x1 0x1e;" \
89         "bl2 raw 0x1f 0x1d;" \
90         "tzsw raw 0x83f 0x138\0"
91
92 /*
93  * Bootable media layout:
94  * dev:    SD   eMMC(part boot)
95  * BL1      1    0
96  * BL2     31   30
97  * UBOOT   63   62
98  * TZSW  2111 2110
99  * ENV   2560 2560(part user)
100  *
101  * MBR Primary partiions:
102  * Num Name   Size  Offset
103  * 1.  BOOT:  100MiB 2MiB
104  * 2.  ROOT:  -
105 */
106 #define CONFIG_EXTRA_ENV_SETTINGS \
107         "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \
108                 "boot.scr\0" \
109         "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
110                 "${kernelname}\0" \
111         "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
112                 "${initrdname}\0" \
113         "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
114                 "${fdtfile}\0" \
115         "check_ramdisk=" \
116                 "if run loadinitrd; then " \
117                         "setenv initrd_addr ${initrdaddr};" \
118                 "else " \
119                         "setenv initrd_addr -;" \
120                 "fi;\0" \
121         "check_dtb=" \
122                 "if run loaddtb; then " \
123                         "setenv fdt_addr ${fdtaddr};" \
124                 "else " \
125                         "setenv fdt_addr;" \
126                 "fi;\0" \
127         "kernel_args=" \
128                 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
129                 " rootwait ${console} ${opts}\0" \
130         "boot_script=" \
131                 "run loadbootscript;" \
132                 "source ${scriptaddr}\0" \
133         "boot_fit=" \
134                 "setenv kerneladdr 0x42000000;" \
135                 "setenv kernelname Image.itb;" \
136                 "run loadkernel;" \
137                 "run kernel_args;" \
138                 "bootm ${kerneladdr}#${boardname}\0" \
139         "boot_uimg=" \
140                 "setenv kerneladdr 0x40007FC0;" \
141                 "setenv kernelname uImage;" \
142                 "run check_dtb;" \
143                 "run check_ramdisk;" \
144                 "run loadkernel;" \
145                 "run kernel_args;" \
146                 "bootm ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
147         "boot_zimg=" \
148                 "setenv kerneladdr 0x40007FC0;" \
149                 "setenv kernelname zImage;" \
150                 "run check_dtb;" \
151                 "run check_ramdisk;" \
152                 "run loadkernel;" \
153                 "run kernel_args;" \
154                 "bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
155         "autoboot=" \
156                 "if test -e mmc 0 boot.scr; then; " \
157                         "run boot_script; " \
158                 "elif test -e mmc 0 Image.itb; then; " \
159                         "run boot_fit;" \
160                 "elif test -e mmc 0 zImage; then; " \
161                         "run boot_zimg;" \
162                 "elif test -e mmc 0 uImage; then; " \
163                         "run boot_uimg;" \
164                 "fi;\0" \
165         "console=" CONFIG_DEFAULT_CONSOLE \
166         "mmcbootdev=0\0" \
167         "mmcbootpart=1\0" \
168         "mmcrootdev=0\0" \
169         "mmcrootpart=2\0" \
170         "bootdelay=0\0" \
171         "dfu_alt_system="CONFIG_DFU_ALT \
172         "dfu_alt_info=Please reset the board\0" \
173         "consoleon=set console console=ttySAC1,115200n8; save; reset\0" \
174         "consoleoff=set console console=ram; save; reset\0" \
175         "initrdname=uInitrd\0" \
176         "initrdaddr=42000000\0" \
177         "scriptaddr=0x42000000\0" \
178         "fdtaddr=40800000\0"
179
180 /* I2C */
181 #define CONFIG_SYS_I2C_S3C24X0
182 #define CONFIG_SYS_I2C_S3C24X0_SPEED    100000
183 #define CONFIG_SYS_I2C_S3C24X0_SLAVE    0
184
185 /* GPT */
186 #define CONFIG_RANDOM_UUID
187
188 /* Security subsystem - enable hw_rand() */
189 #define CONFIG_EXYNOS_ACE_SHA
190 #define CONFIG_LIB_HW_RAND
191
192 /* USB */
193 #define CONFIG_USB_EHCI
194 #define CONFIG_USB_EHCI_EXYNOS
195
196 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS      3
197 #define CONFIG_USB_HOST_ETHER
198 #define CONFIG_USB_ETHER_SMSC95XX
199
200 /*
201  * Supported Odroid boards: X3, U3
202  * TODO: Add Odroid X support
203  */
204 #define CONFIG_MISC_COMMON
205 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
206 #define CONFIG_BOARD_TYPES
207 #define CONFIG_MISC_INIT_R
208
209 #undef CONFIG_REVISION_TAG
210
211 #endif  /* __CONFIG_H */