2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-04-04 17:16:53 +00: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 08:28:17 +00:00
|
|
|
#include <environment/ti/spi.h>
|
|
|
|
|
2014-04-04 17:16:53 +00:00
|
|
|
/* Platform type */
|
|
|
|
#define CONFIG_SOC_K2HK
|
|
|
|
|
2017-07-17 17:59:12 +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-07-09 20:44:48 +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 \
|
2017-07-17 17:59:12 +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,2048\0" \
|
2016-06-06 05:48:42 +00:00
|
|
|
"name_fdt=keystone-k2hk-evm.dtb\0" \
|
2015-07-22 23:05:48 +00:00
|
|
|
"name_mon=skern-k2hk.bin\0" \
|
2014-11-04 14:52:34 +00:00
|
|
|
"name_ubi=k2hk-evm-ubifs.ubi\0" \
|
2014-11-04 14:52:35 +00:00
|
|
|
"name_uboot=u-boot-spi-k2hk-evm.gph\0" \
|
|
|
|
"name_fs=arago-console-image-k2hk-evm.cpio.gz\0"
|
2014-04-04 17:16:53 +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-04-01 19:01:13 +00:00
|
|
|
|
2017-03-08 08:28:17 +00:00
|
|
|
#define SPI_MTD_PARTS KEYSTONE_SPI0_MTD_PARTS
|
|
|
|
|
2014-04-04 17:16:53 +00:00
|
|
|
/* NAND Configuration */
|
|
|
|
#define CONFIG_SYS_NAND_PAGE_2K
|
|
|
|
|
2014-07-09 20:44:48 +00:00
|
|
|
/* Network */
|
2014-09-29 19:17:22 +00:00
|
|
|
#define CONFIG_KSNET_NETCP_V1_0
|
2014-09-29 19:17:21 +00:00
|
|
|
#define CONFIG_KSNET_CPSW_NUM_PORTS 5
|
2014-04-04 17:16:53 +00:00
|
|
|
|
2016-03-04 16:36:42 +00:00
|
|
|
#define CONFIG_DDR_SPD
|
|
|
|
|
2014-04-04 17:16:53 +00:00
|
|
|
#endif /* __CONFIG_K2HK_EVM_H */
|