configs: Re-sync almost all of cmd/Kconfig
[platform/kernel/u-boot.git] / include / configs / wandboard.h
1 /*
2  * Copyright (C) 2013 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Wandboard.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <config_distro_defaults.h>
13 #include "mx6_common.h"
14
15 #define CONFIG_SPL_LIBCOMMON_SUPPORT
16 #define CONFIG_SPL_MMC_SUPPORT
17 #include "imx6_spl.h"
18
19 #define MACH_TYPE_WANDBOARD             4412
20 #define CONFIG_MACH_TYPE                MACH_TYPE_WANDBOARD
21
22 /* Size of malloc() pool */
23 #define CONFIG_SYS_MALLOC_LEN           (10 * SZ_1M)
24
25 #define CONFIG_BOARD_EARLY_INIT_F
26 #define CONFIG_BOARD_LATE_INIT
27
28 #define CONFIG_MXC_UART
29 #define CONFIG_MXC_UART_BASE            UART1_BASE
30
31 /* Command definition */
32 #define CONFIG_CMD_BMODE
33
34 #define CONFIG_SYS_MEMTEST_START        0x10000000
35 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M)
36
37 /* I2C Configs */
38 #define CONFIG_SYS_I2C
39 #define CONFIG_SYS_I2C_MXC
40 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
41 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
42 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
43 #define CONFIG_SYS_I2C_SPEED            100000
44
45 /* MMC Configuration */
46 #define CONFIG_SYS_FSL_USDHC_NUM        2
47 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
48
49 /* USB Configs */
50 #define CONFIG_USB_EHCI
51 #define CONFIG_USB_EHCI_MX6
52 #define CONFIG_USB_STORAGE
53 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
54 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
55 #define CONFIG_MXC_USB_FLAGS            0
56
57 /* Ethernet Configuration */
58 #define CONFIG_CMD_MII
59 #define CONFIG_FEC_MXC
60 #define CONFIG_MII
61 #define IMX_FEC_BASE                    ENET_BASE_ADDR
62 #define CONFIG_FEC_XCV_TYPE             RGMII
63 #define CONFIG_ETHPRIME                 "FEC"
64 #define CONFIG_FEC_MXC_PHYADDR          1
65 #define CONFIG_PHYLIB
66 #define CONFIG_PHY_ATHEROS
67
68 /* Framebuffer */
69 #define CONFIG_VIDEO
70 #define CONFIG_VIDEO_IPUV3
71 #define CONFIG_CFB_CONSOLE
72 #define CONFIG_VGA_AS_SINGLE_DEVICE
73 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
74 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
75 #define CONFIG_VIDEO_BMP_RLE8
76 #define CONFIG_SPLASH_SCREEN
77 #define CONFIG_SPLASH_SCREEN_ALIGN
78 #define CONFIG_BMP_16BPP
79 #define CONFIG_VIDEO_LOGO
80 #define CONFIG_VIDEO_BMP_LOGO
81 #define CONFIG_IPUV3_CLK 260000000
82 #define CONFIG_CMD_HDMIDETECT
83 #define CONFIG_IMX_HDMI
84 #define CONFIG_IMX_VIDEO_SKIP
85
86 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
87 #define CONFIG_EXTRA_ENV_SETTINGS \
88         "console=ttymxc0,115200\0" \
89         "splashpos=m,m\0" \
90         "fdtfile=undefined\0" \
91         "fdt_high=0xffffffff\0" \
92         "initrd_high=0xffffffff\0" \
93         "fdt_addr_r=0x18000000\0" \
94         "fdt_addr=0x18000000\0" \
95         "ip_dyn=yes\0" \
96         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
97         "update_sd_firmware_filename=u-boot.imx\0" \
98         "update_sd_firmware=" \
99                 "if test ${ip_dyn} = yes; then " \
100                         "setenv get_cmd dhcp; " \
101                 "else " \
102                         "setenv get_cmd tftp; " \
103                 "fi; " \
104                 "if mmc dev ${mmcdev}; then "   \
105                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
106                                 "setexpr fw_sz ${filesize} / 0x200; " \
107                                 "setexpr fw_sz ${fw_sz} + 1; "  \
108                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
109                         "fi; "  \
110                 "fi\0" \
111         "videoargs=" \
112                 "setenv nextcon 0; " \
113                 "if hdmidet; then " \
114                         "setenv bootargs ${bootargs} " \
115                                 "video=mxcfb${nextcon}:dev=hdmi,1280x720M@60," \
116                                         "if=RGB24; " \
117                         "setenv fbmen fbmem=28M; " \
118                         "setexpr nextcon ${nextcon} + 1; " \
119                 "else " \
120                         "echo - no HDMI monitor;" \
121                 "fi; " \
122                 "i2c dev 1; " \
123                 "if i2c probe 0x10; then " \
124                         "setenv bootargs ${bootargs} " \
125                                 "video=mxcfb${nextcon}:dev=lcd,800x480@60," \
126                                         "if=RGB666,bpp=32; " \
127                         "if test 0 -eq ${nextcon}; then " \
128                                 "setenv fbmem fbmem=10M; " \
129                         "else " \
130                                 "setenv fbmem ${fbmem},10M; " \
131                         "fi; " \
132                         "setexpr nextcon ${nextcon} + 1; " \
133                 "else " \
134                         "echo '- no FWBADAPT-7WVGA-LCD-F07A-0102 display';" \
135                 "fi; " \
136                 "setenv bootargs ${bootargs} ${fbmem}\0" \
137         "findfdt="\
138                 "if test $board_name = C1 && test $board_rev = MX6Q ; then " \
139                         "setenv fdtfile imx6q-wandboard.dtb; fi; " \
140                 "if test $board_name = C1 && test $board_rev = MX6DL ; then " \
141                         "setenv fdtfile imx6dl-wandboard.dtb; fi; " \
142                 "if test $board_name = B1 && test $board_rev = MX6Q ; then " \
143                         "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \
144                 "if test $board_name = B1 && test $board_rev = MX6DL ; then " \
145                         "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \
146                 "if test $fdtfile = undefined; then " \
147                         "echo WARNING: Could not determine dtb to use; fi; \0" \
148         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
149         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
150         "ramdisk_addr_r=0x13000000\0" \
151         "ramdiskaddr=0x13000000\0" \
152         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
153         BOOTENV
154
155 #define BOOT_TARGET_DEVICES(func) \
156         func(MMC, mmc, 0) \
157         func(MMC, mmc, 1) \
158         func(USB, usb, 0) \
159         func(PXE, pxe, na) \
160         func(DHCP, dhcp, na)
161
162 #define CONFIG_BOOTCOMMAND \
163            "run findfdt; " \
164            "run distro_bootcmd"
165
166 #include <config_distro_bootcmd.h>
167
168 /* Physical Memory Map */
169 #define CONFIG_NR_DRAM_BANKS            1
170 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
171
172 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
173 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
174 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
175
176 #define CONFIG_SYS_INIT_SP_OFFSET \
177         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
178 #define CONFIG_SYS_INIT_SP_ADDR \
179         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
180
181 /* Environment organization */
182 #define CONFIG_ENV_SIZE                 (8 * 1024)
183
184 #define CONFIG_ENV_IS_IN_MMC
185 #define CONFIG_ENV_OFFSET               (6 * 64 * 1024)
186 #define CONFIG_SYS_MMC_ENV_DEV          0
187
188 #endif                         /* __CONFIG_H * */