Merge branch 'next'
[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 /* NAND support */
18 #define CONFIG_SYS_MAX_NAND_DEVICE      1
19
20 #define CONFIG_IPADDR           192.168.10.2
21 #define CONFIG_NETMASK          255.255.255.0
22 #define CONFIG_SERVERIP         192.168.10.1
23
24 #define CONFIG_FDTADDR                  0x84000000
25
26 #define MEM_LAYOUT_ENV_SETTINGS \
27         "bootm_size=0x10000000\0" \
28         "fdt_addr_r=0x82000000\0" \
29         "kernel_addr_r=0x81000000\0" \
30         "pxefile_addr_r=0x87100000\0" \
31         "ramdisk_addr_r=0x82100000\0" \
32         "scriptaddr=0x87000000\0"
33
34 #define UBOOT_UPDATE \
35         "update_uboot=nand erase.part u-boot && " \
36                 "nand write ${loadaddr} u-boot ${filesize}\0" \
37
38 #define UBI_BOOTCMD \
39         "ubiargs=ubi.mtd=ubi root=ubi0:rootfs rootfstype=ubifs " \
40         "ubi.fm_autoconvert=1\0" \
41         "ubiboot=run setup; " \
42         "setenv bootargs ${defargs} ${ubiargs} ${mtdparts} "   \
43         "${setupargs} ${vidargs} ${tdxargs}; echo Booting from NAND...; " \
44         "ubi part ubi && " \
45         "ubi read ${kernel_addr_r} kernel && " \
46         "ubi read ${fdt_addr_r} dtb && " \
47         "run fdt_fixup && bootz ${kernel_addr_r} - ${fdt_addr_r}\0" \
48
49 #define BOOT_TARGET_DEVICES(func) \
50         func(MMC, mmc, 0) \
51         func(USB, usb, 0) \
52         func(DHCP, dhcp, na)
53 #include <config_distro_bootcmd.h>
54 #undef BOOTENV_RUN_NET_USB_START
55 #define BOOTENV_RUN_NET_USB_START ""
56
57 #define DFU_ALT_NAND_INFO "vf-bcb part 0,1;u-boot part 0,2;ubi part 0,4"
58
59 #define CONFIG_EXTRA_ENV_SETTINGS \
60         BOOTENV \
61         MEM_LAYOUT_ENV_SETTINGS \
62         UBI_BOOTCMD \
63         UBOOT_UPDATE \
64         "boot_script_dhcp=boot.scr\0" \
65         "console=ttyLP0\0" \
66         "defargs=user_debug=30\0" \
67         "dfu_alt_info=" DFU_ALT_NAND_INFO "\0" \
68         "fdt_board=eval-v3\0" \
69         "fdt_fixup=;\0" \
70         "kernel_image=zImage\0" \
71         "setsdupdate=mmc rescan && set interface mmc && " \
72                 "fatload ${interface} 0:1 ${loadaddr} flash_blk.img && " \
73                 "source ${loadaddr}\0" \
74         "setup=setenv setupargs console=tty1 console=${console}" \
75                 ",${baudrate}n8 ${memargs}\0" \
76         "setupdate=run setsdupdate || run setusbupdate\0" \
77         "setusbupdate=usb start && set interface usb && " \
78                 "fatload ${interface} 0:1 ${loadaddr} flash_blk.img && " \
79                 "source ${loadaddr}\0" \
80         "splashpos=m,m\0" \
81         "video-mode=dcufb:640x480-16@60,monitor=lcd\0"
82
83 /* Miscellaneous configurable options */
84
85 /* Physical memory map */
86 #define PHYS_SDRAM                      (0x80000000)
87 #define PHYS_SDRAM_SIZE                 (256 * SZ_1M)
88
89 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
90 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
91 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
92
93 /* USB Host Support */
94
95 /* USB DFU */
96
97 #endif /* __CONFIG_H */