Merge tag 'xilinx-for-v2022.01-rc1' of https://source.denx.de/u-boot/custodians/u...
[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 /* I2C Configs */
19 #define CONFIG_I2C_EDID
20
21 /* MMC Configs */
22 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
23 #define CONFIG_SYS_FSL_USDHC_NUM       2
24
25 /*
26  * SATA Configs
27  */
28 #ifdef CONFIG_CMD_SATA
29 #define CONFIG_SYS_SATA_MAX_DEVICE      1
30 #define CONFIG_DWC_AHSATA_PORT_ID       0
31 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
32 #define CONFIG_LBA48
33 #endif
34
35 #define CONFIG_FEC_MXC
36 #define IMX_FEC_BASE                    ENET_BASE_ADDR
37 #define CONFIG_FEC_XCV_TYPE             RGMII
38 #define CONFIG_ETHPRIME                 "FEC"
39 #define CONFIG_FEC_MXC_PHYADDR          6
40
41 /* USB Configs */
42 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
43 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
44 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
45 #define CONFIG_MXC_USB_FLAGS    0
46
47 /* Framebuffer and LCD */
48 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
49 #define CONFIG_IMX_HDMI
50 #define CONFIG_IMX_VIDEO_SKIP
51
52 #ifdef CONFIG_CMD_MMC
53 #define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
54 #else
55 #define DISTRO_BOOT_DEV_MMC(func)
56 #endif
57
58 #ifdef CONFIG_CMD_SATA
59 #define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
60 #else
61 #define DISTRO_BOOT_DEV_SATA(func)
62 #endif
63
64 #ifdef CONFIG_USB_STORAGE
65 #define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
66 #else
67 #define DISTRO_BOOT_DEV_USB(func)
68 #endif
69
70 #ifdef CONFIG_CMD_PXE
71 #define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
72 #else
73 #define DISTRO_BOOT_DEV_PXE(func)
74 #endif
75
76 #ifdef CONFIG_CMD_DHCP
77 #define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
78 #else
79 #define DISTRO_BOOT_DEV_DHCP(func)
80 #endif
81
82 #define BOOT_TARGET_DEVICES(func) \
83         DISTRO_BOOT_DEV_MMC(func) \
84         DISTRO_BOOT_DEV_SATA(func) \
85         DISTRO_BOOT_DEV_USB(func) \
86         DISTRO_BOOT_DEV_PXE(func) \
87         DISTRO_BOOT_DEV_DHCP(func)
88
89 #include <config_distro_bootcmd.h>
90 #include <linux/stringify.h>
91
92 #define CONFIG_EXTRA_ENV_SETTINGS \
93         "console=ttymxc1\0" \
94         "fdt_high=0xffffffff\0" \
95         "initrd_high=0xffffffff\0" \
96         "fdt_addr_r=0x18000000\0" \
97         "fdtfile=" __stringify(CONFIG_DEFAULT_DEVICE_TREE) ".dtb\0" \
98         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"  \
99         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
100         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
101         "ramdisk_addr_r=0x13000000\0" \
102         "ramdiskaddr=0x13000000\0" \
103         "ip_dyn=yes\0" \
104         "usb_pgood_delay=2000\0" \
105         BOOTENV
106
107 /* Miscellaneous configurable options */
108
109 /* Physical Memory Map */
110 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
111
112 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
113 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
114 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
115
116 #define CONFIG_SYS_INIT_SP_OFFSET \
117         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
118 #define CONFIG_SYS_INIT_SP_ADDR \
119         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
120
121 /* Environment organization */
122
123 /*
124  * PCI express
125  */
126 #ifdef CONFIG_CMD_PCI
127 #define CONFIG_PCI_SCAN_SHOW
128 #define CONFIG_PCIE_IMX
129 #endif
130
131 #endif         /* __CONFIG_H */