affe20a10198a1b7d3164b5295405ba1e4966642
[platform/kernel/u-boot.git] / include / configs / el6x_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) Stefano Babic <sbabic@denx.de>
4  *
5  * Configuration settings for the E+L i.MX6Q DO82 board.
6  */
7
8 #ifndef __EL6Q_COMMON_CONFIG_H
9 #define __EL6Q_COMMON_CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #ifdef CONFIG_SPL
16 #include "imx6_spl.h"
17 #endif
18
19 /* MMC Configs */
20 #define CFG_SYS_FSL_ESDHC_ADDR  0
21 #define CFG_SYS_FSL_USDHC_NUM   2
22
23 /* PMIC */
24 #define CONFIG_POWER_PFUZE100
25 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
26
27 /* Commands */
28
29 #define CONFIG_MXC_UART_BASE    UART2_BASE
30
31 #define CONFIG_EXTRA_ENV_SETTINGS                                               \
32         "board=EL6Q\0"                                                          \
33         "cma_size="__stringify(EL6Q_CMA_SIZE)"\0"                               \
34         "chp_size="__stringify(EL6Q_COHERENT_POOL_SIZE)"\0"                     \
35         "console=" CONSOLE_DEV "\0"                                     \
36         "fdtfile=undefined\0" \
37         "fdt_high=0xffffffff\0" \
38         "fdt_addr_r=0x18000000\0" \
39         "fdt_addr=0x18000000\0" \
40         "findfdt=setenv fdtfile " CONFIG_DEFAULT_FDT_FILE "\0"                  \
41         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
42         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
43         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
44         BOOTENV
45
46 #define BOOT_TARGET_DEVICES(func) \
47         func(MMC, mmc, 0) \
48         func(MMC, mmc, 1) \
49         func(PXE, PXE, na) \
50         func(DHCP, dhcp, na)
51
52 #include <config_distro_bootcmd.h>
53
54 /* Physical Memory Map */
55 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
56
57 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
58 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
59 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
60
61 /* environment organization */
62
63 #endif                         /* __EL6Q_COMMON_CONFIG_H */