2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-10-22 13:32:33 +00:00
|
|
|
/*
|
|
|
|
* Configuration header file for TI's k2l-evm
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012-2014
|
|
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_K2L_EVM_H
|
|
|
|
#define __CONFIG_K2L_EVM_H
|
|
|
|
|
2017-03-08 08:28:17 +00:00
|
|
|
#include <environment/ti/spi.h>
|
|
|
|
|
2014-10-22 13:32:33 +00:00
|
|
|
/* Platform type */
|
|
|
|
#define CONFIG_SOC_K2L
|
|
|
|
|
2018-03-06 16:10:09 +00:00
|
|
|
#ifdef CONFIG_TI_SECURE_DEVICE
|
|
|
|
#define DEFAULT_SEC_BOOT_ENV \
|
|
|
|
DEFAULT_FIT_TI_ARGS \
|
|
|
|
"findfdt=setenv fdtfile ${name_fdt}\0"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_SEC_BOOT_ENV
|
|
|
|
#endif
|
|
|
|
|
2014-10-22 13:32:33 +00:00
|
|
|
/* U-Boot general configuration */
|
2014-11-04 14:52:34 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
|
2016-03-09 10:09:38 +00:00
|
|
|
DEFAULT_FW_INITRAMFS_BOOT_ENV \
|
2018-03-06 16:10:09 +00:00
|
|
|
DEFAULT_SEC_BOOT_ENV \
|
2016-03-09 10:09:39 +00:00
|
|
|
"boot=ubi\0" \
|
2014-11-04 14:52:34 +00:00
|
|
|
"args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
|
2015-06-26 14:17:31 +00:00
|
|
|
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,4096\0" \
|
2016-06-06 05:48:42 +00:00
|
|
|
"name_fdt=keystone-k2l-evm.dtb\0" \
|
2015-07-22 23:05:48 +00:00
|
|
|
"name_mon=skern-k2l.bin\0" \
|
2014-11-04 14:52:34 +00:00
|
|
|
"name_ubi=k2l-evm-ubifs.ubi\0" \
|
2014-11-04 14:52:35 +00:00
|
|
|
"name_uboot=u-boot-spi-k2l-evm.gph\0" \
|
|
|
|
"name_fs=arago-console-image-k2l-evm.cpio.gz\0"
|
2014-10-22 13:32:33 +00:00
|
|
|
|
2017-06-02 12:24:00 +00:00
|
|
|
#define CONFIG_ENV_SIZE (256 << 10) /* 256 KiB */
|
|
|
|
#define CONFIG_ENV_OFFSET 0x100000
|
|
|
|
|
2015-07-22 23:05:44 +00:00
|
|
|
#include <configs/ti_armv7_keystone2.h>
|
2014-10-22 13:32:33 +00:00
|
|
|
|
2017-03-08 08:28:17 +00:00
|
|
|
#define SPI_MTD_PARTS KEYSTONE_SPI0_MTD_PARTS
|
|
|
|
|
2014-10-22 13:32:33 +00:00
|
|
|
/* NAND Configuration */
|
|
|
|
#define CONFIG_SYS_NAND_PAGE_4K
|
|
|
|
|
2014-10-29 11:09:34 +00:00
|
|
|
/* Network */
|
|
|
|
#define CONFIG_KSNET_NETCP_V1_5
|
|
|
|
#define CONFIG_KSNET_CPSW_NUM_PORTS 5
|
|
|
|
#define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
|
|
|
|
|
2014-10-22 13:32:33 +00:00
|
|
|
#endif /* __CONFIG_K2L_EVM_H */
|