]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/platinum.h
Merge tag 'u-boot-rockchip-20190809' of https://gitlab.denx.de/u-boot/custodians...
[thirdparty/u-boot.git] / include / configs / platinum.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
5d6050fd
SR
2/*
3 * Copyright (C) 2014, Barco (www.barco.com)
5d6050fd
SR
4 */
5
6#ifndef __PLATINUM_CONFIG_H__
7#define __PLATINUM_CONFIG_H__
8
5d6050fd 9/* SPL */
5d6050fd
SR
10
11/* Location in NAND to read U-Boot from */
12#define CONFIG_SYS_NAND_U_BOOT_OFFS (14 * 1024 * 1024)
13
14#include "imx6_spl.h" /* common IMX6 SPL configuration */
15#include "mx6_common.h"
5d6050fd 16
5d6050fd
SR
17/*
18 * Hardware configuration
19 */
20
5d6050fd
SR
21/* UART config */
22#define CONFIG_MXC_UART
23#define CONFIG_MXC_UART_BASE UART1_BASE
5d6050fd
SR
24
25/* I2C config */
26#define CONFIG_SYS_I2C
27#define CONFIG_SYS_I2C_MXC
03544c66
AA
28#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
29#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
f8cb101e 30#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
5d6050fd
SR
31#define CONFIG_SYS_I2C_SPEED 100000
32
33/* MMC config */
5d6050fd
SR
34#define CONFIG_SYS_FSL_ESDHC_ADDR 0
35#define CONFIG_SYS_FSL_USDHC_NUM 1
5d6050fd
SR
36
37/* Ethernet config */
38#define CONFIG_FEC_MXC
5d6050fd
SR
39#define IMX_FEC_BASE ENET_BASE_ADDR
40
5d6050fd 41/* USB config */
5d6050fd
SR
42#define CONFIG_MXC_USB_PORT 1
43#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
44#define CONFIG_MXC_USB_FLAGS 0
45
46/* Memory config */
5d6050fd
SR
47#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
48#ifndef PHYS_SDRAM_SIZE
49#define PHYS_SDRAM_SIZE (1024 << 20)
50#endif
51
52#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
53#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
54#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
55
56#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
57 GENERATED_GBL_DATA_SIZE)
58#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
59 CONFIG_SYS_INIT_SP_OFFSET)
60
61#define CONFIG_SYS_MALLOC_LEN (16 * 1024 * 1024)
62
5d6050fd
SR
63#ifdef CONFIG_CMD_NAND
64
65/* NAND config */
5d6050fd
SR
66#ifndef CONFIG_SYS_NAND_MAX_CHIPS
67#define CONFIG_SYS_NAND_MAX_CHIPS 2
68#endif
69#define CONFIG_SYS_MAX_NAND_DEVICE 1
70#define CONFIG_SYS_NAND_BASE 0x40000000
71#define CONFIG_SYS_NAND_5_ADDR_CYCLE
72#define CONFIG_SYS_NAND_ONFI_DETECTION
73
74/* DMA config, needed for GPMI/MXS NAND support */
5d6050fd 75
5d6050fd 76/* Environment in NAND */
5d6050fd
SR
77#define CONFIG_ENV_OFFSET (16 << 20)
78#define CONFIG_ENV_SECT_SIZE (128 << 10)
79#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
80#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (512 << 10))
81#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
82
83#else /* CONFIG_CMD_NAND */
84
85/* Environment in MMC */
86#define CONFIG_ENV_SIZE (8 << 10)
5d6050fd
SR
87#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
88#define CONFIG_SYS_MMC_ENV_DEV 0
89
90#endif /* CONFIG_CMD_NAND */
91
92/*
93 * U-Boot configuration
94 */
95
5d6050fd 96/* Board startup config */
5d6050fd 97
5d6050fd
SR
98#define CONFIG_SYS_MEMTEST_START PHYS_SDRAM
99#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + \
100 PHYS_SDRAM_SIZE - (12 << 20))
101
5d6050fd
SR
102#define CONFIG_BOOTCOMMAND "run bootubi_scr"
103
104/* Miscellaneous configurable options */
5d6050fd 105
5d6050fd 106/* MTD/UBI/UBIFS config */
5d6050fd 107
5d6050fd
SR
108/*
109 * Environment configuration
110 */
111
112#if (CONFIG_SYS_NAND_MAX_CHIPS == 1)
113#define CONFIG_COMMON_ENV_UBI \
114 "setubipartition=env set ubipartition ubi\0" \
115 "setubirfs=env set ubirfs $ubipartition:rootfs$boot_vol\0"
116#elif (CONFIG_SYS_NAND_MAX_CHIPS == 2)
117#define CONFIG_COMMON_ENV_UBI \
118 "setubipartition=env set ubipartition ubi$boot_vol\0" \
119 "setubirfs=env set ubirfs ubi0:rootfs\0"
120#endif
121
122#define CONFIG_COMMON_ENV_MISC \
123 "user=user\0" \
124 "project="CONFIG_PLATINUM_PROJECT"\0" \
125 "uimage=uImage\0" \
126 "dtb="CONFIG_PLATINUM_CPU"-platinum-"CONFIG_PLATINUM_PROJECT".dtb\0" \
127 "serverip=serverip\0" \
128 "memaddrlinux=0x10800000\0" \
129 "memaddrsrc=0x11000000\0" \
130 "memaddrdtb=0x12000000\0" \
131 "console=ttymxc0\0" \
132 "baudrate=115200\0" \
133 "boot_scr=boot.uboot\0" \
134 "boot_vol=0\0" \
43ede0bc
TR
135 "mtdids="CONFIG_MTDIDS_DEFAULT"\0" \
136 "mtdparts="CONFIG_MTDPARTS_DEFAULT"\0" \
5d6050fd
SR
137 "mmcfs=ext2\0" \
138 "mmcrootpart=1\0" \
139 \
140 "setnfspath=env set nfspath /home/nfs/$user/$project/root\0" \
141 "settftpfilelinux=env set tftpfilelinux $user/$project/$uimage\0" \
142 "settftpfiledtb=env set tftpfiledtb $user/$project/$dtb\0" \
143 "setubifilelinux=env set ubifilelinux boot/$uimage\0" \
144 "setubipfiledtb=env set ubifiledtb boot/$dtb\0" \
145 "setmmcrootdev=env set mmcrootdev /dev/mmcblk0p$mmcrootpart\0" \
146 "setmmcfilelinux=env set mmcfilelinux /boot/$uimage\0" \
147 "setmmcfiledtb=env set mmcfiledtb /boot/$dtb\0" \
148 \
149 "loadtftpkernel=dhcp $memaddrlinux $tftpfilelinux\0" \
150 "loadtftpdtb=dhcp $memaddrdtb $tftpfiledtb\0" \
151 "loadubikernel=ubifsload $memaddrlinux $ubifilelinux\0" \
152 "loadubidtb=ubifsload $memaddrdtb $ubifiledtb\0" \
153 "loadmmckernel=${mmcfs}load mmc 0:$mmcrootpart $memaddrlinux " \
154 "$mmcfilelinux\0" \
155 "loadmmcdtb=${mmcfs}load mmc 0:$mmcrootpart $memaddrdtb " \
156 "$mmcfiledtb\0" \
157 \
158 "ubipart=ubi part $ubipartition\0" \
159 "ubimount=ubifsmount $ubirfs\0" \
160 \
161 "setbootargscommon=env set bootargs $bootargs " \
162 "console=$console,$baudrate enable_wait_mode=off\0" \
163 "setbootargsmtd=env set bootargs $bootargs $mtdparts\0" \
164 "setbootargsdhcp=env set bootargs $bootargs ip=dhcp\0" \
165 "setbootargsubirfs=env set bootargs $bootargs " \
166 "ubi.mtd=$ubipartition root=$ubirfs rootfstype=ubifs\0" \
167 "setbootargsnfsrfs=env set bootargs $bootargs root=/dev/nfs " \
168 "nfsroot=$serverip:$nfspath,v3,tcp\0" \
169 "setbootargsmmcrfs=env set bootargs $bootargs " \
170 "root=$mmcrootdev rootwait rw\0" \
171 \
172 "bootnet=run settftpfilelinux settftpfiledtb setnfspath " \
173 "setbootargscommon setbootargsmtd setbootargsdhcp " \
174 "setbootargsnfsrfs;" \
175 "run loadtftpkernel loadtftpdtb;" \
176 "bootm $memaddrlinux - $memaddrdtb\0" \
177 "bootnet_ubirfs=run settftpfilelinux settftpfiledtb;" \
178 "run setubipartition setubirfs;" \
179 "run setbootargscommon setbootargsmtd " \
180 "setbootargsubirfs;" \
181 "run loadtftpkernel loadtftpdtb;" \
182 "bootm $memaddrlinux - $memaddrdtb\0" \
183 "bootubi=run setubipartition setubirfs setubifilelinux " \
184 "setubipfiledtb;" \
185 "run setbootargscommon setbootargsmtd " \
186 "setbootargsubirfs;" \
187 "run ubipart ubimount loadubikernel loadubidtb;" \
188 "bootm $memaddrlinux - $memaddrdtb\0" \
189 "bootubi_scr=run setubipartition setubirfs;" \
190 "run ubipart ubimount;" \
191 "if ubifsload ${memaddrsrc} boot/${boot_scr}; " \
192 "then source ${memaddrsrc}; else run bootubi; fi\0" \
193 "bootmmc=run setmmcrootdev setmmcfilelinux setmmcfiledtb " \
194 "setbootargscommon setbootargsmmcrfs;" \
195 "run loadmmckernel loadmmcdtb;" \
196 "bootm $memaddrlinux - $memaddrdtb\0" \
197 \
198 "bootcmd="CONFIG_BOOTCOMMAND"\0"
199
200#define CONFIG_COMMON_ENV_SETTINGS CONFIG_COMMON_ENV_MISC \
201 CONFIG_COMMON_ENV_UBI
202#endif /* __PLATINUM_CONFIG_H__ */