Convert CONFIG_USB_MAX_CONTROLLER_COUNT to Kconfig
[platform/kernel/u-boot.git] / include / configs / pcl063_ull.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Board configuration file for Phytec phyBOARD-i.MX6ULL-Segin SBC
4  * Copyright (C) 2019 Parthiban Nallathambi <parthitce@gmail.com>
5  *
6  * Based on include/configs/xpress.h:
7  * Copyright (C) 2015-2016 Stefan Roese <sr@denx.de>
8  */
9 #ifndef __PCL063_ULL_H
10 #define __PCL063_ULL_H
11
12 #include <linux/sizes.h>
13 #include <linux/stringify.h>
14 #include "mx6_common.h"
15
16 /* SPL options */
17 #include "imx6_spl.h"
18
19 #define CONFIG_SYS_FSL_USDHC_NUM        2
20
21 /* Environment settings */
22
23 /* Environment in SD */
24 #define MMC_ROOTFS_DEV          0
25 #define MMC_ROOTFS_PART         2
26
27 /* Console configs */
28 #define CONFIG_MXC_UART_BASE            UART1_BASE
29
30 /* MMC Configs */
31
32 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
33
34 /* I2C configs */
35
36 /* Miscellaneous configurable options */
37
38 /* Physical Memory Map */
39 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
40 #define PHYS_SDRAM_SIZE                 SZ_256M
41
42 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
43 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
44 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
45
46 /* NAND */
47 #define CONFIG_SYS_MAX_NAND_DEVICE      1
48 #define CONFIG_SYS_NAND_BASE            0x40000000
49
50 /* USB Configs */
51 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
52 #define CONFIG_MXC_USB_FLAGS            0
53
54 #define ENV_MMC \
55         "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
56         "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
57         "fitpart=1\0" \
58         "bootdelay=3\0" \
59         "silent=1\0" \
60         "optargs=rw rootwait\0" \
61         "mmcautodetect=yes\0" \
62         "mmcrootfstype=ext4\0" \
63         "mmcfit_name=fitImage\0" \
64         "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
65                     "${mmcfit_name}\0" \
66         "mmcargs=setenv bootargs " \
67                 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
68                 "console=${console} rootfstype=${mmcrootfstype}\0" \
69         "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
70
71 /* Default environment */
72 #define CONFIG_EXTRA_ENV_SETTINGS \
73         "fdt_high=0xffffffff\0" \
74         "console=ttymxc0,115200n8\0" \
75         "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
76         "fit_addr=0x82000000\0" \
77         ENV_MMC
78
79 #define BOOT_TARGET_DEVICES(func) \
80         func(MMC, mmc, 0) \
81         func(MMC, mmc, 1) \
82         func(DHCP, dhcp, na)
83
84 #include <config_distro_bootcmd.h>
85
86 #endif /* __PCL063_ULL_H */