]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/odroid.h
karo: tx6: enable GPT command
[karo-tx-uboot.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         "loadkernel=fatload mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
112                 "${kernelname}\0" \
113         "loadinitrd=fatload mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
114                 "${initrdname}\0" \
115         "loaddtb=fatload mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
116                 "${fdtfile}\0" \
117         "check_ramdisk=" \
118                 "if run loadinitrd; then " \
119                         "setenv initrd_addr ${initrdaddr};" \
120                 "else " \
121                         "setenv initrd_addr -;" \
122                 "fi;\0" \
123         "check_dtb=" \
124                 "if run loaddtb; then " \
125                         "setenv fdt_addr ${fdtaddr};" \
126                 "else " \
127                         "setenv fdt_addr;" \
128                 "fi;\0" \
129         "kernel_args=" \
130                 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
131                 " rootwait ${console} ${opts}\0" \
132         "boot_fit=" \
133                 "setenv kerneladdr 0x42000000;" \
134                 "setenv kernelname Image.itb;" \
135                 "run loadkernel;" \
136                 "run kernel_args;" \
137                 "bootm ${kerneladdr}#${boardname}\0" \
138         "boot_uimg=" \
139                 "setenv kerneladdr 0x40007FC0;" \
140                 "setenv kernelname uImage;" \
141                 "run check_dtb;" \
142                 "run check_ramdisk;" \
143                 "run loadkernel;" \
144                 "run kernel_args;" \
145                 "bootm ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
146         "boot_zimg=" \
147                 "setenv kerneladdr 0x40007FC0;" \
148                 "setenv kernelname zImage;" \
149                 "run check_dtb;" \
150                 "run check_ramdisk;" \
151                 "run loadkernel;" \
152                 "run kernel_args;" \
153                 "bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
154         "autoboot=" \
155                 "if test -e mmc 0 Image.itb; then; " \
156                         "run boot_fit;" \
157                 "elif test -e mmc 0 zImage; then; " \
158                         "run boot_zimg;" \
159                 "elif test -e mmc 0 uImage; then; " \
160                         "run boot_uimg;" \
161                 "fi;\0" \
162         "console=" CONFIG_DEFAULT_CONSOLE \
163         "mmcbootdev=0\0" \
164         "mmcbootpart=1\0" \
165         "mmcrootdev=0\0" \
166         "mmcrootpart=2\0" \
167         "bootdelay=0\0" \
168         "dfu_alt_system="CONFIG_DFU_ALT \
169         "dfu_alt_info=Please reset the board\0" \
170         "consoleon=set console console=ttySAC1,115200n8; save; reset\0" \
171         "consoleoff=set console console=ram; save; reset\0" \
172         "initrdname=uInitrd\0" \
173         "initrdaddr=42000000\0" \
174         "fdtaddr=40800000\0"
175
176 /* I2C */
177 #define CONFIG_CMD_I2C
178 #define CONFIG_SYS_I2C_S3C24X0
179 #define CONFIG_SYS_I2C_S3C24X0_SPEED    100000
180 #define CONFIG_SYS_I2C_S3C24X0_SLAVE    0
181
182 /* GPT */
183 #define CONFIG_RANDOM_UUID
184
185 /* Security subsystem - enable hw_rand() */
186 #define CONFIG_EXYNOS_ACE_SHA
187 #define CONFIG_LIB_HW_RAND
188
189 #define CONFIG_CMD_GPIO
190
191 /* USB */
192 #define CONFIG_CMD_USB
193 #define CONFIG_USB_EHCI
194 #define CONFIG_USB_EHCI_EXYNOS
195 #define CONFIG_USB_STORAGE
196
197 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS      3
198 #define CONFIG_CMD_PING
199 #define CONFIG_CMD_DHCP
200 #define CONFIG_USB_HOST_ETHER
201 #define CONFIG_USB_ETHER_SMSC95XX
202
203 /*
204  * Supported Odroid boards: X3, U3
205  * TODO: Add Odroid X support
206  */
207 #define CONFIG_MISC_COMMON
208 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
209 #define CONFIG_BOARD_TYPES
210 #define CONFIG_MISC_INIT_R
211
212 #undef CONFIG_REVISION_TAG
213
214 #endif  /* __CONFIG_H */