]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/socfpga_socrates.h
flash: complete CONFIG_SYS_NO_FLASH move with renaming
[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_FAT_WRITE
13 #define CONFIG_HW_WATCHDOG
14
15 /* Memory configurations */
16 #define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB on SoCrates */
17
18 /* Booting Linux */
19 #define CONFIG_BOOTFILE "zImage"
20 #define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE)
21 #define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot"
22 #define CONFIG_LOADADDR 0x01000000
23 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
24
25 /* Ethernet on SoC (EMAC) */
26 #if defined(CONFIG_CMD_NET)
27 #define CONFIG_PHY_MICREL
28 #define CONFIG_PHY_MICREL_KSZ9021
29 #endif
30
31 #define CONFIG_ENV_IS_IN_MMC
32
33 /* Extra Environment */
34 #define CONFIG_EXTRA_ENV_SETTINGS \
35 "verify=n\0" \
36 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
37 "ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \
38 "bootm ${loadaddr} - ${fdt_addr}\0" \
39 "bootimage=zImage\0" \
40 "fdt_addr=100\0" \
41 "fdtimage=socfpga.dtb\0" \
42 "bootm ${loadaddr} - ${fdt_addr}\0" \
43 "mmcroot=/dev/mmcblk0p2\0" \
44 "mmcboot=setenv bootargs " CONFIG_BOOTARGS \
45 " root=${mmcroot} rw rootwait;" \
46 "bootz ${loadaddr} - ${fdt_addr}\0" \
47 "mmcload=mmc rescan;" \
48 "load mmc 0:1 ${loadaddr} ${bootimage};" \
49 "load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
50 "qspiroot=/dev/mtdblock0\0" \
51 "qspirootfstype=jffs2\0" \
52 "qspiboot=setenv bootargs " CONFIG_BOOTARGS \
53 " root=${qspiroot} rw rootfstype=${qspirootfstype};"\
54 "bootm ${loadaddr} - ${fdt_addr}\0"
55
56 /* The rest of the configuration is shared */
57 #include <configs/socfpga_common.h>
58
59 #endif /* __CONFIG_SOCFPGA_SOCRATES_H__ */