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