blob: 84215c1929c400d53af1ce0c1938fedd87d045b5 [file] [log] [blame]
David Daney4b6ba8a2010-10-26 15:07:13 -07001/*
2 * OF helpers for network devices.
3 *
4 * This file is released under the GPLv2
5 *
6 * Initially copied out of arch/powerpc/kernel/prom_parse.c
7 */
8#include <linux/etherdevice.h>
9#include <linux/kernel.h>
10#include <linux/of_net.h>
Shawn Guo6ca1a112011-07-04 14:03:17 +080011#include <linux/phy.h>
Paul Gortmaker2c8d6672011-07-29 16:05:38 +100012#include <linux/export.h>
Shawn Guo6ca1a112011-07-04 14:03:17 +080013
14/**
Shawn Guo6ca1a112011-07-04 14:03:17 +080015 * of_get_phy_mode - Get phy mode for given device_node
16 * @np: Pointer to the given device_node
17 *
18 * The function gets phy interface string from property 'phy-mode',
19 * and return its index in phy_modes table, or errno in error case.
20 */
Geert Uytterhoeven7e0bdf12013-08-18 13:01:30 +020021int of_get_phy_mode(struct device_node *np)
Shawn Guo6ca1a112011-07-04 14:03:17 +080022{
23 const char *pm;
24 int err, i;
25
26 err = of_property_read_string(np, "phy-mode", &pm);
27 if (err < 0)
28 return err;
29
Florian Fainelli8a2fe562014-02-11 17:27:39 -080030 for (i = 0; i < PHY_INTERFACE_MODE_MAX; i++)
31 if (!strcasecmp(pm, phy_modes(i)))
Shawn Guo6ca1a112011-07-04 14:03:17 +080032 return i;
33
34 return -ENODEV;
35}
36EXPORT_SYMBOL_GPL(of_get_phy_mode);
David Daney4b6ba8a2010-10-26 15:07:13 -070037
38/**
39 * Search the device tree for the best MAC address to use. 'mac-address' is
40 * checked first, because that is supposed to contain to "most recent" MAC
41 * address. If that isn't set, then 'local-mac-address' is checked next,
42 * because that is the default address. If that isn't set, then the obsolete
43 * 'address' is checked, just in case we're using an old device tree.
44 *
45 * Note that the 'address' property is supposed to contain a virtual address of
46 * the register set, but some DTS files have redefined that property to be the
47 * MAC address.
48 *
49 * All-zero MAC addresses are rejected, because those could be properties that
50 * exist in the device tree, but were not set by U-Boot. For example, the
51 * DTS could define 'mac-address' and 'local-mac-address', with zero MAC
52 * addresses. Some older U-Boots only initialized 'local-mac-address'. In
53 * this case, the real MAC is in 'local-mac-address', and 'mac-address' exists
54 * but is all zeros.
55*/
56const void *of_get_mac_address(struct device_node *np)
57{
58 struct property *pp;
59
60 pp = of_find_property(np, "mac-address", NULL);
61 if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
62 return pp->value;
63
64 pp = of_find_property(np, "local-mac-address", NULL);
65 if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
66 return pp->value;
67
68 pp = of_find_property(np, "address", NULL);
69 if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
70 return pp->value;
71
72 return NULL;
73}
74EXPORT_SYMBOL(of_get_mac_address);