]> git.sur5r.net Git - u-boot/blob - include/configs/exynos5250-dt.h
Exynos5: Config: Increase SPL footprint for Exynos5420
[u-boot] / include / configs / exynos5250-dt.h
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-dt.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 /* USB */
26 #define CONFIG_CMD_USB
27 #define CONFIG_USB_XHCI
28 #define CONFIG_USB_XHCI_EXYNOS
29 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS      2
30 #define CONFIG_USB_STORAGE
31
32 /* USB boot mode */
33 #define CONFIG_USB_BOOTING
34 #define EXYNOS_COPY_USB_FNPTR_ADDR      0x02020070
35 #define EXYNOS_USB_SECONDARY_BOOT       0xfeed0002
36 #define EXYNOS_IRAM_SECONDARY_BASE      0x02020018
37
38 #define CONFIG_SPL_TEXT_BASE    0x02023400
39
40 #define CONFIG_BOOTCOMMAND      "mmc read 40007000 451 2000; bootm 40007000"
41
42 #define CONFIG_SYS_PROMPT               "SMDK5250 # "
43 #define CONFIG_IDENT_STRING             " for SMDK5250"
44
45 #define CONFIG_IRAM_STACK       0x02050000
46
47 #define CONFIG_SYS_INIT_SP_ADDR CONFIG_IRAM_STACK
48
49 /* PMIC */
50 #define CONFIG_POWER_MAX77686
51
52 /* Sound */
53 #define CONFIG_CMD_SOUND
54 #ifdef CONFIG_CMD_SOUND
55 #define CONFIG_SOUND
56 #define CONFIG_I2S_SAMSUNG
57 #define CONFIG_I2S
58 #define CONFIG_SOUND_MAX98095
59 #define CONFIG_SOUND_WM8994
60 #endif
61
62 /* I2C */
63 #define CONFIG_MAX_I2C_NUM      8
64
65 /* Display */
66 #define CONFIG_LCD
67 #ifdef CONFIG_LCD
68 #define CONFIG_EXYNOS_FB
69 #define CONFIG_EXYNOS_DP
70 #define LCD_XRES                        2560
71 #define LCD_YRES                        1600
72 #define LCD_BPP                 LCD_COLOR16
73 #endif
74 #endif  /* __CONFIG_5250_H */