blob: f6d53284d7d5949e00afcf89ed83220dd82c36d9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Eibach60083262017-02-22 16:07:23 +01002/*
3 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
4 * Copyright (C) 2016 Mario Six <mario.six@gdsys.cc>
Dirk Eibach60083262017-02-22 16:07:23 +01005 */
6
7#ifndef _CONFIG_CONTROLCENTERDC_H
8#define _CONFIG_CONTROLCENTERDC_H
9
10/*
11 * High Level Configuration Options (easy to change)
12 */
13#define CONFIG_CUSTOMER_BOARD_SUPPORT
14
15#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
Dirk Eibach60083262017-02-22 16:07:23 +010016#define CONFIG_BOARD_LATE_INIT
Dirk Eibach60083262017-02-22 16:07:23 +010017
18/*
19 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
20 * for DDR ECC byte filling in the SPL before loading the main
21 * U-Boot into it.
22 */
Dirk Eibach60083262017-02-22 16:07:23 +010023
24#define CONFIG_SYS_TCLK 250000000 /* 250MHz */
25
26#define CONFIG_LOADADDR 1000000
27
Dirk Eibach60083262017-02-22 16:07:23 +010028/*
29 * SDIO/MMC Card Configuration
30 */
31#define CONFIG_SYS_MMC_BASE MVEBU_SDIO_BASE
32
33/*
34 * SATA/SCSI/AHCI configuration
35 */
Dirk Eibach60083262017-02-22 16:07:23 +010036#define CONFIG_SCSI_AHCI_PLAT
37#define CONFIG_SYS_SCSI_MAX_SCSI_ID 2
38#define CONFIG_SYS_SCSI_MAX_LUN 1
39#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
40 CONFIG_SYS_SCSI_MAX_LUN)
41
Dirk Eibach60083262017-02-22 16:07:23 +010042/* USB/EHCI configuration */
43#define CONFIG_EHCI_IS_TDI
44
45/* Environment in SPI NOR flash */
Dirk Eibach60083262017-02-22 16:07:23 +010046#define CONFIG_ENV_OFFSET (1 << 20) /* 1MiB in */
47#define CONFIG_ENV_SIZE (64 << 10) /* 64KiB */
48#define CONFIG_ENV_SECT_SIZE (256 << 10) /* 256KiB sectors */
49
Dirk Eibach60083262017-02-22 16:07:23 +010050#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
51
52/* PCIe support */
53#ifndef CONFIG_SPL_BUILD
Dirk Eibach60083262017-02-22 16:07:23 +010054#define CONFIG_PCI_SCAN_SHOW
55#endif
56
Dirk Eibach60083262017-02-22 16:07:23 +010057/*
58 * Software (bit-bang) MII driver configuration
59 */
60#define CONFIG_BITBANGMII /* bit-bang MII PHY management */
61#define CONFIG_BITBANGMII_MULTI
62
63/* SPL */
64/*
65 * Select the boot device here
66 *
67 * Currently supported are:
68 * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash
69 * SPL_BOOT_SDIO_MMC_CARD - Booting via SDIO/MMC card (partition 1)
70 */
71#define SPL_BOOT_SPI_NOR_FLASH 1
72#define SPL_BOOT_SDIO_MMC_CARD 2
73#define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH
74
75/* Defines for SPL */
Dirk Eibach60083262017-02-22 16:07:23 +010076#define CONFIG_SPL_SIZE (160 << 10)
77
78#if defined(CONFIG_SECURED_MODE_IMAGE)
Dirk Eibach60083262017-02-22 16:07:23 +010079#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x2614)
80#else
Dirk Eibach60083262017-02-22 16:07:23 +010081#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x30)
82#endif
83
84#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
85#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
86
87#ifdef CONFIG_SPL_BUILD
88#define CONFIG_SYS_MALLOC_SIMPLE
89#endif
90
91#define CONFIG_SPL_STACK (0x40000000 + ((212 - 16) << 10))
92#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
93
94#define CONFIG_SPL_LIBCOMMON_SUPPORT
95#define CONFIG_SPL_LIBGENERIC_SUPPORT
Dirk Eibach60083262017-02-22 16:07:23 +010096#define CONFIG_SPL_I2C_SUPPORT
97
98#if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
99/* SPL related SPI defines */
Dirk Eibach60083262017-02-22 16:07:23 +0100100#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_SPI_U_BOOT_OFFS
101#endif
102
103#if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
104/* SPL related MMC defines */
105#define CONFIG_SPL_MMC_SUPPORT
106#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION 1
107#define CONFIG_SYS_MMC_U_BOOT_OFFS (168 << 10)
108#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_MMC_U_BOOT_OFFS
109#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR (CONFIG_SYS_U_BOOT_OFFS / 512)
110#ifdef CONFIG_SPL_BUILD
111#define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */
112#endif
113#endif
114
115/*
116 * Environment Configuration
117 */
118#define CONFIG_ENV_OVERWRITE
119
120#define CONFIG_BAUDRATE 115200
121
Mario Six5bc05432018-03-28 14:38:20 +0200122#define CONFIG_HOSTNAME "ccdc"
Dirk Eibach60083262017-02-22 16:07:23 +0100123#define CONFIG_ROOTPATH "/opt/nfsroot"
124#define CONFIG_BOOTFILE "ccdc.img"
125
Dirk Eibach60083262017-02-22 16:07:23 +0100126#define CONFIG_EXTRA_ENV_SETTINGS \
127 "netdev=eth1\0" \
128 "consoledev=ttyS1\0" \
129 "u-boot=u-boot.bin\0" \
130 "bootfile_addr=1000000\0" \
131 "keyprogram_addr=3000000\0" \
132 "keyprogram_file=keyprogram.img\0" \
133 "fdtfile=controlcenterdc.dtb\0" \
134 "load=tftpboot ${loadaddr} ${u-boot}\0" \
135 "mmcdev=0:2\0" \
136 "update=sf probe 1:0;" \
137 " sf erase 0 +${filesize};" \
138 " sf write ${fileaddr} 0 ${filesize}\0" \
139 "upd=run load update\0" \
140 "fdt_high=0x10000000\0" \
141 "initrd_high=0x10000000\0" \
142 "loadkeyprogram=tpm flush_keys;" \
143 " mmc rescan;" \
144 " ext4load mmc ${mmcdev} ${keyprogram_addr} ${keyprogram_file};"\
145 " source ${keyprogram_addr}:script@1\0" \
146 "gpio1=gpio@22_25\0" \
147 "gpio2=A29\0" \
148 "blinkseq='0 0 0 0 2 0 2 2 3 1 3 1 0 0 2 2 3 1 3 3 2 0 2 2 3 1 1 1 " \
149 "2 0 2 2 3 1 3 1 0 0 2 0 3 3 3 1 2 0 0 0 3 1 1 1 0 0 0 0'\0" \
150 "bootfail=for i in ${blinkseq}; do" \
151 " if test $i -eq 0; then" \
152 " gpio clear ${gpio1}; gpio set ${gpio2};" \
153 " elif test $i -eq 1; then" \
154 " gpio clear ${gpio1}; gpio clear ${gpio2};" \
155 " elif test $i -eq 2; then" \
156 " gpio set ${gpio1}; gpio set ${gpio2};" \
157 " else;" \
158 " gpio clear ${gpio1}; gpio set ${gpio2};" \
159 " fi; sleep 0.12; done\0"
160
161#define CONFIG_NFSBOOTCOMMAND \
162 "setenv bootargs root=/dev/nfs rw " \
163 "nfsroot=${serverip}:${rootpath} " \
164 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev}:off " \
165 "console=${consoledev},${baudrate} ${othbootargs}; " \
166 "tftpboot ${bootfile_addr} ${bootfile}; " \
167 "bootm ${bootfile_addr}"
168
169#define CONFIG_MMCBOOTCOMMAND \
170 "setenv bootargs root=/dev/mmcblk0p3 rw rootwait " \
171 "console=${consoledev},${baudrate} ${othbootargs}; " \
172 "ext2load mmc 0:2 ${bootfile_addr} ${bootfile}; " \
173 "bootm ${bootfile_addr}"
174
175#define CONFIG_BOOTCOMMAND \
176 "if env exists keyprogram; then;" \
177 " setenv keyprogram; run nfsboot;" \
178 " fi;" \
179 " run dobootfail"
180
181/*
182 * mv-common.h should be defined after CMD configs since it used them
183 * to enable certain macros
184 */
185#include "mv-common.h"
186
187#endif /* _CONFIG_CONTROLCENTERDC_H */