7fb96e8ad595c573b58f116376c14dbf61960354
[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 #define CONFIG_BOOTFILE         "ccdc.img"
80
81 #define CONFIG_EXTRA_ENV_SETTINGS                                               \
82         "netdev=eth1\0"                                         \
83         "consoledev=ttyS1\0"                                                    \
84         "u-boot=u-boot.bin\0"                                                   \
85         "bootfile_addr=1000000\0"                                               \
86         "keyprogram_addr=3000000\0"                                             \
87         "keyprogram_file=keyprogram.img\0"                                              \
88         "fdtfile=controlcenterdc.dtb\0"                                         \
89         "load=tftpboot ${loadaddr} ${u-boot}\0"                                 \
90         "mmcdev=0:2\0"                                                          \
91         "update=sf probe 1:0;"                                                  \
92                 " sf erase 0 +${filesize};"                                     \
93                 " sf write ${fileaddr} 0 ${filesize}\0"                         \
94         "upd=run load update\0"                                                 \
95         "fdt_high=0x10000000\0"                                                 \
96         "initrd_high=0x10000000\0"                                              \
97         "loadkeyprogram=tpm flush_keys;"                                        \
98                 " mmc rescan;"                                                  \
99                 " ext4load mmc ${mmcdev} ${keyprogram_addr} ${keyprogram_file};"\
100                 " source ${keyprogram_addr}:script@1\0"                         \
101         "gpio1=gpio@22_25\0"                                                    \
102         "gpio2=A29\0"                                                           \
103         "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 "    \
104                   "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"  \
105         "bootfail=for i in ${blinkseq}; do"                                     \
106                 " if test $i -eq 0; then"                                       \
107                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
108                 " elif test $i -eq 1; then"                                     \
109                 " gpio clear ${gpio1}; gpio clear ${gpio2};"                    \
110                 " elif test $i -eq 2; then"                                     \
111                 " gpio set ${gpio1}; gpio set ${gpio2};"                        \
112                 " else;"                                                        \
113                 " gpio clear ${gpio1}; gpio set ${gpio2};"                      \
114                 " fi; sleep 0.12; done\0"
115
116 /*
117  * mv-common.h should be defined after CMD configs since it used them
118  * to enable certain macros
119  */
120 #include "mv-common.h"
121
122 #endif /* _CONFIG_CONTROLCENTERDC_H */