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