mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
5182e9c607
Move to using .env file for setting up environment variables for K2x_evm. Signed-off-by: Andrew Davis <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
18 lines
413 B
C
18 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration header file for TI's k2g-evm
|
|
*
|
|
* (C) Copyright 2015
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_K2G_EVM_H
|
|
#define __CONFIG_K2G_EVM_H
|
|
|
|
/* Network */
|
|
#define CFG_KSNET_CPSW_NUM_PORTS 2
|
|
#define PHY_ANEG_TIMEOUT 10000 /* PHY needs longer aneg time */
|
|
|
|
#include <configs/ti_armv7_keystone2.h>
|
|
|
|
#endif /* __CONFIG_K2G_EVM_H */
|