blob: ee54453a40a0e3ba6590f8310bd3b817d632a5f5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Vitaly Bordug7c32f472007-08-10 14:05:16 -07002#ifndef __PHY_FIXED_H
3#define __PHY_FIXED_H
4
Vitaly Bordug7c32f472007-08-10 14:05:16 -07005struct fixed_phy_status {
Vitaly Borduga79d8e92007-12-07 01:51:22 +03006 int link;
7 int speed;
8 int duplex;
9 int pause;
10 int asym_pause;
Vitaly Bordug7c32f472007-08-10 14:05:16 -070011};
12
Thomas Petazzonia7595122014-05-16 16:14:04 +020013struct device_node;
14
David S. Miller6539c442014-12-16 14:30:09 -050015#if IS_ENABLED(CONFIG_FIXED_PHY)
Vitaly Borduga79d8e92007-12-07 01:51:22 +030016extern int fixed_phy_add(unsigned int irq, int phy_id,
Andrew Lunna5597002015-08-31 15:56:53 +020017 struct fixed_phy_status *status,
18 int link_gpio);
Petri Gyntherfd2ef0b2014-10-06 11:38:30 -070019extern struct phy_device *fixed_phy_register(unsigned int irq,
20 struct fixed_phy_status *status,
Andrew Lunna5597002015-08-31 15:56:53 +020021 int link_gpio,
Petri Gyntherfd2ef0b2014-10-06 11:38:30 -070022 struct device_node *np);
Andrew Lunn5bcbe0f2016-03-12 00:01:40 +010023extern void fixed_phy_unregister(struct phy_device *phydev);
Florian Fainelli464c3662014-08-27 17:04:48 -070024extern int fixed_phy_set_link_update(struct phy_device *phydev,
25 int (*link_update)(struct net_device *,
26 struct fixed_phy_status *));
Vitaly Borduga79d8e92007-12-07 01:51:22 +030027#else
28static inline int fixed_phy_add(unsigned int irq, int phy_id,
Andrew Lunna5597002015-08-31 15:56:53 +020029 struct fixed_phy_status *status,
30 int link_gpio)
Vitaly Borduga79d8e92007-12-07 01:51:22 +030031{
32 return -ENODEV;
33}
Petri Gyntherfd2ef0b2014-10-06 11:38:30 -070034static inline struct phy_device *fixed_phy_register(unsigned int irq,
35 struct fixed_phy_status *status,
Andrew Lunna5597002015-08-31 15:56:53 +020036 int gpio_link,
Petri Gyntherfd2ef0b2014-10-06 11:38:30 -070037 struct device_node *np)
Thomas Petazzonia7595122014-05-16 16:14:04 +020038{
Petri Gyntherfd2ef0b2014-10-06 11:38:30 -070039 return ERR_PTR(-ENODEV);
Thomas Petazzonia7595122014-05-16 16:14:04 +020040}
Andrew Lunn5bcbe0f2016-03-12 00:01:40 +010041static inline void fixed_phy_unregister(struct phy_device *phydev)
Konrad Zapalowicz46cfd6e2014-06-05 20:27:42 +020042{
Konrad Zapalowicz46cfd6e2014-06-05 20:27:42 +020043}
Florian Fainelli464c3662014-08-27 17:04:48 -070044static inline int fixed_phy_set_link_update(struct phy_device *phydev,
Vitaly Borduga79d8e92007-12-07 01:51:22 +030045 int (*link_update)(struct net_device *,
Florian Fainelli464c3662014-08-27 17:04:48 -070046 struct fixed_phy_status *))
47{
48 return -ENODEV;
49}
50#endif /* CONFIG_FIXED_PHY */
Vitaly Bordug7c32f472007-08-10 14:05:16 -070051
52#endif /* __PHY_FIXED_H */