]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/apalis_imx6.h
Kconfig: Finish migration of hashing commands
[people/ms/u-boot.git] / include / configs / apalis_imx6.h
1 /*
2 * Copyright 2013-2015 Toradex, Inc.
3 *
4 * Configuration settings for the Toradex Apalis iMX6
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include "mx6_common.h"
13
14 #undef CONFIG_DISPLAY_BOARDINFO
15 #define CONFIG_DISPLAY_BOARDINFO_LATE /* Calls show_board_info() */
16
17 #define CONFIG_MACH_TYPE 4886
18
19 #define CONFIG_SYS_GENERIC_BOARD
20
21 #include <asm/arch/imx-regs.h>
22 #include <asm/imx-common/gpio.h>
23
24 #ifdef CONFIG_SPL
25 #include "imx6_spl.h"
26 #define CONFIG_SPL_PAD_TO 0x11000 /* 4k IVT/DCD, 64k SPL */
27 #endif
28
29 #define CONFIG_CMDLINE_TAG
30 #define CONFIG_SETUP_MEMORY_TAGS
31 #define CONFIG_INITRD_TAG
32 #define CONFIG_REVISION_TAG
33 #define CONFIG_SERIAL_TAG
34
35 /* Size of malloc() pool */
36 #define CONFIG_SYS_MALLOC_LEN (32 * 1024 * 1024)
37
38 #define CONFIG_MISC_INIT_R
39
40 #define CONFIG_MXC_UART
41 #define CONFIG_MXC_UART_BASE UART1_BASE
42
43 /* Make the HW version stuff available in U-Boot env */
44 #define CONFIG_VERSION_VARIABLE /* ver environment variable */
45 #define CONFIG_ENV_VARS_UBOOT_CONFIG
46 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
47
48 /* I2C Configs */
49 #define CONFIG_SYS_I2C
50 #define CONFIG_SYS_I2C_MXC
51 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
52 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
53 #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
54 #define CONFIG_SYS_I2C_SPEED 100000
55
56 /* OCOTP Configs */
57 #ifdef CONFIG_CMD_FUSE
58 #define CONFIG_MXC_OCOTP
59 #endif
60
61 /* MMC Configs */
62 #define CONFIG_FSL_ESDHC
63 #define CONFIG_FSL_USDHC
64 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
65 #define CONFIG_SYS_FSL_USDHC_NUM 3
66
67 #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
68 #define CONFIG_BOUNCE_BUFFER
69 #define CONFIG_FAT_WRITE
70
71 #ifdef CONFIG_MX6Q
72 #define CONFIG_CMD_SATA
73 #endif
74
75 /*
76 * SATA Configs
77 */
78 #ifdef CONFIG_CMD_SATA
79 #define CONFIG_DWC_AHSATA
80 #define CONFIG_SYS_SATA_MAX_DEVICE 1
81 #define CONFIG_DWC_AHSATA_PORT_ID 0
82 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
83 #define CONFIG_LBA48
84 #define CONFIG_LIBATA
85 #endif
86
87 /* Network */
88 #define CONFIG_FEC_MXC
89 #define CONFIG_MII
90 #define IMX_FEC_BASE ENET_BASE_ADDR
91 #define CONFIG_FEC_XCV_TYPE RGMII
92 #define CONFIG_ETHPRIME "FEC"
93 #define CONFIG_FEC_MXC_PHYADDR 6
94 #define CONFIG_PHYLIB
95 #define CONFIG_PHY_MICREL
96 #define CONFIG_PHY_MICREL_KSZ9031
97 #define CONFIG_IP_DEFRAG
98 #define CONFIG_TFTP_BLOCKSIZE 4096
99 #define CONFIG_TFTP_TSIZE
100
101 /* USB Configs */
102 /* Host */
103 #define CONFIG_USB_HOST_ETHER
104 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
105 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
106 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
107 #define CONFIG_MXC_USB_FLAGS 0
108 #define CONFIG_USB_KEYBOARD
109 #ifdef CONFIG_USB_KEYBOARD
110 #define CONFIG_SYS_USB_EVENT_POLL
111 #endif /* CONFIG_USB_KEYBOARD */
112 /* Client */
113 #define CONFIG_USB_GADGET_VBUS_DRAW 2
114 #define CONFIG_USBD_HS
115
116 #define CONFIG_USB_GADGET_MASS_STORAGE
117 #define CONFIG_USB_FUNCTION_MASS_STORAGE
118 #define CONFIG_G_DNL_MANUFACTURER "Toradex"
119 /* USB DFU */
120 #define CONFIG_DFU_MMC
121
122 /* Miscellaneous commands */
123 #define CONFIG_MXC_GPIO
124
125 /* Framebuffer and LCD */
126 #define CONFIG_VIDEO_IPUV3
127 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
128 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
129 #define CONFIG_VIDEO_BMP_RLE8
130 #define CONFIG_SPLASH_SCREEN
131 #define CONFIG_SPLASH_SCREEN_ALIGN
132 #define CONFIG_BMP_16BPP
133 #define CONFIG_VIDEO_LOGO
134 #define CONFIG_VIDEO_BMP_LOGO
135 #define CONFIG_IPUV3_CLK 260000000
136 #define CONFIG_CONSOLE_MUX
137 #define CONFIG_IMX_HDMI
138 #define CONFIG_IMX_VIDEO_SKIP
139
140 /* allow to overwrite serial and ethaddr */
141 #define CONFIG_ENV_OVERWRITE
142 #define CONFIG_CONS_INDEX 1
143
144 /* Command definition */
145 #undef CONFIG_CMD_LOADB
146 #undef CONFIG_CMD_LOADS
147 #undef CONFIG_CMD_NFS
148 #undef CONFIG_CMD_FLASH
149
150 #undef CONFIG_IPADDR
151 #define CONFIG_IPADDR 192.168.10.2
152 #define CONFIG_NETMASK 255.255.255.0
153 #undef CONFIG_SERVERIP
154 #define CONFIG_SERVERIP 192.168.10.1
155
156 #define CONFIG_LOADADDR 0x12000000
157 #define CONFIG_SYS_TEXT_BASE 0x17800000
158
159 #ifdef CONFIG_CMD_SATA
160 #define CONFIG_DRIVE_SATA "sata "
161 #else
162 #define CONFIG_DRIVE_SATA
163 #endif
164
165 #ifdef CONFIG_CMD_MMC
166 #define CONFIG_DRIVE_MMC "mmc "
167 #else
168 #define CONFIG_DRIVE_MMC
169 #endif
170
171 #define CONFIG_DRIVE_TYPES CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC
172
173 #define DFU_ALT_EMMC_INFO \
174 "u-boot.imx raw 0x2 0x3ff mmcpart 0;" \
175 "boot part 0 1;" \
176 "rootfs part 0 2;" \
177 "uImage fat 0 1;" \
178 "imx6q-colibri-eval-v3.dtb fat 0 1;" \
179 "imx6q-colibri-cam-eval-v3.dtb fat 0 1"
180
181 #define EMMC_BOOTCMD \
182 "emmcargs=ip=off root=/dev/mmcblk0p2 rw,noatime rootfstype=ext3 " \
183 "rootwait\0" \
184 "emmcboot=run setup; " \
185 "setenv bootargs ${defargs} ${emmcargs} ${setupargs} " \
186 "${vidargs}; echo Booting from internal eMMC chip...; " \
187 "run emmcdtbload; load mmc 0:1 ${kernel_addr_r} " \
188 "${boot_file} && run fdt_fixup && " \
189 "bootm ${kernel_addr_r} ${dtbparam}\0" \
190 "emmcdtbload=setenv dtbparam; load mmc 0:1 ${fdt_addr_r} " \
191 "${fdt_file} && setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
192
193 #define MEM_LAYOUT_ENV_SETTINGS \
194 "bootm_size=0x20000000\0" \
195 "fdt_addr_r=0x12000000\0" \
196 "fdt_high=0xffffffff\0" \
197 "initrd_high=0xffffffff\0" \
198 "kernel_addr_r=0x11000000\0" \
199 "ramdisk_addr_r=0x12100000\0"
200
201 #define NFS_BOOTCMD \
202 "nfsargs=ip=:::::eth0:on root=/dev/nfs rw\0" \
203 "nfsboot=run setup; " \
204 "setenv bootargs ${defargs} ${nfsargs} ${setupargs} " \
205 "${vidargs}; echo Booting via DHCP/TFTP/NFS...; " \
206 "run nfsdtbload; dhcp ${kernel_addr_r} " \
207 "&& run fdt_fixup && bootm ${kernel_addr_r} ${dtbparam}\0" \
208 "nfsdtbload=setenv dtbparam; tftp ${fdt_addr_r} ${fdt_file} " \
209 "&& setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
210
211 #define SD_BOOTCMD \
212 "sdargs=ip=off root=/dev/mmcblk1p2 rw,noatime rootfstype=ext3 " \
213 "rootwait\0" \
214 "sdboot=run setup; " \
215 "setenv bootargs ${defargs} ${sdargs} ${setupargs} " \
216 "${vidargs}; echo Booting from SD card; " \
217 "run sddtbload; load mmc 1:1 ${kernel_addr_r} " \
218 "${boot_file} && run fdt_fixup && " \
219 "bootm ${kernel_addr_r} ${dtbparam}\0" \
220 "sddtbload=setenv dtbparam; load mmc 1:1 ${fdt_addr_r} " \
221 "${fdt_file} && setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
222
223 #define USB_BOOTCMD \
224 "usbargs=ip=off root=/dev/sda2 rw,noatime rootfstype=ext3 " \
225 "rootwait\0" \
226 "usbboot=run setup; setenv bootargs ${defargs} ${setupargs} " \
227 "${usbargs} ${vidargs}; echo Booting from USB stick...; " \
228 "usb start && run usbdtbload; load usb 0:1 ${kernel_addr_r} " \
229 "${boot_file} && run fdt_fixup && " \
230 "bootm ${kernel_addr_r} ${dtbparam}\0" \
231 "usbdtbload=setenv dtbparam; load usb 0:1 ${fdt_addr_r} " \
232 "${fdt_file} && setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
233
234 #ifndef CONFIG_TDX_APALIS_IMX6_V1_0
235 #define FDT_FILE "imx6q-apalis-eval.dtb"
236 #define FDT_FILE_V1_0 "imx6q-apalis_v1_0-eval.dtb"
237 #else
238 #define FDT_FILE "imx6q-apalis_v1_0-eval.dtb"
239 #endif
240 #define CONFIG_EXTRA_ENV_SETTINGS \
241 "bootcmd=run emmcboot ; echo ; echo emmcboot failed ; " \
242 "run nfsboot ; echo ; echo nfsboot failed ; " \
243 "usb start ;" \
244 "setenv stdout serial,vga ; setenv stdin serial,usbkbd\0" \
245 "boot_file=uImage\0" \
246 "console=ttymxc0\0" \
247 "defargs=enable_wait_mode=off vmalloc=400M\0" \
248 "dfu_alt_info=" DFU_ALT_EMMC_INFO "\0" \
249 EMMC_BOOTCMD \
250 "fdt_file=" FDT_FILE "\0" \
251 "fdt_fixup=;\0" \
252 MEM_LAYOUT_ENV_SETTINGS \
253 NFS_BOOTCMD \
254 SD_BOOTCMD \
255 "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
256 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
257 "flash_eth.img && source ${loadaddr}\0" \
258 "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
259 "${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
260 "source ${loadaddr}\0" \
261 "setup=setenv setupargs fec_mac=${ethaddr} " \
262 "consoleblank=0 no_console_suspend=1 console=tty1 " \
263 "console=${console},${baudrate}n8\0 " \
264 "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
265 "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
266 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
267 "source ${loadaddr}\0" \
268 "splashpos=m,m\0" \
269 "vidargs=mxc_hdmi.only_cea=1 " \
270 "video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 " \
271 "video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off " \
272 "fbmem=32M\0 "
273
274 /* Miscellaneous configurable options */
275 #define CONFIG_SYS_LONGHELP
276 #define CONFIG_AUTO_COMPLETE
277 #undef CONFIG_SYS_CBSIZE
278 #define CONFIG_SYS_CBSIZE 1024
279 #undef CONFIG_SYS_MAXARGS
280 #define CONFIG_SYS_MAXARGS 48
281
282 #define CONFIG_SYS_ALT_MEMTEST
283 #define CONFIG_SYS_MEMTEST_START 0x10000000
284 #define CONFIG_SYS_MEMTEST_END 0x10010000
285 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
286
287 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
288
289 #define CONFIG_CMDLINE_EDITING
290
291 /* Physical Memory Map */
292 #define CONFIG_NR_DRAM_BANKS 1
293 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
294
295 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
296 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
297 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
298
299 #define CONFIG_SYS_INIT_SP_OFFSET \
300 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
301 #define CONFIG_SYS_INIT_SP_ADDR \
302 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
303
304 /* environment organization */
305
306 #define CONFIG_ENV_SIZE (8 * 1024)
307
308 #define CONFIG_ENV_IS_IN_MMC
309
310 #if defined(CONFIG_ENV_IS_IN_MMC)
311 /* Environment in eMMC, before config block at the end of 1st "boot sector" */
312 #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE + \
313 CONFIG_TDX_CFG_BLOCK_OFFSET)
314 #define CONFIG_SYS_MMC_ENV_DEV 0
315 #define CONFIG_SYS_MMC_ENV_PART 1
316 #endif
317
318 #define CONFIG_OF_SYSTEM_SETUP
319
320 #define CONFIG_CMD_TIME
321
322 #define CONFIG_SUPPORT_RAW_INITRD
323
324 #endif /* __CONFIG_H */