xref: /rk3399_rockchip-uboot/include/configs/espresso7420.h (revision e39448e8be8389f5ddeabae0ec9c6a3b7b8a2ca6)
1*e39448e8SThomas Abraham /*
2*e39448e8SThomas Abraham  * Configuration settings for the SAMSUNG ESPRESSO7420 board.
3*e39448e8SThomas Abraham  * Copyright (C) 2016 Samsung Electronics
4*e39448e8SThomas Abraham  * Thomas Abraham <thomas.ab@samsung.com>
5*e39448e8SThomas Abraham  *
6*e39448e8SThomas Abraham  * SPDX-License-Identifier:	GPL-2.0+
7*e39448e8SThomas Abraham  */
8*e39448e8SThomas Abraham 
9*e39448e8SThomas Abraham #ifndef __CONFIG_ESPRESSO7420_H
10*e39448e8SThomas Abraham #define __CONFIG_ESPRESSO7420_H
11*e39448e8SThomas Abraham 
12*e39448e8SThomas Abraham #include <configs/exynos7420-common.h>
13*e39448e8SThomas Abraham 
14*e39448e8SThomas Abraham #define CONFIG_BOARD_COMMON
15*e39448e8SThomas Abraham 
16*e39448e8SThomas Abraham #define CONFIG_ESPRESSO7420
17*e39448e8SThomas Abraham #define CONFIG_ENV_IS_NOWHERE
18*e39448e8SThomas Abraham 
19*e39448e8SThomas Abraham #define CONFIG_SYS_SDRAM_BASE		0x40000000
20*e39448e8SThomas Abraham #define CONFIG_SYS_TEXT_BASE		0x43E00000
21*e39448e8SThomas Abraham #define CONFIG_SPL_STACK		CONFIG_IRAM_END
22*e39448e8SThomas Abraham #define CONFIG_SYS_INIT_SP_ADDR		CONFIG_IRAM_END
23*e39448e8SThomas Abraham 
24*e39448e8SThomas Abraham /* select serial console configuration */
25*e39448e8SThomas Abraham #define CONFIG_DEFAULT_CONSOLE	"console=ttySAC1,115200n8\0"
26*e39448e8SThomas Abraham 
27*e39448e8SThomas Abraham #define CONFIG_IDENT_STRING	" for ESPRESSO7420"
28*e39448e8SThomas Abraham #define CONFIG_DEFAULT_CONSOLE	"console=ttySAC1,115200n8\0"
29*e39448e8SThomas Abraham 
30*e39448e8SThomas Abraham /* DRAM Memory Banks */
31*e39448e8SThomas Abraham #define CONFIG_NR_DRAM_BANKS	8
32*e39448e8SThomas Abraham #define SDRAM_BANK_SIZE		(256UL << 20UL)	/* 256 MB */
33*e39448e8SThomas Abraham 
34*e39448e8SThomas Abraham #endif	/* __CONFIG_ESPRESSO7420_H */
35