Convert CONFIG_USE_BOOTCOMMAND et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / colibri_vf.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2015-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex VF50/VF61 modules.
6  *
7  * Based on vf610twr.h:
8  * Copyright 2013 Freescale Semiconductor, Inc.
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 #include <asm/arch/imx-regs.h>
15 #include <linux/sizes.h>
16
17 #define CONFIG_SYS_FSL_CLK
18
19 #ifdef CONFIG_VIDEO_FSL_DCU_FB
20 #define CONFIG_VIDEO_LOGO
21 #define CONFIG_VIDEO_BMP_LOGO
22 #define CONFIG_SYS_FSL_DCU_LE
23
24 #define CONFIG_SYS_DCU_ADDR             DCU0_BASE_ADDR
25 #define DCU_LAYER_MAX_NUM               64
26 #endif
27
28 /* NAND support */
29 #define CONFIG_SYS_MAX_NAND_DEVICE      1
30
31 #define CONFIG_IPADDR           192.168.10.2
32 #define CONFIG_NETMASK          255.255.255.0
33 #define CONFIG_SERVERIP         192.168.10.1
34
35 #define CONFIG_FDTADDR                  0x84000000
36
37 /* We boot from the gfxRAM area of the OCRAM. */
38 #define CONFIG_BOARD_SIZE_LIMIT         520192
39
40 #define MEM_LAYOUT_ENV_SETTINGS \
41         "bootm_size=0x10000000\0" \
42         "fdt_addr_r=0x82000000\0" \
43         "kernel_addr_r=0x81000000\0" \
44         "pxefile_addr_r=0x87100000\0" \
45         "ramdisk_addr_r=0x82100000\0" \
46         "scriptaddr=0x87000000\0"
47
48 #define UBOOT_UPDATE \
49         "update_uboot=nand erase.part u-boot && " \
50                 "nand write ${loadaddr} u-boot ${filesize}\0" \
51
52 #define NFS_BOOTCMD \
53         "nfsargs=ip=:::::eth0: root=/dev/nfs\0" \
54         "nfsboot=run setup; " \
55         "setenv bootargs ${defargs} ${nfsargs} ${mtdparts} " \
56         "${setupargs} ${vidargs}; echo Booting from NFS...;" \
57         "dhcp ${kernel_addr_r} && "     \
58         "tftp ${fdt_addr_r} ${soc}-colibri-${fdt_board}.dtb && " \
59         "run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}\0" \
60
61 #define UBI_BOOTCMD \
62         "ubiargs=ubi.mtd=ubi root=ubi0:rootfs rootfstype=ubifs " \
63         "ubi.fm_autoconvert=1\0" \
64         "ubiboot=run setup; " \
65         "setenv bootargs ${defargs} ${ubiargs} ${mtdparts} "   \
66         "${setupargs} ${vidargs}; echo Booting from NAND...; " \
67         "ubi part ubi && " \
68         "ubi read ${kernel_addr_r} kernel && " \
69         "ubi read ${fdt_addr_r} dtb && " \
70         "run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}\0" \
71
72 #define BOOT_TARGET_DEVICES(func) \
73         func(MMC, mmc, 0) \
74         func(USB, usb, 0) \
75         func(DHCP, dhcp, na)
76 #include <config_distro_bootcmd.h>
77 #undef BOOTENV_RUN_NET_USB_START
78 #define BOOTENV_RUN_NET_USB_START ""
79
80 #define DFU_ALT_NAND_INFO "vf-bcb part 0,1;u-boot part 0,2;ubi part 0,4"
81
82 #define CONFIG_EXTRA_ENV_SETTINGS \
83         BOOTENV \
84         MEM_LAYOUT_ENV_SETTINGS \
85         NFS_BOOTCMD \
86         UBI_BOOTCMD \
87         UBOOT_UPDATE \
88         "console=ttyLP0\0" \
89         "defargs=user_debug=30\0" \
90         "dfu_alt_info=" DFU_ALT_NAND_INFO "\0" \
91         "fdt_board=eval-v3\0" \
92         "fdt_fixup=;\0" \
93         "kernel_image=zImage\0" \
94         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
95         "setsdupdate=mmc rescan && set interface mmc && " \
96                 "fatload ${interface} 0:1 ${loadaddr} flash_blk.img && " \
97                 "source ${loadaddr}\0" \
98         "setup=setenv setupargs console=tty1 console=${console}" \
99                 ",${baudrate}n8 ${memargs}\0" \
100         "setupdate=run setsdupdate || run setusbupdate\0" \
101         "setusbupdate=usb start && set interface usb && " \
102                 "fatload ${interface} 0:1 ${loadaddr} flash_blk.img && " \
103                 "source ${loadaddr}\0" \
104         "splashpos=m,m\0" \
105         "video-mode=dcufb:640x480-16@60,monitor=lcd\0"
106
107 /* Miscellaneous configurable options */
108 #define CONFIG_SYS_CBSIZE               1024    /* Console I/O Buffer Size */
109 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
110
111 /* Physical memory map */
112 #define PHYS_SDRAM                      (0x80000000)
113 #define PHYS_SDRAM_SIZE                 (256 * SZ_1M)
114
115 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
116 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
117 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
118
119 #define CONFIG_SYS_INIT_SP_OFFSET \
120         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
121 #define CONFIG_SYS_INIT_SP_ADDR \
122         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
123
124 /* Environment organization */
125 #ifdef CONFIG_ENV_IS_IN_NAND
126 #define CONFIG_ENV_RANGE                (4 * 64 * 2048)
127 #endif
128
129 /* USB Host Support */
130 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
131 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
132
133 /* USB DFU */
134
135 #endif /* __CONFIG_H */