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