]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/socfpga_socrates.h
common: bootdelay: move CONFIG_BOOTDELAY into a Kconfig option
[people/ms/u-boot.git] / include / configs / socfpga_socrates.h
1 /*
2 * Copyright (C) 2015 Marek Vasut <marex@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6 #ifndef __CONFIG_SOCFPGA_SOCRATES_H__
7 #define __CONFIG_SOCFPGA_SOCRATES_H__
8
9 #include <asm/arch/base_addr_ac5.h>
10
11 /* U-Boot Commands */
12 #define CONFIG_SYS_NO_FLASH
13 #define CONFIG_DOS_PARTITION
14 #define CONFIG_FAT_WRITE
15 #define CONFIG_HW_WATCHDOG
16
17 /* Memory configurations */
18 #define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB on SoCrates */
19
20 /* Booting Linux */
21 #define CONFIG_BOOTFILE "zImage"
22 #define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE)
23 #define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot"
24 #define CONFIG_LOADADDR 0x01000000
25 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
26
27 /* Ethernet on SoC (EMAC) */
28 #if defined(CONFIG_CMD_NET)
29 #define CONFIG_PHY_MICREL
30 #define CONFIG_PHY_MICREL_KSZ9021
31 #endif
32
33 #define CONFIG_ENV_IS_IN_MMC
34
35 /* Extra Environment */
36 #define CONFIG_EXTRA_ENV_SETTINGS \
37 "verify=n\0" \
38 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
39 "ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \
40 "bootm ${loadaddr} - ${fdt_addr}\0" \
41 "bootimage=zImage\0" \
42 "fdt_addr=100\0" \
43 "fdtimage=socfpga.dtb\0" \
44 "bootm ${loadaddr} - ${fdt_addr}\0" \
45 "mmcroot=/dev/mmcblk0p2\0" \
46 "mmcboot=setenv bootargs " CONFIG_BOOTARGS \
47 " root=${mmcroot} rw rootwait;" \
48 "bootz ${loadaddr} - ${fdt_addr}\0" \
49 "mmcload=mmc rescan;" \
50 "load mmc 0:1 ${loadaddr} ${bootimage};" \
51 "load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
52 "qspiroot=/dev/mtdblock0\0" \
53 "qspirootfstype=jffs2\0" \
54 "qspiboot=setenv bootargs " CONFIG_BOOTARGS \
55 " root=${qspiroot} rw rootfstype=${qspirootfstype};"\
56 "bootm ${loadaddr} - ${fdt_addr}\0"
57
58 /* The rest of the configuration is shared */
59 #include <configs/socfpga_common.h>
60
61 #endif /* __CONFIG_SOCFPGA_SOCRATES_H__ */