common: usb: Update logic for usb.o, usb_hub.o and usb_storage.o
[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 #ifdef CONFIG_SPL
19 #include "imx6_spl.h"
20 #endif
21
22 #define CONFIG_MXC_UART_BASE            UART1_BASE
23
24 /* MMC Configs */
25 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
26 #define CONFIG_SYS_FSL_USDHC_NUM        2
27
28 /* USB Configs */
29 /* Host */
30 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
31 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
32 #define CONFIG_MXC_USB_FLAGS            0
33 /* Client */
34 #define CONFIG_USBD_HS
35
36 /* Framebuffer and LCD */
37 #define CONFIG_IMX_HDMI
38 #define CONFIG_IMX_VIDEO_SKIP
39
40 /* Command definition */
41
42 #undef CONFIG_IPADDR
43 #define CONFIG_IPADDR                   192.168.10.2
44 #define CONFIG_NETMASK                  255.255.255.0
45 #undef CONFIG_SERVERIP
46 #define CONFIG_SERVERIP                 192.168.10.1
47
48 #define BOOT_TARGET_DEVICES(func) \
49         func(MMC, mmc, 1) \
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 UBOOT_UPDATE \
58         "uboot_hwpart=1\0" \
59         "uboot_blk=8a\0" \
60         "uboot_spl_blk=2\0" \
61         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
62                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
63         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
64                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
65         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
66                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
67
68 #define MEM_LAYOUT_ENV_SETTINGS \
69         "bootm_size=0x10000000\0" \
70         "fdt_addr_r=0x12100000\0" \
71         "kernel_addr_r=0x11000000\0" \
72         "pxefile_addr_r=0x17100000\0" \
73         "ramdisk_addr_r=0x12200000\0" \
74         "scriptaddr=0x17000000\0"
75
76 #define CONFIG_EXTRA_ENV_SETTINGS \
77         BOOTENV \
78         "boot_file=zImage\0" \
79         "boot_script_dhcp=boot.scr\0" \
80         "console=ttymxc0\0" \
81         "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
82         "fdt_board=eval-v3\0" \
83         "fdt_fixup=;\0" \
84         MEM_LAYOUT_ENV_SETTINGS \
85         UBOOT_UPDATE \
86         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
87                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
88                 "flash_eth.img && source ${loadaddr}\0" \
89         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
90                 "${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
91                 "source ${loadaddr}\0" \
92         "setup=setenv setupargs fec_mac=${ethaddr} " \
93                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
94                 "console=${console},${baudrate}n8\0 " \
95         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
96         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
97                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
98                 "source ${loadaddr}\0" \
99         "splashpos=m,m\0" \
100         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
101         "vidargs=fbmem=8M\0"
102
103 /* Miscellaneous configurable options */
104
105 /* Physical Memory Map */
106 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
107
108 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
109 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
110 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
111
112 #endif  /* __CONFIG_H */