xref: /rk3399_rockchip-uboot/include/configs/exynos5250-common.h (revision 6bd7be278256c1e66a34c78bbe059584ba8cd9f1)
1 
2 /*
3  * Copyright (C) 2012 Samsung Electronics
4  *
5  * Configuration settings for the SAMSUNG EXYNOS5250 board.
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef __CONFIG_5250_H
11 #define __CONFIG_5250_H
12 
13 #include <configs/exynos5-common.h>
14 #define CONFIG_EXYNOS5250
15 
16 #define CONFIG_SYS_SDRAM_BASE		0x40000000
17 #define CONFIG_SYS_TEXT_BASE		0x43E00000
18 
19 /* MACH_TYPE_SMDK5250 macro will be removed once added to mach-types */
20 #define MACH_TYPE_SMDK5250		3774
21 #define CONFIG_MACH_TYPE		MACH_TYPE_SMDK5250
22 
23 #define CONFIG_SPL_MAX_FOOTPRINT	(14 * 1024)
24 
25 #define CONFIG_SPL_TEXT_BASE	0x02023400
26 
27 #define CONFIG_IRAM_STACK	0x02050000
28 
29 #define CONFIG_SYS_INIT_SP_ADDR	CONFIG_IRAM_STACK
30 
31 /* Sound */
32 #ifdef CONFIG_CMD_SOUND
33 #define CONFIG_SOUND_MAX98095
34 #define CONFIG_SOUND_WM8994
35 #endif
36 
37 /* I2C */
38 #define CONFIG_MAX_I2C_NUM	8
39 
40 /* Display */
41 #define CONFIG_LCD
42 #ifdef CONFIG_LCD
43 #define CONFIG_EXYNOS_FB
44 #define CONFIG_EXYNOS_DP
45 #define LCD_BPP			LCD_COLOR16
46 #endif
47 
48 /* DRAM Memory Banks */
49 #define CONFIG_NR_DRAM_BANKS	8
50 #define SDRAM_BANK_SIZE		(256UL << 20UL)	/* 256 MB */
51 
52 #endif  /* __CONFIG_5250_H */
53