1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2014 Eukréa Electromatique
4 * Author: Eric Bénard <eric@eukrea.com>
6 * Configuration settings for the Embest RIoTboard
8 * based on mx6*sabre*.h which are :
9 * Copyright (C) 2012 Freescale Semiconductor, Inc.
12 #ifndef __RIOTBOARD_CONFIG_H
13 #define __RIOTBOARD_CONFIG_H
15 #define CONFIG_MXC_UART_BASE UART2_BASE
16 #define CONSOLE_DEV "ttymxc1"
18 #define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024)
21 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
22 #define CONFIG_MXC_USB_FLAGS 0
25 #define CFG_SYS_FSL_ESDHC_ADDR 0
27 /* Physical Memory Map */
28 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
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
34 /* Environment organization */
36 #if defined(CONFIG_ENV_IS_IN_MMC)
38 #define CONFIG_FDTFILE "imx6dl-riotboard.dtb"
39 #define CFG_SYS_FSL_USDHC_NUM 3
40 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
42 #define CONFIG_FDTFILE "imx6q-marsboard.dtb"
43 #define CFG_SYS_FSL_USDHC_NUM 2
47 #define CONFIG_IMX_HDMI
48 #define CONFIG_IMX_VIDEO_SKIP
50 #include "mx6_common.h"
52 /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
53 * 1M script, 1M pxe and the ramdisk at the end */
54 #define MEM_LAYOUT_ENV_SETTINGS \
55 "bootm_size=0x10000000\0" \
56 "kernel_addr_r=0x12000000\0" \
57 "fdt_addr_r=0x13000000\0" \
58 "scriptaddr=0x13100000\0" \
59 "pxefile_addr_r=0x13200000\0" \
60 "ramdisk_addr_r=0x13300000\0"
62 #define BOOT_TARGET_DEVICES(func) \
70 #include <config_distro_bootcmd.h>
72 #define CONSOLE_STDIN_SETTINGS \
75 #define CONSOLE_STDOUT_SETTINGS \
79 #define CONSOLE_ENV_SETTINGS \
80 CONSOLE_STDIN_SETTINGS \
81 CONSOLE_STDOUT_SETTINGS
83 #define CONFIG_EXTRA_ENV_SETTINGS \
84 CONSOLE_ENV_SETTINGS \
85 MEM_LAYOUT_ENV_SETTINGS \
86 "fdtfile=" CONFIG_FDTFILE "\0" \
87 "finduuid=part uuid mmc 0:1 uuid\0" \
90 #endif /* __RIOTBOARD_CONFIG_H */