]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/net/eth-phy-uclass.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / drivers / net / eth-phy-uclass.c
CommitLineData
5fe419ef
YL
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2020 NXP
4 */
5
a5db6e1d
PD
6#define LOG_CATEGORY UCLASS_ETH_PHY
7
d678a59d 8#include <common.h>
5fe419ef 9#include <dm.h>
880ecb09 10#include <log.h>
5fe419ef 11#include <net.h>
d33982d5 12#include <asm-generic/gpio.h>
880ecb09 13#include <dm/device_compat.h>
5fe419ef
YL
14#include <dm/device-internal.h>
15#include <dm/uclass-internal.h>
16#include <dm/lists.h>
d33982d5 17#include <linux/delay.h>
5fe419ef
YL
18
19struct eth_phy_device_priv {
20 struct mii_dev *mdio_bus;
d33982d5
PD
21 struct gpio_desc reset_gpio;
22 u32 reset_assert_delay;
23 u32 reset_deassert_delay;
5fe419ef
YL
24};
25
26int eth_phy_binds_nodes(struct udevice *eth_dev)
27{
28 ofnode mdio_node, phy_node;
29 const char *node_name;
30 int ret;
31
035d8483
PD
32 /* search a subnode named "mdio.*" */
33 dev_for_each_subnode(mdio_node, eth_dev) {
34 node_name = ofnode_get_name(mdio_node);
35 if (!strncmp(node_name, "mdio", 4))
36 break;
37 }
5fe419ef 38 if (!ofnode_valid(mdio_node)) {
035d8483 39 dev_dbg(eth_dev, "%s: %s mdio subnode not found!\n", __func__,
880ecb09 40 eth_dev->name);
5fe419ef
YL
41 return -ENXIO;
42 }
035d8483 43 dev_dbg(eth_dev, "%s: %s subnode found!\n", __func__, node_name);
5fe419ef
YL
44
45 ofnode_for_each_subnode(phy_node, mdio_node) {
46 node_name = ofnode_get_name(phy_node);
47
880ecb09 48 dev_dbg(eth_dev, "* Found child node: '%s'\n", node_name);
5fe419ef
YL
49
50 ret = device_bind_driver_to_node(eth_dev,
51 "eth_phy_generic_drv",
52 node_name, phy_node, NULL);
53 if (ret) {
880ecb09 54 dev_dbg(eth_dev, " - Eth phy binding error: %d\n", ret);
5fe419ef
YL
55 continue;
56 }
57
880ecb09 58 dev_dbg(eth_dev, " - bound phy device: '%s'\n", node_name);
5fe419ef
YL
59 }
60
61 return 0;
62}
63
64int eth_phy_set_mdio_bus(struct udevice *eth_dev, struct mii_dev *mdio_bus)
65{
66 struct udevice *dev;
67 struct eth_phy_device_priv *uc_priv;
68
69 for (uclass_first_device(UCLASS_ETH_PHY, &dev); dev;
70 uclass_next_device(&dev)) {
71 if (dev->parent == eth_dev) {
0fd3d911 72 uc_priv = (struct eth_phy_device_priv *)(dev_get_uclass_priv(dev));
5fe419ef
YL
73
74 if (!uc_priv->mdio_bus)
75 uc_priv->mdio_bus = mdio_bus;
76 }
77 }
78
79 return 0;
80}
81
82struct mii_dev *eth_phy_get_mdio_bus(struct udevice *eth_dev)
83{
84 int ret;
85 struct udevice *phy_dev;
86 struct eth_phy_device_priv *uc_priv;
87
88 /* Will probe the parent of phy device, then phy device */
89 ret = uclass_get_device_by_phandle(UCLASS_ETH_PHY, eth_dev,
90 "phy-handle", &phy_dev);
91 if (!ret) {
92 if (eth_dev != phy_dev->parent) {
93 /*
94 * phy_dev is shared and controlled by
95 * other eth controller
96 */
0fd3d911 97 uc_priv = (struct eth_phy_device_priv *)(dev_get_uclass_priv(phy_dev));
5fe419ef 98 if (uc_priv->mdio_bus)
880ecb09 99 log_notice("Get shared mii bus on %s\n", eth_dev->name);
5fe419ef 100 else
880ecb09 101 log_notice("Can't get shared mii bus on %s\n", eth_dev->name);
5fe419ef
YL
102
103 return uc_priv->mdio_bus;
104 }
105 } else {
766ba783 106 log_debug("Can't find phy-handle for %s\n", eth_dev->name);
5fe419ef
YL
107 }
108
109 return NULL;
110}
111
112int eth_phy_get_addr(struct udevice *dev)
113{
114 struct ofnode_phandle_args phandle_args;
115 int reg;
116
117 if (dev_read_phandle_with_args(dev, "phy-handle", NULL, 0, 0,
118 &phandle_args)) {
880ecb09 119 dev_dbg(dev, "Failed to find phy-handle");
5fe419ef
YL
120 return -ENODEV;
121 }
122
123 reg = ofnode_read_u32_default(phandle_args.node, "reg", 0);
124
125 return reg;
126}
127
d33982d5
PD
128/* parsing generic properties of devicetree/bindings/net/ethernet-phy.yaml */
129static int eth_phy_of_to_plat(struct udevice *dev)
130{
131 struct eth_phy_device_priv *uc_priv = dev_get_uclass_priv(dev);
132 int ret;
133
134 if (!CONFIG_IS_ENABLED(DM_GPIO))
135 return 0;
136
137 /* search "reset-gpios" in phy node */
138 ret = gpio_request_by_name(dev, "reset-gpios", 0,
139 &uc_priv->reset_gpio,
f3409d7a 140 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
87770337 141 if (ret && ret != -ENOENT)
d33982d5
PD
142 return ret;
143
144 uc_priv->reset_assert_delay = dev_read_u32_default(dev, "reset-assert-us", 0);
145 uc_priv->reset_deassert_delay = dev_read_u32_default(dev, "reset-deassert-us", 0);
146
3015ae5f
MV
147 /* These are used by some DTs, try these as a fallback. */
148 if (!uc_priv->reset_assert_delay && !uc_priv->reset_deassert_delay) {
149 uc_priv->reset_assert_delay =
150 dev_read_u32_default(dev, "reset-delay-us", 0);
151 uc_priv->reset_deassert_delay =
152 dev_read_u32_default(dev, "reset-post-delay-us", 0);
153 }
154
d33982d5
PD
155 return 0;
156}
157
06173ef6 158static void eth_phy_reset(struct udevice *dev, int value)
d33982d5
PD
159{
160 struct eth_phy_device_priv *uc_priv = dev_get_uclass_priv(dev);
161 u32 delay;
162
163 if (!CONFIG_IS_ENABLED(DM_GPIO))
164 return;
165
166 if (!dm_gpio_is_valid(&uc_priv->reset_gpio))
167 return;
168
169 dm_gpio_set_value(&uc_priv->reset_gpio, value);
170
171 delay = value ? uc_priv->reset_assert_delay : uc_priv->reset_deassert_delay;
172 if (delay)
173 udelay(delay);
174}
175
176static int eth_phy_pre_probe(struct udevice *dev)
177{
178 /* Assert and deassert the reset signal */
179 eth_phy_reset(dev, 1);
180 eth_phy_reset(dev, 0);
181
182 return 0;
183}
184
5fe419ef
YL
185UCLASS_DRIVER(eth_phy_generic) = {
186 .id = UCLASS_ETH_PHY,
187 .name = "eth_phy_generic",
41575d8e 188 .per_device_auto = sizeof(struct eth_phy_device_priv),
d33982d5 189 .pre_probe = eth_phy_pre_probe,
5fe419ef
YL
190};
191
192U_BOOT_DRIVER(eth_phy_generic_drv) = {
193 .name = "eth_phy_generic_drv",
194 .id = UCLASS_ETH_PHY,
d33982d5 195 .of_to_plat = eth_phy_of_to_plat,
5fe419ef 196};