Convert CONFIG_USB_MAX_CONTROLLER_COUNT to Kconfig
[platform/kernel/u-boot.git] / include / configs / kontron-sl-mx6ul.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018 Kontron Electronics GmbH
4  *
5  * Configuration settings for the Kontron i.MX6UL boards/SoMs.
6  */
7 #ifndef __KONTRON_MX6UL_CONFIG_H
8 #define __KONTRON_MX6UL_CONFIG_H
9
10 #include <asm/arch/imx-regs.h>
11 #include <linux/sizes.h>
12
13 #include "mx6_common.h"
14 #ifdef CONFIG_SPL_BUILD
15 #include "imx6_spl.h"
16 #endif
17
18 /* RAM */
19 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
20 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
21
22 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
23 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
24
25 #define CONFIG_SYS_UBOOT_BASE           CONFIG_SYS_TEXT_BASE
26
27 /* Board and environment settings */
28 #define CONFIG_MXC_UART_BASE            UART4_BASE
29 #define CONFIG_HOSTNAME                 "kontron-mx6ul"
30
31 #ifdef CONFIG_USB_EHCI_HCD
32 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
33 #define CONFIG_MXC_USB_FLAGS            0
34 #endif
35
36 /* Boot order for distro boot */
37 #define BOOT_TARGET_DEVICES(func) \
38         func(MMC, mmc, 1) \
39         func(MMC, mmc, 0) \
40         func(UBIFS, ubifs, 0) \
41         func(USB, usb, 0) \
42         func(PXE, pxe, na) \
43         func(DHCP, dhcp, na)
44 #include <config_distro_bootcmd.h>
45
46 /* MMC Configs */
47 #ifdef CONFIG_FSL_USDHC
48 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC1_BASE_ADDR
49 #define CONFIG_SYS_FSL_USDHC_NUM        2
50 #endif
51
52 #define CONFIG_EXTRA_ENV_SETTINGS \
53         "kernel_addr_r=0x82000000\0" \
54         "ramdisk_addr_r=0x88080000\0" \
55         "pxefile_addr_r=0x80100000\0" \
56         "scriptaddr=0x80100000\0" \
57         "bootdelay=3\0" \
58         "ethact=" CONFIG_ETHPRIME "\0" \
59         "hostname=" CONFIG_HOSTNAME "\0" \
60         BOOTENV
61
62 #endif /* __KONTRON_MX6UL_CONFIG_H */