global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
[platform/kernel/u-boot.git] / include / configs / imx6dl-mamoj.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
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>
6  *
7  * Configuration settings for the BTicion i.MX6DL Mamoj board.
8  */
9
10 #ifndef __IMX6DL_MAMOJ_CONFIG_H
11 #define __IMX6DL_MAMOJ_CONFIG_H
12
13 #include <linux/sizes.h>
14 #include "mx6_common.h"
15
16 /* Total Size of Environment Sector */
17
18 /* Environment */
19 #ifndef CONFIG_ENV_IS_NOWHERE
20 /* Environment in MMC */
21 #endif
22
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" \
30         BOOTENV
31
32 #define BOOT_TARGET_DEVICES(func) \
33         func(MMC, mmc, 2)
34
35 #include <config_distro_bootcmd.h>
36
37 /* UART */
38 #define CONFIG_MXC_UART_BASE            UART3_BASE
39
40 /* MMC */
41
42 /* Ethernet */
43 #define CONFIG_FEC_MXC_PHYADDR          1
44
45 /* USB */
46 #define CONFIG_MXC_USB_PORTSC                   (PORT_PTS_UTMI | PORT_PTS_PTW)
47 #define CONFIG_MXC_USB_FLAGS                    0
48
49 /* Falcon */
50
51 /* MMC support: args@1MB kernel@2MB */
52
53 /* Miscellaneous configurable options */
54
55 /* Physical Memory Map */
56 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
57
58 #define CFG_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 #endif /* __IMX6DL_MAMOJ_CONFIG_H */