Merge branch '2022-12-07-Kconfig-migrations' into next
[platform/kernel/u-boot.git] / include / configs / colibri-imx6ull.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2018-2021 Toradex AG
4  *
5  * Configuration settings for the Colibri iMX6ULL module.
6  *
7  * based on colibri_imx7.h
8  */
9
10 #ifndef __COLIBRI_IMX6ULL_CONFIG_H
11 #define __COLIBRI_IMX6ULL_CONFIG_H
12
13 #include "mx6_common.h"
14
15 #define PHYS_SDRAM_SIZE                 SZ_1G
16
17 /* ENET1 */
18
19 /* MMC Config */
20 #define CFG_SYS_FSL_ESDHC_ADDR  0
21 #define CFG_SYS_FSL_USDHC_NUM   1
22
23 #define CONFIG_IPADDR                   192.168.10.2
24 #define CONFIG_NETMASK                  255.255.255.0
25 #define CONFIG_SERVERIP                 192.168.10.1
26
27 #if defined(CONFIG_TARGET_COLIBRI_IMX6ULL_EMMC)
28 #define UBOOT_UPDATE \
29         "uboot_hwpart=1\0" \
30         "uboot_blk=2\0" \
31         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
32                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
33         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
34                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0"
35 #elif defined(CONFIG_TARGET_COLIBRI_IMX6ULL_NAND)
36 #define UBOOT_UPDATE \
37         "update_uboot=nand erase.part u-boot1 && " \
38                 "nand write ${loadaddr} u-boot1 ${filesize} && " \
39                 "nand erase.part u-boot2 && " \
40                 "nand write ${loadaddr} u-boot2 ${filesize}\0"
41 #endif
42
43 #define MEM_LAYOUT_ENV_SETTINGS \
44         "bootm_size=0x10000000\0" \
45         "fdt_addr_r=0x88200000\0" \
46         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
47         "pxefile_addr_r=0x88300000\0" \
48         "ramdisk_addr_r=0x88400000\0" \
49         "scriptaddr=0x88280000\0"
50
51 #define UBI_BOOTCMD \
52         "ubiargs=ubi.mtd=ubi root=ubi0:rootfs rw rootfstype=ubifs " \
53                 "ubi.fm_autoconvert=1\0" \
54         "ubiboot=run setup; " \
55                 "setenv bootargs ${defargs} ${ubiargs} " \
56                 "${setupargs} ${vidargs} ${tdxargs}; echo Booting from NAND...; " \
57                 "ubi part ubi &&" \
58                 "ubi read ${kernel_addr_r} kernel && " \
59                 "ubi read ${fdt_addr_r} dtb && " \
60                 "run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}\0" \
61
62 #if defined(CONFIG_TARGET_COLIBRI_IMX6ULL_NAND)
63 /* Run Distro Boot script if ubiboot fails */
64 #define DFU_ALT_NAND_INFO "imx6ull-bcb part 0,1;u-boot1 part 0,2;u-boot2 part 0,3;u-boot-env part 0,4;ubi partubi 0,5"
65 #define MODULE_EXTRA_ENV_SETTINGS \
66         "dfu_alt_info=" DFU_ALT_NAND_INFO "\0" \
67         UBI_BOOTCMD
68 #else
69 #define MODULE_EXTRA_ENV_SETTINGS ""
70 #endif
71
72 #if defined(CONFIG_TARGET_COLIBRI_IMX6ULL_NAND)
73 #define BOOT_TARGET_DEVICES(func) \
74         func(MMC, mmc, 0) \
75         func(USB, usb, 0) \
76         func(DHCP, dhcp, na)
77 #elif defined(CONFIG_TARGET_COLIBRI_IMX6ULL_EMMC)
78 #define BOOT_TARGET_DEVICES(func) \
79         func(MMC, mmc, 1) \
80         func(MMC, mmc, 0) \
81         func(USB, usb, 0) \
82         func(DHCP, dhcp, na)
83 #endif
84 #include <config_distro_bootcmd.h>
85
86 #define CONFIG_EXTRA_ENV_SETTINGS \
87         BOOTENV \
88         MEM_LAYOUT_ENV_SETTINGS \
89         UBI_BOOTCMD \
90         UBOOT_UPDATE \
91         "boot_script_dhcp=boot.scr\0" \
92         "console=ttymxc0\0" \
93         "defargs=user_debug=30\0" \
94         "fdt_board=eval-v3\0" \
95         "fdt_fixup=;\0" \
96         "ip_dyn=yes\0" \
97         "kernel_file=zImage\0" \
98         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
99                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
100                 "${board}/flash_eth.img && source ${loadaddr}\0" \
101         "setsdupdate=mmc rescan && setenv interface mmc && " \
102                 "fatload ${interface} 0:1 ${loadaddr} " \
103                 "${board}/flash_blk.img && source ${loadaddr}\0" \
104         "setup=setenv setupargs " \
105                 "console=tty1 console=${console}" \
106                 ",${baudrate}n8 ${memargs} consoleblank=0\0" \
107         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
108         "setusbupdate=usb start && setenv interface usb && " \
109                 "fatload ${interface} 0:1 ${loadaddr} " \
110                 "${board}/flash_blk.img && source ${loadaddr}\0" \
111         "splashpos=m,m\0" \
112         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
113         "videomode=video=ctfb:x:640,y:480,depth:18,pclk:39722,le:48,ri:16,up:33,lo:10,hs:96,vs:2,sync:0,vmode:0\0"
114
115 /* Physical Memory Map */
116 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
117
118 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
119 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
120 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
121
122 #ifdef CONFIG_TARGET_COLIBRI_IMX6ULL_NAND
123 /* NAND stuff */
124 /* used to initialize CFG_SYS_NAND_BASE_LIST which is unused */
125 #define CFG_SYS_NAND_BASE               -1
126 #endif
127
128 /* USB Configs */
129
130 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
131 #define CONFIG_MXC_USB_FLAGS            0
132
133 #define CONFIG_USBD_HS
134
135 /* USB Device Firmware Update support */
136 #define DFU_DEFAULT_POLL_TIMEOUT        300
137
138 #if defined(CONFIG_VIDEO)
139 #define MXS_LCDIF_BASE MX6UL_LCDIF1_BASE_ADDR
140 #endif
141
142 #endif /* __COLIBRI_IMX6ULL_CONFIG_H */