global: Migrate CONFIG_MXC_UART_BASE to CFG
[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 #define CFG_SYS_FSL_USDHC_NUM   2
17
18 /* Environment settings */
19
20 /* Environment in SD */
21 #define MMC_ROOTFS_DEV          0
22 #define MMC_ROOTFS_PART         2
23
24 /* Console configs */
25 #define CFG_MXC_UART_BASE               UART1_BASE
26
27 /* MMC Configs */
28
29 #define CFG_SYS_FSL_ESDHC_ADDR  USDHC2_BASE_ADDR
30
31 /* I2C configs */
32
33 /* Miscellaneous configurable options */
34
35 /* Physical Memory Map */
36 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
37 #define PHYS_SDRAM_SIZE                 SZ_256M
38
39 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
40 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
41 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
42
43 /* NAND */
44 #define CFG_SYS_NAND_BASE               0x40000000
45
46 /* USB Configs */
47 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
48 #define CONFIG_MXC_USB_FLAGS            0
49
50 #define ENV_MMC \
51         "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
52         "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
53         "fitpart=1\0" \
54         "bootdelay=3\0" \
55         "silent=1\0" \
56         "optargs=rw rootwait\0" \
57         "mmcautodetect=yes\0" \
58         "mmcrootfstype=ext4\0" \
59         "mmcfit_name=fitImage\0" \
60         "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
61                     "${mmcfit_name}\0" \
62         "mmcargs=setenv bootargs " \
63                 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
64                 "console=${console} rootfstype=${mmcrootfstype}\0" \
65         "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
66
67 /* Default environment */
68 #define CFG_EXTRA_ENV_SETTINGS \
69         "fdt_high=0xffffffff\0" \
70         "console=ttymxc0,115200n8\0" \
71         "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
72         "fit_addr=0x82000000\0" \
73         ENV_MMC
74
75 #define BOOT_TARGET_DEVICES(func) \
76         func(MMC, mmc, 0) \
77         func(MMC, mmc, 1) \
78         func(DHCP, dhcp, na)
79
80 #include <config_distro_bootcmd.h>
81
82 #endif /* __PCL063_ULL_H */