imx: Convert SERIAL_TAG support to ENV_VARS_UBOOT_RUNTIME_CONFIG
[platform/kernel/u-boot.git] / include / configs / colibri_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Colibri iMX6
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #undef CONFIG_DISPLAY_BOARDINFO
16
17 #include <asm/arch/imx-regs.h>
18 #include <asm/mach-imx/gpio.h>
19
20 #ifdef CONFIG_SPL
21 #include "imx6_spl.h"
22 #endif
23
24 #define CONFIG_CMDLINE_TAG
25 #define CONFIG_SETUP_MEMORY_TAGS
26 #define CONFIG_INITRD_TAG
27 #define CONFIG_REVISION_TAG
28
29 #define CONFIG_MXC_UART_BASE            UART1_BASE
30
31 /* MMC Configs */
32 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
33 #define CONFIG_SYS_FSL_USDHC_NUM        2
34
35 /* USB Configs */
36 /* Host */
37 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
38 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
39 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
40 #define CONFIG_MXC_USB_FLAGS            0
41 /* Client */
42 #define CONFIG_USBD_HS
43
44 /* Framebuffer and LCD */
45 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
46 #define CONFIG_VIDEO_LOGO
47 #define CONFIG_VIDEO_BMP_LOGO
48 #define CONFIG_IMX_HDMI
49 #define CONFIG_IMX_VIDEO_SKIP
50
51 /* Command definition */
52
53 #undef CONFIG_IPADDR
54 #define CONFIG_IPADDR                   192.168.10.2
55 #define CONFIG_NETMASK                  255.255.255.0
56 #undef CONFIG_SERVERIP
57 #define CONFIG_SERVERIP                 192.168.10.1
58
59 #ifndef CONFIG_SPL_BUILD
60 #define BOOT_TARGET_DEVICES(func) \
61         func(MMC, mmc, 1) \
62         func(MMC, mmc, 0) \
63         func(USB, usb, 0) \
64         func(DHCP, dhcp, na)
65 #include <config_distro_bootcmd.h>
66 #undef BOOTENV_RUN_NET_USB_START
67 #define BOOTENV_RUN_NET_USB_START ""
68 #else /* CONFIG_SPL_BUILD */
69 #define BOOTENV
70 #endif /* CONFIG_SPL_BUILD */
71
72 #define UBOOT_UPDATE \
73         "uboot_hwpart=1\0" \
74         "uboot_blk=8a\0" \
75         "uboot_spl_blk=2\0" \
76         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
77                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
78         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
79                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
80         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
81                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
82
83 #define MEM_LAYOUT_ENV_SETTINGS \
84         "bootm_size=0x10000000\0" \
85         "fdt_addr_r=0x12100000\0" \
86         "kernel_addr_r=0x11000000\0" \
87         "pxefile_addr_r=0x17100000\0" \
88         "ramdisk_addr_r=0x12200000\0" \
89         "scriptaddr=0x17000000\0"
90
91 #define NFS_BOOTCMD \
92         "nfsargs=ip=:::::eth0:on root=/dev/nfs rw\0" \
93         "nfsboot=run setup; " \
94                 "setenv bootargs ${defargs} ${nfsargs} ${setupargs} " \
95                 "${vidargs}; echo Booting via DHCP/TFTP/NFS...; " \
96                 "run nfsdtbload; dhcp ${kernel_addr_r} " \
97                 "&& run fdt_fixup && bootz ${kernel_addr_r} ${dtbparam}\0" \
98         "nfsdtbload=setenv dtbparam; tftp ${fdt_addr_r} ${fdt_file} " \
99                 "&& setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
100
101 #define FDT_FILE "imx6dl-colibri-eval-v3.dtb"
102 #define CONFIG_EXTRA_ENV_SETTINGS \
103         BOOTENV \
104         "bootcmd=run distro_bootcmd; " \
105                 "usb start ; " \
106                 "setenv stdout serial,vidconsole; " \
107                 "setenv stdin serial,usbkbd\0" \
108         "boot_file=zImage\0" \
109         "console=ttymxc0\0" \
110         "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
111         "fdt_file=" FDT_FILE "\0" \
112         "fdtfile=" FDT_FILE "\0" \
113         "fdt_fixup=;\0" \
114         MEM_LAYOUT_ENV_SETTINGS \
115         NFS_BOOTCMD \
116         UBOOT_UPDATE \
117         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
118                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
119                 "flash_eth.img && source ${loadaddr}\0" \
120         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
121                 "${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
122                 "source ${loadaddr}\0" \
123         "setup=setenv setupargs fec_mac=${ethaddr} " \
124                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
125                 "console=${console},${baudrate}n8\0 " \
126         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
127         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
128                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
129                 "source ${loadaddr}\0" \
130         "splashpos=m,m\0" \
131         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
132         "vidargs=fbmem=8M\0"
133
134 /* Miscellaneous configurable options */
135 #undef CONFIG_SYS_CBSIZE
136 #define CONFIG_SYS_CBSIZE               1024
137 #undef CONFIG_SYS_MAXARGS
138 #define CONFIG_SYS_MAXARGS              48
139
140 /* Physical Memory Map */
141 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
142
143 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
144 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
145 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
146
147 #define CONFIG_SYS_INIT_SP_OFFSET \
148         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
149 #define CONFIG_SYS_INIT_SP_ADDR \
150         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
151
152 #endif  /* __CONFIG_H */