mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Move both functions to phy_package.c, so that phy_core.c no longer has a dependency on phy_package.c (phy_package_address). Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Link: https://patch.msgid.link/8956fa53-3eda-4079-8203-a8fddcc17bf3@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
31 lines
951 B
C
31 lines
951 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* phylib-internal header
|
|
*/
|
|
|
|
#ifndef __PHYLIB_INTERNAL_H
|
|
#define __PHYLIB_INTERNAL_H
|
|
|
|
struct phy_device;
|
|
struct mii_bus;
|
|
|
|
/*
|
|
* phy_supported_speeds - return all speeds currently supported by a PHY device
|
|
*/
|
|
unsigned int phy_supported_speeds(struct phy_device *phy,
|
|
unsigned int *speeds,
|
|
unsigned int size);
|
|
void of_set_phy_supported(struct phy_device *phydev);
|
|
void of_set_phy_eee_broken(struct phy_device *phydev);
|
|
void of_set_phy_timing_role(struct phy_device *phydev);
|
|
int phy_speed_down_core(struct phy_device *phydev);
|
|
void phy_check_downshift(struct phy_device *phydev);
|
|
|
|
int mmd_phy_read(struct mii_bus *bus, int phy_addr, bool is_c45,
|
|
int devad, u32 regnum);
|
|
int mmd_phy_write(struct mii_bus *bus, int phy_addr, bool is_c45,
|
|
int devad, u32 regnum, u16 val);
|
|
|
|
int genphy_c45_read_eee_adv(struct phy_device *phydev, unsigned long *adv);
|
|
|
|
#endif /* __PHYLIB_INTERNAL_H */
|