b6474fc6271aaf8f910415c097c48d4a56e92b3c
[platform/kernel/u-boot.git] / include / configs / mx6cuboxi.h
1 /*
2  * Copyright (C) 2015 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the SolidRun mx6 based boards
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8 #ifndef __MX6CUBOXI_CONFIG_H
9 #define __MX6CUBOXI_CONFIG_H
10
11 #include <config_distro_defaults.h>
12 #include "mx6_common.h"
13
14 #include "imx6_spl.h"
15
16 #define CONFIG_IMX_THERMAL
17
18 #define CONFIG_SYS_MALLOC_LEN           (10 * SZ_1M)
19 #define CONFIG_BOARD_EARLY_INIT_F
20 #define CONFIG_BOARD_LATE_INIT
21 #define CONFIG_MXC_UART
22
23 /* MMC Configs */
24 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
25
26 /* Ethernet Configuration */
27 #define CONFIG_FEC_MXC
28 #define CONFIG_MII
29 #define IMX_FEC_BASE                    ENET_BASE_ADDR
30 #define CONFIG_FEC_XCV_TYPE             RGMII
31 #define CONFIG_FEC_MXC_PHYADDR          0
32 #define CONFIG_PHYLIB
33 #define CONFIG_PHY_ATHEROS
34
35 /* Framebuffer */
36 #define CONFIG_VIDEO_IPUV3
37 #define CONFIG_IPUV3_CLK                260000000
38 #define CONFIG_CFB_CONSOLE
39 #define CONFIG_VGA_AS_SINGLE_DEVICE
40 #define CONFIG_VIDEO_BMP_RLE8
41 #define CONFIG_SPLASH_SCREEN
42 #define CONFIG_SPLASH_SCREEN_ALIGN
43 #define CONFIG_BMP_16BPP
44 #define CONFIG_VIDEO_LOGO
45 #define CONFIG_VIDEO_BMP_LOGO
46 #define CONFIG_IMX_HDMI
47 #define CONFIG_CMD_HDMIDETECT
48 #define CONFIG_IMX_VIDEO_SKIP
49
50 /* USB */
51 #define CONFIG_USB_EHCI
52 #define CONFIG_USB_EHCI_MX6
53 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
54 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
55 #define CONFIG_MXC_USB_FLAGS            0
56 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
57 #define CONFIG_USB_KEYBOARD
58 #define CONFIG_SYS_USB_EVENT_POLL
59 #define CONFIG_PREBOOT \
60         "if hdmidet; then " \
61                 "usb start; "                  \
62                 "setenv stdin  serial,usbkbd; "\
63                 "setenv stdout serial,vga; "   \
64                 "setenv stderr serial,vga; "   \
65         "else " \
66                 "setenv stdin  serial; " \
67                 "setenv stdout serial; " \
68                 "setenv stderr serial; " \
69         "fi;"
70
71 /* Command definition */
72
73 #define CONFIG_MXC_UART_BASE    UART1_BASE
74 #define CONFIG_CONSOLE_DEV      "ttymxc0"
75 #define CONFIG_SYS_FSL_USDHC_NUM        1
76 #define CONFIG_SYS_MMC_ENV_DEV          0       /* SDHC2 */
77
78 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
79 #ifndef CONFIG_SPL_BUILD
80 #define CONFIG_EXTRA_ENV_SETTINGS \
81         "fdtfile=undefined\0" \
82         "fdt_addr_r=0x18000000\0" \
83         "fdt_addr=0x18000000\0" \
84         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0"  \
85         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
86         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
87         "ramdisk_addr_r=0x13000000\0" \
88         "ramdiskaddr=0x13000000\0" \
89         "initrd_high=0xffffffff\0" \
90         "fdt_high=0xffffffff\0" \
91         "ip_dyn=yes\0" \
92         "console=" CONFIG_CONSOLE_DEV "\0" \
93         "bootm_size=0x10000000\0" \
94         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
95         "update_sd_firmware=" \
96                 "if test ${ip_dyn} = yes; then " \
97                         "setenv get_cmd dhcp; " \
98                 "else " \
99                         "setenv get_cmd tftp; " \
100                 "fi; " \
101                 "if mmc dev ${mmcdev}; then "   \
102                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
103                                 "setexpr fw_sz ${filesize} / 0x200; " \
104                                 "setexpr fw_sz ${fw_sz} + 1; "  \
105                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
106                         "fi; "  \
107                 "fi\0" \
108         "findfdt="\
109                 "if test $board_name = HUMMINGBOARD && test $board_rev = MX6Q ; then " \
110                         "setenv fdtfile imx6q-hummingboard.dtb; fi; " \
111                 "if test $board_name = HUMMINGBOARD && test $board_rev = MX6DL ; then " \
112                         "setenv fdtfile imx6dl-hummingboard.dtb; fi; " \
113                 "if test $board_name = CUBOXI && test $board_rev = MX6Q ; then " \
114                         "setenv fdtfile imx6q-cubox-i.dtb; fi; " \
115                 "if test $board_name = CUBOXI && test $board_rev = MX6DL ; then " \
116                         "setenv fdtfile imx6dl-cubox-i.dtb; fi; " \
117                 "if test $fdtfile = undefined; then " \
118                         "echo WARNING: Could not determine dtb to use; fi; \0" \
119         BOOTENV
120
121 #define CONFIG_BOOTCOMMAND \
122         "run findfdt; " \
123         "run distro_bootcmd"
124
125 #define BOOT_TARGET_DEVICES(func) \
126         func(MMC, mmc, 0) \
127         func(USB, usb, 0) \
128         func(PXE, pxe, na) \
129         func(DHCP, dhcp, na)
130
131 #include <config_distro_bootcmd.h>
132
133 #else
134 #define CONFIG_EXTRA_ENV_SETTINGS
135 #endif /* CONFIG_SPL_BUILD */
136
137 /* Physical Memory Map */
138 #define CONFIG_NR_DRAM_BANKS           1
139 #define CONFIG_SYS_SDRAM_BASE          MMDC0_ARB_BASE_ADDR
140 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
141 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
142
143 #define CONFIG_SYS_INIT_SP_OFFSET \
144         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
145 #define CONFIG_SYS_INIT_SP_ADDR \
146         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
147
148 /* Environment organization */
149 #define CONFIG_ENV_SIZE                 (8 * 1024)
150 #define CONFIG_ENV_IS_IN_MMC
151 #define CONFIG_ENV_OFFSET               (8 * 64 * 1024)
152
153 #endif                         /* __MX6CUBOXI_CONFIG_H */