David Daney | 4b6ba8a | 2010-10-26 15:07:13 -0700 | [diff] [blame] | 1 | /* |
| 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 Guo | 6ca1a11 | 2011-07-04 14:03:17 +0800 | [diff] [blame] | 11 | #include <linux/phy.h> |
Paul Gortmaker | 2c8d667 | 2011-07-29 16:05:38 +1000 | [diff] [blame] | 12 | #include <linux/export.h> |
Shawn Guo | 6ca1a11 | 2011-07-04 14:03:17 +0800 | [diff] [blame] | 13 | |
| 14 | /** |
Shawn Guo | 6ca1a11 | 2011-07-04 14:03:17 +0800 | [diff] [blame] | 15 | * 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 Uytterhoeven | 7e0bdf1 | 2013-08-18 13:01:30 +0200 | [diff] [blame] | 21 | int of_get_phy_mode(struct device_node *np) |
Shawn Guo | 6ca1a11 | 2011-07-04 14:03:17 +0800 | [diff] [blame] | 22 | { |
| 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 Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame^] | 30 | for (i = 0; i < PHY_INTERFACE_MODE_MAX; i++) |
| 31 | if (!strcasecmp(pm, phy_modes(i))) |
Shawn Guo | 6ca1a11 | 2011-07-04 14:03:17 +0800 | [diff] [blame] | 32 | return i; |
| 33 | |
| 34 | return -ENODEV; |
| 35 | } |
| 36 | EXPORT_SYMBOL_GPL(of_get_phy_mode); |
David Daney | 4b6ba8a | 2010-10-26 15:07:13 -0700 | [diff] [blame] | 37 | |
| 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 | */ |
| 56 | const 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 | } |
| 74 | EXPORT_SYMBOL(of_get_mac_address); |