]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/wandboard.h
8fb0abc915a0d1bcc4189f3fd7e742ff3eeda74f
[people/ms/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_CMD_I2C
39 #define CONFIG_SYS_I2C
40 #define CONFIG_SYS_I2C_MXC
41 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
42 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
43 #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
44 #define CONFIG_SYS_I2C_SPEED 100000
45
46 /* MMC Configuration */
47 #define CONFIG_SYS_FSL_USDHC_NUM 2
48 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
49
50 /* USB Configs */
51 #define CONFIG_CMD_USB
52 #define CONFIG_USB_EHCI
53 #define CONFIG_USB_EHCI_MX6
54 #define CONFIG_USB_STORAGE
55 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
56 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
57 #define CONFIG_MXC_USB_FLAGS 0
58
59 /* Ethernet Configuration */
60 #define CONFIG_CMD_PING
61 #define CONFIG_CMD_DHCP
62 #define CONFIG_CMD_MII
63 #define CONFIG_FEC_MXC
64 #define CONFIG_MII
65 #define IMX_FEC_BASE ENET_BASE_ADDR
66 #define CONFIG_FEC_XCV_TYPE RGMII
67 #define CONFIG_ETHPRIME "FEC"
68 #define CONFIG_FEC_MXC_PHYADDR 1
69 #define CONFIG_PHYLIB
70 #define CONFIG_PHY_ATHEROS
71
72 /* Framebuffer */
73 #define CONFIG_VIDEO
74 #define CONFIG_VIDEO_IPUV3
75 #define CONFIG_CFB_CONSOLE
76 #define CONFIG_VGA_AS_SINGLE_DEVICE
77 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
78 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
79 #define CONFIG_VIDEO_BMP_RLE8
80 #define CONFIG_SPLASH_SCREEN
81 #define CONFIG_SPLASH_SCREEN_ALIGN
82 #define CONFIG_BMP_16BPP
83 #define CONFIG_VIDEO_LOGO
84 #define CONFIG_VIDEO_BMP_LOGO
85 #define CONFIG_IPUV3_CLK 260000000
86 #define CONFIG_CMD_HDMIDETECT
87 #define CONFIG_IMX_HDMI
88 #define CONFIG_IMX_VIDEO_SKIP
89
90 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
91 #define CONFIG_EXTRA_ENV_SETTINGS \
92 "console=ttymxc0,115200\0" \
93 "splashpos=m,m\0" \
94 "fdtfile=undefined\0" \
95 "fdt_high=0xffffffff\0" \
96 "initrd_high=0xffffffff\0" \
97 "fdt_addr_r=0x18000000\0" \
98 "fdt_addr=0x18000000\0" \
99 "ip_dyn=yes\0" \
100 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
101 "update_sd_firmware_filename=u-boot.imx\0" \
102 "update_sd_firmware=" \
103 "if test ${ip_dyn} = yes; then " \
104 "setenv get_cmd dhcp; " \
105 "else " \
106 "setenv get_cmd tftp; " \
107 "fi; " \
108 "if mmc dev ${mmcdev}; then " \
109 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
110 "setexpr fw_sz ${filesize} / 0x200; " \
111 "setexpr fw_sz ${fw_sz} + 1; " \
112 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
113 "fi; " \
114 "fi\0" \
115 "videoargs=" \
116 "setenv nextcon 0; " \
117 "if hdmidet; then " \
118 "setenv bootargs ${bootargs} " \
119 "video=mxcfb${nextcon}:dev=hdmi,1280x720M@60," \
120 "if=RGB24; " \
121 "setenv fbmen fbmem=28M; " \
122 "setexpr nextcon ${nextcon} + 1; " \
123 "else " \
124 "echo - no HDMI monitor;" \
125 "fi; " \
126 "i2c dev 1; " \
127 "if i2c probe 0x10; then " \
128 "setenv bootargs ${bootargs} " \
129 "video=mxcfb${nextcon}:dev=lcd,800x480@60," \
130 "if=RGB666,bpp=32; " \
131 "if test 0 -eq ${nextcon}; then " \
132 "setenv fbmem fbmem=10M; " \
133 "else " \
134 "setenv fbmem ${fbmem},10M; " \
135 "fi; " \
136 "setexpr nextcon ${nextcon} + 1; " \
137 "else " \
138 "echo '- no FWBADAPT-7WVGA-LCD-F07A-0102 display';" \
139 "fi; " \
140 "setenv bootargs ${bootargs} ${fbmem}\0" \
141 "findfdt="\
142 "if test $board_name = C1 && test $board_rev = MX6Q ; then " \
143 "setenv fdtfile imx6q-wandboard.dtb; fi; " \
144 "if test $board_name = C1 && test $board_rev = MX6DL ; then " \
145 "setenv fdtfile imx6dl-wandboard.dtb; fi; " \
146 "if test $board_name = B1 && test $board_rev = MX6Q ; then " \
147 "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \
148 "if test $board_name = B1 && test $board_rev = MX6DL ; then " \
149 "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \
150 "if test $fdtfile = undefined; then " \
151 "echo WARNING: Could not determine dtb to use; fi; \0" \
152 "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
153 "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
154 "ramdisk_addr_r=0x13000000\0" \
155 "ramdiskaddr=0x13000000\0" \
156 "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
157 BOOTENV
158
159 #define BOOT_TARGET_DEVICES(func) \
160 func(MMC, mmc, 0) \
161 func(MMC, mmc, 1) \
162 func(USB, usb, 0) \
163 func(PXE, pxe, na) \
164 func(DHCP, dhcp, na)
165
166 #define CONFIG_BOOTCOMMAND \
167 "run findfdt; " \
168 "run distro_bootcmd"
169
170 #include <config_distro_bootcmd.h>
171
172 /* Physical Memory Map */
173 #define CONFIG_NR_DRAM_BANKS 1
174 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
175
176 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
177 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
178 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
179
180 #define CONFIG_SYS_INIT_SP_OFFSET \
181 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
182 #define CONFIG_SYS_INIT_SP_ADDR \
183 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
184
185 /* Environment organization */
186 #define CONFIG_ENV_SIZE (8 * 1024)
187
188 #define CONFIG_ENV_IS_IN_MMC
189 #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
190 #define CONFIG_SYS_MMC_ENV_DEV 0
191
192 #endif /* __CONFIG_H * */