]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/of/of_mdio.c
mdio: Move allocation of interrupts into core
[karo-tx-linux.git] / drivers / of / of_mdio.c
1 /*
2  * OF helpers for the MDIO (Ethernet PHY) API
3  *
4  * Copyright (c) 2009 Secret Lab Technologies, Ltd.
5  *
6  * This file is released under the GPLv2
7  *
8  * This file provides helper functions for extracting PHY device information
9  * out of the OpenFirmware device tree and using it to populate an mii_bus.
10  */
11
12 #include <linux/kernel.h>
13 #include <linux/device.h>
14 #include <linux/netdevice.h>
15 #include <linux/err.h>
16 #include <linux/phy.h>
17 #include <linux/phy_fixed.h>
18 #include <linux/of.h>
19 #include <linux/of_gpio.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_mdio.h>
22 #include <linux/module.h>
23
24 MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
25 MODULE_LICENSE("GPL");
26
27 /* Extract the clause 22 phy ID from the compatible string of the form
28  * ethernet-phy-idAAAA.BBBB */
29 static int of_get_phy_id(struct device_node *device, u32 *phy_id)
30 {
31         struct property *prop;
32         const char *cp;
33         unsigned int upper, lower;
34
35         of_property_for_each_string(device, "compatible", prop, cp) {
36                 if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
37                         *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
38                         return 0;
39                 }
40         }
41         return -EINVAL;
42 }
43
44 static int of_mdiobus_register_phy(struct mii_bus *mdio, struct device_node *child,
45                                    u32 addr)
46 {
47         struct phy_device *phy;
48         bool is_c45;
49         int rc;
50         u32 phy_id;
51
52         is_c45 = of_device_is_compatible(child,
53                                          "ethernet-phy-ieee802.3-c45");
54
55         if (!is_c45 && !of_get_phy_id(child, &phy_id))
56                 phy = phy_device_create(mdio, addr, phy_id, 0, NULL);
57         else
58                 phy = get_phy_device(mdio, addr, is_c45);
59         if (!phy || IS_ERR(phy))
60                 return 1;
61
62         rc = irq_of_parse_and_map(child, 0);
63         if (rc > 0) {
64                 phy->irq = rc;
65                 if (mdio->irq)
66                         mdio->irq[addr] = rc;
67         } else {
68                 if (mdio->irq)
69                         phy->irq = mdio->irq[addr];
70         }
71
72         if (of_property_read_bool(child, "broken-turn-around"))
73                 mdio->phy_ignore_ta_mask |= 1 << addr;
74
75         /* Associate the OF node with the device structure so it
76          * can be looked up later */
77         of_node_get(child);
78         phy->dev.of_node = child;
79
80         /* All data is now stored in the phy struct;
81          * register it */
82         rc = phy_device_register(phy);
83         if (rc) {
84                 phy_device_free(phy);
85                 of_node_put(child);
86                 return 1;
87         }
88
89         dev_dbg(&mdio->dev, "registered phy %s at address %i\n",
90                 child->name, addr);
91
92         return 0;
93 }
94
95 int of_mdio_parse_addr(struct device *dev, const struct device_node *np)
96 {
97         u32 addr;
98         int ret;
99
100         ret = of_property_read_u32(np, "reg", &addr);
101         if (ret < 0) {
102                 dev_err(dev, "%s has invalid PHY address\n", np->full_name);
103                 return ret;
104         }
105
106         /* A PHY must have a reg property in the range [0-31] */
107         if (addr >= PHY_MAX_ADDR) {
108                 dev_err(dev, "%s PHY address %i is too large\n",
109                         np->full_name, addr);
110                 return -EINVAL;
111         }
112
113         return addr;
114 }
115 EXPORT_SYMBOL(of_mdio_parse_addr);
116
117 /**
118  * of_mdiobus_register - Register mii_bus and create PHYs from the device tree
119  * @mdio: pointer to mii_bus structure
120  * @np: pointer to device_node of MDIO bus.
121  *
122  * This function registers the mii_bus structure and registers a phy_device
123  * for each child node of @np.
124  */
125 int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
126 {
127         struct device_node *child;
128         const __be32 *paddr;
129         bool scanphys = false;
130         int addr, rc;
131
132         /* Mask out all PHYs from auto probing.  Instead the PHYs listed in
133          * the device tree are populated after the bus has been registered */
134         mdio->phy_mask = ~0;
135
136         mdio->dev.of_node = np;
137
138         /* Register the MDIO bus */
139         rc = mdiobus_register(mdio);
140         if (rc)
141                 return rc;
142
143         /* Loop over the child nodes and register a phy_device for each one */
144         for_each_available_child_of_node(np, child) {
145                 addr = of_mdio_parse_addr(&mdio->dev, child);
146                 if (addr < 0) {
147                         scanphys = true;
148                         continue;
149                 }
150
151                 rc = of_mdiobus_register_phy(mdio, child, addr);
152                 if (rc)
153                         continue;
154         }
155
156         if (!scanphys)
157                 return 0;
158
159         /* auto scan for PHYs with empty reg property */
160         for_each_available_child_of_node(np, child) {
161                 /* Skip PHYs with reg property set */
162                 paddr = of_get_property(child, "reg", NULL);
163                 if (paddr)
164                         continue;
165
166                 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
167                         /* skip already registered PHYs */
168                         if (mdio->phy_map[addr])
169                                 continue;
170
171                         /* be noisy to encourage people to set reg property */
172                         dev_info(&mdio->dev, "scan phy %s at address %i\n",
173                                  child->name, addr);
174
175                         rc = of_mdiobus_register_phy(mdio, child, addr);
176                         if (rc)
177                                 continue;
178                 }
179         }
180
181         return 0;
182 }
183 EXPORT_SYMBOL(of_mdiobus_register);
184
185 /* Helper function for of_phy_find_device */
186 static int of_phy_match(struct device *dev, void *phy_np)
187 {
188         return dev->of_node == phy_np;
189 }
190
191 /**
192  * of_phy_find_device - Give a PHY node, find the phy_device
193  * @phy_np: Pointer to the phy's device tree node
194  *
195  * If successful, returns a pointer to the phy_device with the embedded
196  * struct device refcount incremented by one, or NULL on failure.
197  */
198 struct phy_device *of_phy_find_device(struct device_node *phy_np)
199 {
200         struct device *d;
201         if (!phy_np)
202                 return NULL;
203
204         d = bus_find_device(&mdio_bus_type, NULL, phy_np, of_phy_match);
205         return d ? to_phy_device(d) : NULL;
206 }
207 EXPORT_SYMBOL(of_phy_find_device);
208
209 /**
210  * of_phy_connect - Connect to the phy described in the device tree
211  * @dev: pointer to net_device claiming the phy
212  * @phy_np: Pointer to device tree node for the PHY
213  * @hndlr: Link state callback for the network device
214  * @iface: PHY data interface type
215  *
216  * If successful, returns a pointer to the phy_device with the embedded
217  * struct device refcount incremented by one, or NULL on failure. The
218  * refcount must be dropped by calling phy_disconnect() or phy_detach().
219  */
220 struct phy_device *of_phy_connect(struct net_device *dev,
221                                   struct device_node *phy_np,
222                                   void (*hndlr)(struct net_device *), u32 flags,
223                                   phy_interface_t iface)
224 {
225         struct phy_device *phy = of_phy_find_device(phy_np);
226         int ret;
227
228         if (!phy)
229                 return NULL;
230
231         phy->dev_flags = flags;
232
233         ret = phy_connect_direct(dev, phy, hndlr, iface);
234
235         /* refcount is held by phy_connect_direct() on success */
236         put_device(&phy->dev);
237
238         return ret ? NULL : phy;
239 }
240 EXPORT_SYMBOL(of_phy_connect);
241
242 /**
243  * of_phy_attach - Attach to a PHY without starting the state machine
244  * @dev: pointer to net_device claiming the phy
245  * @phy_np: Node pointer for the PHY
246  * @flags: flags to pass to the PHY
247  * @iface: PHY data interface type
248  *
249  * If successful, returns a pointer to the phy_device with the embedded
250  * struct device refcount incremented by one, or NULL on failure. The
251  * refcount must be dropped by calling phy_disconnect() or phy_detach().
252  */
253 struct phy_device *of_phy_attach(struct net_device *dev,
254                                  struct device_node *phy_np, u32 flags,
255                                  phy_interface_t iface)
256 {
257         struct phy_device *phy = of_phy_find_device(phy_np);
258         int ret;
259
260         if (!phy)
261                 return NULL;
262
263         ret = phy_attach_direct(dev, phy, flags, iface);
264
265         /* refcount is held by phy_attach_direct() on success */
266         put_device(&phy->dev);
267
268         return ret ? NULL : phy;
269 }
270 EXPORT_SYMBOL(of_phy_attach);
271
272 #if defined(CONFIG_FIXED_PHY)
273 /*
274  * of_phy_is_fixed_link() and of_phy_register_fixed_link() must
275  * support two DT bindings:
276  * - the old DT binding, where 'fixed-link' was a property with 5
277  *   cells encoding various informations about the fixed PHY
278  * - the new DT binding, where 'fixed-link' is a sub-node of the
279  *   Ethernet device.
280  */
281 bool of_phy_is_fixed_link(struct device_node *np)
282 {
283         struct device_node *dn;
284         int len, err;
285         const char *managed;
286
287         /* New binding */
288         dn = of_get_child_by_name(np, "fixed-link");
289         if (dn) {
290                 of_node_put(dn);
291                 return true;
292         }
293
294         err = of_property_read_string(np, "managed", &managed);
295         if (err == 0 && strcmp(managed, "auto") != 0)
296                 return true;
297
298         /* Old binding */
299         if (of_get_property(np, "fixed-link", &len) &&
300             len == (5 * sizeof(__be32)))
301                 return true;
302
303         return false;
304 }
305 EXPORT_SYMBOL(of_phy_is_fixed_link);
306
307 int of_phy_register_fixed_link(struct device_node *np)
308 {
309         struct fixed_phy_status status = {};
310         struct device_node *fixed_link_node;
311         const __be32 *fixed_link_prop;
312         int link_gpio;
313         int len, err;
314         struct phy_device *phy;
315         const char *managed;
316
317         err = of_property_read_string(np, "managed", &managed);
318         if (err == 0) {
319                 if (strcmp(managed, "in-band-status") == 0) {
320                         /* status is zeroed, namely its .link member */
321                         phy = fixed_phy_register(PHY_POLL, &status, -1, np);
322                         return IS_ERR(phy) ? PTR_ERR(phy) : 0;
323                 }
324         }
325
326         /* New binding */
327         fixed_link_node = of_get_child_by_name(np, "fixed-link");
328         if (fixed_link_node) {
329                 status.link = 1;
330                 status.duplex = of_property_read_bool(fixed_link_node,
331                                                       "full-duplex");
332                 if (of_property_read_u32(fixed_link_node, "speed", &status.speed))
333                         return -EINVAL;
334                 status.pause = of_property_read_bool(fixed_link_node, "pause");
335                 status.asym_pause = of_property_read_bool(fixed_link_node,
336                                                           "asym-pause");
337                 link_gpio = of_get_named_gpio_flags(fixed_link_node,
338                                                     "link-gpios", 0, NULL);
339                 of_node_put(fixed_link_node);
340                 if (link_gpio == -EPROBE_DEFER)
341                         return -EPROBE_DEFER;
342
343                 phy = fixed_phy_register(PHY_POLL, &status, link_gpio, np);
344                 return IS_ERR(phy) ? PTR_ERR(phy) : 0;
345         }
346
347         /* Old binding */
348         fixed_link_prop = of_get_property(np, "fixed-link", &len);
349         if (fixed_link_prop && len == (5 * sizeof(__be32))) {
350                 status.link = 1;
351                 status.duplex = be32_to_cpu(fixed_link_prop[1]);
352                 status.speed = be32_to_cpu(fixed_link_prop[2]);
353                 status.pause = be32_to_cpu(fixed_link_prop[3]);
354                 status.asym_pause = be32_to_cpu(fixed_link_prop[4]);
355                 phy = fixed_phy_register(PHY_POLL, &status, -1, np);
356                 return IS_ERR(phy) ? PTR_ERR(phy) : 0;
357         }
358
359         return -ENODEV;
360 }
361 EXPORT_SYMBOL(of_phy_register_fixed_link);
362 #endif