blob: fdddfa3cd24f43bef3232c4346ed22fa2dbd9789 [file] [log] [blame]
Dinh Nguyenc3364da2015-09-01 17:41:52 -05001/*
2 * Copyright (C) 2015 Marek Vasut <marex@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6#ifndef __CONFIG_TERASIC_DE0_H__
7#define __CONFIG_TERASIC_DE0_H__
8
Dinh Nguyeneca8b5c2015-11-23 17:27:17 -06009#include <asm/arch/base_addr_ac5.h>
Dinh Nguyenc3364da2015-09-01 17:41:52 -050010
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
Dinh Nguyenc3364da2015-09-01 17:41:52 -050017/* Memory configurations */
18#define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB */
19
20/* Booting Linux */
21#define CONFIG_BOOTDELAY 3
22#define CONFIG_BOOTFILE "fitImage"
23#define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE)
Dinh Nguyenc3364da2015-09-01 17:41:52 -050024#define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot"
Dinh Nguyenc3364da2015-09-01 17:41:52 -050025#define CONFIG_LOADADDR 0x01000000
26#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
27
28/* Ethernet on SoC (EMAC) */
29#if defined(CONFIG_CMD_NET)
Dinh Nguyenc3364da2015-09-01 17:41:52 -050030#define CONFIG_PHY_MICREL
31#define CONFIG_PHY_MICREL_KSZ9031
Dinh Nguyenc3364da2015-09-01 17:41:52 -050032#endif
33
Dinh Nguyen813e7e62015-09-23 15:38:01 -050034#define CONFIG_ENV_IS_IN_MMC
Dinh Nguyen813e7e62015-09-23 15:38:01 -050035
Dinh Nguyenc3364da2015-09-01 17:41:52 -050036/* Extra Environment */
Dinh Nguyenc3364da2015-09-01 17:41:52 -050037#define CONFIG_EXTRA_ENV_SETTINGS \
Marek Vasut950c10c2016-04-03 19:11:12 +020038 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Dinh Nguyenc3364da2015-09-01 17:41:52 -050039 "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" \
Dinh Nguyenc3364da2015-09-01 17:41:52 -050044 "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
53/* The rest of the configuration is shared */
54#include <configs/socfpga_common.h>
55
56#endif /* __CONFIG_TERASIC_DE0_H__ */