dm writecache: correct uncommitted_block when discarding uncommitted entry
[linux/fpc-iii.git] / drivers / of / of_mdio.c
blob95a3bb2e5eabf77001de8c71c6d6d3bb8d067112
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * OF helpers for the MDIO (Ethernet PHY) API
5 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
7 * This file provides helper functions for extracting PHY device information
8 * out of the OpenFirmware device tree and using it to populate an mii_bus.
9 */
11 #include <linux/kernel.h>
12 #include <linux/device.h>
13 #include <linux/netdevice.h>
14 #include <linux/err.h>
15 #include <linux/phy.h>
16 #include <linux/phy_fixed.h>
17 #include <linux/of.h>
18 #include <linux/of_irq.h>
19 #include <linux/of_mdio.h>
20 #include <linux/of_net.h>
21 #include <linux/module.h>
23 #define DEFAULT_GPIO_RESET_DELAY 10 /* in microseconds */
25 MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
26 MODULE_LICENSE("GPL");
28 /* Extract the clause 22 phy ID from the compatible string of the form
29 * ethernet-phy-idAAAA.BBBB */
30 static int of_get_phy_id(struct device_node *device, u32 *phy_id)
32 struct property *prop;
33 const char *cp;
34 unsigned int upper, lower;
36 of_property_for_each_string(device, "compatible", prop, cp) {
37 if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
38 *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
39 return 0;
42 return -EINVAL;
45 static struct mii_timestamper *of_find_mii_timestamper(struct device_node *node)
47 struct of_phandle_args arg;
48 int err;
50 err = of_parse_phandle_with_fixed_args(node, "timestamper", 1, 0, &arg);
52 if (err == -ENOENT)
53 return NULL;
54 else if (err)
55 return ERR_PTR(err);
57 if (arg.args_count != 1)
58 return ERR_PTR(-EINVAL);
60 return register_mii_timestamper(arg.np, arg.args[0]);
63 static int of_mdiobus_register_phy(struct mii_bus *mdio,
64 struct device_node *child, u32 addr)
66 struct mii_timestamper *mii_ts;
67 struct phy_device *phy;
68 bool is_c45;
69 int rc;
70 u32 phy_id;
72 mii_ts = of_find_mii_timestamper(child);
73 if (IS_ERR(mii_ts))
74 return PTR_ERR(mii_ts);
76 is_c45 = of_device_is_compatible(child,
77 "ethernet-phy-ieee802.3-c45");
79 if (!is_c45 && !of_get_phy_id(child, &phy_id))
80 phy = phy_device_create(mdio, addr, phy_id, 0, NULL);
81 else
82 phy = get_phy_device(mdio, addr, is_c45);
83 if (IS_ERR(phy)) {
84 if (mii_ts)
85 unregister_mii_timestamper(mii_ts);
86 return PTR_ERR(phy);
89 rc = of_irq_get(child, 0);
90 if (rc == -EPROBE_DEFER) {
91 if (mii_ts)
92 unregister_mii_timestamper(mii_ts);
93 phy_device_free(phy);
94 return rc;
96 if (rc > 0) {
97 phy->irq = rc;
98 mdio->irq[addr] = rc;
99 } else {
100 phy->irq = mdio->irq[addr];
103 if (of_property_read_bool(child, "broken-turn-around"))
104 mdio->phy_ignore_ta_mask |= 1 << addr;
106 of_property_read_u32(child, "reset-assert-us",
107 &phy->mdio.reset_assert_delay);
108 of_property_read_u32(child, "reset-deassert-us",
109 &phy->mdio.reset_deassert_delay);
111 /* Associate the OF node with the device structure so it
112 * can be looked up later */
113 of_node_get(child);
114 phy->mdio.dev.of_node = child;
115 phy->mdio.dev.fwnode = of_fwnode_handle(child);
117 /* All data is now stored in the phy struct;
118 * register it */
119 rc = phy_device_register(phy);
120 if (rc) {
121 if (mii_ts)
122 unregister_mii_timestamper(mii_ts);
123 phy_device_free(phy);
124 of_node_put(child);
125 return rc;
128 /* phy->mii_ts may already be defined by the PHY driver. A
129 * mii_timestamper probed via the device tree will still have
130 * precedence.
132 if (mii_ts)
133 phy->mii_ts = mii_ts;
135 dev_dbg(&mdio->dev, "registered phy %pOFn at address %i\n",
136 child, addr);
137 return 0;
140 static int of_mdiobus_register_device(struct mii_bus *mdio,
141 struct device_node *child, u32 addr)
143 struct mdio_device *mdiodev;
144 int rc;
146 mdiodev = mdio_device_create(mdio, addr);
147 if (IS_ERR(mdiodev))
148 return PTR_ERR(mdiodev);
150 /* Associate the OF node with the device structure so it
151 * can be looked up later.
153 of_node_get(child);
154 mdiodev->dev.of_node = child;
155 mdiodev->dev.fwnode = of_fwnode_handle(child);
157 /* All data is now stored in the mdiodev struct; register it. */
158 rc = mdio_device_register(mdiodev);
159 if (rc) {
160 mdio_device_free(mdiodev);
161 of_node_put(child);
162 return rc;
165 dev_dbg(&mdio->dev, "registered mdio device %pOFn at address %i\n",
166 child, addr);
167 return 0;
170 /* The following is a list of PHY compatible strings which appear in
171 * some DTBs. The compatible string is never matched against a PHY
172 * driver, so is pointless. We only expect devices which are not PHYs
173 * to have a compatible string, so they can be matched to an MDIO
174 * driver. Encourage users to upgrade their DT blobs to remove these.
176 static const struct of_device_id whitelist_phys[] = {
177 { .compatible = "brcm,40nm-ephy" },
178 { .compatible = "broadcom,bcm5241" },
179 { .compatible = "marvell,88E1111", },
180 { .compatible = "marvell,88e1116", },
181 { .compatible = "marvell,88e1118", },
182 { .compatible = "marvell,88e1145", },
183 { .compatible = "marvell,88e1149r", },
184 { .compatible = "marvell,88e1310", },
185 { .compatible = "marvell,88E1510", },
186 { .compatible = "marvell,88E1514", },
187 { .compatible = "moxa,moxart-rtl8201cp", },
192 * Return true if the child node is for a phy. It must either:
193 * o Compatible string of "ethernet-phy-idX.X"
194 * o Compatible string of "ethernet-phy-ieee802.3-c45"
195 * o Compatible string of "ethernet-phy-ieee802.3-c22"
196 * o In the white list above (and issue a warning)
197 * o No compatibility string
199 * A device which is not a phy is expected to have a compatible string
200 * indicating what sort of device it is.
202 bool of_mdiobus_child_is_phy(struct device_node *child)
204 u32 phy_id;
206 if (of_get_phy_id(child, &phy_id) != -EINVAL)
207 return true;
209 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c45"))
210 return true;
212 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c22"))
213 return true;
215 if (of_match_node(whitelist_phys, child)) {
216 pr_warn(FW_WARN
217 "%pOF: Whitelisted compatible string. Please remove\n",
218 child);
219 return true;
222 if (!of_find_property(child, "compatible", NULL))
223 return true;
225 return false;
227 EXPORT_SYMBOL(of_mdiobus_child_is_phy);
230 * of_mdiobus_register - Register mii_bus and create PHYs from the device tree
231 * @mdio: pointer to mii_bus structure
232 * @np: pointer to device_node of MDIO bus.
234 * This function registers the mii_bus structure and registers a phy_device
235 * for each child node of @np.
237 int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
239 struct device_node *child;
240 bool scanphys = false;
241 int addr, rc;
243 if (!np)
244 return mdiobus_register(mdio);
246 /* Do not continue if the node is disabled */
247 if (!of_device_is_available(np))
248 return -ENODEV;
250 /* Mask out all PHYs from auto probing. Instead the PHYs listed in
251 * the device tree are populated after the bus has been registered */
252 mdio->phy_mask = ~0;
254 mdio->dev.of_node = np;
255 mdio->dev.fwnode = of_fwnode_handle(np);
257 /* Get bus level PHY reset GPIO details */
258 mdio->reset_delay_us = DEFAULT_GPIO_RESET_DELAY;
259 of_property_read_u32(np, "reset-delay-us", &mdio->reset_delay_us);
261 /* Register the MDIO bus */
262 rc = mdiobus_register(mdio);
263 if (rc)
264 return rc;
266 /* Loop over the child nodes and register a phy_device for each phy */
267 for_each_available_child_of_node(np, child) {
268 addr = of_mdio_parse_addr(&mdio->dev, child);
269 if (addr < 0) {
270 scanphys = true;
271 continue;
274 if (of_mdiobus_child_is_phy(child))
275 rc = of_mdiobus_register_phy(mdio, child, addr);
276 else
277 rc = of_mdiobus_register_device(mdio, child, addr);
279 if (rc == -ENODEV)
280 dev_err(&mdio->dev,
281 "MDIO device at address %d is missing.\n",
282 addr);
283 else if (rc)
284 goto unregister;
287 if (!scanphys)
288 return 0;
290 /* auto scan for PHYs with empty reg property */
291 for_each_available_child_of_node(np, child) {
292 /* Skip PHYs with reg property set */
293 if (of_find_property(child, "reg", NULL))
294 continue;
296 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
297 /* skip already registered PHYs */
298 if (mdiobus_is_registered_device(mdio, addr))
299 continue;
301 /* be noisy to encourage people to set reg property */
302 dev_info(&mdio->dev, "scan phy %pOFn at address %i\n",
303 child, addr);
305 if (of_mdiobus_child_is_phy(child)) {
306 /* -ENODEV is the return code that PHYLIB has
307 * standardized on to indicate that bus
308 * scanning should continue.
310 rc = of_mdiobus_register_phy(mdio, child, addr);
311 if (!rc)
312 break;
313 if (rc != -ENODEV)
314 goto unregister;
319 return 0;
321 unregister:
322 mdiobus_unregister(mdio);
323 return rc;
325 EXPORT_SYMBOL(of_mdiobus_register);
328 * of_phy_find_device - Give a PHY node, find the phy_device
329 * @phy_np: Pointer to the phy's device tree node
331 * If successful, returns a pointer to the phy_device with the embedded
332 * struct device refcount incremented by one, or NULL on failure.
334 struct phy_device *of_phy_find_device(struct device_node *phy_np)
336 struct device *d;
337 struct mdio_device *mdiodev;
339 if (!phy_np)
340 return NULL;
342 d = bus_find_device_by_of_node(&mdio_bus_type, phy_np);
343 if (d) {
344 mdiodev = to_mdio_device(d);
345 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
346 return to_phy_device(d);
347 put_device(d);
350 return NULL;
352 EXPORT_SYMBOL(of_phy_find_device);
355 * of_phy_connect - Connect to the phy described in the device tree
356 * @dev: pointer to net_device claiming the phy
357 * @phy_np: Pointer to device tree node for the PHY
358 * @hndlr: Link state callback for the network device
359 * @flags: flags to pass to the PHY
360 * @iface: PHY data interface type
362 * If successful, returns a pointer to the phy_device with the embedded
363 * struct device refcount incremented by one, or NULL on failure. The
364 * refcount must be dropped by calling phy_disconnect() or phy_detach().
366 struct phy_device *of_phy_connect(struct net_device *dev,
367 struct device_node *phy_np,
368 void (*hndlr)(struct net_device *), u32 flags,
369 phy_interface_t iface)
371 struct phy_device *phy = of_phy_find_device(phy_np);
372 int ret;
374 if (!phy)
375 return NULL;
377 phy->dev_flags = flags;
379 ret = phy_connect_direct(dev, phy, hndlr, iface);
381 /* refcount is held by phy_connect_direct() on success */
382 put_device(&phy->mdio.dev);
384 return ret ? NULL : phy;
386 EXPORT_SYMBOL(of_phy_connect);
389 * of_phy_get_and_connect
390 * - Get phy node and connect to the phy described in the device tree
391 * @dev: pointer to net_device claiming the phy
392 * @np: Pointer to device tree node for the net_device claiming the phy
393 * @hndlr: Link state callback for the network device
395 * If successful, returns a pointer to the phy_device with the embedded
396 * struct device refcount incremented by one, or NULL on failure. The
397 * refcount must be dropped by calling phy_disconnect() or phy_detach().
399 struct phy_device *of_phy_get_and_connect(struct net_device *dev,
400 struct device_node *np,
401 void (*hndlr)(struct net_device *))
403 phy_interface_t iface;
404 struct device_node *phy_np;
405 struct phy_device *phy;
406 int ret;
408 ret = of_get_phy_mode(np, &iface);
409 if (ret)
410 return NULL;
411 if (of_phy_is_fixed_link(np)) {
412 ret = of_phy_register_fixed_link(np);
413 if (ret < 0) {
414 netdev_err(dev, "broken fixed-link specification\n");
415 return NULL;
417 phy_np = of_node_get(np);
418 } else {
419 phy_np = of_parse_phandle(np, "phy-handle", 0);
420 if (!phy_np)
421 return NULL;
424 phy = of_phy_connect(dev, phy_np, hndlr, 0, iface);
426 of_node_put(phy_np);
428 return phy;
430 EXPORT_SYMBOL(of_phy_get_and_connect);
433 * of_phy_attach - Attach to a PHY without starting the state machine
434 * @dev: pointer to net_device claiming the phy
435 * @phy_np: Node pointer for the PHY
436 * @flags: flags to pass to the PHY
437 * @iface: PHY data interface type
439 * If successful, returns a pointer to the phy_device with the embedded
440 * struct device refcount incremented by one, or NULL on failure. The
441 * refcount must be dropped by calling phy_disconnect() or phy_detach().
443 struct phy_device *of_phy_attach(struct net_device *dev,
444 struct device_node *phy_np, u32 flags,
445 phy_interface_t iface)
447 struct phy_device *phy = of_phy_find_device(phy_np);
448 int ret;
450 if (!phy)
451 return NULL;
453 ret = phy_attach_direct(dev, phy, flags, iface);
455 /* refcount is held by phy_attach_direct() on success */
456 put_device(&phy->mdio.dev);
458 return ret ? NULL : phy;
460 EXPORT_SYMBOL(of_phy_attach);
463 * of_phy_is_fixed_link() and of_phy_register_fixed_link() must
464 * support two DT bindings:
465 * - the old DT binding, where 'fixed-link' was a property with 5
466 * cells encoding various informations about the fixed PHY
467 * - the new DT binding, where 'fixed-link' is a sub-node of the
468 * Ethernet device.
470 bool of_phy_is_fixed_link(struct device_node *np)
472 struct device_node *dn;
473 int len, err;
474 const char *managed;
476 /* New binding */
477 dn = of_get_child_by_name(np, "fixed-link");
478 if (dn) {
479 of_node_put(dn);
480 return true;
483 err = of_property_read_string(np, "managed", &managed);
484 if (err == 0 && strcmp(managed, "auto") != 0)
485 return true;
487 /* Old binding */
488 if (of_get_property(np, "fixed-link", &len) &&
489 len == (5 * sizeof(__be32)))
490 return true;
492 return false;
494 EXPORT_SYMBOL(of_phy_is_fixed_link);
496 int of_phy_register_fixed_link(struct device_node *np)
498 struct fixed_phy_status status = {};
499 struct device_node *fixed_link_node;
500 u32 fixed_link_prop[5];
501 const char *managed;
503 if (of_property_read_string(np, "managed", &managed) == 0 &&
504 strcmp(managed, "in-band-status") == 0) {
505 /* status is zeroed, namely its .link member */
506 goto register_phy;
509 /* New binding */
510 fixed_link_node = of_get_child_by_name(np, "fixed-link");
511 if (fixed_link_node) {
512 status.link = 1;
513 status.duplex = of_property_read_bool(fixed_link_node,
514 "full-duplex");
515 if (of_property_read_u32(fixed_link_node, "speed",
516 &status.speed)) {
517 of_node_put(fixed_link_node);
518 return -EINVAL;
520 status.pause = of_property_read_bool(fixed_link_node, "pause");
521 status.asym_pause = of_property_read_bool(fixed_link_node,
522 "asym-pause");
523 of_node_put(fixed_link_node);
525 goto register_phy;
528 /* Old binding */
529 if (of_property_read_u32_array(np, "fixed-link", fixed_link_prop,
530 ARRAY_SIZE(fixed_link_prop)) == 0) {
531 status.link = 1;
532 status.duplex = fixed_link_prop[1];
533 status.speed = fixed_link_prop[2];
534 status.pause = fixed_link_prop[3];
535 status.asym_pause = fixed_link_prop[4];
536 goto register_phy;
539 return -ENODEV;
541 register_phy:
542 return PTR_ERR_OR_ZERO(fixed_phy_register(PHY_POLL, &status, np));
544 EXPORT_SYMBOL(of_phy_register_fixed_link);
546 void of_phy_deregister_fixed_link(struct device_node *np)
548 struct phy_device *phydev;
550 phydev = of_phy_find_device(np);
551 if (!phydev)
552 return;
554 fixed_phy_unregister(phydev);
556 put_device(&phydev->mdio.dev); /* of_phy_find_device() */
557 phy_device_free(phydev); /* fixed_phy_register() */
559 EXPORT_SYMBOL(of_phy_deregister_fixed_link);