]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/of_mdio.h
Merge tag 'x86-urgent-2020-08-30' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-jammy-kernel.git] / include / linux / of_mdio.h
CommitLineData
55716d26 1/* SPDX-License-Identifier: GPL-2.0-only */
8bc487d1
GL
2/*
3 * OF helpers for the MDIO (Ethernet PHY) API
4 *
5 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
8bc487d1
GL
6 */
7
8#ifndef __LINUX_OF_MDIO_H
9#define __LINUX_OF_MDIO_H
10
14eeb6e0 11#include <linux/device.h>
8bc487d1
GL
12#include <linux/phy.h>
13#include <linux/of.h>
14
e6e14f63 15#if IS_ENABLED(CONFIG_OF_MDIO)
a0bd96f5
BG
16bool of_mdiobus_child_is_phy(struct device_node *child);
17int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np);
14eeb6e0
BG
18int devm_of_mdiobus_register(struct device *dev, struct mii_bus *mdio,
19 struct device_node *np);
a0bd96f5
BG
20struct phy_device *of_phy_find_device(struct device_node *phy_np);
21struct phy_device *
22of_phy_connect(struct net_device *dev, struct device_node *phy_np,
23 void (*hndlr)(struct net_device *), u32 flags,
24 phy_interface_t iface);
25struct phy_device *
b7862412
DL
26of_phy_get_and_connect(struct net_device *dev, struct device_node *np,
27 void (*hndlr)(struct net_device *));
a0bd96f5
BG
28struct phy_device *
29of_phy_attach(struct net_device *dev, struct device_node *phy_np,
30 u32 flags, phy_interface_t iface);
8bc487d1 31
a0bd96f5
BG
32struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
33int of_phy_register_fixed_link(struct device_node *np);
34void of_phy_deregister_fixed_link(struct device_node *np);
35bool of_phy_is_fixed_link(struct device_node *np);
36int of_mdiobus_phy_device_register(struct mii_bus *mdio, struct phy_device *phy,
37 struct device_node *child, u32 addr);
4798a714
JM
38
39static inline int of_mdio_parse_addr(struct device *dev,
40 const struct device_node *np)
41{
42 u32 addr;
43 int ret;
44
45 ret = of_property_read_u32(np, "reg", &addr);
46 if (ret < 0) {
47 dev_err(dev, "%s has invalid PHY address\n", np->full_name);
48 return ret;
49 }
50
51 /* A PHY must have a reg property in the range [0-31] */
52 if (addr >= PHY_MAX_ADDR) {
53 dev_err(dev, "%s PHY address %i is too large\n",
54 np->full_name, addr);
55 return -EINVAL;
56 }
57
58 return addr;
59}
60
e6e14f63 61#else /* CONFIG_OF_MDIO */
7df2281a 62static inline bool of_mdiobus_child_is_phy(struct device_node *child)
0aa4d016
AT
63{
64 return false;
65}
66
2a5cf801 67static inline int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
f9dc9ac5 68{
23a456f0
DM
69 /*
70 * Fall back to the non-DT function to register a bus.
71 * This way, we don't have to keep compat bits around in drivers.
72 */
73
74 return mdiobus_register(mdio);
f9dc9ac5
SK
75}
76
2a5cf801 77static inline struct phy_device *of_phy_find_device(struct device_node *phy_np)
f9dc9ac5
SK
78{
79 return NULL;
80}
81
2a5cf801
MB
82static inline struct phy_device *of_phy_connect(struct net_device *dev,
83 struct device_node *phy_np,
84 void (*hndlr)(struct net_device *),
85 u32 flags, phy_interface_t iface)
f9dc9ac5
SK
86{
87 return NULL;
88}
89
b7862412
DL
90static inline struct phy_device *
91of_phy_get_and_connect(struct net_device *dev, struct device_node *np,
92 void (*hndlr)(struct net_device *))
93{
94 return NULL;
95}
96
7614aba6
AF
97static inline struct phy_device *of_phy_attach(struct net_device *dev,
98 struct device_node *phy_np,
99 u32 flags, phy_interface_t iface)
100{
101 return NULL;
102}
103
2a5cf801 104static inline struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np)
f9dc9ac5
SK
105{
106 return NULL;
107}
33d67377
FF
108
109static inline int of_mdio_parse_addr(struct device *dev,
110 const struct device_node *np)
111{
112 return -ENOSYS;
113}
3be2a49e
TP
114static inline int of_phy_register_fixed_link(struct device_node *np)
115{
116 return -ENOSYS;
117}
3f65047c
JH
118static inline void of_phy_deregister_fixed_link(struct device_node *np)
119{
120}
3be2a49e
TP
121static inline bool of_phy_is_fixed_link(struct device_node *np)
122{
123 return false;
124}
5972157c
OR
125
126static inline int of_mdiobus_phy_device_register(struct mii_bus *mdio,
127 struct phy_device *phy,
128 struct device_node *child, u32 addr)
129{
130 return -ENOSYS;
131}
3be2a49e
TP
132#endif
133
134
8bc487d1 135#endif /* __LINUX_OF_MDIO_H */