]> Git Repo - J-u-boot.git/blame - net/mdio-uclass.c
pinctrl: nuvoton: add NPCM7xx/NPCM8xx reset type detect
[J-u-boot.git] / net / mdio-uclass.c
CommitLineData
c3452b50
AM
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019
4 * Alex Marginean, NXP
5 */
6
7#include <common.h>
8#include <dm.h>
f7ae49fc 9#include <log.h>
336d4615 10#include <malloc.h>
c3452b50
AM
11#include <miiphy.h>
12#include <dm/device-internal.h>
336d4615 13#include <dm/device_compat.h>
33aad0b0 14#include <dm/of_extra.h>
c3452b50 15#include <dm/uclass-internal.h>
336d4615 16#include <linux/compat.h>
c3452b50
AM
17
18void dm_mdio_probe_devices(void)
19{
20 struct udevice *it;
21 struct uclass *uc;
22
23 uclass_get(UCLASS_MDIO, &uc);
24 uclass_foreach_dev(it, uc) {
25 device_probe(it);
26 }
27}
28
29static int dm_mdio_post_bind(struct udevice *dev)
30{
6b3abc04
AM
31 const char *dt_name;
32
33 /* set a custom name for the MDIO device, if present in DT */
f10643cf
SG
34 if (dev_has_ofnode(dev)) {
35 dt_name = dev_read_string(dev, "device-name");
6b3abc04
AM
36 if (dt_name) {
37 debug("renaming dev %s to %s\n", dev->name, dt_name);
38 device_set_name(dev, dt_name);
39 }
40 }
41
c3452b50
AM
42 /*
43 * MDIO command doesn't like spaces in names, don't allow them to keep
44 * it happy
45 */
46 if (strchr(dev->name, ' ')) {
47 debug("\nError: MDIO device name \"%s\" has a space!\n",
48 dev->name);
49 return -EINVAL;
50 }
51
52 return 0;
53}
54
351bfa6e
MB
55int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg)
56{
57 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
58
59 if (!ops->read)
60 return -ENOSYS;
61
62 return ops->read(mdio_dev, addr, devad, reg);
63}
64
65int dm_mdio_write(struct udevice *mdio_dev, int addr, int devad, int reg,
66 u16 val)
67{
68 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
69
70 if (!ops->write)
71 return -ENOSYS;
72
73 return ops->write(mdio_dev, addr, devad, reg, val);
74}
75
76int dm_mdio_reset(struct udevice *mdio_dev)
77{
78 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
79
80 if (!ops->reset)
81 return 0;
82
83 return ops->reset(mdio_dev);
84}
85
c3452b50
AM
86/*
87 * Following read/write/reset functions are registered with legacy MII code.
88 * These are called for PHY operations by upper layers and we further call the
89 * DM MDIO driver functions.
90 */
91static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
92{
1776a24b 93 return dm_mdio_read(mii_bus->priv, addr, devad, reg);
c3452b50
AM
94}
95
96static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
97 u16 val)
98{
1776a24b 99 return dm_mdio_write(mii_bus->priv, addr, devad, reg, val);
c3452b50
AM
100}
101
102static int mdio_reset(struct mii_dev *mii_bus)
103{
1776a24b 104 return dm_mdio_reset(mii_bus->priv);
c3452b50
AM
105}
106
107static int dm_mdio_post_probe(struct udevice *dev)
108{
109 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
110
111 pdata->mii_bus = mdio_alloc();
112 pdata->mii_bus->read = mdio_read;
113 pdata->mii_bus->write = mdio_write;
114 pdata->mii_bus->reset = mdio_reset;
115 pdata->mii_bus->priv = dev;
bf35c312 116 strlcpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN);
c3452b50
AM
117
118 return mdio_register(pdata->mii_bus);
119}
120
121static int dm_mdio_pre_remove(struct udevice *dev)
122{
123 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
c3452b50 124
1776a24b 125 dm_mdio_reset(dev);
c3452b50
AM
126 mdio_unregister(pdata->mii_bus);
127 mdio_free(pdata->mii_bus);
128
129 return 0;
130}
131
00b1bad9
MB
132struct phy_device *dm_phy_find_by_ofnode(ofnode phynode)
133{
134 struct mdio_perdev_priv *pdata;
135 struct udevice *mdiodev;
136 u32 phy_addr;
137
138 if (ofnode_read_u32(phynode, "reg", &phy_addr))
139 return NULL;
140
141 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
142 ofnode_get_parent(phynode),
143 &mdiodev))
144 return NULL;
145
146 if (device_probe(mdiodev))
147 return NULL;
148
149 pdata = dev_get_uclass_priv(mdiodev);
150
151 return phy_find_by_mask(pdata->mii_bus, BIT(phy_addr));
152}
153
a5d32c37 154struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
c3452b50
AM
155 struct udevice *ethdev,
156 phy_interface_t interface)
157{
a5d32c37 158 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
c3452b50 159
a5d32c37
AM
160 if (device_probe(mdiodev))
161 return NULL;
c3452b50 162
a5d32c37 163 return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
c3452b50
AM
164}
165
2f624559
AM
166static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
167 phy_interface_t interface)
168{
169 u32 phy_addr;
170 struct udevice *mdiodev;
171 struct phy_device *phy;
f27bc8af 172 ofnode phynode;
2f624559 173
bdf31927 174 if (CONFIG_IS_ENABLED(PHY_FIXED) &&
f27bc8af
VO
175 ofnode_phy_is_fixed_link(dev_ofnode(ethdev), &phynode)) {
176 phy = phy_connect(NULL, 0, ethdev, interface);
bdf31927
RV
177 goto out;
178 }
179
f3dd213e
MB
180 phynode = dev_get_phy_node(ethdev);
181 if (!ofnode_valid(phynode)) {
0851bd1e 182 dev_dbg(ethdev, "can't find PHY node\n");
2f624559
AM
183 return NULL;
184 }
185
186 /*
187 * reading 'reg' directly should be fine. This is a PHY node, the
188 * address is always size 1 and requires no translation
189 */
f3dd213e 190 if (ofnode_read_u32(phynode, "reg", &phy_addr)) {
2f624559
AM
191 dev_dbg(ethdev, "missing reg property in phy node\n");
192 return NULL;
193 }
194
195 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
f3dd213e 196 ofnode_get_parent(phynode),
2f624559 197 &mdiodev)) {
0851bd1e 198 dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
f3dd213e 199 ofnode_get_name(ofnode_get_parent(phynode)));
2f624559
AM
200 return NULL;
201 }
202
203 phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
204
bdf31927 205out:
2f624559 206 if (phy)
f3dd213e 207 phy->node = phynode;
2f624559
AM
208
209 return phy;
210}
211
212/* Connect to a PHY linked in eth DT node */
213struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
214{
2f624559
AM
215 phy_interface_t interface;
216 struct phy_device *phy;
2f624559 217
f10643cf 218 if (!dev_has_ofnode(ethdev)) {
2f624559
AM
219 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
220 return NULL;
221 }
222
123ca114 223 interface = dev_read_phy_mode(ethdev);
ffb0f6f4
MB
224 if (interface == PHY_INTERFACE_MODE_NA)
225 dev_dbg(ethdev, "can't find interface mode, default to NA\n");
2f624559
AM
226
227 phy = dm_eth_connect_phy_handle(ethdev, interface);
228
229 if (!phy)
230 return NULL;
231
232 phy->interface = interface;
233
234 return phy;
235}
236
c3452b50
AM
237UCLASS_DRIVER(mdio) = {
238 .id = UCLASS_MDIO,
239 .name = "mdio",
240 .post_bind = dm_mdio_post_bind,
241 .post_probe = dm_mdio_post_probe,
242 .pre_remove = dm_mdio_pre_remove,
41575d8e 243 .per_device_auto = sizeof(struct mdio_perdev_priv),
c3452b50 244};
This page took 0.17647 seconds and 4 git commands to generate.