]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/socfpga_arria5_socdk.h
ca7f8a28b279550372a2ecda5c63b7a6c3efc6e6
[people/ms/u-boot.git] / include / configs / socfpga_arria5_socdk.h
1 /*
2 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6 #ifndef __CONFIG_SOCFPGA_ARRIA5_H__
7 #define __CONFIG_SOCFPGA_ARRIA5_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 SoCDK */
19
20 /* Booting Linux */
21 #define CONFIG_BOOTDELAY 3
22 #define CONFIG_BOOTFILE "zImage"
23 #define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE)
24 #ifdef CONFIG_SOCFPGA_VIRTUAL_TARGET
25 #define CONFIG_BOOTCOMMAND "run ramboot"
26 #else
27 #define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot"
28 #endif
29 #define CONFIG_LOADADDR 0x01000000
30 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
31
32 /* Ethernet on SoC (EMAC) */
33 #if defined(CONFIG_CMD_NET)
34 #define CONFIG_PHY_MICREL
35 #define CONFIG_PHY_MICREL_KSZ9021
36 #endif
37
38 #define CONFIG_ENV_IS_IN_MMC
39
40 /* Extra Environment */
41 #define CONFIG_EXTRA_ENV_SETTINGS \
42 "verify=n\0" \
43 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
44 "ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \
45 "bootm ${loadaddr} - ${fdt_addr}\0" \
46 "bootimage=zImage\0" \
47 "fdt_addr=100\0" \
48 "fdtimage=socfpga.dtb\0" \
49 "bootm ${loadaddr} - ${fdt_addr}\0" \
50 "mmcroot=/dev/mmcblk0p2\0" \
51 "mmcboot=setenv bootargs " CONFIG_BOOTARGS \
52 " root=${mmcroot} rw rootwait;" \
53 "bootz ${loadaddr} - ${fdt_addr}\0" \
54 "mmcload=mmc rescan;" \
55 "load mmc 0:1 ${loadaddr} ${bootimage};" \
56 "load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
57 "qspiload=sf probe && mtdparts default && run ubiload\0" \
58 "qspiboot=setenv bootargs " CONFIG_BOOTARGS \
59 " ubi.mtd=1,64 root=ubi0:rootfs rw rootfstype=ubifs;"\
60 "bootz ${loadaddr} - ${fdt_addr}\0" \
61 "ubiload=ubi part UBI && ubifsmount ubi0 && " \
62 "ubifsload ${loadaddr} /boot/${bootimage} && " \
63 "ubifsload ${fdt_addr} /boot/${fdtimage}\0"
64
65 /* The rest of the configuration is shared */
66 #include <configs/socfpga_common.h>
67
68 #endif /* __CONFIG_SOCFPGA_ARRIA5_H__ */