1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
4 * Copyright (C) 2016 Mario Six <mario.six@gdsys.cc>
7 #ifndef _CONFIG_CONTROLCENTERDC_H
8 #define _CONFIG_CONTROLCENTERDC_H
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
16 /* Environment in SPI NOR flash */
18 #define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
21 #ifndef CONFIG_SPL_BUILD
22 #define CONFIG_PCI_SCAN_SHOW
27 * Select the boot device here
29 * Currently supported are:
30 * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash
31 * SPL_BOOT_SDIO_MMC_CARD - Booting via SDIO/MMC card (partition 1)
33 #define SPL_BOOT_SPI_NOR_FLASH 1
34 #define SPL_BOOT_SDIO_MMC_CARD 2
35 #define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH
38 #define CONFIG_SPL_SIZE (160 << 10)
40 #define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
42 #define CONFIG_SPL_STACK (0x40000000 + ((212 - 16) << 10))
44 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
45 /* SPL related MMC defines */
46 #ifdef CONFIG_SPL_BUILD
47 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */
52 * Environment Configuration
55 #define CONFIG_HOSTNAME "ccdc"
56 #define CONFIG_ROOTPATH "/opt/nfsroot"
58 #define CONFIG_EXTRA_ENV_SETTINGS \
60 "consoledev=ttyS1\0" \
61 "u-boot=u-boot.bin\0" \
62 "bootfile_addr=1000000\0" \
63 "keyprogram_addr=3000000\0" \
64 "keyprogram_file=keyprogram.img\0" \
65 "fdtfile=controlcenterdc.dtb\0" \
66 "load=tftpboot ${loadaddr} ${u-boot}\0" \
68 "update=sf probe 1:0;" \
69 " sf erase 0 +${filesize};" \
70 " sf write ${fileaddr} 0 ${filesize}\0" \
71 "upd=run load update\0" \
72 "fdt_high=0x10000000\0" \
73 "initrd_high=0x10000000\0" \
74 "loadkeyprogram=tpm flush_keys;" \
76 " ext4load mmc ${mmcdev} ${keyprogram_addr} ${keyprogram_file};"\
77 " source ${keyprogram_addr}:script@1\0" \
78 "gpio1=gpio@22_25\0" \
80 "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 " \
81 "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" \
82 "bootfail=for i in ${blinkseq}; do" \
83 " if test $i -eq 0; then" \
84 " gpio clear ${gpio1}; gpio set ${gpio2};" \
85 " elif test $i -eq 1; then" \
86 " gpio clear ${gpio1}; gpio clear ${gpio2};" \
87 " elif test $i -eq 2; then" \
88 " gpio set ${gpio1}; gpio set ${gpio2};" \
90 " gpio clear ${gpio1}; gpio set ${gpio2};" \
91 " fi; sleep 0.12; done\0"
94 * mv-common.h should be defined after CMD configs since it used them
95 * to enable certain macros
97 #include "mv-common.h"
99 #endif /* _CONFIG_CONTROLCENTERDC_H */