Vitaly Bordug | 7c32f47 | 2007-08-10 14:05:16 -0700 | [diff] [blame] | 1 | #ifndef __PHY_FIXED_H |
| 2 | #define __PHY_FIXED_H |
| 3 | |
Vitaly Bordug | 7c32f47 | 2007-08-10 14:05:16 -0700 | [diff] [blame] | 4 | struct fixed_phy_status { |
Vitaly Bordug | a79d8e9 | 2007-12-07 01:51:22 +0300 | [diff] [blame] | 5 | int link; |
| 6 | int speed; |
| 7 | int duplex; |
| 8 | int pause; |
| 9 | int asym_pause; |
Vitaly Bordug | 7c32f47 | 2007-08-10 14:05:16 -0700 | [diff] [blame] | 10 | }; |
| 11 | |
Thomas Petazzoni | a759512 | 2014-05-16 16:14:04 +0200 | [diff] [blame] | 12 | struct device_node; |
| 13 | |
David S. Miller | 6539c44 | 2014-12-16 14:30:09 -0500 | [diff] [blame] | 14 | #if IS_ENABLED(CONFIG_FIXED_PHY) |
Vitaly Bordug | a79d8e9 | 2007-12-07 01:51:22 +0300 | [diff] [blame] | 15 | extern int fixed_phy_add(unsigned int irq, int phy_id, |
| 16 | struct fixed_phy_status *status); |
Petri Gynther | fd2ef0b | 2014-10-06 11:38:30 -0700 | [diff] [blame] | 17 | extern struct phy_device *fixed_phy_register(unsigned int irq, |
| 18 | struct fixed_phy_status *status, |
| 19 | struct device_node *np); |
Konrad Zapalowicz | 46cfd6e | 2014-06-05 20:27:42 +0200 | [diff] [blame] | 20 | extern void fixed_phy_del(int phy_addr); |
Florian Fainelli | 464c366 | 2014-08-27 17:04:48 -0700 | [diff] [blame] | 21 | extern int fixed_phy_set_link_update(struct phy_device *phydev, |
| 22 | int (*link_update)(struct net_device *, |
| 23 | struct fixed_phy_status *)); |
Stas Sergeev | a3bebdc | 2015-04-01 20:30:31 +0300 | [diff] [blame] | 24 | extern int fixed_phy_update_state(struct phy_device *phydev, |
| 25 | const struct fixed_phy_status *status, |
| 26 | const struct fixed_phy_status *changed); |
Vitaly Bordug | a79d8e9 | 2007-12-07 01:51:22 +0300 | [diff] [blame] | 27 | #else |
| 28 | static inline int fixed_phy_add(unsigned int irq, int phy_id, |
| 29 | struct fixed_phy_status *status) |
| 30 | { |
| 31 | return -ENODEV; |
| 32 | } |
Petri Gynther | fd2ef0b | 2014-10-06 11:38:30 -0700 | [diff] [blame] | 33 | static inline struct phy_device *fixed_phy_register(unsigned int irq, |
| 34 | struct fixed_phy_status *status, |
| 35 | struct device_node *np) |
Thomas Petazzoni | a759512 | 2014-05-16 16:14:04 +0200 | [diff] [blame] | 36 | { |
Petri Gynther | fd2ef0b | 2014-10-06 11:38:30 -0700 | [diff] [blame] | 37 | return ERR_PTR(-ENODEV); |
Thomas Petazzoni | a759512 | 2014-05-16 16:14:04 +0200 | [diff] [blame] | 38 | } |
Konrad Zapalowicz | 46cfd6e | 2014-06-05 20:27:42 +0200 | [diff] [blame] | 39 | static inline int fixed_phy_del(int phy_addr) |
| 40 | { |
| 41 | return -ENODEV; |
| 42 | } |
Florian Fainelli | 464c366 | 2014-08-27 17:04:48 -0700 | [diff] [blame] | 43 | static inline int fixed_phy_set_link_update(struct phy_device *phydev, |
Vitaly Bordug | a79d8e9 | 2007-12-07 01:51:22 +0300 | [diff] [blame] | 44 | int (*link_update)(struct net_device *, |
Florian Fainelli | 464c366 | 2014-08-27 17:04:48 -0700 | [diff] [blame] | 45 | struct fixed_phy_status *)) |
| 46 | { |
| 47 | return -ENODEV; |
| 48 | } |
Stas Sergeev | a3bebdc | 2015-04-01 20:30:31 +0300 | [diff] [blame] | 49 | static inline int fixed_phy_update_state(struct phy_device *phydev, |
| 50 | const struct fixed_phy_status *status, |
| 51 | const struct fixed_phy_status *changed) |
| 52 | { |
| 53 | return -ENODEV; |
| 54 | } |
Florian Fainelli | 464c366 | 2014-08-27 17:04:48 -0700 | [diff] [blame] | 55 | #endif /* CONFIG_FIXED_PHY */ |
Vitaly Bordug | 7c32f47 | 2007-08-10 14:05:16 -0700 | [diff] [blame] | 56 | |
| 57 | #endif /* __PHY_FIXED_H */ |