]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/odroid.h
Merge git://git.denx.de/u-boot-usb
[people/ms/u-boot.git] / include / configs / odroid.h
CommitLineData
73eca211
PM
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
4c7bb1d2 15#include <configs/exynos4-common.h>
73eca211 16
73eca211
PM
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
ddb49f3a
PM
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
73eca211
PM
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>
73eca211
PM
40
41/* select serial console configuration */
42#define CONFIG_SERIAL1
73eca211
PM
43
44/* Console configuration */
73eca211 45
73eca211
PM
46#define CONFIG_BOOTARGS "Please use defined boot"
47#define CONFIG_BOOTCOMMAND "run autoboot"
48#define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0"
49
50#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
51 - GENERATED_GBL_DATA_SIZE)
52
73eca211
PM
53#define CONFIG_SYS_MONITOR_BASE 0x00000000
54
73eca211
PM
55#define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV
56#define CONFIG_ENV_SIZE 4096
57#define CONFIG_ENV_OFFSET (SZ_1K * 1280) /* 1.25 MiB offset */
58#define CONFIG_ENV_OVERWRITE
59
60/* Partitions name */
61#define PARTS_BOOT "boot"
62#define PARTS_ROOT "platform"
63
64#define CONFIG_DFU_ALT \
65 "uImage fat 0 1;" \
66 "zImage fat 0 1;" \
67 "Image.itb fat 0 1;" \
68 "uInitrd fat 0 1;" \
69 "exynos4412-odroidu3.dtb fat 0 1;" \
70 "exynos4412-odroidx2.dtb fat 0 1;" \
71 ""PARTS_BOOT" part 0 1;" \
72 ""PARTS_ROOT" part 0 2\0" \
73
74#define CONFIG_SET_DFU_ALT_INFO
75#define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K)
76
77#define CONFIG_DFU_ALT_BOOT_EMMC \
78 "u-boot raw 0x3e 0x800 mmcpart 1;" \
79 "bl1 raw 0x0 0x1e mmcpart 1;" \
80 "bl2 raw 0x1e 0x1d mmcpart 1;" \
81 "tzsw raw 0x83e 0x138 mmcpart 1\0"
82
83#define CONFIG_DFU_ALT_BOOT_SD \
84 "u-boot raw 0x3f 0x800;" \
85 "bl1 raw 0x1 0x1e;" \
86 "bl2 raw 0x1f 0x1d;" \
87 "tzsw raw 0x83f 0x138\0"
88
89/*
90 * Bootable media layout:
91 * dev: SD eMMC(part boot)
92 * BL1 1 0
93 * BL2 31 30
94 * UBOOT 63 62
95 * TZSW 2111 2110
96 * ENV 2560 2560(part user)
97 *
98 * MBR Primary partiions:
99 * Num Name Size Offset
100 * 1. BOOT: 100MiB 2MiB
101 * 2. ROOT: -
102*/
103#define CONFIG_EXTRA_ENV_SETTINGS \
8e34a74d
GG
104 "loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart} ${scriptaddr} " \
105 "boot.scr\0" \
4ed50807 106 "loadkernel=load mmc ${mmcbootdev}:${mmcbootpart} ${kerneladdr} " \
73eca211 107 "${kernelname}\0" \
4ed50807 108 "loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart} ${initrdaddr} " \
73eca211 109 "${initrdname}\0" \
4ed50807 110 "loaddtb=load mmc ${mmcbootdev}:${mmcbootpart} ${fdtaddr} " \
73eca211
PM
111 "${fdtfile}\0" \
112 "check_ramdisk=" \
113 "if run loadinitrd; then " \
114 "setenv initrd_addr ${initrdaddr};" \
115 "else " \
116 "setenv initrd_addr -;" \
117 "fi;\0" \
118 "check_dtb=" \
119 "if run loaddtb; then " \
120 "setenv fdt_addr ${fdtaddr};" \
121 "else " \
122 "setenv fdt_addr;" \
123 "fi;\0" \
124 "kernel_args=" \
125 "setenv bootargs root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
126 " rootwait ${console} ${opts}\0" \
8e34a74d
GG
127 "boot_script=" \
128 "run loadbootscript;" \
129 "source ${scriptaddr}\0" \
73eca211
PM
130 "boot_fit=" \
131 "setenv kerneladdr 0x42000000;" \
132 "setenv kernelname Image.itb;" \
133 "run loadkernel;" \
134 "run kernel_args;" \
135 "bootm ${kerneladdr}#${boardname}\0" \
136 "boot_uimg=" \
137 "setenv kerneladdr 0x40007FC0;" \
138 "setenv kernelname uImage;" \
139 "run check_dtb;" \
140 "run check_ramdisk;" \
141 "run loadkernel;" \
142 "run kernel_args;" \
143 "bootm ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
144 "boot_zimg=" \
145 "setenv kerneladdr 0x40007FC0;" \
146 "setenv kernelname zImage;" \
147 "run check_dtb;" \
148 "run check_ramdisk;" \
149 "run loadkernel;" \
150 "run kernel_args;" \
151 "bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0" \
152 "autoboot=" \
8e34a74d
GG
153 "if test -e mmc 0 boot.scr; then; " \
154 "run boot_script; " \
155 "elif test -e mmc 0 Image.itb; then; " \
73eca211
PM
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" \
8e34a74d 174 "scriptaddr=0x42000000\0" \
73eca211
PM
175 "fdtaddr=40800000\0"
176
73eca211
PM
177/* GPT */
178#define CONFIG_RANDOM_UUID
179
180/* Security subsystem - enable hw_rand() */
181#define CONFIG_EXYNOS_ACE_SHA
182#define CONFIG_LIB_HW_RAND
183
6a23c653 184/* USB */
6a23c653 185#define CONFIG_USB_EHCI_EXYNOS
6a23c653 186
6a23c653
SR
187#define CONFIG_USB_HOST_ETHER
188#define CONFIG_USB_ETHER_SMSC95XX
189
73eca211
PM
190/*
191 * Supported Odroid boards: X3, U3
192 * TODO: Add Odroid X support
193 */
194#define CONFIG_MISC_COMMON
195#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
196#define CONFIG_BOARD_TYPES
197#define CONFIG_MISC_INIT_R
198
199#undef CONFIG_REVISION_TAG
200
201#endif /* __CONFIG_H */