1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2015 Marek Vasut <marex@denx.de>
5 #ifndef __CONFIG_ARIES_MCVEVK_H__
6 #define __CONFIG_ARIES_MCVEVK_H__
8 #include <asm/arch/base_addr_ac5.h>
10 /* Memory configurations */
11 #define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB on MCV */
14 #define CONFIG_BOOTFILE "fitImage"
15 #define CONFIG_BOOTCOMMAND "run mmc_mmc"
16 #define CONFIG_LOADADDR 0x01000000
17 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
19 /* Environment is in MMC */
20 #define CONFIG_ENV_OVERWRITE
22 /* Extra Environment */
23 #define CONFIG_EXTRA_ENV_SETTINGS \
26 "bootscript=boot.scr\0" \
27 "setuuid=part uuid mmc 0:3 uuid\0" \
30 "kernel_addr_r=0x10000000\0" \
31 "socfpga_legacy_reset_compat=1\0" \
32 "bootm_size=0xa000000\0" \
33 "dfu_alt_info=mmc raw 0 3867148288\0" \
34 "update_filename=u-boot-with-spl.sfp\0" \
35 "update_sd_offset=0x800\0" \
36 "update_sd=" /* Update the SD firmware partition */ \
37 "if mmc rescan ; then " \
38 "if tftp ${update_filename} ; then " \
39 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
40 "setexpr fw_sz ${fw_sz} + 1 ; " \
41 "mmc write ${loadaddr} ${update_sd_offset} ${fw_sz} ; " \
44 "update_qspi_offset=0x0\0" \
45 "update_qspi=" /* Update the QSPI firmware */ \
46 "if sf probe ; then " \
47 "if tftp ${update_filename} ; then " \
48 "sf update ${loadaddr} ${update_qspi_offset} ${filesize} ; " \
51 "fpga_filename=output_file.rbf\0" \
52 "load_fpga=" /* Load FPGA bitstream */ \
53 "if tftp ${fpga_filename} ; then " \
54 "fpga load 0 $loadaddr $filesize ; " \
58 "setenv bootargs ${bootargs} " \
59 "console=${consdev},${baudrate}\0" \
61 "setenv bootargs ${bootargs} " \
62 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
63 "${netmask}:${hostname}:${netdev}:off\0" \
65 "setenv bootargs ${bootargs} ${miscargs}\0" \
66 "addargs=run addcons addmisc\0" \
69 "load mmc 0:2 ${kernel_addr_r} ${bootfile}\0" \
71 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
72 "miscargs=nohlt panic=1\0" \
73 "mmcargs=setenv bootargs root=PARTUUID=${uuid} rw rootwait\0" \
75 "setenv bootargs root=/dev/nfs rw " \
76 "nfsroot=${serverip}:${rootpath},v3,tcp\0" \
78 "run mmcload setuuid mmcargs addargs ; " \
79 "bootm ${kernel_addr_r}\0" \
81 "run mmcload nfsargs addip addargs ; " \
82 "bootm ${kernel_addr_r}\0" \
84 "run netload setuuid mmcargs addargs ; " \
85 "bootm ${kernel_addr_r}\0" \
87 "run netload nfsargs addip addargs ; " \
88 "bootm ${kernel_addr_r}\0" \
91 "if test -e mmc 0:2 ${bootscript} ; then " \
92 "if load mmc 0:2 ${kernel_addr_r} ${bootscript};" \
94 "echo Running bootscript... ; " \
95 "source ${kernel_addr_r} ; " \
99 /* The rest of the configuration is shared */
100 #include <configs/socfpga_common.h>
102 #endif /* __CONFIG_ARIES_MCVEVK_H__ */