blob: 2da0d8dd7f007af647ccad9040048c09517ac118 [file] [log] [blame]
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +05301/*
2 * Configuration header file for TI's k2g-evm
3 *
4 * (C) Copyright 2015
5 * Texas Instruments Incorporated, <www.ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#ifndef __CONFIG_K2G_EVM_H
11#define __CONFIG_K2G_EVM_H
12
13/* Platform type */
14#define CONFIG_SOC_K2G
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053015
16/* U-Boot general configuration */
17#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
18 DEFAULT_MMC_TI_ARGS \
Nishanth Menon6f6e9432016-02-25 12:53:47 -060019 DEFAULT_PMMC_BOOT_ENV \
Murali Karicheri86e3ca12016-09-15 19:14:32 +053020 DEFAULT_FW_INITRAMFS_BOOT_ENV \
Yan Liud28a86c2016-03-09 15:39:39 +053021 "boot=mmc\0" \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053022 "console=ttyS0,115200n8\0" \
23 "bootpart=0:2\0" \
24 "bootdir=/boot\0" \
Murali Karicheriabca9472016-03-09 15:39:38 +053025 "rd_spec=-\0" \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053026 "args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
27 "root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
Lokesh Vutla5c2728f2016-06-06 11:18:42 +053028 "name_fdt=keystone-k2g-evm.dtb\0" \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053029 "name_mon=skern-k2g.bin\0" \
30 "name_ubi=k2g-evm-ubifs.ubi\0" \
31 "name_uboot=u-boot-spi-k2g-evm.gph\0" \
32 "init_mmc=run args_all args_mmc\0" \
Murali Karicheri86e3ca12016-09-15 19:14:32 +053033 "init_fw_rd_mmc=load mmc ${bootpart} ${rdaddr} " \
34 "${bootdir}/${name_fw_rd}; run set_rd_spec\0" \
Nishanth Menon6f6e9432016-02-25 12:53:47 -060035 "soc_variant=k2g\0" \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053036 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0"\
37 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
38 "${bootdir}/${name_kern}\0" \
39 "get_mon_mmc=load mmc ${bootpart} ${addr_mon} ${bootdir}/${name_mon}\0"\
Murali Karicheriabca9472016-03-09 15:39:38 +053040 "name_fs=arago-base-tisdk-image-k2g-evm.cpio\0"
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053041
Nishanth Menon6f6e9432016-02-25 12:53:47 -060042#define CONFIG_BOOTCOMMAND \
Lokesh Vutla0552d1d2016-03-09 15:39:36 +053043 "run envboot; " \
Murali Karicheri86e3ca12016-09-15 19:14:32 +053044 "run set_name_pmmc init_${boot} init_fw_rd_${boot} " \
Lokesh Vutlaceee15c2016-09-16 10:17:53 +053045 "get_pmmc_${boot} run_pmmc get_mon_${boot} run_mon " \
46 "get_fdt_${boot} get_kern_${boot} run_kern"
Nishanth Menon6f6e9432016-02-25 12:53:47 -060047
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053048#include <configs/ti_armv7_keystone2.h>
49
50/* SPL SPI Loader Configuration */
51#define CONFIG_SPL_TEXT_BASE 0x0c080000
52
53/* NAND Configuration */
54#define CONFIG_SYS_NAND_PAGE_2K
55
56/* Network */
57#define CONFIG_KSNET_NETCP_V1_5
58#define CONFIG_KSNET_CPSW_NUM_PORTS 2
59#define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
60#define CONFIG_PHY_MICREL
Vitaly Andrianovb8dafa22016-03-11 08:23:04 -050061#define PHY_ANEG_TIMEOUT 10000 /* PHY needs longer aneg time */
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053062
63/* MMC/SD */
64#define CONFIG_MMC
65#define CONFIG_GENERIC_MMC
66#define CONFIG_OMAP_HSMMC
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053067
Lokesh Vutla84fe2832016-03-09 15:39:37 +053068#undef CONFIG_ENV_IS_IN_NAND
69#define CONFIG_ENV_IS_IN_FAT
70#define FAT_ENV_INTERFACE "mmc"
71#define FAT_ENV_DEVICE_AND_PART "0:1"
72#define FAT_ENV_FILE "uboot.env"
73
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053074#define CONFIG_SF_DEFAULT_BUS 1
75#define CONFIG_SF_DEFAULT_CS 0
76
Vignesh R988fb5c2016-07-06 10:20:58 +053077#ifndef CONFIG_SPL_BUILD
78#define CONFIG_CADENCE_QSPI
79#define CONFIG_CQSPI_REF_CLK 384000000
80#define CONFIG_CQSPI_DECODER 0x0
81#endif
82
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053083#endif /* __CONFIG_K2G_EVM_H */