mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
a43febde44
This patch split the Keystone II SGMII SerDes related code from Ethernet driver and create a separate SGMII SerDes driver. The SerDes driver can be used by others keystone subsystems like PCI, sRIO, so move it to driver/soc/keystone directory. Add soc specific drivers directory like in the Linux kernel. It is going to be used by keysotone soc specific drivers. Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
15 lines
324 B
C
15 lines
324 B
C
/*
|
|
* Texas Instruments Keystone SerDes driver
|
|
*
|
|
* (C) Copyright 2014
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __TI_KEYSTONE_SERDES_H__
|
|
#define __TI_KEYSTONE_SERDES_H__
|
|
|
|
void ks2_serdes_sgmii_156p25mhz_setup(void);
|
|
|
|
#endif /* __TI_KEYSTONE_SERDES_H__ */
|