1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Config file for Compulab CM-FX6 board
5 * Copyright (C) 2014, Compulab Ltd - http://compulab.co.il/
10 #ifndef __CONFIG_CM_FX6_H
11 #define __CONFIG_CM_FX6_H
13 #include "mx6_common.h"
18 #define CONFIG_SYS_FSL_USDHC_NUM 3
19 #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
22 #define PHYS_SDRAM_1 MMDC0_ARB_BASE_ADDR
23 #define PHYS_SDRAM_2 MMDC1_ARB_BASE_ADDR
24 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
25 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
26 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
29 #define CONFIG_MXC_UART_BASE UART4_BASE
33 #ifndef CONFIG_SPL_BUILD
34 #define CONFIG_EXTRA_ENV_SETTINGS \
35 "fdt_high=0xffffffff\0" \
36 "initrd_high=0xffffffff\0" \
37 "fdt_addr_r=0x18000000\0" \
38 "ramdisk_addr_r=0x13000000\0" \
39 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
40 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
41 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
42 "fdtfile=undefined\0" \
43 "stdin=serial,usbkbd\0" \
44 "stdout=serial,vidconsole\0" \
45 "stderr=serial,vidconsole\0" \
48 "uImage=uImage-cm-fx6\0" \
49 "zImage=zImage-cm-fx6\0" \
50 "kernel=uImage-cm-fx6\0" \
52 "console=ttymxc3,115200\0" \
54 "video_hdmi=mxcfb0:dev=hdmi,1920x1080M-32@50,if=RGB32\0" \
55 "video_dvi=mxcfb0:dev=dvi,1280x800M-32@50,if=RGB32\0" \
56 "doboot=bootm ${kernel_addr_r}\0" \
58 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
59 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
60 "setboottypez=setenv kernel ${zImage};" \
61 "setenv doboot bootz ${kernel_addr_r} - ${fdt_addr_r};" \
62 "setenv doloadfdt true;\0" \
63 "setboottypem=setenv kernel ${uImage};" \
64 "setenv doboot bootm ${kernel_addr_r};" \
65 "setenv doloadfdt false;\0"\
66 "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
67 "sataroot=/dev/sda2 rw rootwait\0" \
68 "nandroot=/dev/mtdblock4 rw\0" \
69 "nandrootfstype=ubifs\0" \
70 "mmcargs=setenv bootargs console=${console} root=${mmcroot} " \
71 "${video} ${extrabootargs}\0" \
72 "sataargs=setenv bootargs console=${console} root=${sataroot} " \
73 "${video} ${extrabootargs}\0" \
74 "nandargs=setenv bootargs console=${console} " \
76 "rootfstype=${nandrootfstype} " \
77 "${video} ${extrabootargs}\0" \
78 "nandboot=if run nandloadkernel; then " \
81 "run storagebootcmd;" \
83 "run storagebootcmd;" \
85 "run_eboot=echo Starting EBOOT ...; "\
87 "mmc rescan && mmc read 10042000 a 400 && go 10042000\0" \
88 "loadkernel=load ${storagetype} ${storagedev} ${kernel_addr_r} ${kernel};\0"\
89 "loadfdt=load ${storagetype} ${storagedev} ${fdt_addr_r} ${dtb};\0" \
90 "nandloadkernel=nand read ${kernel_addr_r} 0 780000;\0" \
91 "nandloadfdt=nand read ${fdt_addr_r} 780000 80000;\0" \
92 "setupmmcboot=setenv storagetype mmc; setenv storagedev 2;\0" \
93 "setupsataboot=setenv storagetype sata; setenv storagedev 0;\0" \
94 "setupnandboot=setenv storagetype nand;\0" \
95 "storagebootcmd=echo Booting from ${storagetype} ...;" \
96 "run ${storagetype}args; run doboot;\0" \
97 "trybootk=if run loadkernel; then " \
98 "if ${doloadfdt}; then " \
101 "run storagebootcmd;" \
104 "run setboottypem;" \
106 "run setboottypez;" \
109 "run setupmmcboot;" \
110 "mmc dev ${storagedev};" \
111 "if mmc rescan; then " \
114 "run setupsataboot;" \
115 "if sata init; then " \
118 "run setupnandboot;" \
121 "if test $board_name = Utilite && test $board_rev = MX6Q ; then " \
122 "setenv fdtfile imx6q-utilite-pro.dtb; fi; " \
123 "if test $fdtfile = undefined; then " \
124 "echo WARNING: Could not determine dtb to use; fi; \0" \
127 #define BOOT_TARGET_DEVICES(func) \
132 #include <config_distro_bootcmd.h>
134 #define CONFIG_EXTRA_ENV_SETTINGS
138 #ifndef CONFIG_SPL_BUILD
139 #define CONFIG_SYS_NAND_BASE 0x40000000
140 #define CONFIG_SYS_MAX_NAND_DEVICE 1
141 /* APBH DMA is required for NAND support */
145 #define CONFIG_FEC_MXC_PHYADDR 0
148 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
149 #define CONFIG_MXC_USB_FLAGS 0
150 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
156 #define CONFIG_SYS_BOOTMAPSZ (8 << 20)
161 #include "imx6_spl.h"
164 #define CONFIG_IMX_HDMI
168 #endif /* __CONFIG_CM_FX6_H */