Merge tag 'u-boot-stm32-20211012' of https://source.denx.de/u-boot/custodians/u-boot-stm
[platform/kernel/u-boot.git] / include / configs / apalis_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Apalis 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_MXC_UART_BASE            UART1_BASE
25
26 /* MMC Configs */
27 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
28 #define CONFIG_SYS_FSL_USDHC_NUM        3
29
30 /*
31  * SATA Configs
32  */
33 #ifdef CONFIG_CMD_SATA
34 #define CONFIG_LBA48
35 #endif
36
37 /* Network */
38 #define PHY_ANEG_TIMEOUT                15000 /* PHY needs longer aneg time */
39
40 /* USB Configs */
41 /* Host */
42 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
43 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
44 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
45 #define CONFIG_MXC_USB_FLAGS            0
46 /* Client */
47 #define CONFIG_USBD_HS
48
49 /* Framebuffer and LCD */
50 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
51 #define CONFIG_VIDEO_LOGO
52 #define CONFIG_VIDEO_BMP_LOGO
53 #define CONFIG_IMX_HDMI
54 #define CONFIG_IMX_VIDEO_SKIP
55
56 /* Command definition */
57
58 #undef CONFIG_IPADDR
59 #define CONFIG_IPADDR                   192.168.10.2
60 #define CONFIG_NETMASK                  255.255.255.0
61 #undef CONFIG_SERVERIP
62 #define CONFIG_SERVERIP                 192.168.10.1
63
64 #ifndef CONFIG_SPL_BUILD
65 #define BOOT_TARGET_DEVICES(func) \
66         func(MMC, mmc, 1) \
67         func(MMC, mmc, 2) \
68         func(MMC, mmc, 0) \
69         func(USB, usb, 0) \
70         func(DHCP, dhcp, na)
71 #include <config_distro_bootcmd.h>
72 #undef BOOTENV_RUN_NET_USB_START
73 #define BOOTENV_RUN_NET_USB_START ""
74 #else /* CONFIG_SPL_BUILD */
75 #define BOOTENV
76 #endif /* CONFIG_SPL_BUILD */
77
78 #define UBOOT_UPDATE \
79         "uboot_hwpart=1\0" \
80         "uboot_blk=8a\0" \
81         "uboot_spl_blk=2\0" \
82         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
83                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
84         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
85                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
86         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
87                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
88
89 #define MEM_LAYOUT_ENV_SETTINGS \
90         "bootm_size=0x20000000\0" \
91         "fdt_addr_r=0x12100000\0" \
92         "kernel_addr_r=0x11000000\0" \
93         "pxefile_addr_r=0x17100000\0" \
94         "ramdisk_addr_r=0x12200000\0" \
95         "scriptaddr=0x17000000\0"
96
97 #define NFS_BOOTCMD \
98         "nfsargs=ip=:::::eth0:on root=/dev/nfs ro\0" \
99         "nfsboot=run setup; " \
100                 "setenv bootargs ${defargs} ${nfsargs} ${setupargs} " \
101                 "${vidargs}; echo Booting via DHCP/TFTP/NFS...; " \
102                 "run nfsdtbload; dhcp ${kernel_addr_r} " \
103                 "&& run fdt_fixup && bootz ${kernel_addr_r} ${dtbparam}\0" \
104         "nfsdtbload=setenv dtbparam; tftp ${fdt_addr_r} ${fdt_file} " \
105                 "&& setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
106
107 #ifndef CONFIG_TDX_APALIS_IMX6_V1_0
108 #define FDT_FILE "imx6q-apalis-eval.dtb"
109 #define FDT_FILE_V1_0 "imx6q-apalis_v1_0-eval.dtb"
110 #else
111 #define FDT_FILE "imx6q-apalis_v1_0-eval.dtb"
112 #endif
113 #define CONFIG_EXTRA_ENV_SETTINGS \
114         BOOTENV \
115         "bootcmd=run distro_bootcmd ; " \
116                 "usb start ; " \
117                 "setenv stdout serial,vidconsole; " \
118                 "setenv stdin serial,usbkbd\0" \
119         "boot_file=zImage\0" \
120         "console=ttymxc0\0" \
121         "defargs=enable_wait_mode=off vmalloc=400M\0" \
122         "fdt_file=" FDT_FILE "\0" \
123         "fdtfile=" FDT_FILE "\0" \
124         "fdt_fixup=;\0" \
125         MEM_LAYOUT_ENV_SETTINGS \
126         NFS_BOOTCMD \
127         UBOOT_UPDATE \
128         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
129                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
130                 "flash_eth.img && source ${loadaddr}\0" \
131         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
132                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
133                 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \
134                 " ${loadaddr} flash_blk.img && " \
135                 "source ${loadaddr}\0" \
136         "setup=setenv setupargs fec_mac=${ethaddr} " \
137                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
138                 "console=${console},${baudrate}n8\0 " \
139         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
140         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
141                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
142                 "source ${loadaddr}\0" \
143         "splashpos=m,m\0" \
144         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
145         "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0"
146
147 /* Miscellaneous configurable options */
148 #undef CONFIG_SYS_CBSIZE
149 #define CONFIG_SYS_CBSIZE               1024
150 #undef CONFIG_SYS_MAXARGS
151 #define CONFIG_SYS_MAXARGS              48
152
153 /* Physical Memory Map */
154 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
155
156 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
157 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
158 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
159
160 #define CONFIG_SYS_INIT_SP_OFFSET \
161         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
162 #define CONFIG_SYS_INIT_SP_ADDR \
163         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
164
165 #endif  /* __CONFIG_H */