5c80696e86cdd0c99712a34157d76bf1391ccd73
[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_MACH_TYPE        3769
15
16 /* Size of malloc() pool */
17 #define CONFIG_SYS_MALLOC_LEN           (10 * 1024 * 1024)
18
19 #define CONFIG_USBD_HS
20
21 #define CONFIG_MXC_UART_BASE           UART2_BASE
22
23 /* I2C Configs */
24 #define CONFIG_SYS_I2C
25 #define CONFIG_SYS_I2C_MXC
26 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
27 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
28 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
29 #define CONFIG_SYS_I2C_SPEED            100000
30 #define CONFIG_I2C_EDID
31
32 /* MMC Configs */
33 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
34 #define CONFIG_SYS_FSL_USDHC_NUM       2
35
36 /*
37  * SATA Configs
38  */
39 #ifdef CONFIG_CMD_SATA
40 #define CONFIG_SYS_SATA_MAX_DEVICE      1
41 #define CONFIG_DWC_AHSATA_PORT_ID       0
42 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
43 #define CONFIG_LBA48
44 #endif
45
46 #define CONFIG_FEC_MXC
47 #define IMX_FEC_BASE                    ENET_BASE_ADDR
48 #define CONFIG_FEC_XCV_TYPE             RGMII
49 #define CONFIG_ETHPRIME                 "FEC"
50 #define CONFIG_FEC_MXC_PHYADDR          6
51
52 /* USB Configs */
53 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
54 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
55 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
56 #define CONFIG_MXC_USB_FLAGS    0
57
58 /* Framebuffer and LCD */
59 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
60 #define CONFIG_BMP_16BPP
61 #define CONFIG_IMX_HDMI
62 #define CONFIG_IMX_VIDEO_SKIP
63
64 #ifdef CONFIG_CMD_MMC
65 #define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
66 #else
67 #define DISTRO_BOOT_DEV_MMC(func)
68 #endif
69
70 #ifdef CONFIG_CMD_SATA
71 #define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
72 #else
73 #define DISTRO_BOOT_DEV_SATA(func)
74 #endif
75
76 #ifdef CONFIG_USB_STORAGE
77 #define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
78 #else
79 #define DISTRO_BOOT_DEV_USB(func)
80 #endif
81
82 #ifdef CONFIG_CMD_PXE
83 #define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
84 #else
85 #define DISTRO_BOOT_DEV_PXE(func)
86 #endif
87
88 #ifdef CONFIG_CMD_DHCP
89 #define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
90 #else
91 #define DISTRO_BOOT_DEV_DHCP(func)
92 #endif
93
94
95 #if defined(CONFIG_SABRELITE)
96 #define FDTFILE "fdtfile=imx6q-sabrelite.dtb\0"
97 #else
98 /* FIXME: nitrogen6x covers multiple configs. Define fdtfile for each supported config. */
99 #define FDTFILE
100 #endif
101
102 #define BOOT_TARGET_DEVICES(func) \
103         DISTRO_BOOT_DEV_MMC(func) \
104         DISTRO_BOOT_DEV_SATA(func) \
105         DISTRO_BOOT_DEV_USB(func) \
106         DISTRO_BOOT_DEV_PXE(func) \
107         DISTRO_BOOT_DEV_DHCP(func)
108
109 #include <config_distro_bootcmd.h>
110 #include <linux/stringify.h>
111
112 #define CONFIG_EXTRA_ENV_SETTINGS \
113         "console=ttymxc1\0" \
114         "fdt_high=0xffffffff\0" \
115         "initrd_high=0xffffffff\0" \
116         "fdt_addr_r=0x18000000\0" \
117         FDTFILE \
118         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0"  \
119         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
120         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
121         "ramdisk_addr_r=0x13000000\0" \
122         "ramdiskaddr=0x13000000\0" \
123         "ip_dyn=yes\0" \
124         "usb_pgood_delay=2000\0" \
125         BOOTENV
126
127 /* Miscellaneous configurable options */
128
129 /* Physical Memory Map */
130 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
131
132 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
133 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
134 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
135
136 #define CONFIG_SYS_INIT_SP_OFFSET \
137         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
138 #define CONFIG_SYS_INIT_SP_ADDR \
139         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
140
141 /* Environment organization */
142
143 /*
144  * PCI express
145  */
146 #ifdef CONFIG_CMD_PCI
147 #define CONFIG_PCI_SCAN_SHOW
148 #define CONFIG_PCIE_IMX
149 #endif
150
151 #endif         /* __CONFIG_H */