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