global: Move remaining CONFIG_SYS_* to CFG_SYS_*
[platform/kernel/u-boot.git] / include / configs / colibri_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Colibri iMX6
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #include <asm/arch/imx-regs.h>
16 #include <asm/mach-imx/gpio.h>
17
18 #define CONFIG_MXC_UART_BASE            UART1_BASE
19
20 /* MMC Configs */
21 #define CFG_SYS_FSL_ESDHC_ADDR  0
22 #define CFG_SYS_FSL_USDHC_NUM   2
23
24 /* USB Configs */
25 /* Host */
26 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
27 #define CONFIG_MXC_USB_FLAGS            0
28 /* Client */
29 #define CONFIG_USBD_HS
30
31 /* Framebuffer and LCD */
32 #define CONFIG_IMX_HDMI
33 #define CONFIG_IMX_VIDEO_SKIP
34
35 /* Command definition */
36
37 #undef CONFIG_IPADDR
38 #define CONFIG_IPADDR                   192.168.10.2
39 #define CONFIG_NETMASK                  255.255.255.0
40 #undef CONFIG_SERVERIP
41 #define CONFIG_SERVERIP                 192.168.10.1
42
43 #define BOOT_TARGET_DEVICES(func) \
44         func(MMC, mmc, 1) \
45         func(MMC, mmc, 0) \
46         func(USB, usb, 0) \
47         func(DHCP, dhcp, na)
48 #include <config_distro_bootcmd.h>
49 #undef BOOTENV_RUN_NET_USB_START
50 #define BOOTENV_RUN_NET_USB_START ""
51
52 #define UBOOT_UPDATE \
53         "uboot_hwpart=1\0" \
54         "uboot_blk=8a\0" \
55         "uboot_spl_blk=2\0" \
56         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
57                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
58         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
59                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
60         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
61                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
62
63 #define MEM_LAYOUT_ENV_SETTINGS \
64         "bootm_size=0x10000000\0" \
65         "fdt_addr_r=0x18200000\0" \
66         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
67         "pxefile_addr_r=0x18300000\0" \
68         "ramdisk_addr_r=0x18400000\0" \
69         "scriptaddr=0x18280000\0"
70
71 #define CONFIG_EXTRA_ENV_SETTINGS \
72         BOOTENV \
73         "boot_file=zImage\0" \
74         "boot_script_dhcp=boot.scr\0" \
75         "console=ttymxc0\0" \
76         "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
77         "fdt_board=eval-v3\0" \
78         "fdt_fixup=;\0" \
79         MEM_LAYOUT_ENV_SETTINGS \
80         UBOOT_UPDATE \
81         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
82                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
83                 "flash_eth.img && source ${loadaddr}\0" \
84         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
85                 "${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
86                 "source ${loadaddr}\0" \
87         "setup=setenv setupargs fec_mac=${ethaddr} " \
88                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
89                 "console=${console},${baudrate}n8\0 " \
90         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
91         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
92                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
93                 "source ${loadaddr}\0" \
94         "splashpos=m,m\0" \
95         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
96         "vidargs=fbmem=8M\0"
97
98 /* Miscellaneous configurable options */
99
100 /* Physical Memory Map */
101 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
102
103 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
104 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
105 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
106
107 #endif  /* __CONFIG_H */