Merge tag 'xilinx-for-v2022.10' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / include / configs / controlcenterdc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Stefan Roese <sr@denx.de>
4  * Copyright (C) 2016 Mario Six <mario.six@gdsys.cc>
5  */
6
7 #ifndef _CONFIG_CONTROLCENTERDC_H
8 #define _CONFIG_CONTROLCENTERDC_H
9
10 /*
11  * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
12  * for DDR ECC byte filling in the SPL before loading the main
13  * U-Boot into it.
14  */
15
16 /* Environment in SPI NOR flash */
17
18 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
19
20 /* PCIe support */
21 #ifndef CONFIG_SPL_BUILD
22 #define CONFIG_PCI_SCAN_SHOW
23 #endif
24
25 /*
26  * Environment Configuration
27  */
28
29 #define CONFIG_HOSTNAME         "ccdc"
30 #define CONFIG_ROOTPATH         "/opt/nfsroot"
31
32 #define CONFIG_EXTRA_ENV_SETTINGS                                               \
33         "netdev=eth1\0"                                         \
34         "consoledev=ttyS1\0"                                                    \
35         "u-boot=u-boot.bin\0"                                                   \
36         "bootfile_addr=1000000\0"                                               \
37         "keyprogram_addr=3000000\0"                                             \
38         "keyprogram_file=keyprogram.img\0"                                              \
39         "fdtfile=controlcenterdc.dtb\0"                                         \
40         "load=tftpboot ${loadaddr} ${u-boot}\0"                                 \
41         "mmcdev=0:2\0"                                                          \
42         "update=sf probe 1:0;"                                                  \
43                 " sf erase 0 +${filesize};"                                     \
44                 " sf write ${fileaddr} 0 ${filesize}\0"                         \
45         "upd=run load update\0"                                                 \
46         "fdt_high=0x10000000\0"                                                 \
47         "initrd_high=0x10000000\0"                                              \
48         "loadkeyprogram=tpm flush_keys;"                                        \
49                 " mmc rescan;"                                                  \
50                 " ext4load mmc ${mmcdev} ${keyprogram_addr} ${keyprogram_file};"\
51                 " source ${keyprogram_addr}:script@1\0"                         \
52         "gpio1=gpio@22_25\0"                                                    \
53         "gpio2=A29\0"                                                           \
54         "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 "    \
55                   "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"  \
56         "bootfail=for i in ${blinkseq}; do"                                     \
57                 " if test $i -eq 0; then"                                       \
58                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
59                 " elif test $i -eq 1; then"                                     \
60                 " gpio clear ${gpio1}; gpio clear ${gpio2};"                    \
61                 " elif test $i -eq 2; then"                                     \
62                 " gpio set ${gpio1}; gpio set ${gpio2};"                        \
63                 " else;"                                                        \
64                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
65                 " fi; sleep 0.12; done\0"
66
67 /*
68  * mv-common.h should be defined after CMD configs since it used them
69  * to enable certain macros
70  */
71 #include "mv-common.h"
72
73 #endif /* _CONFIG_CONTROLCENTERDC_H */