blob: bef8280e210410837d143fecd2ee8a26d2ca77b1 [file] [log] [blame]
Alex Margineanc3452b52019-06-03 19:10:30 +03001// 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>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030011#include <miiphy.h>
12#include <dm/device-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <dm/device_compat.h>
Bin Meng33aad0b2021-03-14 20:14:47 +080014#include <dm/of_extra.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030015#include <dm/uclass-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <linux/compat.h>
Alex Margineanc3452b52019-06-03 19:10:30 +030017
Alex Marginean2f624552019-11-25 17:15:12 +020018/* DT node properties for MAC-PHY interface */
Marek Behúna7a96ef2022-04-07 00:32:56 +020019static const char * const phy_mode_str[] = {
Marek Behún6fb44822022-04-07 00:32:55 +020020 "phy-mode", "phy-connection-type"
21};
Marek Behúna7a96ef2022-04-07 00:32:56 +020022
Alex Margineanc3452b52019-06-03 19:10:30 +030023void dm_mdio_probe_devices(void)
24{
25 struct udevice *it;
26 struct uclass *uc;
27
28 uclass_get(UCLASS_MDIO, &uc);
29 uclass_foreach_dev(it, uc) {
30 device_probe(it);
31 }
32}
33
34static int dm_mdio_post_bind(struct udevice *dev)
35{
Alex Marginean6b3abc02019-07-25 12:33:17 +030036 const char *dt_name;
37
38 /* set a custom name for the MDIO device, if present in DT */
Simon Glassf10643c2020-12-19 10:40:14 -070039 if (dev_has_ofnode(dev)) {
40 dt_name = dev_read_string(dev, "device-name");
Alex Marginean6b3abc02019-07-25 12:33:17 +030041 if (dt_name) {
42 debug("renaming dev %s to %s\n", dev->name, dt_name);
43 device_set_name(dev, dt_name);
44 }
45 }
46
Alex Margineanc3452b52019-06-03 19:10:30 +030047 /*
48 * MDIO command doesn't like spaces in names, don't allow them to keep
49 * it happy
50 */
51 if (strchr(dev->name, ' ')) {
52 debug("\nError: MDIO device name \"%s\" has a space!\n",
53 dev->name);
54 return -EINVAL;
55 }
56
57 return 0;
58}
59
Marek Behún351bfa62022-04-07 00:32:58 +020060int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg)
61{
62 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
63
64 if (!ops->read)
65 return -ENOSYS;
66
67 return ops->read(mdio_dev, addr, devad, reg);
68}
69
70int dm_mdio_write(struct udevice *mdio_dev, int addr, int devad, int reg,
71 u16 val)
72{
73 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
74
75 if (!ops->write)
76 return -ENOSYS;
77
78 return ops->write(mdio_dev, addr, devad, reg, val);
79}
80
81int dm_mdio_reset(struct udevice *mdio_dev)
82{
83 struct mdio_ops *ops = mdio_get_ops(mdio_dev);
84
85 if (!ops->reset)
86 return 0;
87
88 return ops->reset(mdio_dev);
89}
90
Alex Margineanc3452b52019-06-03 19:10:30 +030091/*
92 * Following read/write/reset functions are registered with legacy MII code.
93 * These are called for PHY operations by upper layers and we further call the
94 * DM MDIO driver functions.
95 */
96static int mdio_read(struct mii_dev *mii_bus, int addr, int devad, int reg)
97{
Marek Behún1776a242022-04-07 00:32:59 +020098 return dm_mdio_read(mii_bus->priv, addr, devad, reg);
Alex Margineanc3452b52019-06-03 19:10:30 +030099}
100
101static int mdio_write(struct mii_dev *mii_bus, int addr, int devad, int reg,
102 u16 val)
103{
Marek Behún1776a242022-04-07 00:32:59 +0200104 return dm_mdio_write(mii_bus->priv, addr, devad, reg, val);
Alex Margineanc3452b52019-06-03 19:10:30 +0300105}
106
107static int mdio_reset(struct mii_dev *mii_bus)
108{
Marek Behún1776a242022-04-07 00:32:59 +0200109 return dm_mdio_reset(mii_bus->priv);
Alex Margineanc3452b52019-06-03 19:10:30 +0300110}
111
112static int dm_mdio_post_probe(struct udevice *dev)
113{
114 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
115
116 pdata->mii_bus = mdio_alloc();
117 pdata->mii_bus->read = mdio_read;
118 pdata->mii_bus->write = mdio_write;
119 pdata->mii_bus->reset = mdio_reset;
120 pdata->mii_bus->priv = dev;
Vladimir Olteanbf35c312021-09-27 14:22:00 +0300121 strlcpy(pdata->mii_bus->name, dev->name, MDIO_NAME_LEN);
Alex Margineanc3452b52019-06-03 19:10:30 +0300122
123 return mdio_register(pdata->mii_bus);
124}
125
126static int dm_mdio_pre_remove(struct udevice *dev)
127{
128 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(dev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300129
Marek Behún1776a242022-04-07 00:32:59 +0200130 dm_mdio_reset(dev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300131 mdio_unregister(pdata->mii_bus);
132 mdio_free(pdata->mii_bus);
133
134 return 0;
135}
136
Alex Margineana5d32c32019-11-25 17:15:11 +0200137struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr,
Alex Margineanc3452b52019-06-03 19:10:30 +0300138 struct udevice *ethdev,
139 phy_interface_t interface)
140{
Alex Margineana5d32c32019-11-25 17:15:11 +0200141 struct mdio_perdev_priv *pdata = dev_get_uclass_priv(mdiodev);
Alex Margineanc3452b52019-06-03 19:10:30 +0300142
Alex Margineana5d32c32019-11-25 17:15:11 +0200143 if (device_probe(mdiodev))
144 return NULL;
Alex Margineanc3452b52019-06-03 19:10:30 +0300145
Alex Margineana5d32c32019-11-25 17:15:11 +0200146 return phy_connect(pdata->mii_bus, phyaddr, ethdev, interface);
Alex Margineanc3452b52019-06-03 19:10:30 +0300147}
148
Alex Marginean2f624552019-11-25 17:15:12 +0200149static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev,
150 phy_interface_t interface)
151{
152 u32 phy_addr;
153 struct udevice *mdiodev;
154 struct phy_device *phy;
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800155 ofnode phynode;
Alex Marginean2f624552019-11-25 17:15:12 +0200156
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200157 if (CONFIG_IS_ENABLED(PHY_FIXED) &&
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800158 ofnode_phy_is_fixed_link(dev_ofnode(ethdev), &phynode)) {
159 phy = phy_connect(NULL, 0, ethdev, interface);
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200160 goto out;
161 }
162
Marek Behúnf3dd2132022-04-07 00:32:57 +0200163 phynode = dev_get_phy_node(ethdev);
164 if (!ofnode_valid(phynode)) {
Sean Anderson0851bd12020-09-15 10:44:53 -0400165 dev_dbg(ethdev, "can't find PHY node\n");
Alex Marginean2f624552019-11-25 17:15:12 +0200166 return NULL;
167 }
168
169 /*
170 * reading 'reg' directly should be fine. This is a PHY node, the
171 * address is always size 1 and requires no translation
172 */
Marek Behúnf3dd2132022-04-07 00:32:57 +0200173 if (ofnode_read_u32(phynode, "reg", &phy_addr)) {
Alex Marginean2f624552019-11-25 17:15:12 +0200174 dev_dbg(ethdev, "missing reg property in phy node\n");
175 return NULL;
176 }
177
178 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
Marek Behúnf3dd2132022-04-07 00:32:57 +0200179 ofnode_get_parent(phynode),
Alex Marginean2f624552019-11-25 17:15:12 +0200180 &mdiodev)) {
Sean Anderson0851bd12020-09-15 10:44:53 -0400181 dev_dbg(ethdev, "can't find MDIO bus for node %s\n",
Marek Behúnf3dd2132022-04-07 00:32:57 +0200182 ofnode_get_name(ofnode_get_parent(phynode)));
Alex Marginean2f624552019-11-25 17:15:12 +0200183 return NULL;
184 }
185
186 phy = dm_mdio_phy_connect(mdiodev, phy_addr, ethdev, interface);
187
Rasmus Villemoesbdf31922020-10-05 15:15:16 +0200188out:
Alex Marginean2f624552019-11-25 17:15:12 +0200189 if (phy)
Marek Behúnf3dd2132022-04-07 00:32:57 +0200190 phy->node = phynode;
Alex Marginean2f624552019-11-25 17:15:12 +0200191
192 return phy;
193}
194
195/* Connect to a PHY linked in eth DT node */
196struct phy_device *dm_eth_phy_connect(struct udevice *ethdev)
197{
198 const char *if_str;
199 phy_interface_t interface;
200 struct phy_device *phy;
201 int i;
202
Simon Glassf10643c2020-12-19 10:40:14 -0700203 if (!dev_has_ofnode(ethdev)) {
Alex Marginean2f624552019-11-25 17:15:12 +0200204 debug("%s: supplied eth dev has no DT node!\n", ethdev->name);
205 return NULL;
206 }
207
208 interface = PHY_INTERFACE_MODE_NONE;
Marek Behúna7a96ef2022-04-07 00:32:56 +0200209 for (i = 0; i < ARRAY_SIZE(phy_mode_str); i++) {
Simon Glassf10643c2020-12-19 10:40:14 -0700210 if_str = dev_read_string(ethdev, phy_mode_str[i]);
Alex Marginean2f624552019-11-25 17:15:12 +0200211 if (if_str) {
212 interface = phy_get_interface_by_name(if_str);
213 break;
214 }
215 }
216 if (interface < 0)
217 interface = PHY_INTERFACE_MODE_NONE;
218 if (interface == PHY_INTERFACE_MODE_NONE)
219 dev_dbg(ethdev, "can't find interface mode, default to NONE\n");
220
221 phy = dm_eth_connect_phy_handle(ethdev, interface);
222
223 if (!phy)
224 return NULL;
225
226 phy->interface = interface;
227
228 return phy;
229}
230
Alex Margineanc3452b52019-06-03 19:10:30 +0300231UCLASS_DRIVER(mdio) = {
232 .id = UCLASS_MDIO,
233 .name = "mdio",
234 .post_bind = dm_mdio_post_bind,
235 .post_probe = dm_mdio_post_probe,
236 .pre_remove = dm_mdio_pre_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700237 .per_device_auto = sizeof(struct mdio_perdev_priv),
Alex Margineanc3452b52019-06-03 19:10:30 +0300238};