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