Convert CONFIG_LBA48 et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / mx6cuboxi.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2015 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for the SolidRun mx6 based boards
6  */
7 #ifndef __MX6CUBOXI_CONFIG_H
8 #define __MX6CUBOXI_CONFIG_H
9
10 #include <linux/stringify.h>
11
12 #include "mx6_common.h"
13
14 #include "imx6_spl.h"
15
16 /* MMC Configs */
17 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
18
19 /* Framebuffer */
20 #define CONFIG_IMX_HDMI
21 #define CONFIG_IMX_VIDEO_SKIP
22
23 /* USB */
24 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
25
26 /* Command definition */
27
28 #define CONFIG_MXC_UART_BASE    UART1_BASE
29
30 #ifndef CONFIG_SPL_BUILD
31 #define CONFIG_EXTRA_ENV_SETTINGS \
32         "som_rev=undefined\0" \
33         "has_emmc=undefined\0" \
34         "fdtfile=undefined\0" \
35         "fdt_addr_r=0x18000000\0" \
36         "fdt_addr=0x18000000\0" \
37         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"  \
38         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
39         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
40         "ramdisk_addr_r=0x13000000\0" \
41         "ramdiskaddr=0x13000000\0" \
42         "initrd_high=0xffffffff\0" \
43         "ip_dyn=yes\0" \
44         "console=ttymxc0\0" \
45         "bootm_size=0x10000000\0" \
46         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
47         "finduuid=part uuid mmc 1:1 uuid\0" \
48         "update_sd_firmware=" \
49                 "if test ${ip_dyn} = yes; then " \
50                         "setenv get_cmd dhcp; " \
51                 "else " \
52                         "setenv get_cmd tftp; " \
53                 "fi; " \
54                 "if mmc dev ${mmcdev}; then "   \
55                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
56                                 "setexpr fw_sz ${filesize} / 0x200; " \
57                                 "setexpr fw_sz ${fw_sz} + 1; "  \
58                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
59                         "fi; "  \
60                 "fi\0" \
61         "findfdt="\
62                 "if test ${board_rev} = MX6Q; then " \
63                         "setenv fdtprefix imx6q; fi; " \
64                 "if test ${board_rev} = MX6DL; then " \
65                         "setenv fdtprefix imx6dl; fi; " \
66                 "if test ${som_rev} = V15; then " \
67                         "setenv fdtsuffix -som-v15; fi; " \
68                 "if test ${has_emmc} = yes; then " \
69                         "setenv emmcsuffix -emmc; fi; " \
70                 "if test ${board_name} = HUMMINGBOARD2 ; then " \
71                         "setenv fdtfile ${fdtprefix}-hummingboard2${emmcsuffix}${fdtsuffix}.dtb; fi; " \
72                 "if test ${board_name} = HUMMINGBOARD ; then " \
73                         "setenv fdtfile ${fdtprefix}-hummingboard${emmcsuffix}${fdtsuffix}.dtb; fi; " \
74                 "if test ${board_name} = CUBOXI ; then " \
75                         "setenv fdtfile ${fdtprefix}-cubox-i${emmcsuffix}${fdtsuffix}.dtb; fi; " \
76                 "if test ${fdtfile} = undefined; then " \
77                         "echo WARNING: Could not determine dtb to use; fi; \0" \
78         BOOTENV
79
80 #define BOOT_TARGET_DEVICES(func) \
81         func(MMC, mmc, 1) \
82         func(MMC, mmc, 2) \
83         func(SATA, sata, 0) \
84         func(USB, usb, 0) \
85         func(PXE, pxe, na) \
86         func(DHCP, dhcp, na)
87
88 #include <config_distro_bootcmd.h>
89
90 #else
91 #define CONFIG_EXTRA_ENV_SETTINGS
92 #endif /* CONFIG_SPL_BUILD */
93
94 /* Physical Memory Map */
95 #define CONFIG_SYS_SDRAM_BASE          MMDC0_ARB_BASE_ADDR
96 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
97 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
98
99 /* Environment organization */
100
101 #endif                         /* __MX6CUBOXI_CONFIG_H */