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