Merge tag 'fs_for_v5.2-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / drivers / of / of_net.c
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>
11 #include <linux/of_platform.h>
12 #include <linux/phy.h>
13 #include <linux/export.h>
14 #include <linux/device.h>
15
16 /**
17  * of_get_phy_mode - Get phy mode for given device_node
18  * @np: Pointer to the given device_node
19  *
20  * The function gets phy interface string from property 'phy-mode' or
21  * 'phy-connection-type', and return its index in phy_modes table, or errno in
22  * error case.
23  */
24 int of_get_phy_mode(struct device_node *np)
25 {
26         const char *pm;
27         int err, i;
28
29         err = of_property_read_string(np, "phy-mode", &pm);
30         if (err < 0)
31                 err = of_property_read_string(np, "phy-connection-type", &pm);
32         if (err < 0)
33                 return err;
34
35         for (i = 0; i < PHY_INTERFACE_MODE_MAX; i++)
36                 if (!strcasecmp(pm, phy_modes(i)))
37                         return i;
38
39         return -ENODEV;
40 }
41 EXPORT_SYMBOL_GPL(of_get_phy_mode);
42
43 static const void *of_get_mac_addr(struct device_node *np, const char *name)
44 {
45         struct property *pp = of_find_property(np, name, NULL);
46
47         if (pp && pp->length == ETH_ALEN && is_valid_ether_addr(pp->value))
48                 return pp->value;
49         return NULL;
50 }
51
52 static const void *of_get_mac_addr_nvmem(struct device_node *np)
53 {
54         int ret;
55         u8 mac[ETH_ALEN];
56         struct property *pp;
57         struct platform_device *pdev = of_find_device_by_node(np);
58
59         if (!pdev)
60                 return ERR_PTR(-ENODEV);
61
62         ret = nvmem_get_mac_address(&pdev->dev, &mac);
63         if (ret)
64                 return ERR_PTR(ret);
65
66         pp = devm_kzalloc(&pdev->dev, sizeof(*pp), GFP_KERNEL);
67         if (!pp)
68                 return ERR_PTR(-ENOMEM);
69
70         pp->name = "nvmem-mac-address";
71         pp->length = ETH_ALEN;
72         pp->value = devm_kmemdup(&pdev->dev, mac, ETH_ALEN, GFP_KERNEL);
73         if (!pp->value) {
74                 ret = -ENOMEM;
75                 goto free;
76         }
77
78         ret = of_add_property(np, pp);
79         if (ret)
80                 goto free;
81
82         return pp->value;
83 free:
84         devm_kfree(&pdev->dev, pp->value);
85         devm_kfree(&pdev->dev, pp);
86
87         return ERR_PTR(ret);
88 }
89
90 /**
91  * Search the device tree for the best MAC address to use.  'mac-address' is
92  * checked first, because that is supposed to contain to "most recent" MAC
93  * address. If that isn't set, then 'local-mac-address' is checked next,
94  * because that is the default address. If that isn't set, then the obsolete
95  * 'address' is checked, just in case we're using an old device tree. If any
96  * of the above isn't set, then try to get MAC address from nvmem cell named
97  * 'mac-address'.
98  *
99  * Note that the 'address' property is supposed to contain a virtual address of
100  * the register set, but some DTS files have redefined that property to be the
101  * MAC address.
102  *
103  * All-zero MAC addresses are rejected, because those could be properties that
104  * exist in the device tree, but were not set by U-Boot.  For example, the
105  * DTS could define 'mac-address' and 'local-mac-address', with zero MAC
106  * addresses.  Some older U-Boots only initialized 'local-mac-address'.  In
107  * this case, the real MAC is in 'local-mac-address', and 'mac-address' exists
108  * but is all zeros.
109  *
110  * Return: Will be a valid pointer on success and ERR_PTR in case of error.
111 */
112 const void *of_get_mac_address(struct device_node *np)
113 {
114         const void *addr;
115
116         addr = of_get_mac_addr(np, "mac-address");
117         if (addr)
118                 return addr;
119
120         addr = of_get_mac_addr(np, "local-mac-address");
121         if (addr)
122                 return addr;
123
124         addr = of_get_mac_addr(np, "address");
125         if (addr)
126                 return addr;
127
128         return of_get_mac_addr_nvmem(np);
129 }
130 EXPORT_SYMBOL(of_get_mac_address);