mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
5ec66b140a
The initialization of PLLs is a part of board specific code, so move it appropriate places. Acked-by: Vitaly Andrianov <vitalya@ti.com> Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
20 lines
349 B
C
20 lines
349 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/arch/emac_defs.h>
|
|
|
|
extern struct eth_priv_t eth_priv_cfg[];
|
|
|
|
int get_num_eth_ports(void);
|
|
void spl_init_keystone_plls(void);
|
|
|
|
#endif
|