summaryrefslogtreecommitdiff
path: root/board/ti/ks2_evm/board.h
blob: 48d60a1c746a893bcde6e7ffe62a46b9455ba9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * 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_g1(void)
{
	return board_ti_is("66AK2GG1");
}
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