4b47e4fbb37ae8d51b4d037f36ee9c92205c8cb6
[platform/kernel/u-boot.git] / include / configs / npi_imx6ull.h
1 /* SPDX-License-Identifier: GPL-2.0+
2  *
3  * Copyright (c) 2021 Linumiz
4  * Author: Navin Sankar Velliangiri <navin@linumiz.com>
5  */
6
7 #ifndef _NPI_IMX6ULL_H
8 #define _NPI_IMX6ULL_H
9
10 #include <linux/sizes.h>
11 #include "mx6_common.h"
12
13 #define CFG_SYS_FSL_USDHC_NUM   1
14
15 /* Console configs */
16 #define CONFIG_MXC_UART_BASE            UART1_BASE
17
18 /* MMC Configs */
19 #define CFG_SYS_FSL_ESDHC_ADDR  USDHC2_BASE_ADDR
20
21 /* Physical Memory Map */
22 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
23
24 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
25 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
26 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
27
28 /* NAND */
29 #define CFG_SYS_NAND_BASE               0x40000000
30
31 /* USB Configs */
32 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
33 #define CONFIG_MXC_USB_FLAGS            0
34
35 #ifdef CONFIG_CMD_NET
36 #define CFG_FEC_MXC_PHYADDR             0x1
37 #endif
38
39 #define CFG_FEC_ENET_DEV                1
40
41 #define CFG_EXTRA_ENV_SETTINGS \
42         "console=ttymxc0,115200n8\0" \
43         "image=zImage\0" \
44         "fdtfile=imx6ull-seeed-npi-dev-board.dtb\0" \
45         "fdt_addr_r=0x82000000\0" \
46         "kernel_addr_r=0x81000000\0" \
47         "pxefile_addr_r=0x87100000\0" \
48         "ramdisk_addr_r=0x82100000\0" \
49         "scriptaddr=0x87000000\0" \
50         "root=/dev/mmcblk0p2 rootwait\0" \
51         BOOTENV
52
53 #define BOOT_TARGET_DEVICES(func) \
54         func(MMC, mmc, 0) \
55         func(UBIFS, ubifs, 0, UBI, boot) \
56         func(PXE, pxe, na) \
57         func(DHCP, dhcp, na)
58
59 #include <config_distro_bootcmd.h>
60
61 #endif /* _NPI_IMX6ULL_H */