]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/socfpga_sockit.h
Merge git://git.denx.de/u-boot-mpc85xx
[people/ms/u-boot.git] / include / configs / socfpga_sockit.h
CommitLineData
952caa28
MV
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
871c24bc 9#include <asm/arch/base_addr_ac5.h>
952caa28
MV
10
11/* U-Boot Commands */
12#define CONFIG_SYS_NO_FLASH
952caa28
MV
13#define CONFIG_FAT_WRITE
14#define CONFIG_HW_WATCHDOG
15
952caa28
MV
16/* Memory configurations */
17#define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB on SoCDK */
18
19/* Booting Linux */
952caa28
MV
20#define CONFIG_BOOTFILE "fitImage"
21#define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE)
952caa28 22#define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot"
952caa28
MV
23#define CONFIG_LOADADDR 0x01000000
24#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
25
26/* Ethernet on SoC (EMAC) */
27#if defined(CONFIG_CMD_NET)
952caa28
MV
28#define CONFIG_PHY_MICREL
29#define CONFIG_PHY_MICREL_KSZ9021
952caa28
MV
30#endif
31
68a3e32b 32#define CONFIG_ENV_IS_IN_MMC
68a3e32b 33
952caa28 34/* Extra Environment */
952caa28
MV
35#define CONFIG_EXTRA_ENV_SETTINGS \
36 "verify=n\0" \
f6060ce4 37 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
952caa28
MV
38 "ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \
39 "bootm ${loadaddr} - ${fdt_addr}\0" \
40 "bootimage=zImage\0" \
41 "fdt_addr=100\0" \
42 "fdtimage=socfpga.dtb\0" \
952caa28
MV
43 "bootm ${loadaddr} - ${fdt_addr}\0" \
44 "mmcroot=/dev/mmcblk0p2\0" \
45 "mmcboot=setenv bootargs " CONFIG_BOOTARGS \
46 " root=${mmcroot} rw rootwait;" \
47 "bootz ${loadaddr} - ${fdt_addr}\0" \
48 "mmcload=mmc rescan;" \
49 "load mmc 0:1 ${loadaddr} ${bootimage};" \
50 "load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
8ee0c648 51 "qspiload=sf probe && mtdparts default && run ubiload\0" \
5abbdfad
CLS
52 "qspiboot=setenv bootargs " CONFIG_BOOTARGS \
53 " ubi.mtd=1,64 root=ubi0:rootfs rw rootfstype=ubifs;"\
54 "bootz ${loadaddr} - ${fdt_addr}\0" \
3e8a075d
CLS
55 "ubiload=ubi part UBI && ubifsmount ubi0 && " \
56 "ubifsload ${loadaddr} /boot/${bootimage} && " \
57 "ubifsload ${fdt_addr} /boot/${fdtimage}\0"
952caa28
MV
58
59/* The rest of the configuration is shared */
60#include <configs/socfpga_common.h>
61
62#endif /* __CONFIG_TERASIC_SOCKIT_H__ */