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 /* USB */ 26 #define CONFIG_CMD_USB 27 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2 28 #define CONFIG_USB_STORAGE 29 30 #define CONFIG_SPL_TEXT_BASE 0x02023400 31 32 #define CONFIG_IRAM_STACK 0x02050000 33 34 #define CONFIG_SYS_INIT_SP_ADDR CONFIG_IRAM_STACK 35 36 /* PMIC */ 37 #define CONFIG_POWER_MAX77686 38 39 /* Sound */ 40 #define CONFIG_CMD_SOUND 41 #ifdef CONFIG_CMD_SOUND 42 #define CONFIG_SOUND 43 #define CONFIG_I2S_SAMSUNG 44 #define CONFIG_I2S 45 #define CONFIG_SOUND_MAX98095 46 #define CONFIG_SOUND_WM8994 47 #endif 48 49 /* I2C */ 50 #define CONFIG_MAX_I2C_NUM 8 51 52 /* Display */ 53 #define CONFIG_LCD 54 #ifdef CONFIG_LCD 55 #define CONFIG_EXYNOS_FB 56 #define CONFIG_EXYNOS_DP 57 #define LCD_BPP LCD_COLOR16 58 #endif 59 60 /* DRAM Memory Banks */ 61 #define CONFIG_NR_DRAM_BANKS 8 62 #define SDRAM_BANK_SIZE (256UL << 20UL) /* 256 MB */ 63 64 #endif /* __CONFIG_5250_H */ 65