blob: bd3c3402c4859a1835814e48ba94e996744d39f1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Boris BREZILLON7832bf32015-03-04 13:13:05 +01002/*
3 * Copyright (C) 2013 Seco S.r.l
4 *
5 * Configuration settings for the Seco Boards.
Boris BREZILLON7832bf32015-03-04 13:13:05 +01006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include "mx6_common.h"
Boris BREZILLON7832bf32015-03-04 13:13:05 +010012
Boris BREZILLON7832bf32015-03-04 13:13:05 +010013#define CONFIG_BOARD_REVISION_TAG
14
15/* Size of malloc() pool */
16#define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
17
Boris BREZILLON7832bf32015-03-04 13:13:05 +010018#define CONFIG_MXC_UART_BASE UART2_BASE
19
Boris BREZILLON7832bf32015-03-04 13:13:05 +010020/* MMC Configuration */
Boris BREZILLON7832bf32015-03-04 13:13:05 +010021#define CONFIG_SYS_FSL_USDHC_NUM 2
22#define CONFIG_SYS_FSL_ESDHC_ADDR 0
23
Boris BREZILLON7832bf32015-03-04 13:13:05 +010024/* Ethernet Configuration */
Boris BREZILLON7832bf32015-03-04 13:13:05 +010025#define CONFIG_FEC_MXC
Boris BREZILLON7832bf32015-03-04 13:13:05 +010026#define IMX_FEC_BASE ENET_BASE_ADDR
27#define CONFIG_FEC_XCV_TYPE RGMII
28#define CONFIG_ETHPRIME "FEC"
29#define CONFIG_FEC_MXC_PHYADDR 6
Boris BREZILLON7832bf32015-03-04 13:13:05 +010030
31#define CONFIG_EXTRA_ENV_SETTINGS \
32 "netdev=eth0\0" \
33 "ethprime=FEC0\0" \
34 "netdev=eth0\0" \
35 "ethprime=FEC0\0" \
36 "uboot=u-boot.bin\0" \
37 "kernel=uImage\0" \
38 "nfsroot=/opt/eldk/arm\0" \
39 "ip_local=10.0.0.5::10.0.0.1:255.255.255.0::eth0:off\0" \
40 "ip_server=10.0.0.1\0" \
41 "nfs_path=/targetfs \0" \
42 "memory=mem=1024M\0" \
43 "bootdev=mmc dev 0; ext2load mmc 0:1\0" \
44 "root=root=/dev/mmcblk0p1\0" \
45 "option=rootwait rw fixrtc rootflags=barrier=1\0" \
46 "cpu_freq=arm_freq=996\0" \
47 "setbootargs=setenv bootargs console=ttymxc1,115200 ${root}" \
48 " ${option} ${memory} ${cpu_freq}\0" \
49 "setbootargs_nfs=setenv bootargs console=ttymxc1,115200" \
50 " root=/dev/nfs nfsroot=${ip_server}:${nfs_path}" \
51 " nolock,wsize=4096,rsize=4096 ip=:::::eth0:dhcp" \
52 " ${memory} ${cpu_freq}\0" \
53 "setbootdev=setenv boot_dev ${bootdev} 10800000 /boot/uImage\0" \
54 "bootcmd=run setbootargs; run setbootdev; run boot_dev;" \
55 " bootm 0x10800000\0" \
56 "stdin=serial\0" \
57 "stdout=serial\0" \
58 "stderr=serial\0"
59
Boris BREZILLON7832bf32015-03-04 13:13:05 +010060#define CONFIG_SYS_HZ 1000
61
Boris BREZILLON7832bf32015-03-04 13:13:05 +010062/* Physical Memory Map */
Boris BREZILLON7832bf32015-03-04 13:13:05 +010063#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
64#define PHYS_SDRAM_SIZE (2u * 1024 * 1024 * 1024)
65
66#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
67#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
68#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
69
70#define CONFIG_SYS_INIT_SP_OFFSET \
71 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
72#define CONFIG_SYS_INIT_SP_ADDR \
73 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
74
Peter Robinson4b671502015-05-22 17:30:45 +010075/* Environment organization */
Boris BREZILLON7832bf32015-03-04 13:13:05 +010076
77#if defined(CONFIG_ENV_IS_IN_MMC)
Boris BREZILLON7832bf32015-03-04 13:13:05 +010078 #define CONFIG_DYNAMIC_MMC_DEVNO
79#endif
80
Boris BREZILLON7832bf32015-03-04 13:13:05 +010081#endif /* __CONFIG_H */