Merge tag 'u-boot-at91-2023.04-a' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / include / configs / odroid_xu3.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Samsung Electronics
4  * Hyungwon Hwang <human.hwang@samsung.com>
5  */
6
7 #ifndef __CONFIG_ODROID_XU3_H
8 #define __CONFIG_ODROID_XU3_H
9
10 #include <configs/exynos5420-common.h>
11 #include <configs/exynos5-common.h>
12
13 #define CFG_SYS_SDRAM_BASE              0x40000000
14
15 #define TZPC_BASE_OFFSET                0x10000
16
17 #define SDRAM_BANK_SIZE                 (256UL << 20UL) /* 256 MB */
18
19 /* DFU */
20 #define DFU_DEFAULT_POLL_TIMEOUT        300
21 #define DFU_MANIFEST_POLL_TIMEOUT       25000
22
23 #define CFG_DFU_ALT_SYSTEM               \
24         "uImage fat 0 1;"                   \
25         "zImage fat 0 1;"                   \
26         "Image.itb fat 0 1;"                \
27         "uInitrd fat 0 1;"                  \
28         "boot.scr fat 0 1;"                 \
29         "boot.cmd fat 0 1;"                 \
30         "exynos5422-odroidxu3.dtb fat 0 1;" \
31         "exynos5422-odroidxu3-lite.dtb fat 0 1;" \
32         "exynos5422-odroidxu4.dtb fat 0 1;" \
33         "exynos5422-odroidhc1.dtb fat 0 1;" \
34         "boot part 0 1;"                    \
35         "root part 0 2\0"
36
37 #define CFG_DFU_ALT_BOOT_EMMC           \
38         "u-boot raw 0x3e 0x800 mmcpart 1;" \
39         "bl1 raw 0x0 0x1e mmcpart 1;"      \
40         "bl2 raw 0x1e 0x1d mmcpart 1;"     \
41         "tzsw raw 0x83e 0x200 mmcpart 1;"  \
42         "params.bin raw 0x1880 0x20\0"
43
44 #define CFG_DFU_ALT_BOOT_SD   \
45         "u-boot raw 0x3f 0x800;" \
46         "bl1 raw 0x1 0x1e;"      \
47         "bl2 raw 0x1f 0x1d;"     \
48         "tzsw raw 0x83f 0x200;"  \
49         "params.bin raw 0x1880 0x20\0"
50
51 /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */
52 #define CFG_SET_DFU_ALT_BUF_LEN (SZ_1K)
53
54 /* Set soc_rev, soc_id, board_rev, board_name, fdtfile */
55 #define CFG_ODROID_REV_AIN              9
56
57 /*
58  * Need to override existing one (smdk5420) with odroid so set_board_info will
59  * use proper prefix when creating full board_name (SYS_BOARD + type)
60  */
61
62 /* Define new extra env settings, including DFU settings */
63 #undef CFG_EXTRA_ENV_SETTINGS
64 #define CFG_EXTRA_ENV_SETTINGS \
65         EXYNOS_DEVICE_SETTINGS \
66         EXYNOS_FDTFILE_SETTING \
67         MEM_LAYOUT_ENV_SETTINGS \
68         BOOTENV \
69         "rootfstype=ext4\0" \
70         "console=console=ttySAC2,115200n8\0" \
71         "fdtfile=exynos5422-odroidxu3.dtb\0" \
72         "board=odroid\0" \
73         "board_name=odroidxu3\0" \
74         "mmcbootdev=0\0" \
75         "mmcrootdev=0\0" \
76         "mmcbootpart=1\0" \
77         "mmcrootpart=2\0" \
78         "dfu_alt_system="CFG_DFU_ALT_SYSTEM \
79         "dfu_alt_info=Autoset by THOR/DFU command run.\0"
80
81 #endif  /* __CONFIG_H */