Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[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 /* SPL options */
14 #include "imx6_spl.h"
15
16 #define CONFIG_SYS_FSL_USDHC_NUM        1
17
18 /* Console configs */
19 #define CONFIG_MXC_UART_BASE            UART1_BASE
20
21 /* MMC Configs */
22 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
23
24 #define CONFIG_NETMASK                  255.255.255.0
25
26 /* Physical Memory Map */
27 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
28
29 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
30 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
31 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
32
33 #define CONFIG_SYS_INIT_SP_OFFSET \
34         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
35 #define CONFIG_SYS_INIT_SP_ADDR \
36         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
37
38 /* NAND */
39 #define CONFIG_SYS_MAX_NAND_DEVICE      1
40 #define CONFIG_SYS_NAND_BASE            0x40000000
41
42 /* USB Configs */
43 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
44 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
45 #define CONFIG_MXC_USB_FLAGS            0
46 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
47
48 #ifdef CONFIG_CMD_NET
49 #define IMX_FEC_BASE                    ENET_BASE_ADDR
50 #define CONFIG_FEC_MXC_PHYADDR          0x1
51 #endif
52
53 #define CONFIG_FEC_ENET_DEV             1
54
55 #define CONFIG_EXTRA_ENV_SETTINGS \
56         "console=ttymxc0,115200n8\0" \
57         "image=zImage\0" \
58         "fdtfile=imx6ull-seeed-npi-dev-board.dtb\0" \
59         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
60         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
61         "fdt_addr_r=0x82000000\0" \
62         "kernel_addr_r=0x81000000\0" \
63         "pxefile_addr_r=0x87100000\0" \
64         "ramdisk_addr_r=0x82100000\0" \
65         "scriptaddr=0x87000000\0" \
66         "root=/dev/mmcblk0p2 rootwait\0" \
67         BOOTENV
68
69 #define BOOT_TARGET_DEVICES(func) \
70         func(MMC, mmc, 0) \
71         func(UBIFS, ubifs, 0) \
72         func(PXE, pxe, na) \
73         func(DHCP, dhcp, na)
74
75 #include <config_distro_bootcmd.h>
76
77 #endif /* _NPI_IMX6ULL_H */