1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2015-2019 Toradex, Inc.
5 * Configuration settings for the Toradex VF50/VF61 modules.
8 * Copyright 2013 Freescale Semiconductor, Inc.
14 #include <asm/arch/imx-regs.h>
15 #include <linux/sizes.h>
17 #ifdef CONFIG_VIDEO_FSL_DCU_FB
18 #define CONFIG_VIDEO_BMP_LOGO
19 #define CONFIG_SYS_FSL_DCU_LE
21 #define CONFIG_SYS_DCU_ADDR DCU0_BASE_ADDR
22 #define DCU_LAYER_MAX_NUM 64
26 #define CONFIG_SYS_MAX_NAND_DEVICE 1
28 #define CONFIG_IPADDR 192.168.10.2
29 #define CONFIG_NETMASK 255.255.255.0
30 #define CONFIG_SERVERIP 192.168.10.1
32 #define CONFIG_FDTADDR 0x84000000
34 /* We boot from the gfxRAM area of the OCRAM. */
35 #define CONFIG_BOARD_SIZE_LIMIT 520192
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"
45 #define UBOOT_UPDATE \
46 "update_uboot=nand erase.part u-boot && " \
47 "nand write ${loadaddr} u-boot ${filesize}\0" \
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" \
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...; " \
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" \
69 #define BOOT_TARGET_DEVICES(func) \
73 #include <config_distro_bootcmd.h>
74 #undef BOOTENV_RUN_NET_USB_START
75 #define BOOTENV_RUN_NET_USB_START ""
77 #define DFU_ALT_NAND_INFO "vf-bcb part 0,1;u-boot part 0,2;ubi part 0,4"
79 #define CONFIG_EXTRA_ENV_SETTINGS \
81 MEM_LAYOUT_ENV_SETTINGS \
86 "defargs=user_debug=30\0" \
87 "dfu_alt_info=" DFU_ALT_NAND_INFO "\0" \
88 "fdt_board=eval-v3\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" \
102 "video-mode=dcufb:640x480-16@60,monitor=lcd\0"
104 /* Miscellaneous configurable options */
105 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
106 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
108 /* Physical memory map */
109 #define PHYS_SDRAM (0x80000000)
110 #define PHYS_SDRAM_SIZE (256 * SZ_1M)
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
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)
121 /* Environment organization */
122 #ifdef CONFIG_ENV_IS_IN_NAND
123 #define CONFIG_ENV_RANGE (4 * 64 * 2048)
126 /* USB Host Support */
127 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
128 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
132 #endif /* __CONFIG_H */