3d79a7e43765aebed657f3a33526b1ed4bd6423e
[oweals/u-boot.git] / include / configs / mx6memcal.h
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 #include "imx6_spl.h"
15
16 #undef CONFIG_MMC
17 #undef CONFIG_SPL_MMC_SUPPORT
18 #undef CONFIG_GENERIC_MMC
19 #undef CONFIG_CMD_FUSE
20
21 #define CONFIG_SYS_MALLOC_LEN           (64 * 1024 * 1024)
22
23 #define CONFIG_MXC_UART
24 #ifdef CONFIG_SERIAL_CONSOLE_UART1
25 #if defined(CONFIG_MX6SL)
26 #define CONFIG_MXC_UART_BASE            UART1_IPS_BASE_ADDR
27 #else
28 #define CONFIG_MXC_UART_BASE            UART1_BASE
29 #endif
30 #elif defined(CONFIG_SERIAL_CONSOLE_UART2)
31 #define CONFIG_MXC_UART_BASE            UART2_BASE
32 #else
33 #error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx)
34 #endif
35 #define CONFIG_BAUDRATE                 115200
36
37 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 16)
38
39 /* Physical Memory Map */
40 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
41
42 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
43 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
44 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
45
46 #define CONFIG_SYS_INIT_SP_OFFSET \
47         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
48 #define CONFIG_SYS_INIT_SP_ADDR \
49         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
50
51 #define CONFIG_MXC_USB_PORTSC   PORT_PTS_UTMI
52
53 #endif         /* __CONFIG_H */