blob: 2d219b2b5fe1ba32efcd4a0e4223771a90a5ac97 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Boris BREZILLON058d2312015-03-04 13:13:05 +01002/*
3 * Copyright (C) 2013 Seco S.r.l
4 *
5 * Configuration settings for the Seco Boards.
Boris BREZILLON058d2312015-03-04 13:13:05 +01006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include "mx6_common.h"
Boris BREZILLON058d2312015-03-04 13:13:05 +010012
Boris BREZILLON058d2312015-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 BREZILLON058d2312015-03-04 13:13:05 +010018#define CONFIG_MXC_UART
19#define CONFIG_MXC_UART_BASE UART2_BASE
20
Boris BREZILLON058d2312015-03-04 13:13:05 +010021#define CONFIG_SYS_MEMTEST_START 0x10000000
22#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M)
Boris BREZILLON058d2312015-03-04 13:13:05 +010023
24/* MMC Configuration */
Boris BREZILLON058d2312015-03-04 13:13:05 +010025#define CONFIG_SYS_FSL_USDHC_NUM 2
26#define CONFIG_SYS_FSL_ESDHC_ADDR 0
27
Boris BREZILLON058d2312015-03-04 13:13:05 +010028/* Ethernet Configuration */
Boris BREZILLON058d2312015-03-04 13:13:05 +010029#define CONFIG_FEC_MXC
Boris BREZILLON058d2312015-03-04 13:13:05 +010030#define IMX_FEC_BASE ENET_BASE_ADDR
31#define CONFIG_FEC_XCV_TYPE RGMII
32#define CONFIG_ETHPRIME "FEC"
33#define CONFIG_FEC_MXC_PHYADDR 6
Boris BREZILLON058d2312015-03-04 13:13:05 +010034
35#define CONFIG_EXTRA_ENV_SETTINGS \
36 "netdev=eth0\0" \
37 "ethprime=FEC0\0" \
38 "netdev=eth0\0" \
39 "ethprime=FEC0\0" \
40 "uboot=u-boot.bin\0" \
41 "kernel=uImage\0" \
42 "nfsroot=/opt/eldk/arm\0" \
43 "ip_local=10.0.0.5::10.0.0.1:255.255.255.0::eth0:off\0" \
44 "ip_server=10.0.0.1\0" \
45 "nfs_path=/targetfs \0" \
46 "memory=mem=1024M\0" \
47 "bootdev=mmc dev 0; ext2load mmc 0:1\0" \
48 "root=root=/dev/mmcblk0p1\0" \
49 "option=rootwait rw fixrtc rootflags=barrier=1\0" \
50 "cpu_freq=arm_freq=996\0" \
51 "setbootargs=setenv bootargs console=ttymxc1,115200 ${root}" \
52 " ${option} ${memory} ${cpu_freq}\0" \
53 "setbootargs_nfs=setenv bootargs console=ttymxc1,115200" \
54 " root=/dev/nfs nfsroot=${ip_server}:${nfs_path}" \
55 " nolock,wsize=4096,rsize=4096 ip=:::::eth0:dhcp" \
56 " ${memory} ${cpu_freq}\0" \
57 "setbootdev=setenv boot_dev ${bootdev} 10800000 /boot/uImage\0" \
58 "bootcmd=run setbootargs; run setbootdev; run boot_dev;" \
59 " bootm 0x10800000\0" \
60 "stdin=serial\0" \
61 "stdout=serial\0" \
62 "stderr=serial\0"
63
Boris BREZILLON058d2312015-03-04 13:13:05 +010064#define CONFIG_SYS_HZ 1000
65
Boris BREZILLON058d2312015-03-04 13:13:05 +010066/* Physical Memory Map */
Boris BREZILLON058d2312015-03-04 13:13:05 +010067#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
68#define PHYS_SDRAM_SIZE (2u * 1024 * 1024 * 1024)
69
70#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
71#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
72#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
73
74#define CONFIG_SYS_INIT_SP_OFFSET \
75 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
76#define CONFIG_SYS_INIT_SP_ADDR \
77 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
78
Peter Robinson056845c2015-05-22 17:30:45 +010079/* Environment organization */
Boris BREZILLON058d2312015-03-04 13:13:05 +010080#define CONFIG_ENV_SIZE (8 * 1024)
81
82#if defined(CONFIG_ENV_IS_IN_MMC)
83 #define CONFIG_ENV_OFFSET (6 * 128 * 1024)
84 #define CONFIG_SYS_MMC_ENV_DEV 0
85 #define CONFIG_DYNAMIC_MMC_DEVNO
86#endif
87
Boris BREZILLON058d2312015-03-04 13:13:05 +010088#endif /* __CONFIG_H */