upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
794 B
44 lines
794 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* K2HK EVM : Board common header
|
|
*
|
|
* (C) Copyright 2014
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*/
|
|
|
|
#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
|
|
|