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