Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[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  * High Level Configuration Options (easy to change)
12  */
13 #define CONFIG_CUSTOMER_BOARD_SUPPORT
14
15 /*
16  * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
17  * for DDR ECC byte filling in the SPL before loading the main
18  * U-Boot into it.
19  */
20
21 /* Environment in SPI NOR flash */
22
23 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
24
25 /* PCIe support */
26 #ifndef CONFIG_SPL_BUILD
27 #define CONFIG_PCI_SCAN_SHOW
28 #endif
29
30 /*
31  * Software (bit-bang) MII driver configuration
32  */
33 #define CONFIG_BITBANGMII_MULTI
34
35 /* SPL */
36 /*
37  * Select the boot device here
38  *
39  * Currently supported are:
40  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
41  * SPL_BOOT_SDIO_MMC_CARD       - Booting via SDIO/MMC card (partition 1)
42  */
43 #define SPL_BOOT_SPI_NOR_FLASH          1
44 #define SPL_BOOT_SDIO_MMC_CARD          2
45 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
46
47 /* Defines for SPL */
48 #define CONFIG_SPL_SIZE                 (160 << 10)
49
50 #if defined(CONFIG_SECURED_MODE_IMAGE)
51 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x2614)
52 #else
53 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x30)
54 #endif
55
56 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
57 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
58
59 #ifdef CONFIG_SPL_BUILD
60 #define CONFIG_SYS_MALLOC_SIMPLE
61 #endif
62
63 #define CONFIG_SPL_STACK                (0x40000000 + ((212 - 16) << 10))
64 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
65
66 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
67 /* SPL related MMC defines */
68 #ifdef CONFIG_SPL_BUILD
69 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
70 #endif
71 #endif
72
73 /*
74  * Environment Configuration
75  */
76
77 #define CONFIG_HOSTNAME         "ccdc"
78 #define CONFIG_ROOTPATH         "/opt/nfsroot"
79
80 #define CONFIG_EXTRA_ENV_SETTINGS                                               \
81         "netdev=eth1\0"                                         \
82         "consoledev=ttyS1\0"                                                    \
83         "u-boot=u-boot.bin\0"                                                   \
84         "bootfile_addr=1000000\0"                                               \
85         "keyprogram_addr=3000000\0"                                             \
86         "keyprogram_file=keyprogram.img\0"                                              \
87         "fdtfile=controlcenterdc.dtb\0"                                         \
88         "load=tftpboot ${loadaddr} ${u-boot}\0"                                 \
89         "mmcdev=0:2\0"                                                          \
90         "update=sf probe 1:0;"                                                  \
91                 " sf erase 0 +${filesize};"                                     \
92                 " sf write ${fileaddr} 0 ${filesize}\0"                         \
93         "upd=run load update\0"                                                 \
94         "fdt_high=0x10000000\0"                                                 \
95         "initrd_high=0x10000000\0"                                              \
96         "loadkeyprogram=tpm flush_keys;"                                        \
97                 " mmc rescan;"                                                  \
98                 " ext4load mmc ${mmcdev} ${keyprogram_addr} ${keyprogram_file};"\
99                 " source ${keyprogram_addr}:script@1\0"                         \
100         "gpio1=gpio@22_25\0"                                                    \
101         "gpio2=A29\0"                                                           \
102         "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 "    \
103                   "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"  \
104         "bootfail=for i in ${blinkseq}; do"                                     \
105                 " if test $i -eq 0; then"                                       \
106                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
107                 " elif test $i -eq 1; then"                                     \
108                 " gpio clear ${gpio1}; gpio clear ${gpio2};"                    \
109                 " elif test $i -eq 2; then"                                     \
110                 " gpio set ${gpio1}; gpio set ${gpio2};"                        \
111                 " else;"                                                        \
112                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
113                 " fi; sleep 0.12; done\0"
114
115 /*
116  * mv-common.h should be defined after CMD configs since it used them
117  * to enable certain macros
118  */
119 #include "mv-common.h"
120
121 #endif /* _CONFIG_CONTROLCENTERDC_H */