1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2013-2019 Toradex, Inc.
5 * Configuration settings for the Toradex Colibri iMX6
11 #include <linux/stringify.h>
13 #include "mx6_common.h"
15 #include <asm/arch/imx-regs.h>
16 #include <asm/mach-imx/gpio.h>
22 #define CONFIG_MXC_UART_BASE UART1_BASE
25 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
26 #define CONFIG_SYS_FSL_USDHC_NUM 2
30 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
31 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
32 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
33 #define CONFIG_MXC_USB_FLAGS 0
35 #define CONFIG_USBD_HS
37 /* Framebuffer and LCD */
38 #define CONFIG_VIDEO_BMP_LOGO
39 #define CONFIG_IMX_HDMI
40 #define CONFIG_IMX_VIDEO_SKIP
42 /* Command definition */
45 #define CONFIG_IPADDR 192.168.10.2
46 #define CONFIG_NETMASK 255.255.255.0
47 #undef CONFIG_SERVERIP
48 #define CONFIG_SERVERIP 192.168.10.1
50 #ifndef CONFIG_SPL_BUILD
51 #define BOOT_TARGET_DEVICES(func) \
56 #include <config_distro_bootcmd.h>
57 #undef BOOTENV_RUN_NET_USB_START
58 #define BOOTENV_RUN_NET_USB_START ""
59 #else /* CONFIG_SPL_BUILD */
61 #endif /* CONFIG_SPL_BUILD */
63 #define UBOOT_UPDATE \
67 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
68 "setexpr blkcnt ${blkcnt} / 0x200\0" \
69 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
70 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
71 "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
72 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
74 #define MEM_LAYOUT_ENV_SETTINGS \
75 "bootm_size=0x10000000\0" \
76 "fdt_addr_r=0x12100000\0" \
77 "kernel_addr_r=0x11000000\0" \
78 "pxefile_addr_r=0x17100000\0" \
79 "ramdisk_addr_r=0x12200000\0" \
80 "scriptaddr=0x17000000\0"
83 "nfsargs=ip=:::::eth0:on root=/dev/nfs rw\0" \
84 "nfsboot=run setup; " \
85 "setenv bootargs ${defargs} ${nfsargs} ${setupargs} " \
86 "${vidargs}; echo Booting via DHCP/TFTP/NFS...; " \
87 "run nfsdtbload; dhcp ${kernel_addr_r} " \
88 "&& run fdt_fixup && bootz ${kernel_addr_r} ${dtbparam}\0" \
89 "nfsdtbload=setenv dtbparam; tftp ${fdt_addr_r} ${fdt_file} " \
90 "&& setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
92 #define FDT_FILE "imx6dl-colibri-eval-v3.dtb"
93 #define CONFIG_EXTRA_ENV_SETTINGS \
95 "boot_file=zImage\0" \
97 "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
98 "fdt_file=" FDT_FILE "\0" \
99 "fdtfile=" FDT_FILE "\0" \
101 MEM_LAYOUT_ENV_SETTINGS \
104 "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
105 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
106 "flash_eth.img && source ${loadaddr}\0" \
107 "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
108 "${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
109 "source ${loadaddr}\0" \
110 "setup=setenv setupargs fec_mac=${ethaddr} " \
111 "consoleblank=0 no_console_suspend=1 console=tty1 " \
112 "console=${console},${baudrate}n8\0 " \
113 "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
114 "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
115 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
116 "source ${loadaddr}\0" \
118 "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
121 /* Miscellaneous configurable options */
122 #undef CONFIG_SYS_CBSIZE
123 #define CONFIG_SYS_CBSIZE 1024
124 #undef CONFIG_SYS_MAXARGS
125 #define CONFIG_SYS_MAXARGS 48
127 /* Physical Memory Map */
128 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
130 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
131 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
132 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
134 #define CONFIG_SYS_INIT_SP_OFFSET \
135 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
136 #define CONFIG_SYS_INIT_SP_ADDR \
137 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
139 #endif /* __CONFIG_H */