mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
e6e2435f39
Add a function that can be used to determine if the board being ran on is a K2G Industrial Communication Engine EVM or K2G General Purpose EVM based on values programmed on the EEPROM. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
41 lines
721 B
C
41 lines
721 B
C
/*
|
|
* K2HK EVM : Board common header
|
|
*
|
|
* (C) Copyright 2014
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _KS2_BOARD
|
|
#define _KS2_BOARD
|
|
|
|
#include <asm/ti-common/keystone_net.h>
|
|
#include "../common/board_detect.h"
|
|
|
|
extern struct eth_priv_t eth_priv_cfg[];
|
|
|
|
#if defined(CONFIG_TI_I2C_BOARD_DETECT)
|
|
static inline int board_is_k2g_gp(void)
|
|
{
|
|
return board_ti_is("66AK2GGP");
|
|
}
|
|
static inline int board_is_k2g_ice(void)
|
|
{
|
|
return board_ti_is("66AK2GIC");
|
|
}
|
|
#else
|
|
static inline int board_is_k2g_gp(void)
|
|
{
|
|
return false;
|
|
}
|
|
static inline int board_is_k2g_ice(void)
|
|
{
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
int get_num_eth_ports(void);
|
|
void spl_init_keystone_plls(void);
|
|
|
|
#endif
|