1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2018 Simone CIANNI <simone.cianni@bticino.it>
4 * Copyright (C) 2018 Raffaele RECALCATI <raffaele.recalcati@bticino.it>
5 * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
7 * Configuration settings for the BTicion i.MX6DL Mamoj board.
10 #ifndef __IMX6DL_MAMOJ_CONFIG_H
11 #define __IMX6DL_MAMOJ_CONFIG_H
13 #include <linux/sizes.h>
14 #include "mx6_common.h"
16 /* Total Size of Environment Sector */
19 #ifndef CONFIG_ENV_IS_NOWHERE
20 /* Environment in MMC */
23 #define CONFIG_EXTRA_ENV_SETTINGS \
24 "scriptaddr=0x14000000\0" \
25 "fdt_addr_r=0x13000000\0" \
26 "kernel_addr_r=0x10008000\0" \
27 "fdt_high=0xffffffff\0" \
28 "dfu_alt_info_spl=spl raw 0x2 0x400\0" \
29 "dfu_alt_info_uboot=u-boot raw 0x8a 0x11400\0" \
32 #define BOOT_TARGET_DEVICES(func) \
35 #include <config_distro_bootcmd.h>
38 #define CONFIG_MXC_UART_BASE UART3_BASE
43 #define CONFIG_FEC_MXC_PHYADDR 1
46 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
47 #define CONFIG_MXC_USB_FLAGS 0
51 /* MMC support: args@1MB kernel@2MB */
53 /* Miscellaneous configurable options */
55 /* Physical Memory Map */
56 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
58 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM
59 #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
60 #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
62 #endif /* __IMX6DL_MAMOJ_CONFIG_H */