xref: /openbmc/u-boot/include/configs/odroid_xu3.h (revision 4a34e4b8)
1 /*
2  * Copyright (C) 2013 Samsung Electronics
3  * Hyungwon Hwang <human.hwang@samsung.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7 
8 #ifndef __CONFIG_ODROID_XU3_H
9 #define __CONFIG_ODROID_XU3_H
10 
11 #include "exynos5420-common.h"
12 
13 #define CONFIG_SYS_PROMPT		"ODROID-XU3 # "
14 #define CONFIG_IDENT_STRING		" for ODROID-XU3"
15 
16 #define CONFIG_BOARD_COMMON
17 
18 #define CONFIG_SYS_SDRAM_BASE		0x40000000
19 #define CONFIG_SYS_TEXT_BASE		0x43E00000
20 
21 /* select serial console configuration */
22 #define CONFIG_SERIAL2			/* use SERIAL 2 */
23 
24 #define TZPC_BASE_OFFSET		0x10000
25 
26 #define CONFIG_CMD_MMC
27 
28 #define CONFIG_NR_DRAM_BANKS	8
29 #define SDRAM_BANK_SIZE		(256UL << 20UL)	/* 256 MB */
30 /* Reserve the last 22 MiB for the secure firmware */
31 #define CONFIG_SYS_MEM_TOP_HIDE		(22UL << 20UL)
32 #define CONFIG_TZSW_RESERVED_DRAM_SIZE	CONFIG_SYS_MEM_TOP_HIDE
33 
34 #define CONFIG_ENV_IS_IN_MMC
35 
36 #undef CONFIG_ENV_SIZE
37 #undef CONFIG_ENV_OFFSET
38 #define CONFIG_ENV_SIZE			4096
39 #define CONFIG_ENV_OFFSET		(SZ_1K * 1280) /* 1.25 MiB offset */
40 
41 #define CONFIG_SYS_INIT_SP_ADDR        (CONFIG_SYS_LOAD_ADDR - 0x1000000)
42 
43 #define CONFIG_DEFAULT_CONSOLE		"console=ttySAC2,115200n8\0"
44 
45 /* USB */
46 #define CONFIG_USB_EHCI
47 #define CONFIG_USB_EHCI_EXYNOS
48 
49 /* FIXME: MUST BE REMOVED AFTER TMU IS TURNED ON */
50 #undef CONFIG_EXYNOS_TMU
51 #undef CONFIG_TMU_CMD_DTT
52 
53 #endif	/* __CONFIG_H */
54