cmd: mem: Remove CONFIG_SYS_MEMTEST_SCRATCH mapping
[platform/kernel/u-boot.git] / include / configs / embestmx6boards.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Eukréa Electromatique
4  * Author: Eric Bénard <eric@eukrea.com>
5  *
6  * Configuration settings for the Embest RIoTboard
7  *
8  * based on mx6*sabre*.h which are :
9  * Copyright (C) 2012 Freescale Semiconductor, Inc.
10  */
11
12 #ifndef __RIOTBOARD_CONFIG_H
13 #define __RIOTBOARD_CONFIG_H
14
15 #define CONFIG_MXC_UART_BASE            UART2_BASE
16 #define CONSOLE_DEV             "ttymxc1"
17
18 #define PHYS_SDRAM_SIZE         (1u * 1024 * 1024 * 1024)
19
20 #define CONFIG_IMX_THERMAL
21
22 /* Size of malloc() pool */
23 #define CONFIG_SYS_MALLOC_LEN           (10 * SZ_1M)
24
25 #define CONFIG_MXC_UART
26
27 /* I2C Configs */
28 #define CONFIG_SYS_I2C
29 #define CONFIG_SYS_I2C_MXC
30 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
31 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
32 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
33 #define CONFIG_SYS_I2C_SPEED            100000
34
35 /* USB Configs */
36 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
37 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
38 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
39 #define CONFIG_MXC_USB_FLAGS    0
40
41 /* MMC Configs */
42 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
43
44 #define CONFIG_FEC_MXC
45 #define IMX_FEC_BASE                    ENET_BASE_ADDR
46 #define CONFIG_FEC_XCV_TYPE             RGMII
47 #define CONFIG_ETHPRIME                 "FEC"
48 #define CONFIG_FEC_MXC_PHYADDR          4
49
50 #define CONFIG_ARP_TIMEOUT     200UL
51
52 #define CONFIG_SYS_MEMTEST_START       0x10000000
53 #define CONFIG_SYS_MEMTEST_END         0x10010000
54
55 /* Physical Memory Map */
56 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
57
58 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
59 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
60 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
61
62 #define CONFIG_SYS_INIT_SP_OFFSET \
63         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
64 #define CONFIG_SYS_INIT_SP_ADDR \
65         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
66
67 /* Environment organization */
68
69 #if defined(CONFIG_ENV_IS_IN_MMC)
70 /* RiOTboard */
71 #define CONFIG_FDTFILE  "imx6dl-riotboard.dtb"
72 #define CONFIG_SYS_FSL_USDHC_NUM        3
73 #define CONFIG_SYS_MMC_ENV_DEV          2       /* SDHC4 */
74 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
75 /* MarSBoard */
76 #define CONFIG_FDTFILE  "imx6q-marsboard.dtb"
77 #define CONFIG_SYS_FSL_USDHC_NUM        2
78 #endif
79
80 /* Framebuffer */
81 #define CONFIG_VIDEO_BMP_RLE8
82 #define CONFIG_SPLASH_SCREEN
83 #define CONFIG_SPLASH_SCREEN_ALIGN
84 #define CONFIG_BMP_16BPP
85 #define CONFIG_VIDEO_LOGO
86 #define CONFIG_VIDEO_BMP_LOGO
87 #define CONFIG_IMX_HDMI
88 #define CONFIG_IMX_VIDEO_SKIP
89
90 #include "mx6_common.h"
91
92 #ifdef CONFIG_SPL
93 #include "imx6_spl.h"
94 /* RiOTboard */
95 #define CONFIG_SYS_SPL_ARGS_ADDR 0x13000000
96 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
97 #define CONFIG_SPL_FS_LOAD_ARGS_NAME "imx6dl-riotboard.dtb"
98
99 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR        0 /* offset 69KB */
100 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR  0 /* offset 69KB */
101 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* offset 69KB */
102
103 #endif
104
105 /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
106  * 1M script, 1M pxe and the ramdisk at the end */
107 #define MEM_LAYOUT_ENV_SETTINGS \
108         "bootm_size=0x10000000\0" \
109         "kernel_addr_r=0x12000000\0" \
110         "fdt_addr_r=0x13000000\0" \
111         "scriptaddr=0x13100000\0" \
112         "pxefile_addr_r=0x13200000\0" \
113         "ramdisk_addr_r=0x13300000\0"
114
115 #define BOOT_TARGET_DEVICES(func) \
116         func(MMC, mmc, 0) \
117         func(MMC, mmc, 1) \
118         func(MMC, mmc, 2) \
119         func(USB, usb, 0) \
120         func(PXE, pxe, na) \
121         func(DHCP, dhcp, na)
122
123 #include <config_distro_bootcmd.h>
124
125 #define CONSOLE_STDIN_SETTINGS \
126         "stdin=serial\0"
127
128 #define CONSOLE_STDOUT_SETTINGS \
129         "stdout=serial\0" \
130         "stderr=serial\0"
131
132 #define CONSOLE_ENV_SETTINGS \
133         CONSOLE_STDIN_SETTINGS \
134         CONSOLE_STDOUT_SETTINGS
135
136 #define CONFIG_EXTRA_ENV_SETTINGS \
137         CONSOLE_ENV_SETTINGS \
138         MEM_LAYOUT_ENV_SETTINGS \
139         "fdtfile=" CONFIG_FDTFILE "\0" \
140         "finduuid=part uuid mmc 0:1 uuid\0" \
141         BOOTENV
142
143 #endif                         /* __RIOTBOARD_CONFIG_H */