blob: 5f5b0f4be5be3da4e3146f4479d416306f4de9e9 [file] [log] [blame]
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05301/*
2 * phy-core.c -- Generic Phy framework.
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
5 *
6 * Author: Kishon Vijay Abraham I <kishon@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/export.h>
16#include <linux/module.h>
17#include <linux/err.h>
18#include <linux/device.h>
19#include <linux/slab.h>
20#include <linux/of.h>
21#include <linux/phy/phy.h>
22#include <linux/idr.h>
23#include <linux/pm_runtime.h>
24
25static struct class *phy_class;
26static DEFINE_MUTEX(phy_provider_mutex);
27static LIST_HEAD(phy_provider_list);
28static DEFINE_IDA(phy_ida);
29
30static void devm_phy_release(struct device *dev, void *res)
31{
32 struct phy *phy = *(struct phy **)res;
33
34 phy_put(phy);
35}
36
37static void devm_phy_provider_release(struct device *dev, void *res)
38{
39 struct phy_provider *phy_provider = *(struct phy_provider **)res;
40
41 of_phy_provider_unregister(phy_provider);
42}
43
44static void devm_phy_consume(struct device *dev, void *res)
45{
46 struct phy *phy = *(struct phy **)res;
47
48 phy_destroy(phy);
49}
50
51static int devm_phy_match(struct device *dev, void *res, void *match_data)
52{
53 return res == match_data;
54}
55
56static struct phy *phy_lookup(struct device *device, const char *port)
57{
58 unsigned int count;
59 struct phy *phy;
60 struct device *dev;
61 struct phy_consumer *consumers;
62 struct class_dev_iter iter;
63
64 class_dev_iter_init(&iter, phy_class, NULL, NULL);
65 while ((dev = class_dev_iter_next(&iter))) {
66 phy = to_phy(dev);
67 count = phy->init_data->num_consumers;
68 consumers = phy->init_data->consumers;
69 while (count--) {
70 if (!strcmp(consumers->dev_name, dev_name(device)) &&
71 !strcmp(consumers->port, port)) {
72 class_dev_iter_exit(&iter);
73 return phy;
74 }
75 consumers++;
76 }
77 }
78
79 class_dev_iter_exit(&iter);
80 return ERR_PTR(-ENODEV);
81}
82
83static struct phy_provider *of_phy_provider_lookup(struct device_node *node)
84{
85 struct phy_provider *phy_provider;
86
87 list_for_each_entry(phy_provider, &phy_provider_list, list) {
88 if (phy_provider->dev->of_node == node)
89 return phy_provider;
90 }
91
92 return ERR_PTR(-EPROBE_DEFER);
93}
94
95int phy_pm_runtime_get(struct phy *phy)
96{
Felipe Balbicedb7f82013-12-20 15:00:48 -060097 int ret;
98
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053099 if (!pm_runtime_enabled(&phy->dev))
100 return -ENOTSUPP;
101
Felipe Balbicedb7f82013-12-20 15:00:48 -0600102 ret = pm_runtime_get(&phy->dev);
103 if (ret < 0 && ret != -EINPROGRESS)
104 pm_runtime_put_noidle(&phy->dev);
105
106 return ret;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530107}
108EXPORT_SYMBOL_GPL(phy_pm_runtime_get);
109
110int phy_pm_runtime_get_sync(struct phy *phy)
111{
Felipe Balbicedb7f82013-12-20 15:00:48 -0600112 int ret;
113
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530114 if (!pm_runtime_enabled(&phy->dev))
115 return -ENOTSUPP;
116
Felipe Balbicedb7f82013-12-20 15:00:48 -0600117 ret = pm_runtime_get_sync(&phy->dev);
118 if (ret < 0)
119 pm_runtime_put_sync(&phy->dev);
120
121 return ret;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530122}
123EXPORT_SYMBOL_GPL(phy_pm_runtime_get_sync);
124
125int phy_pm_runtime_put(struct phy *phy)
126{
127 if (!pm_runtime_enabled(&phy->dev))
128 return -ENOTSUPP;
129
130 return pm_runtime_put(&phy->dev);
131}
132EXPORT_SYMBOL_GPL(phy_pm_runtime_put);
133
134int phy_pm_runtime_put_sync(struct phy *phy)
135{
136 if (!pm_runtime_enabled(&phy->dev))
137 return -ENOTSUPP;
138
139 return pm_runtime_put_sync(&phy->dev);
140}
141EXPORT_SYMBOL_GPL(phy_pm_runtime_put_sync);
142
143void phy_pm_runtime_allow(struct phy *phy)
144{
145 if (!pm_runtime_enabled(&phy->dev))
146 return;
147
148 pm_runtime_allow(&phy->dev);
149}
150EXPORT_SYMBOL_GPL(phy_pm_runtime_allow);
151
152void phy_pm_runtime_forbid(struct phy *phy)
153{
154 if (!pm_runtime_enabled(&phy->dev))
155 return;
156
157 pm_runtime_forbid(&phy->dev);
158}
159EXPORT_SYMBOL_GPL(phy_pm_runtime_forbid);
160
161int phy_init(struct phy *phy)
162{
163 int ret;
164
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100165 if (!phy)
166 return 0;
167
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530168 ret = phy_pm_runtime_get_sync(phy);
169 if (ret < 0 && ret != -ENOTSUPP)
170 return ret;
171
172 mutex_lock(&phy->mutex);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530173 if (phy->init_count == 0 && phy->ops->init) {
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530174 ret = phy->ops->init(phy);
175 if (ret < 0) {
176 dev_err(&phy->dev, "phy init failed --> %d\n", ret);
177 goto out;
178 }
179 }
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530180 ++phy->init_count;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530181
182out:
183 mutex_unlock(&phy->mutex);
184 phy_pm_runtime_put(phy);
185 return ret;
186}
187EXPORT_SYMBOL_GPL(phy_init);
188
189int phy_exit(struct phy *phy)
190{
191 int ret;
192
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100193 if (!phy)
194 return 0;
195
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530196 ret = phy_pm_runtime_get_sync(phy);
197 if (ret < 0 && ret != -ENOTSUPP)
198 return ret;
199
200 mutex_lock(&phy->mutex);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530201 if (phy->init_count == 1 && phy->ops->exit) {
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530202 ret = phy->ops->exit(phy);
203 if (ret < 0) {
204 dev_err(&phy->dev, "phy exit failed --> %d\n", ret);
205 goto out;
206 }
207 }
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530208 --phy->init_count;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530209
210out:
211 mutex_unlock(&phy->mutex);
212 phy_pm_runtime_put(phy);
213 return ret;
214}
215EXPORT_SYMBOL_GPL(phy_exit);
216
217int phy_power_on(struct phy *phy)
218{
Kishon Vijay Abraham Id18c9602013-12-19 20:01:44 +0530219 int ret;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530220
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100221 if (!phy)
222 return 0;
223
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530224 ret = phy_pm_runtime_get_sync(phy);
225 if (ret < 0 && ret != -ENOTSUPP)
226 return ret;
227
228 mutex_lock(&phy->mutex);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530229 if (phy->power_count == 0 && phy->ops->power_on) {
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530230 ret = phy->ops->power_on(phy);
231 if (ret < 0) {
232 dev_err(&phy->dev, "phy poweron failed --> %d\n", ret);
233 goto out;
234 }
235 }
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530236 ++phy->power_count;
237 mutex_unlock(&phy->mutex);
238 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530239
240out:
241 mutex_unlock(&phy->mutex);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530242 phy_pm_runtime_put_sync(phy);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530243
244 return ret;
245}
246EXPORT_SYMBOL_GPL(phy_power_on);
247
248int phy_power_off(struct phy *phy)
249{
Kishon Vijay Abraham Id18c9602013-12-19 20:01:44 +0530250 int ret;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530251
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100252 if (!phy)
253 return 0;
254
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530255 mutex_lock(&phy->mutex);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530256 if (phy->power_count == 1 && phy->ops->power_off) {
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530257 ret = phy->ops->power_off(phy);
258 if (ret < 0) {
259 dev_err(&phy->dev, "phy poweroff failed --> %d\n", ret);
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530260 mutex_unlock(&phy->mutex);
261 return ret;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530262 }
263 }
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530264 --phy->power_count;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530265 mutex_unlock(&phy->mutex);
266 phy_pm_runtime_put(phy);
267
Kishon Vijay Abraham I637d3782013-12-20 10:36:49 +0530268 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530269}
270EXPORT_SYMBOL_GPL(phy_power_off);
271
272/**
273 * of_phy_get() - lookup and obtain a reference to a phy by phandle
274 * @dev: device that requests this phy
275 * @index: the index of the phy
276 *
277 * Returns the phy associated with the given phandle value,
278 * after getting a refcount to it or -ENODEV if there is no such phy or
279 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
280 * not yet loaded. This function uses of_xlate call back function provided
281 * while registering the phy_provider to find the phy instance.
282 */
283static struct phy *of_phy_get(struct device *dev, int index)
284{
285 int ret;
286 struct phy_provider *phy_provider;
287 struct phy *phy = NULL;
288 struct of_phandle_args args;
289
290 ret = of_parse_phandle_with_args(dev->of_node, "phys", "#phy-cells",
291 index, &args);
292 if (ret) {
293 dev_dbg(dev, "failed to get phy in %s node\n",
294 dev->of_node->full_name);
295 return ERR_PTR(-ENODEV);
296 }
297
298 mutex_lock(&phy_provider_mutex);
299 phy_provider = of_phy_provider_lookup(args.np);
300 if (IS_ERR(phy_provider) || !try_module_get(phy_provider->owner)) {
301 phy = ERR_PTR(-EPROBE_DEFER);
302 goto err0;
303 }
304
305 phy = phy_provider->of_xlate(phy_provider->dev, &args);
306 module_put(phy_provider->owner);
307
308err0:
309 mutex_unlock(&phy_provider_mutex);
310 of_node_put(args.np);
311
312 return phy;
313}
314
315/**
316 * phy_put() - release the PHY
317 * @phy: the phy returned by phy_get()
318 *
319 * Releases a refcount the caller received from phy_get().
320 */
321void phy_put(struct phy *phy)
322{
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100323 if (!phy || IS_ERR(phy))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530324 return;
325
326 module_put(phy->ops->owner);
327 put_device(&phy->dev);
328}
329EXPORT_SYMBOL_GPL(phy_put);
330
331/**
332 * devm_phy_put() - release the PHY
333 * @dev: device that wants to release this phy
334 * @phy: the phy returned by devm_phy_get()
335 *
336 * destroys the devres associated with this phy and invokes phy_put
337 * to release the phy.
338 */
339void devm_phy_put(struct device *dev, struct phy *phy)
340{
341 int r;
342
Andrew Lunn04c2fac2014-02-04 18:33:11 +0100343 if (!phy)
344 return;
345
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530346 r = devres_destroy(dev, devm_phy_release, devm_phy_match, phy);
347 dev_WARN_ONCE(dev, r, "couldn't find PHY resource\n");
348}
349EXPORT_SYMBOL_GPL(devm_phy_put);
350
351/**
352 * of_phy_simple_xlate() - returns the phy instance from phy provider
353 * @dev: the PHY provider device
354 * @args: of_phandle_args (not used here)
355 *
356 * Intended to be used by phy provider for the common case where #phy-cells is
357 * 0. For other cases where #phy-cells is greater than '0', the phy provider
358 * should provide a custom of_xlate function that reads the *args* and returns
359 * the appropriate phy.
360 */
361struct phy *of_phy_simple_xlate(struct device *dev, struct of_phandle_args
362 *args)
363{
364 struct phy *phy;
365 struct class_dev_iter iter;
366 struct device_node *node = dev->of_node;
367
368 class_dev_iter_init(&iter, phy_class, NULL, NULL);
369 while ((dev = class_dev_iter_next(&iter))) {
370 phy = to_phy(dev);
371 if (node != phy->dev.of_node)
372 continue;
373
374 class_dev_iter_exit(&iter);
375 return phy;
376 }
377
378 class_dev_iter_exit(&iter);
379 return ERR_PTR(-ENODEV);
380}
381EXPORT_SYMBOL_GPL(of_phy_simple_xlate);
382
383/**
384 * phy_get() - lookup and obtain a reference to a phy.
385 * @dev: device that requests this phy
386 * @string: the phy name as given in the dt data or the name of the controller
387 * port for non-dt case
388 *
389 * Returns the phy driver, after getting a refcount to it; or
390 * -ENODEV if there is no such phy. The caller is responsible for
391 * calling phy_put() to release that count.
392 */
393struct phy *phy_get(struct device *dev, const char *string)
394{
395 int index = 0;
Kishon Vijay Abraham Id18c9602013-12-19 20:01:44 +0530396 struct phy *phy;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530397
398 if (string == NULL) {
399 dev_WARN(dev, "missing string\n");
400 return ERR_PTR(-EINVAL);
401 }
402
403 if (dev->of_node) {
404 index = of_property_match_string(dev->of_node, "phy-names",
405 string);
406 phy = of_phy_get(dev, index);
407 if (IS_ERR(phy)) {
408 dev_err(dev, "unable to find phy\n");
409 return phy;
410 }
411 } else {
412 phy = phy_lookup(dev, string);
413 if (IS_ERR(phy)) {
414 dev_err(dev, "unable to find phy\n");
415 return phy;
416 }
417 }
418
419 if (!try_module_get(phy->ops->owner))
420 return ERR_PTR(-EPROBE_DEFER);
421
422 get_device(&phy->dev);
423
424 return phy;
425}
426EXPORT_SYMBOL_GPL(phy_get);
427
428/**
Andrew Lunn788a4d52014-02-04 18:33:12 +0100429 * phy_optional_get() - lookup and obtain a reference to an optional phy.
430 * @dev: device that requests this phy
431 * @string: the phy name as given in the dt data or the name of the controller
432 * port for non-dt case
433 *
434 * Returns the phy driver, after getting a refcount to it; or
435 * NULL if there is no such phy. The caller is responsible for
436 * calling phy_put() to release that count.
437 */
438struct phy *phy_optional_get(struct device *dev, const char *string)
439{
440 struct phy *phy = phy_get(dev, string);
441
442 if (PTR_ERR(phy) == -ENODEV)
443 phy = NULL;
444
445 return phy;
446}
447EXPORT_SYMBOL_GPL(phy_optional_get);
448
449/**
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530450 * devm_phy_get() - lookup and obtain a reference to a phy.
451 * @dev: device that requests this phy
452 * @string: the phy name as given in the dt data or phy device name
453 * for non-dt case
454 *
455 * Gets the phy using phy_get(), and associates a device with it using
456 * devres. On driver detach, release function is invoked on the devres data,
457 * then, devres data is freed.
458 */
459struct phy *devm_phy_get(struct device *dev, const char *string)
460{
461 struct phy **ptr, *phy;
462
463 ptr = devres_alloc(devm_phy_release, sizeof(*ptr), GFP_KERNEL);
464 if (!ptr)
465 return ERR_PTR(-ENOMEM);
466
467 phy = phy_get(dev, string);
468 if (!IS_ERR(phy)) {
469 *ptr = phy;
470 devres_add(dev, ptr);
471 } else {
472 devres_free(ptr);
473 }
474
475 return phy;
476}
477EXPORT_SYMBOL_GPL(devm_phy_get);
478
479/**
Andrew Lunn788a4d52014-02-04 18:33:12 +0100480 * devm_phy_optional_get() - lookup and obtain a reference to an optional phy.
481 * @dev: device that requests this phy
482 * @string: the phy name as given in the dt data or phy device name
483 * for non-dt case
484 *
485 * Gets the phy using phy_get(), and associates a device with it using
486 * devres. On driver detach, release function is invoked on the devres
487 * data, then, devres data is freed. This differs to devm_phy_get() in
488 * that if the phy does not exist, it is not considered an error and
489 * -ENODEV will not be returned. Instead the NULL phy is returned,
490 * which can be passed to all other phy consumer calls.
491 */
492struct phy *devm_phy_optional_get(struct device *dev, const char *string)
493{
494 struct phy *phy = devm_phy_get(dev, string);
495
496 if (PTR_ERR(phy) == -ENODEV)
497 phy = NULL;
498
499 return phy;
500}
501EXPORT_SYMBOL_GPL(devm_phy_optional_get);
502
503/**
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530504 * phy_create() - create a new phy
505 * @dev: device that is creating the new phy
506 * @ops: function pointers for performing phy operations
507 * @init_data: contains the list of PHY consumers or NULL
508 *
509 * Called to create a phy using phy framework.
510 */
511struct phy *phy_create(struct device *dev, const struct phy_ops *ops,
512 struct phy_init_data *init_data)
513{
514 int ret;
515 int id;
516 struct phy *phy;
517
Dan Carpenter52797d22013-12-06 17:51:19 +0530518 if (WARN_ON(!dev))
519 return ERR_PTR(-EINVAL);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530520
521 phy = kzalloc(sizeof(*phy), GFP_KERNEL);
Dan Carpenter52797d22013-12-06 17:51:19 +0530522 if (!phy)
523 return ERR_PTR(-ENOMEM);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530524
525 id = ida_simple_get(&phy_ida, 0, 0, GFP_KERNEL);
526 if (id < 0) {
527 dev_err(dev, "unable to get id\n");
528 ret = id;
Dan Carpenter52797d22013-12-06 17:51:19 +0530529 goto free_phy;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530530 }
531
532 device_initialize(&phy->dev);
533 mutex_init(&phy->mutex);
534
535 phy->dev.class = phy_class;
536 phy->dev.parent = dev;
537 phy->dev.of_node = dev->of_node;
538 phy->id = id;
539 phy->ops = ops;
540 phy->init_data = init_data;
541
542 ret = dev_set_name(&phy->dev, "phy-%s.%d", dev_name(dev), id);
543 if (ret)
Dan Carpenter52797d22013-12-06 17:51:19 +0530544 goto put_dev;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530545
546 ret = device_add(&phy->dev);
547 if (ret)
Dan Carpenter52797d22013-12-06 17:51:19 +0530548 goto put_dev;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530549
550 if (pm_runtime_enabled(dev)) {
551 pm_runtime_enable(&phy->dev);
552 pm_runtime_no_callbacks(&phy->dev);
553 }
554
555 return phy;
556
Dan Carpenter52797d22013-12-06 17:51:19 +0530557put_dev:
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530558 put_device(&phy->dev);
Dan Carpenter52797d22013-12-06 17:51:19 +0530559 ida_remove(&phy_ida, phy->id);
560free_phy:
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530561 kfree(phy);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530562 return ERR_PTR(ret);
563}
564EXPORT_SYMBOL_GPL(phy_create);
565
566/**
567 * devm_phy_create() - create a new phy
568 * @dev: device that is creating the new phy
569 * @ops: function pointers for performing phy operations
570 * @init_data: contains the list of PHY consumers or NULL
571 *
572 * Creates a new PHY device adding it to the PHY class.
573 * While at that, it also associates the device with the phy using devres.
574 * On driver detach, release function is invoked on the devres data,
575 * then, devres data is freed.
576 */
577struct phy *devm_phy_create(struct device *dev, const struct phy_ops *ops,
578 struct phy_init_data *init_data)
579{
580 struct phy **ptr, *phy;
581
582 ptr = devres_alloc(devm_phy_consume, sizeof(*ptr), GFP_KERNEL);
583 if (!ptr)
584 return ERR_PTR(-ENOMEM);
585
586 phy = phy_create(dev, ops, init_data);
587 if (!IS_ERR(phy)) {
588 *ptr = phy;
589 devres_add(dev, ptr);
590 } else {
591 devres_free(ptr);
592 }
593
594 return phy;
595}
596EXPORT_SYMBOL_GPL(devm_phy_create);
597
598/**
599 * phy_destroy() - destroy the phy
600 * @phy: the phy to be destroyed
601 *
602 * Called to destroy the phy.
603 */
604void phy_destroy(struct phy *phy)
605{
606 pm_runtime_disable(&phy->dev);
607 device_unregister(&phy->dev);
608}
609EXPORT_SYMBOL_GPL(phy_destroy);
610
611/**
612 * devm_phy_destroy() - destroy the PHY
613 * @dev: device that wants to release this phy
614 * @phy: the phy returned by devm_phy_get()
615 *
616 * destroys the devres associated with this phy and invokes phy_destroy
617 * to destroy the phy.
618 */
619void devm_phy_destroy(struct device *dev, struct phy *phy)
620{
621 int r;
622
623 r = devres_destroy(dev, devm_phy_consume, devm_phy_match, phy);
624 dev_WARN_ONCE(dev, r, "couldn't find PHY resource\n");
625}
626EXPORT_SYMBOL_GPL(devm_phy_destroy);
627
628/**
629 * __of_phy_provider_register() - create/register phy provider with the framework
630 * @dev: struct device of the phy provider
631 * @owner: the module owner containing of_xlate
632 * @of_xlate: function pointer to obtain phy instance from phy provider
633 *
634 * Creates struct phy_provider from dev and of_xlate function pointer.
635 * This is used in the case of dt boot for finding the phy instance from
636 * phy provider.
637 */
638struct phy_provider *__of_phy_provider_register(struct device *dev,
639 struct module *owner, struct phy * (*of_xlate)(struct device *dev,
640 struct of_phandle_args *args))
641{
642 struct phy_provider *phy_provider;
643
644 phy_provider = kzalloc(sizeof(*phy_provider), GFP_KERNEL);
645 if (!phy_provider)
646 return ERR_PTR(-ENOMEM);
647
648 phy_provider->dev = dev;
649 phy_provider->owner = owner;
650 phy_provider->of_xlate = of_xlate;
651
652 mutex_lock(&phy_provider_mutex);
653 list_add_tail(&phy_provider->list, &phy_provider_list);
654 mutex_unlock(&phy_provider_mutex);
655
656 return phy_provider;
657}
658EXPORT_SYMBOL_GPL(__of_phy_provider_register);
659
660/**
661 * __devm_of_phy_provider_register() - create/register phy provider with the
662 * framework
663 * @dev: struct device of the phy provider
664 * @owner: the module owner containing of_xlate
665 * @of_xlate: function pointer to obtain phy instance from phy provider
666 *
667 * Creates struct phy_provider from dev and of_xlate function pointer.
668 * This is used in the case of dt boot for finding the phy instance from
669 * phy provider. While at that, it also associates the device with the
670 * phy provider using devres. On driver detach, release function is invoked
671 * on the devres data, then, devres data is freed.
672 */
673struct phy_provider *__devm_of_phy_provider_register(struct device *dev,
674 struct module *owner, struct phy * (*of_xlate)(struct device *dev,
675 struct of_phandle_args *args))
676{
677 struct phy_provider **ptr, *phy_provider;
678
679 ptr = devres_alloc(devm_phy_provider_release, sizeof(*ptr), GFP_KERNEL);
680 if (!ptr)
681 return ERR_PTR(-ENOMEM);
682
683 phy_provider = __of_phy_provider_register(dev, owner, of_xlate);
684 if (!IS_ERR(phy_provider)) {
685 *ptr = phy_provider;
686 devres_add(dev, ptr);
687 } else {
688 devres_free(ptr);
689 }
690
691 return phy_provider;
692}
693EXPORT_SYMBOL_GPL(__devm_of_phy_provider_register);
694
695/**
696 * of_phy_provider_unregister() - unregister phy provider from the framework
697 * @phy_provider: phy provider returned by of_phy_provider_register()
698 *
699 * Removes the phy_provider created using of_phy_provider_register().
700 */
701void of_phy_provider_unregister(struct phy_provider *phy_provider)
702{
703 if (IS_ERR(phy_provider))
704 return;
705
706 mutex_lock(&phy_provider_mutex);
707 list_del(&phy_provider->list);
708 kfree(phy_provider);
709 mutex_unlock(&phy_provider_mutex);
710}
711EXPORT_SYMBOL_GPL(of_phy_provider_unregister);
712
713/**
714 * devm_of_phy_provider_unregister() - remove phy provider from the framework
715 * @dev: struct device of the phy provider
716 *
717 * destroys the devres associated with this phy provider and invokes
718 * of_phy_provider_unregister to unregister the phy provider.
719 */
720void devm_of_phy_provider_unregister(struct device *dev,
721 struct phy_provider *phy_provider) {
722 int r;
723
724 r = devres_destroy(dev, devm_phy_provider_release, devm_phy_match,
725 phy_provider);
726 dev_WARN_ONCE(dev, r, "couldn't find PHY provider device resource\n");
727}
728EXPORT_SYMBOL_GPL(devm_of_phy_provider_unregister);
729
730/**
731 * phy_release() - release the phy
732 * @dev: the dev member within phy
733 *
734 * When the last reference to the device is removed, it is called
735 * from the embedded kobject as release method.
736 */
737static void phy_release(struct device *dev)
738{
739 struct phy *phy;
740
741 phy = to_phy(dev);
742 dev_vdbg(dev, "releasing '%s'\n", dev_name(dev));
743 ida_remove(&phy_ida, phy->id);
744 kfree(phy);
745}
746
747static int __init phy_core_init(void)
748{
749 phy_class = class_create(THIS_MODULE, "phy");
750 if (IS_ERR(phy_class)) {
751 pr_err("failed to create phy class --> %ld\n",
752 PTR_ERR(phy_class));
753 return PTR_ERR(phy_class);
754 }
755
756 phy_class->dev_release = phy_release;
757
758 return 0;
759}
760module_init(phy_core_init);
761
762static void __exit phy_core_exit(void)
763{
764 class_destroy(phy_class);
765}
766module_exit(phy_core_exit);
767
768MODULE_DESCRIPTION("Generic PHY Framework");
769MODULE_AUTHOR("Kishon Vijay Abraham I <kishon@ti.com>");
770MODULE_LICENSE("GPL v2");