Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[platform/kernel/u-boot.git] / include / configs / nitrogen6x.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for the Boundary Devices Nitrogen6X
6  * and Freescale i.MX6Q Sabre Lite boards.
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include "mx6_common.h"
13
14 #define CONFIG_USBD_HS
15
16 #define CONFIG_MXC_UART_BASE           UART2_BASE
17
18 /* MMC Configs */
19 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
20 #define CONFIG_SYS_FSL_USDHC_NUM       2
21
22 /*
23  * SATA Configs
24  */
25 #ifdef CONFIG_CMD_SATA
26 #define CONFIG_DWC_AHSATA_PORT_ID       0
27 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
28 #define CONFIG_LBA48
29 #endif
30
31 #define IMX_FEC_BASE                    ENET_BASE_ADDR
32 #define CONFIG_FEC_MXC_PHYADDR          6
33
34 /* USB Configs */
35 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
36 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
37 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
38 #define CONFIG_MXC_USB_FLAGS    0
39
40 /* Framebuffer and LCD */
41 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
42 #define CONFIG_IMX_HDMI
43 #define CONFIG_IMX_VIDEO_SKIP
44
45 #ifdef CONFIG_CMD_MMC
46 #define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
47 #else
48 #define DISTRO_BOOT_DEV_MMC(func)
49 #endif
50
51 #ifdef CONFIG_CMD_SATA
52 #define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
53 #else
54 #define DISTRO_BOOT_DEV_SATA(func)
55 #endif
56
57 #ifdef CONFIG_USB_STORAGE
58 #define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
59 #else
60 #define DISTRO_BOOT_DEV_USB(func)
61 #endif
62
63 #ifdef CONFIG_CMD_PXE
64 #define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
65 #else
66 #define DISTRO_BOOT_DEV_PXE(func)
67 #endif
68
69 #ifdef CONFIG_CMD_DHCP
70 #define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
71 #else
72 #define DISTRO_BOOT_DEV_DHCP(func)
73 #endif
74
75 #define BOOT_TARGET_DEVICES(func) \
76         DISTRO_BOOT_DEV_MMC(func) \
77         DISTRO_BOOT_DEV_SATA(func) \
78         DISTRO_BOOT_DEV_USB(func) \
79         DISTRO_BOOT_DEV_PXE(func) \
80         DISTRO_BOOT_DEV_DHCP(func)
81
82 #include <config_distro_bootcmd.h>
83 #include <linux/stringify.h>
84
85 #define CONFIG_EXTRA_ENV_SETTINGS \
86         "console=ttymxc1\0" \
87         "fdt_high=0xffffffff\0" \
88         "initrd_high=0xffffffff\0" \
89         "fdt_addr_r=0x18000000\0" \
90         "fdtfile=" __stringify(CONFIG_DEFAULT_DEVICE_TREE) ".dtb\0" \
91         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"  \
92         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
93         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
94         "ramdisk_addr_r=0x13000000\0" \
95         "ramdiskaddr=0x13000000\0" \
96         "ip_dyn=yes\0" \
97         "usb_pgood_delay=2000\0" \
98         BOOTENV
99
100 /* Miscellaneous configurable options */
101
102 /* Physical Memory Map */
103 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
104
105 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
106 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
107 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
108
109 #define CONFIG_SYS_INIT_SP_OFFSET \
110         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
111 #define CONFIG_SYS_INIT_SP_ADDR \
112         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
113
114 /* Environment organization */
115
116 /*
117  * PCI express
118  */
119 #ifdef CONFIG_CMD_PCI
120 #define CONFIG_PCI_SCAN_SHOW
121 #define CONFIG_PCIE_IMX
122 #endif
123
124 #endif         /* __CONFIG_H */