1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2014 Samsung Electronics
4 * Sanghee Kim <sh0130.kim@samsung.com>
5 * Piotr Wilczek <p.wilczek@samsung.com>
6 * Przemyslaw Marczak <p.marczak@samsung.com>
8 * Configuation settings for the Odroid-U3 (EXYNOS4412) board.
11 #ifndef __CONFIG_ODROID_U3_H
12 #define __CONFIG_ODROID_U3_H
14 #include <configs/exynos4-common.h>
16 #define CONFIG_SYS_L2CACHE_OFF
17 #ifndef CONFIG_SYS_L2CACHE_OFF
18 #define CONFIG_SYS_L2_PL310
19 #define CONFIG_SYS_PL310_BASE 0x10502000
22 #define CONFIG_MACH_TYPE 4289
24 #define CONFIG_SYS_SDRAM_BASE 0x40000000
25 #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
26 #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
27 /* Reserve the last 1 MiB for the secure firmware */
28 #define CONFIG_SYS_MEM_TOP_HIDE (1UL << 20UL)
29 #define CONFIG_TZSW_RESERVED_DRAM_SIZE CONFIG_SYS_MEM_TOP_HIDE
31 /* memtest works on */
32 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x3E00000)
34 #include <linux/sizes.h>
36 /* select serial console configuration */
38 /* Console configuration */
40 #define CONFIG_BOOTCOMMAND "run distro_bootcmd ; run autoboot"
41 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0"
43 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
44 - GENERATED_GBL_DATA_SIZE)
46 #define CONFIG_SYS_MONITOR_BASE 0x00000000
48 #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
49 #define CONFIG_ENV_OVERWRITE
52 #define PARTS_BOOT "boot"
53 #define PARTS_ROOT "platform"
55 #define CONFIG_DFU_ALT \
58 "Image.itb fat 0 1;" \
60 "exynos4412-odroidu3.dtb fat 0 1;" \
61 "exynos4412-odroidx2.dtb fat 0 1;" \
62 ""PARTS_BOOT" part 0 1;" \
63 ""PARTS_ROOT" part 0 2\0" \
65 #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K)
67 #define CONFIG_DFU_ALT_BOOT_EMMC \
68 "u-boot raw 0x3e 0x800 mmcpart 1;" \
69 "bl1 raw 0x0 0x1e mmcpart 1;" \
70 "bl2 raw 0x1e 0x1d mmcpart 1;" \
71 "tzsw raw 0x83e 0x138 mmcpart 1\0"
73 #define CONFIG_DFU_ALT_BOOT_SD \
74 "u-boot raw 0x3f 0x800;" \
76 "bl2 raw 0x1f 0x1d;" \
77 "tzsw raw 0x83f 0x138\0"
79 #define BOOT_TARGET_DEVICES(func) \
83 #include <config_distro_bootcmd.h>
86 * Bootable media layout:
87 * dev: SD eMMC(part boot)
92 * ENV 2560 2560(part user)
94 * MBR Primary partiions:
95 * Num Name Size Offset
96 * 1. BOOT: 100MiB 2MiB
99 #define CONFIG_EXTRA_ENV_SETTINGS \
100 "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \
102 "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kernel_addr_r} " \
104 "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${ramdisk_addr_r} " \
106 "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdt_addr_r} " \
109 "if run loadinitrd; then " \
110 "setenv initrd_addr ${ramdisk_addr_r};" \
112 "setenv initrd_addr -;" \
115 "if run loaddtb; then " \
116 "setenv fdt_addr ${fdt_addr_r};" \
121 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
122 " rootwait ${console} ${opts}\0" \
124 "run loadbootscript;" \
125 "source ${scriptaddr}\0" \
127 "setenv kernelname Image.itb;" \
130 "bootm ${kernel_addr_r}#${board_name}\0" \
132 "setenv kernelname uImage;" \
134 "run check_ramdisk;" \
137 "bootm ${kernel_addr_r} ${initrd_addr} ${fdt_addr};\0" \
139 "setenv kernelname zImage;" \
141 "run check_ramdisk;" \
144 "bootz ${kernel_addr_r} ${initrd_addr} ${fdt_addr};\0" \
146 "if test -e mmc ${mmcbootdev} boot.scr; then; " \
147 "run boot_script; " \
148 "elif test -e mmc ${mmcbootdev} Image.itb; then; " \
150 "elif test -e mmc ${mmcbootdev} zImage; then; " \
152 "elif test -e mmc ${mmcbootdev} uImage; then; " \
155 "console=" CONFIG_DEFAULT_CONSOLE \
160 "dfu_alt_system="CONFIG_DFU_ALT \
161 "dfu_alt_info=Please reset the board\0" \
162 "consoleon=set console console=ttySAC1,115200n8; save; reset\0" \
163 "consoleoff=set console console=ram; save; reset\0" \
164 "initrdname=uInitrd\0" \
165 "ramdisk_addr_r=0x42000000\0" \
166 "scriptaddr=0x42000000\0" \
167 "fdt_addr_r=0x40800000\0" \
168 "kernel_addr_r=0x41000000\0" \
173 /* Security subsystem - enable hw_rand() */
174 #define CONFIG_EXYNOS_ACE_SHA
177 #define CONFIG_USB_EHCI_EXYNOS
180 * Supported Odroid boards: X3, U3
181 * TODO: Add Odroid X support
183 #define CONFIG_MISC_COMMON
185 #undef CONFIG_REVISION_TAG
187 #endif /* __CONFIG_H */