2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-04-04 13:16:53 -04:00
|
|
|
/*
|
|
|
|
* Configuration header file for TI's k2hk-evm
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012-2014
|
|
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_K2HK_EVM_H
|
|
|
|
#define __CONFIG_K2HK_EVM_H
|
|
|
|
|
2017-03-08 13:58:17 +05:30
|
|
|
#include <environment/ti/spi.h>
|
|
|
|
|
2014-04-04 13:16:53 -04:00
|
|
|
/* Platform type */
|
|
|
|
#define CONFIG_SOC_K2HK
|
|
|
|
|
2017-07-17 12:59:12 -05: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-07-09 23:44:48 +03:00
|
|
|
/* U-Boot general configuration */
|
2014-11-04 16:52:34 +02:00
|
|
|
#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
|
2016-03-09 15:39:38 +05:30
|
|
|
DEFAULT_FW_INITRAMFS_BOOT_ENV \
|
2017-07-17 12:59:12 -05:00
|
|
|
DEFAULT_SEC_BOOT_ENV \
|
2016-03-09 15:39:39 +05:30
|
|
|
"boot=ubi\0" \
|
2014-11-04 16:52:34 +02:00
|
|
|
"args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
|
2015-06-26 09:17:31 -05:00
|
|
|
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
|
2016-06-06 11:18:42 +05:30
|
|
|
"name_fdt=keystone-k2hk-evm.dtb\0" \
|
2015-07-22 18:05:48 -05:00
|
|
|
"name_mon=skern-k2hk.bin\0" \
|
2014-11-04 16:52:34 +02:00
|
|
|
"name_ubi=k2hk-evm-ubifs.ubi\0" \
|
2014-11-04 16:52:35 +02:00
|
|
|
"name_uboot=u-boot-spi-k2hk-evm.gph\0" \
|
|
|
|
"name_fs=arago-console-image-k2hk-evm.cpio.gz\0"
|
2014-04-04 13:16:53 -04:00
|
|
|
|
2015-07-22 18:05:44 -05:00
|
|
|
#include <configs/ti_armv7_keystone2.h>
|
2014-04-01 15:01:13 -04:00
|
|
|
|
2017-03-08 13:58:17 +05:30
|
|
|
#define SPI_MTD_PARTS KEYSTONE_SPI0_MTD_PARTS
|
|
|
|
|
2014-04-04 13:16:53 -04:00
|
|
|
/* NAND Configuration */
|
|
|
|
#define CONFIG_SYS_NAND_PAGE_2K
|
|
|
|
|
2014-07-09 23:44:48 +03:00
|
|
|
/* Network */
|
2014-09-29 22:17:22 +03:00
|
|
|
#define CONFIG_KSNET_NETCP_V1_0
|
2014-09-29 22:17:21 +03:00
|
|
|
#define CONFIG_KSNET_CPSW_NUM_PORTS 5
|
2014-04-04 13:16:53 -04:00
|
|
|
|
2016-03-04 10:36:42 -06:00
|
|
|
#define CONFIG_DDR_SPD
|
|
|
|
|
2014-04-04 13:16:53 -04:00
|
|
|
#endif /* __CONFIG_K2HK_EVM_H */
|