Merge branch '2020-05-07-more-kconfig-migrations'
[oweals/u-boot.git] / include / configs / secomx6quq7.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Seco S.r.l
4  *
5  * Configuration settings for the Seco Boards.
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include "mx6_common.h"
12
13 #define CONFIG_BOARD_REVISION_TAG
14
15 /* Size of malloc() pool */
16 #define CONFIG_SYS_MALLOC_LEN           (10 * SZ_1M)
17
18 #define CONFIG_MXC_UART
19 #define CONFIG_MXC_UART_BASE            UART2_BASE
20
21 /* MMC Configuration */
22 #define CONFIG_SYS_FSL_USDHC_NUM        2
23 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
24
25 /* Ethernet Configuration */
26 #define CONFIG_FEC_MXC
27 #define IMX_FEC_BASE                    ENET_BASE_ADDR
28 #define CONFIG_FEC_XCV_TYPE             RGMII
29 #define CONFIG_ETHPRIME                 "FEC"
30 #define CONFIG_FEC_MXC_PHYADDR          6
31
32 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
33         "netdev=eth0\0"                                                 \
34         "ethprime=FEC0\0"                                               \
35         "netdev=eth0\0"                                                 \
36         "ethprime=FEC0\0"                                               \
37         "uboot=u-boot.bin\0"                                            \
38         "kernel=uImage\0"                                               \
39         "nfsroot=/opt/eldk/arm\0"                                       \
40         "ip_local=10.0.0.5::10.0.0.1:255.255.255.0::eth0:off\0"         \
41         "ip_server=10.0.0.1\0"                                          \
42         "nfs_path=/targetfs \0"                                         \
43         "memory=mem=1024M\0"                                            \
44         "bootdev=mmc dev 0; ext2load mmc 0:1\0"                         \
45         "root=root=/dev/mmcblk0p1\0"                                    \
46         "option=rootwait rw fixrtc rootflags=barrier=1\0"               \
47         "cpu_freq=arm_freq=996\0"                                       \
48         "setbootargs=setenv bootargs console=ttymxc1,115200 ${root}"    \
49                 " ${option} ${memory} ${cpu_freq}\0"                    \
50         "setbootargs_nfs=setenv bootargs console=ttymxc1,115200"        \
51                 " root=/dev/nfs  nfsroot=${ip_server}:${nfs_path}"      \
52                 " nolock,wsize=4096,rsize=4096  ip=:::::eth0:dhcp"      \
53                 " ${memory} ${cpu_freq}\0"                              \
54         "setbootdev=setenv boot_dev ${bootdev} 10800000 /boot/uImage\0" \
55         "bootcmd=run setbootargs; run setbootdev; run boot_dev;"        \
56                 " bootm 0x10800000\0"                                   \
57         "stdin=serial\0"                                                \
58         "stdout=serial\0"                                               \
59         "stderr=serial\0"
60
61 #define CONFIG_SYS_HZ                   1000
62
63 /* Physical Memory Map */
64 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
65 #define PHYS_SDRAM_SIZE                 (2u * 1024 * 1024 * 1024)
66
67 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
68 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
69 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
70
71 #define CONFIG_SYS_INIT_SP_OFFSET       \
72         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
73 #define CONFIG_SYS_INIT_SP_ADDR         \
74         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
75
76 /* Environment organization */
77
78 #if defined(CONFIG_ENV_IS_IN_MMC)
79         #define CONFIG_SYS_MMC_ENV_DEV          0
80         #define CONFIG_DYNAMIC_MMC_DEVNO
81 #endif
82
83 #endif /* __CONFIG_H */