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