1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2010-2018 Freescale Semiconductor, Inc.
5 * Configuration settings for the virtual mx6memcal board.
13 #include "mx6_common.h"
16 #define CONFIG_SYS_MALLOC_LEN (64 * 1024 * 1024)
18 #ifdef CONFIG_SERIAL_CONSOLE_UART1
19 #if defined(CONFIG_MX6SL)
20 #define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR
22 #define CONFIG_MXC_UART_BASE UART1_BASE
24 #elif defined(CONFIG_SERIAL_CONSOLE_UART2)
25 #define CONFIG_MXC_UART_BASE UART2_BASE
27 #error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx)
30 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 16)
32 /* Physical Memory Map */
33 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
35 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
36 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
37 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
39 #define CONFIG_SYS_INIT_SP_OFFSET \
40 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
41 #define CONFIG_SYS_INIT_SP_ADDR \
42 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
44 #define CONFIG_MXC_USB_PORTSC PORT_PTS_UTMI
46 #endif /* __CONFIG_H */