mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
41 lines
931 B
C
41 lines
931 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* LSI ET1011C PHY Driver for TI DaVinci(TMS320DM6467) board.
|
|
*
|
|
* Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <net.h>
|
|
#include <miiphy.h>
|
|
#include <asm/arch/emac_defs.h>
|
|
#include "../../../drivers/net/davinci_emac.h"
|
|
|
|
#ifdef CONFIG_DRIVER_TI_EMAC
|
|
|
|
#ifdef CONFIG_CMD_NET
|
|
|
|
/* LSI PHYSICAL LAYER TRANSCEIVER ET1011C */
|
|
|
|
#define MII_PHY_CONFIG_REG 22
|
|
|
|
/* PHY Config bits */
|
|
#define PHY_SYS_CLK_EN (1 << 4)
|
|
|
|
int et1011c_get_link_speed(int phy_addr)
|
|
{
|
|
u_int16_t data;
|
|
|
|
if (davinci_eth_phy_read(phy_addr, MII_STATUS_REG, &data) && (data & 0x04)) {
|
|
davinci_eth_phy_read(phy_addr, MII_PHY_CONFIG_REG, &data);
|
|
/* Enable 125MHz clock sourced from PHY */
|
|
davinci_eth_phy_write(phy_addr, MII_PHY_CONFIG_REG,
|
|
data | PHY_SYS_CLK_EN);
|
|
return (1);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
#endif /* CONFIG_CMD_NET */
|
|
|
|
#endif /* CONFIG_DRIVER_ETHER */
|