12741c08de58865c2479fa1e4d30058ee12c0414
[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 /* MMC Configs */
15 #define CFG_SYS_FSL_ESDHC_ADDR  USDHC2_BASE_ADDR
16
17 /* Framebuffer */
18 #define CONFIG_IMX_HDMI
19 #define CONFIG_IMX_VIDEO_SKIP
20
21 /* USB */
22 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
23
24 /* Command definition */
25
26 #define CONFIG_MXC_UART_BASE    UART1_BASE
27
28 #define CONFIG_EXTRA_ENV_SETTINGS \
29         "som_rev=undefined\0" \
30         "has_emmc=undefined\0" \
31         "fdtfile=undefined\0" \
32         "fdt_addr_r=0x18000000\0" \
33         "fdt_addr=0x18000000\0" \
34         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"  \
35         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
36         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
37         "ramdisk_addr_r=0x13000000\0" \
38         "ramdiskaddr=0x13000000\0" \
39         "initrd_high=0xffffffff\0" \
40         "ip_dyn=yes\0" \
41         "console=ttymxc0\0" \
42         "bootm_size=0x10000000\0" \
43         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
44         "finduuid=part uuid mmc 1:1 uuid\0" \
45         "update_sd_firmware=" \
46                 "if test ${ip_dyn} = yes; then " \
47                         "setenv get_cmd dhcp; " \
48                 "else " \
49                         "setenv get_cmd tftp; " \
50                 "fi; " \
51                 "if mmc dev ${mmcdev}; then "   \
52                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
53                                 "setexpr fw_sz ${filesize} / 0x200; " \
54                                 "setexpr fw_sz ${fw_sz} + 1; "  \
55                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
56                         "fi; "  \
57                 "fi\0" \
58         "findfdt="\
59                 "if test ${board_rev} = MX6Q; then " \
60                         "setenv fdtprefix imx6q; fi; " \
61                 "if test ${board_rev} = MX6DL; then " \
62                         "setenv fdtprefix imx6dl; fi; " \
63                 "if test ${som_rev} = V15; then " \
64                         "setenv fdtsuffix -som-v15; fi; " \
65                 "if test ${has_emmc} = yes; then " \
66                         "setenv emmcsuffix -emmc; fi; " \
67                 "if test ${board_name} = HUMMINGBOARD2 ; then " \
68                         "setenv fdtfile ${fdtprefix}-hummingboard2${emmcsuffix}${fdtsuffix}.dtb; fi; " \
69                 "if test ${board_name} = HUMMINGBOARD ; then " \
70                         "setenv fdtfile ${fdtprefix}-hummingboard${emmcsuffix}${fdtsuffix}.dtb; fi; " \
71                 "if test ${board_name} = CUBOXI ; then " \
72                         "setenv fdtfile ${fdtprefix}-cubox-i${emmcsuffix}${fdtsuffix}.dtb; fi; " \
73                 "if test ${fdtfile} = undefined; then " \
74                         "echo WARNING: Could not determine dtb to use; fi; \0" \
75         BOOTENV
76
77 #define BOOT_TARGET_DEVICES(func) \
78         func(MMC, mmc, 1) \
79         func(MMC, mmc, 2) \
80         func(SATA, sata, 0) \
81         func(USB, usb, 0) \
82         func(PXE, pxe, na) \
83         func(DHCP, dhcp, na)
84
85 #include <config_distro_bootcmd.h>
86
87 /* Physical Memory Map */
88 #define CFG_SYS_SDRAM_BASE          MMDC0_ARB_BASE_ADDR
89 #define CFG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
90 #define CFG_SYS_INIT_RAM_SIZE       IRAM_SIZE
91
92 /* Environment organization */
93
94 #endif                         /* __MX6CUBOXI_CONFIG_H */