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