d40c3a9c3e54fcefa5e5f1cc96386b0ce4caf409
[platform/kernel/u-boot.git] / include / configs / cm_fx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Config file for Compulab CM-FX6 board
4  *
5  * Copyright (C) 2014, Compulab Ltd - http://compulab.co.il/
6  *
7  * Author: Nikita Kiryanov <nikita@compulab.co.il>
8  */
9
10 #ifndef __CONFIG_CM_FX6_H
11 #define __CONFIG_CM_FX6_H
12
13 #include "mx6_common.h"
14
15 /* Machine config */
16 #define CONFIG_SYS_LITTLE_ENDIAN
17
18 /* MMC */
19 #define CONFIG_SYS_FSL_USDHC_NUM        3
20 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
21
22 /* RAM */
23 #define PHYS_SDRAM_1                    MMDC0_ARB_BASE_ADDR
24 #define PHYS_SDRAM_2                    MMDC1_ARB_BASE_ADDR
25 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
26 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
27 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
28 #define CONFIG_SYS_INIT_SP_OFFSET \
29         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
30 #define CONFIG_SYS_INIT_SP_ADDR \
31         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
32
33 /* Serial console */
34 #define CONFIG_MXC_UART_BASE            UART4_BASE
35
36 /* Environment */
37
38 #ifndef CONFIG_SPL_BUILD
39 #define CONFIG_EXTRA_ENV_SETTINGS \
40         "fdt_high=0xffffffff\0" \
41         "initrd_high=0xffffffff\0" \
42         "fdt_addr_r=0x18000000\0" \
43         "ramdisk_addr_r=0x13000000\0" \
44         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
45         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
46         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
47         "fdtfile=undefined\0" \
48         "stdin=serial,usbkbd\0" \
49         "stdout=serial,vidconsole\0" \
50         "stderr=serial,vidconsole\0" \
51         "panel=HDMI\0" \
52         "autoload=no\0" \
53         "uImage=uImage-cm-fx6\0" \
54         "zImage=zImage-cm-fx6\0" \
55         "kernel=uImage-cm-fx6\0" \
56         "dtb=cm-fx6.dtb\0" \
57         "console=ttymxc3,115200\0" \
58         "ethprime=FEC0\0" \
59         "video_hdmi=mxcfb0:dev=hdmi,1920x1080M-32@50,if=RGB32\0" \
60         "video_dvi=mxcfb0:dev=dvi,1280x800M-32@50,if=RGB32\0" \
61         "doboot=bootm ${kernel_addr_r}\0" \
62         "doloadfdt=false\0" \
63         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
64         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
65         "setboottypez=setenv kernel ${zImage};" \
66                 "setenv doboot bootz ${kernel_addr_r} - ${fdt_addr_r};" \
67                 "setenv doloadfdt true;\0" \
68         "setboottypem=setenv kernel ${uImage};" \
69                 "setenv doboot bootm ${kernel_addr_r};" \
70                 "setenv doloadfdt false;\0"\
71         "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
72         "sataroot=/dev/sda2 rw rootwait\0" \
73         "nandroot=/dev/mtdblock4 rw\0" \
74         "nandrootfstype=ubifs\0" \
75         "mmcargs=setenv bootargs console=${console} root=${mmcroot} " \
76                 "${video} ${extrabootargs}\0" \
77         "sataargs=setenv bootargs console=${console} root=${sataroot} " \
78                 "${video} ${extrabootargs}\0" \
79         "nandargs=setenv bootargs console=${console} " \
80                 "root=${nandroot} " \
81                 "rootfstype=${nandrootfstype} " \
82                 "${video} ${extrabootargs}\0" \
83         "nandboot=if run nandloadkernel; then " \
84                         "run nandloadfdt;" \
85                         "run setboottypem;" \
86                         "run storagebootcmd;" \
87                         "run setboottypez;" \
88                         "run storagebootcmd;" \
89                 "fi;\0" \
90         "run_eboot=echo Starting EBOOT ...; "\
91                 "mmc dev 2 && " \
92                 "mmc rescan && mmc read 10042000 a 400 && go 10042000\0" \
93         "loadkernel=load ${storagetype} ${storagedev} ${kernel_addr_r} ${kernel};\0"\
94         "loadfdt=load ${storagetype} ${storagedev} ${fdt_addr_r} ${dtb};\0" \
95         "nandloadkernel=nand read ${kernel_addr_r} 0 780000;\0" \
96         "nandloadfdt=nand read ${fdt_addr_r} 780000 80000;\0" \
97         "setupmmcboot=setenv storagetype mmc; setenv storagedev 2;\0" \
98         "setupsataboot=setenv storagetype sata; setenv storagedev 0;\0" \
99         "setupnandboot=setenv storagetype nand;\0" \
100         "storagebootcmd=echo Booting from ${storagetype} ...;" \
101                         "run ${storagetype}args; run doboot;\0" \
102         "trybootk=if run loadkernel; then " \
103                 "if ${doloadfdt}; then " \
104                         "run loadfdt;" \
105                 "fi;" \
106                 "run storagebootcmd;" \
107                 "fi;\0" \
108         "trybootsmz=" \
109                 "run setboottypem;" \
110                 "run trybootk;" \
111                 "run setboottypez;" \
112                 "run trybootk;\0" \
113         "legacy_bootcmd=" \
114                 "run setupmmcboot;" \
115                 "mmc dev ${storagedev};" \
116                 "if mmc rescan; then " \
117                         "run trybootsmz;" \
118                 "fi;" \
119                 "run setupsataboot;" \
120                 "if sata init; then " \
121                         "run trybootsmz;" \
122                 "fi;" \
123                 "run setupnandboot;" \
124                 "run nandboot;\0" \
125         "findfdt="\
126                 "if test $board_name = Utilite && test $board_rev = MX6Q ; then " \
127                         "setenv fdtfile imx6q-utilite-pro.dtb; fi; " \
128                 "if test $fdtfile = undefined; then " \
129                         "echo WARNING: Could not determine dtb to use; fi; \0" \
130         BOOTENV
131
132 #define BOOT_TARGET_DEVICES(func) \
133         func(USB, usb, 0) \
134         func(MMC, mmc, 2) \
135         func(SATA, sata, 0)
136
137 #include <config_distro_bootcmd.h>
138 #else
139 #define CONFIG_EXTRA_ENV_SETTINGS
140 #endif
141
142 /* NAND */
143 #ifndef CONFIG_SPL_BUILD
144 #define CONFIG_SYS_NAND_BASE            0x40000000
145 #define CONFIG_SYS_NAND_MAX_CHIPS       1
146 #define CONFIG_SYS_MAX_NAND_DEVICE      1
147 #define CONFIG_SYS_NAND_ONFI_DETECTION
148 /* APBH DMA is required for NAND support */
149 #endif
150
151 /* Ethernet */
152 #define CONFIG_FEC_MXC
153 #define CONFIG_FEC_MXC_PHYADDR          0
154 #define CONFIG_FEC_XCV_TYPE             RGMII
155 #define IMX_FEC_BASE                    ENET_BASE_ADDR
156 #define CONFIG_ETHPRIME                 "FEC0"
157 #define CONFIG_ARP_TIMEOUT              200UL
158 #define CONFIG_NET_RETRY_COUNT          5
159
160 /* USB */
161 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
162 #define CONFIG_MXC_USB_FLAGS            0
163 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
164 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
165
166 /* SATA */
167 #define CONFIG_SYS_SATA_MAX_DEVICE      1
168 #define CONFIG_LBA48
169 #define CONFIG_DWC_AHSATA_PORT_ID       0
170 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
171
172 /* Boot */
173 #define CONFIG_SYS_BOOTMAPSZ            (8 << 20)
174
175 /* misc */
176
177 /* SPL */
178 #include "imx6_spl.h"
179
180 /* Display */
181 #define CONFIG_IMX_HDMI
182
183 #define CONFIG_VIDEO_LOGO
184 #define CONFIG_VIDEO_BMP_LOGO
185
186 /* EEPROM */
187
188 #endif  /* __CONFIG_CM_FX6_H */