1 /* 2 * Copyright (C) 2012 Samsung Electronics 3 * 4 * Configuration settings for the SAMSUNG SMDK5250 board. 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef __CONFIG_SMDK_H 10 #define __CONFIG_SMDK_H 11 12 #define CONFIG_ENV_IS_IN_SPI_FLASH 13 #define CONFIG_SPI_FLASH 14 #define CONFIG_ENV_SPI_BASE 0x12D30000 15 #define FLASH_SIZE (0x4 << 20) 16 #define CONFIG_ENV_OFFSET (FLASH_SIZE - CONFIG_BL2_SIZE) 17 #define CONFIG_SPI_BOOTING 18 19 #include <configs/exynos5250-common.h> 20 21 /* PMIC */ 22 #define CONFIG_POWER_MAX77686 23 24 #define CONFIG_BOARD_COMMON 25 #define CONFIG_ARCH_EARLY_INIT_R 26 27 #define CONFIG_USB_XHCI 28 #define CONFIG_USB_XHCI_EXYNOS 29 30 #define CONFIG_SYS_PROMPT "SMDK5250 # " 31 #define CONFIG_IDENT_STRING " for SMDK5250" 32 33 /* Miscellaneous configurable options */ 34 #define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0" 35 36 #endif /* __CONFIG_SMDK_H */ 37