1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2010-2018 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for the virtual mx6memcal board.
6  */
7 
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10 
11 /* SPL */
12 
13 #include "mx6_common.h"
14 
15 #ifdef CONFIG_SERIAL_CONSOLE_UART1
16 #if defined(CONFIG_MX6SL)
17 #define CFG_MXC_UART_BASE		UART1_IPS_BASE_ADDR
18 #else
19 #define CFG_MXC_UART_BASE		UART1_BASE
20 #endif
21 #elif defined(CONFIG_SERIAL_CONSOLE_UART2)
22 #define CFG_MXC_UART_BASE		UART2_BASE
23 #else
24 #error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx)
25 #endif
26 
27 /* Physical Memory Map */
28 #define PHYS_SDRAM		       MMDC0_ARB_BASE_ADDR
29 
30 #define CFG_SYS_SDRAM_BASE	       PHYS_SDRAM
31 #define CFG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
32 #define CFG_SYS_INIT_RAM_SIZE       IRAM_SIZE
33 
34 
35 #endif	       /* __CONFIG_H */
36