1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * phy-core.c -- Generic Phy framework.
5 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
7 * Author: Kishon Vijay Abraham I <kishon@ti.com>
10 #include <linux/kernel.h>
11 #include <linux/export.h>
12 #include <linux/module.h>
13 #include <linux/err.h>
14 #include <linux/device.h>
15 #include <linux/slab.h>
17 #include <linux/phy/phy.h>
18 #include <linux/idr.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/regulator/consumer.h>
22 static struct class *phy_class;
23 static DEFINE_MUTEX(phy_provider_mutex);
24 static LIST_HEAD(phy_provider_list);
25 static LIST_HEAD(phys);
26 static DEFINE_IDA(phy_ida);
28 static void devm_phy_release(struct device *dev, void *res)
30 struct phy *phy = *(struct phy **)res;
35 static void devm_phy_provider_release(struct device *dev, void *res)
37 struct phy_provider *phy_provider = *(struct phy_provider **)res;
39 of_phy_provider_unregister(phy_provider);
42 static void devm_phy_consume(struct device *dev, void *res)
44 struct phy *phy = *(struct phy **)res;
49 static int devm_phy_match(struct device *dev, void *res, void *match_data)
51 struct phy **phy = res;
53 return *phy == match_data;
57 * phy_create_lookup() - allocate and register PHY/device association
58 * @phy: the phy of the association
59 * @con_id: connection ID string on device
60 * @dev_id: the device of the association
62 * Creates and registers phy_lookup entry.
64 int phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id)
66 struct phy_lookup *pl;
68 if (!phy || !dev_id || !con_id)
71 pl = kzalloc(sizeof(*pl), GFP_KERNEL);
79 mutex_lock(&phy_provider_mutex);
80 list_add_tail(&pl->node, &phys);
81 mutex_unlock(&phy_provider_mutex);
85 EXPORT_SYMBOL_GPL(phy_create_lookup);
88 * phy_remove_lookup() - find and remove PHY/device association
89 * @phy: the phy of the association
90 * @con_id: connection ID string on device
91 * @dev_id: the device of the association
93 * Finds and unregisters phy_lookup entry that was created with
94 * phy_create_lookup().
96 void phy_remove_lookup(struct phy *phy, const char *con_id, const char *dev_id)
98 struct phy_lookup *pl;
100 if (!phy || !dev_id || !con_id)
103 mutex_lock(&phy_provider_mutex);
104 list_for_each_entry(pl, &phys, node)
105 if (pl->phy == phy && !strcmp(pl->dev_id, dev_id) &&
106 !strcmp(pl->con_id, con_id)) {
111 mutex_unlock(&phy_provider_mutex);
113 EXPORT_SYMBOL_GPL(phy_remove_lookup);
115 static struct phy *phy_find(struct device *dev, const char *con_id)
117 const char *dev_id = dev_name(dev);
118 struct phy_lookup *p, *pl = NULL;
120 mutex_lock(&phy_provider_mutex);
121 list_for_each_entry(p, &phys, node)
122 if (!strcmp(p->dev_id, dev_id) && !strcmp(p->con_id, con_id)) {
126 mutex_unlock(&phy_provider_mutex);
128 return pl ? pl->phy : ERR_PTR(-ENODEV);
131 static struct phy_provider *of_phy_provider_lookup(struct device_node *node)
133 struct phy_provider *phy_provider;
134 struct device_node *child;
136 list_for_each_entry(phy_provider, &phy_provider_list, list) {
137 if (phy_provider->dev->of_node == node)
140 for_each_child_of_node(phy_provider->children, child)
145 return ERR_PTR(-EPROBE_DEFER);
148 int phy_pm_runtime_get(struct phy *phy)
155 if (!pm_runtime_enabled(&phy->dev))
158 ret = pm_runtime_get(&phy->dev);
159 if (ret < 0 && ret != -EINPROGRESS)
160 pm_runtime_put_noidle(&phy->dev);
164 EXPORT_SYMBOL_GPL(phy_pm_runtime_get);
166 int phy_pm_runtime_get_sync(struct phy *phy)
173 if (!pm_runtime_enabled(&phy->dev))
176 ret = pm_runtime_get_sync(&phy->dev);
178 pm_runtime_put_sync(&phy->dev);
182 EXPORT_SYMBOL_GPL(phy_pm_runtime_get_sync);
184 int phy_pm_runtime_put(struct phy *phy)
189 if (!pm_runtime_enabled(&phy->dev))
192 return pm_runtime_put(&phy->dev);
194 EXPORT_SYMBOL_GPL(phy_pm_runtime_put);
196 int phy_pm_runtime_put_sync(struct phy *phy)
201 if (!pm_runtime_enabled(&phy->dev))
204 return pm_runtime_put_sync(&phy->dev);
206 EXPORT_SYMBOL_GPL(phy_pm_runtime_put_sync);
208 void phy_pm_runtime_allow(struct phy *phy)
213 if (!pm_runtime_enabled(&phy->dev))
216 pm_runtime_allow(&phy->dev);
218 EXPORT_SYMBOL_GPL(phy_pm_runtime_allow);
220 void phy_pm_runtime_forbid(struct phy *phy)
225 if (!pm_runtime_enabled(&phy->dev))
228 pm_runtime_forbid(&phy->dev);
230 EXPORT_SYMBOL_GPL(phy_pm_runtime_forbid);
232 int phy_init(struct phy *phy)
239 ret = phy_pm_runtime_get_sync(phy);
240 if (ret < 0 && ret != -ENOTSUPP)
242 ret = 0; /* Override possible ret == -ENOTSUPP */
244 mutex_lock(&phy->mutex);
245 if (phy->init_count == 0 && phy->ops->init) {
246 ret = phy->ops->init(phy);
248 dev_err(&phy->dev, "phy init failed --> %d\n", ret);
255 mutex_unlock(&phy->mutex);
256 phy_pm_runtime_put(phy);
259 EXPORT_SYMBOL_GPL(phy_init);
261 int phy_exit(struct phy *phy)
268 ret = phy_pm_runtime_get_sync(phy);
269 if (ret < 0 && ret != -ENOTSUPP)
271 ret = 0; /* Override possible ret == -ENOTSUPP */
273 mutex_lock(&phy->mutex);
274 if (phy->init_count == 1 && phy->ops->exit) {
275 ret = phy->ops->exit(phy);
277 dev_err(&phy->dev, "phy exit failed --> %d\n", ret);
284 mutex_unlock(&phy->mutex);
285 phy_pm_runtime_put(phy);
288 EXPORT_SYMBOL_GPL(phy_exit);
290 int phy_power_on(struct phy *phy)
298 ret = regulator_enable(phy->pwr);
303 ret = phy_pm_runtime_get_sync(phy);
304 if (ret < 0 && ret != -ENOTSUPP)
307 ret = 0; /* Override possible ret == -ENOTSUPP */
309 mutex_lock(&phy->mutex);
310 if (phy->power_count == 0 && phy->ops->power_on) {
311 ret = phy->ops->power_on(phy);
313 dev_err(&phy->dev, "phy poweron failed --> %d\n", ret);
318 mutex_unlock(&phy->mutex);
322 mutex_unlock(&phy->mutex);
323 phy_pm_runtime_put_sync(phy);
326 regulator_disable(phy->pwr);
330 EXPORT_SYMBOL_GPL(phy_power_on);
332 int phy_power_off(struct phy *phy)
339 mutex_lock(&phy->mutex);
340 if (phy->power_count == 1 && phy->ops->power_off) {
341 ret = phy->ops->power_off(phy);
343 dev_err(&phy->dev, "phy poweroff failed --> %d\n", ret);
344 mutex_unlock(&phy->mutex);
349 mutex_unlock(&phy->mutex);
350 phy_pm_runtime_put(phy);
353 regulator_disable(phy->pwr);
357 EXPORT_SYMBOL_GPL(phy_power_off);
359 int phy_set_mode_ext(struct phy *phy, enum phy_mode mode, int submode)
363 if (!phy || !phy->ops->set_mode)
366 mutex_lock(&phy->mutex);
367 ret = phy->ops->set_mode(phy, mode, submode);
369 phy->attrs.mode = mode;
370 mutex_unlock(&phy->mutex);
374 EXPORT_SYMBOL_GPL(phy_set_mode_ext);
376 int phy_set_media(struct phy *phy, enum phy_media media)
380 if (!phy || !phy->ops->set_media)
383 mutex_lock(&phy->mutex);
384 ret = phy->ops->set_media(phy, media);
385 mutex_unlock(&phy->mutex);
389 EXPORT_SYMBOL_GPL(phy_set_media);
391 int phy_set_speed(struct phy *phy, int speed)
395 if (!phy || !phy->ops->set_speed)
398 mutex_lock(&phy->mutex);
399 ret = phy->ops->set_speed(phy, speed);
400 mutex_unlock(&phy->mutex);
404 EXPORT_SYMBOL_GPL(phy_set_speed);
406 int phy_reset(struct phy *phy)
410 if (!phy || !phy->ops->reset)
413 ret = phy_pm_runtime_get_sync(phy);
414 if (ret < 0 && ret != -ENOTSUPP)
417 mutex_lock(&phy->mutex);
418 ret = phy->ops->reset(phy);
419 mutex_unlock(&phy->mutex);
421 phy_pm_runtime_put(phy);
425 EXPORT_SYMBOL_GPL(phy_reset);
428 * phy_calibrate() - Tunes the phy hw parameters for current configuration
429 * @phy: the phy returned by phy_get()
431 * Used to calibrate phy hardware, typically by adjusting some parameters in
432 * runtime, which are otherwise lost after host controller reset and cannot
433 * be applied in phy_init() or phy_power_on().
435 * Returns: 0 if successful, an negative error code otherwise
437 int phy_calibrate(struct phy *phy)
441 if (!phy || !phy->ops->calibrate)
444 mutex_lock(&phy->mutex);
445 ret = phy->ops->calibrate(phy);
446 mutex_unlock(&phy->mutex);
450 EXPORT_SYMBOL_GPL(phy_calibrate);
453 * phy_configure() - Changes the phy parameters
454 * @phy: the phy returned by phy_get()
455 * @opts: New configuration to apply
457 * Used to change the PHY parameters. phy_init() must have been called
458 * on the phy. The configuration will be applied on the current phy
459 * mode, that can be changed using phy_set_mode().
461 * Returns: 0 if successful, an negative error code otherwise
463 int phy_configure(struct phy *phy, union phy_configure_opts *opts)
470 if (!phy->ops->configure)
473 mutex_lock(&phy->mutex);
474 ret = phy->ops->configure(phy, opts);
475 mutex_unlock(&phy->mutex);
479 EXPORT_SYMBOL_GPL(phy_configure);
482 * phy_validate() - Checks the phy parameters
483 * @phy: the phy returned by phy_get()
484 * @mode: phy_mode the configuration is applicable to.
485 * @submode: PHY submode the configuration is applicable to.
486 * @opts: Configuration to check
488 * Used to check that the current set of parameters can be handled by
489 * the phy. Implementations are free to tune the parameters passed as
490 * arguments if needed by some implementation detail or
491 * constraints. It will not change any actual configuration of the
492 * PHY, so calling it as many times as deemed fit will have no side
495 * Returns: 0 if successful, an negative error code otherwise
497 int phy_validate(struct phy *phy, enum phy_mode mode, int submode,
498 union phy_configure_opts *opts)
505 if (!phy->ops->validate)
508 mutex_lock(&phy->mutex);
509 ret = phy->ops->validate(phy, mode, submode, opts);
510 mutex_unlock(&phy->mutex);
514 EXPORT_SYMBOL_GPL(phy_validate);
517 * _of_phy_get() - lookup and obtain a reference to a phy by phandle
518 * @np: device_node for which to get the phy
519 * @index: the index of the phy
521 * Returns the phy associated with the given phandle value,
522 * after getting a refcount to it or -ENODEV if there is no such phy or
523 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
524 * not yet loaded. This function uses of_xlate call back function provided
525 * while registering the phy_provider to find the phy instance.
527 static struct phy *_of_phy_get(struct device_node *np, int index)
530 struct phy_provider *phy_provider;
531 struct phy *phy = NULL;
532 struct of_phandle_args args;
534 ret = of_parse_phandle_with_args(np, "phys", "#phy-cells",
537 return ERR_PTR(-ENODEV);
539 /* This phy type handled by the usb-phy subsystem for now */
540 if (of_device_is_compatible(args.np, "usb-nop-xceiv"))
541 return ERR_PTR(-ENODEV);
543 mutex_lock(&phy_provider_mutex);
544 phy_provider = of_phy_provider_lookup(args.np);
545 if (IS_ERR(phy_provider) || !try_module_get(phy_provider->owner)) {
546 phy = ERR_PTR(-EPROBE_DEFER);
550 if (!of_device_is_available(args.np)) {
551 dev_warn(phy_provider->dev, "Requested PHY is disabled\n");
552 phy = ERR_PTR(-ENODEV);
556 phy = phy_provider->of_xlate(phy_provider->dev, &args);
559 module_put(phy_provider->owner);
562 mutex_unlock(&phy_provider_mutex);
563 of_node_put(args.np);
569 * of_phy_get() - lookup and obtain a reference to a phy using a device_node.
570 * @np: device_node for which to get the phy
571 * @con_id: name of the phy from device's point of view
573 * Returns the phy driver, after getting a refcount to it; or
574 * -ENODEV if there is no such phy. The caller is responsible for
575 * calling phy_put() to release that count.
577 struct phy *of_phy_get(struct device_node *np, const char *con_id)
579 struct phy *phy = NULL;
583 index = of_property_match_string(np, "phy-names", con_id);
585 phy = _of_phy_get(np, index);
589 if (!try_module_get(phy->ops->owner))
590 return ERR_PTR(-EPROBE_DEFER);
592 get_device(&phy->dev);
596 EXPORT_SYMBOL_GPL(of_phy_get);
599 * of_phy_put() - release the PHY
600 * @phy: the phy returned by of_phy_get()
602 * Releases a refcount the caller received from of_phy_get().
604 void of_phy_put(struct phy *phy)
606 if (!phy || IS_ERR(phy))
609 mutex_lock(&phy->mutex);
610 if (phy->ops->release)
611 phy->ops->release(phy);
612 mutex_unlock(&phy->mutex);
614 module_put(phy->ops->owner);
615 put_device(&phy->dev);
617 EXPORT_SYMBOL_GPL(of_phy_put);
620 * phy_put() - release the PHY
621 * @dev: device that wants to release this phy
622 * @phy: the phy returned by phy_get()
624 * Releases a refcount the caller received from phy_get().
626 void phy_put(struct device *dev, struct phy *phy)
628 device_link_remove(dev, &phy->dev);
631 EXPORT_SYMBOL_GPL(phy_put);
634 * devm_phy_put() - release the PHY
635 * @dev: device that wants to release this phy
636 * @phy: the phy returned by devm_phy_get()
638 * destroys the devres associated with this phy and invokes phy_put
639 * to release the phy.
641 void devm_phy_put(struct device *dev, struct phy *phy)
648 r = devres_destroy(dev, devm_phy_release, devm_phy_match, phy);
649 dev_WARN_ONCE(dev, r, "couldn't find PHY resource\n");
651 EXPORT_SYMBOL_GPL(devm_phy_put);
654 * of_phy_simple_xlate() - returns the phy instance from phy provider
655 * @dev: the PHY provider device
656 * @args: of_phandle_args (not used here)
658 * Intended to be used by phy provider for the common case where #phy-cells is
659 * 0. For other cases where #phy-cells is greater than '0', the phy provider
660 * should provide a custom of_xlate function that reads the *args* and returns
661 * the appropriate phy.
663 struct phy *of_phy_simple_xlate(struct device *dev, struct of_phandle_args
667 struct class_dev_iter iter;
669 class_dev_iter_init(&iter, phy_class, NULL, NULL);
670 while ((dev = class_dev_iter_next(&iter))) {
672 if (args->np != phy->dev.of_node)
675 class_dev_iter_exit(&iter);
679 class_dev_iter_exit(&iter);
680 return ERR_PTR(-ENODEV);
682 EXPORT_SYMBOL_GPL(of_phy_simple_xlate);
685 * phy_get() - lookup and obtain a reference to a phy.
686 * @dev: device that requests this phy
687 * @string: the phy name as given in the dt data or the name of the controller
688 * port for non-dt case
690 * Returns the phy driver, after getting a refcount to it; or
691 * -ENODEV if there is no such phy. The caller is responsible for
692 * calling phy_put() to release that count.
694 struct phy *phy_get(struct device *dev, const char *string)
698 struct device_link *link;
702 index = of_property_match_string(dev->of_node, "phy-names",
706 phy = _of_phy_get(dev->of_node, index);
708 if (string == NULL) {
709 dev_WARN(dev, "missing string\n");
710 return ERR_PTR(-EINVAL);
712 phy = phy_find(dev, string);
717 if (!try_module_get(phy->ops->owner))
718 return ERR_PTR(-EPROBE_DEFER);
720 get_device(&phy->dev);
722 link = device_link_add(dev, &phy->dev, DL_FLAG_STATELESS);
724 dev_dbg(dev, "failed to create device link to %s\n",
725 dev_name(phy->dev.parent));
729 EXPORT_SYMBOL_GPL(phy_get);
732 * phy_optional_get() - lookup and obtain a reference to an optional phy.
733 * @dev: device that requests this phy
734 * @string: the phy name as given in the dt data or the name of the controller
735 * port for non-dt case
737 * Returns the phy driver, after getting a refcount to it; or
738 * NULL if there is no such phy. The caller is responsible for
739 * calling phy_put() to release that count.
741 struct phy *phy_optional_get(struct device *dev, const char *string)
743 struct phy *phy = phy_get(dev, string);
745 if (PTR_ERR(phy) == -ENODEV)
750 EXPORT_SYMBOL_GPL(phy_optional_get);
753 * devm_phy_get() - lookup and obtain a reference to a phy.
754 * @dev: device that requests this phy
755 * @string: the phy name as given in the dt data or phy device name
758 * Gets the phy using phy_get(), and associates a device with it using
759 * devres. On driver detach, release function is invoked on the devres data,
760 * then, devres data is freed.
762 struct phy *devm_phy_get(struct device *dev, const char *string)
764 struct phy **ptr, *phy;
766 ptr = devres_alloc(devm_phy_release, sizeof(*ptr), GFP_KERNEL);
768 return ERR_PTR(-ENOMEM);
770 phy = phy_get(dev, string);
773 devres_add(dev, ptr);
780 EXPORT_SYMBOL_GPL(devm_phy_get);
783 * devm_phy_optional_get() - lookup and obtain a reference to an optional phy.
784 * @dev: device that requests this phy
785 * @string: the phy name as given in the dt data or phy device name
788 * Gets the phy using phy_get(), and associates a device with it using
789 * devres. On driver detach, release function is invoked on the devres
790 * data, then, devres data is freed. This differs to devm_phy_get() in
791 * that if the phy does not exist, it is not considered an error and
792 * -ENODEV will not be returned. Instead the NULL phy is returned,
793 * which can be passed to all other phy consumer calls.
795 struct phy *devm_phy_optional_get(struct device *dev, const char *string)
797 struct phy *phy = devm_phy_get(dev, string);
799 if (PTR_ERR(phy) == -ENODEV)
804 EXPORT_SYMBOL_GPL(devm_phy_optional_get);
807 * devm_of_phy_get() - lookup and obtain a reference to a phy.
808 * @dev: device that requests this phy
809 * @np: node containing the phy
810 * @con_id: name of the phy from device's point of view
812 * Gets the phy using of_phy_get(), and associates a device with it using
813 * devres. On driver detach, release function is invoked on the devres data,
814 * then, devres data is freed.
816 struct phy *devm_of_phy_get(struct device *dev, struct device_node *np,
819 struct phy **ptr, *phy;
820 struct device_link *link;
822 ptr = devres_alloc(devm_phy_release, sizeof(*ptr), GFP_KERNEL);
824 return ERR_PTR(-ENOMEM);
826 phy = of_phy_get(np, con_id);
829 devres_add(dev, ptr);
835 link = device_link_add(dev, &phy->dev, DL_FLAG_STATELESS);
837 dev_dbg(dev, "failed to create device link to %s\n",
838 dev_name(phy->dev.parent));
842 EXPORT_SYMBOL_GPL(devm_of_phy_get);
845 * devm_of_phy_get_by_index() - lookup and obtain a reference to a phy by index.
846 * @dev: device that requests this phy
847 * @np: node containing the phy
848 * @index: index of the phy
850 * Gets the phy using _of_phy_get(), then gets a refcount to it,
851 * and associates a device with it using devres. On driver detach,
852 * release function is invoked on the devres data,
853 * then, devres data is freed.
856 struct phy *devm_of_phy_get_by_index(struct device *dev, struct device_node *np,
859 struct phy **ptr, *phy;
860 struct device_link *link;
862 ptr = devres_alloc(devm_phy_release, sizeof(*ptr), GFP_KERNEL);
864 return ERR_PTR(-ENOMEM);
866 phy = _of_phy_get(np, index);
872 if (!try_module_get(phy->ops->owner)) {
874 return ERR_PTR(-EPROBE_DEFER);
877 get_device(&phy->dev);
880 devres_add(dev, ptr);
882 link = device_link_add(dev, &phy->dev, DL_FLAG_STATELESS);
884 dev_dbg(dev, "failed to create device link to %s\n",
885 dev_name(phy->dev.parent));
889 EXPORT_SYMBOL_GPL(devm_of_phy_get_by_index);
892 * phy_create() - create a new phy
893 * @dev: device that is creating the new phy
894 * @node: device node of the phy
895 * @ops: function pointers for performing phy operations
897 * Called to create a phy using phy framework.
899 struct phy *phy_create(struct device *dev, struct device_node *node,
900 const struct phy_ops *ops)
907 return ERR_PTR(-EINVAL);
909 phy = kzalloc(sizeof(*phy), GFP_KERNEL);
911 return ERR_PTR(-ENOMEM);
913 id = ida_simple_get(&phy_ida, 0, 0, GFP_KERNEL);
915 dev_err(dev, "unable to get id\n");
920 device_initialize(&phy->dev);
921 mutex_init(&phy->mutex);
923 phy->dev.class = phy_class;
924 phy->dev.parent = dev;
925 phy->dev.of_node = node ?: dev->of_node;
929 ret = dev_set_name(&phy->dev, "phy-%s.%d", dev_name(dev), id);
934 phy->pwr = regulator_get_optional(&phy->dev, "phy");
935 if (IS_ERR(phy->pwr)) {
936 ret = PTR_ERR(phy->pwr);
937 if (ret == -EPROBE_DEFER)
943 ret = device_add(&phy->dev);
947 if (pm_runtime_enabled(dev)) {
948 pm_runtime_enable(&phy->dev);
949 pm_runtime_no_callbacks(&phy->dev);
955 put_device(&phy->dev); /* calls phy_release() which frees resources */
962 EXPORT_SYMBOL_GPL(phy_create);
965 * devm_phy_create() - create a new phy
966 * @dev: device that is creating the new phy
967 * @node: device node of the phy
968 * @ops: function pointers for performing phy operations
970 * Creates a new PHY device adding it to the PHY class.
971 * While at that, it also associates the device with the phy using devres.
972 * On driver detach, release function is invoked on the devres data,
973 * then, devres data is freed.
975 struct phy *devm_phy_create(struct device *dev, struct device_node *node,
976 const struct phy_ops *ops)
978 struct phy **ptr, *phy;
980 ptr = devres_alloc(devm_phy_consume, sizeof(*ptr), GFP_KERNEL);
982 return ERR_PTR(-ENOMEM);
984 phy = phy_create(dev, node, ops);
987 devres_add(dev, ptr);
994 EXPORT_SYMBOL_GPL(devm_phy_create);
997 * phy_destroy() - destroy the phy
998 * @phy: the phy to be destroyed
1000 * Called to destroy the phy.
1002 void phy_destroy(struct phy *phy)
1004 pm_runtime_disable(&phy->dev);
1005 device_unregister(&phy->dev);
1007 EXPORT_SYMBOL_GPL(phy_destroy);
1010 * devm_phy_destroy() - destroy the PHY
1011 * @dev: device that wants to release this phy
1012 * @phy: the phy returned by devm_phy_get()
1014 * destroys the devres associated with this phy and invokes phy_destroy
1015 * to destroy the phy.
1017 void devm_phy_destroy(struct device *dev, struct phy *phy)
1021 r = devres_destroy(dev, devm_phy_consume, devm_phy_match, phy);
1022 dev_WARN_ONCE(dev, r, "couldn't find PHY resource\n");
1024 EXPORT_SYMBOL_GPL(devm_phy_destroy);
1027 * __of_phy_provider_register() - create/register phy provider with the framework
1028 * @dev: struct device of the phy provider
1029 * @children: device node containing children (if different from dev->of_node)
1030 * @owner: the module owner containing of_xlate
1031 * @of_xlate: function pointer to obtain phy instance from phy provider
1033 * Creates struct phy_provider from dev and of_xlate function pointer.
1034 * This is used in the case of dt boot for finding the phy instance from
1037 * If the PHY provider doesn't nest children directly but uses a separate
1038 * child node to contain the individual children, the @children parameter
1039 * can be used to override the default. If NULL, the default (dev->of_node)
1040 * will be used. If non-NULL, the device node must be a child (or further
1041 * descendant) of dev->of_node. Otherwise an ERR_PTR()-encoded -EINVAL
1042 * error code is returned.
1044 struct phy_provider *__of_phy_provider_register(struct device *dev,
1045 struct device_node *children, struct module *owner,
1046 struct phy * (*of_xlate)(struct device *dev,
1047 struct of_phandle_args *args))
1049 struct phy_provider *phy_provider;
1052 * If specified, the device node containing the children must itself
1053 * be the provider's device node or a child (or further descendant)
1057 struct device_node *parent = of_node_get(children), *next;
1060 if (parent == dev->of_node)
1063 next = of_get_parent(parent);
1064 of_node_put(parent);
1069 return ERR_PTR(-EINVAL);
1071 of_node_put(parent);
1073 children = dev->of_node;
1076 phy_provider = kzalloc(sizeof(*phy_provider), GFP_KERNEL);
1078 return ERR_PTR(-ENOMEM);
1080 phy_provider->dev = dev;
1081 phy_provider->children = of_node_get(children);
1082 phy_provider->owner = owner;
1083 phy_provider->of_xlate = of_xlate;
1085 mutex_lock(&phy_provider_mutex);
1086 list_add_tail(&phy_provider->list, &phy_provider_list);
1087 mutex_unlock(&phy_provider_mutex);
1089 return phy_provider;
1091 EXPORT_SYMBOL_GPL(__of_phy_provider_register);
1094 * __devm_of_phy_provider_register() - create/register phy provider with the
1096 * @dev: struct device of the phy provider
1097 * @children: device node containing children (if different from dev->of_node)
1098 * @owner: the module owner containing of_xlate
1099 * @of_xlate: function pointer to obtain phy instance from phy provider
1101 * Creates struct phy_provider from dev and of_xlate function pointer.
1102 * This is used in the case of dt boot for finding the phy instance from
1103 * phy provider. While at that, it also associates the device with the
1104 * phy provider using devres. On driver detach, release function is invoked
1105 * on the devres data, then, devres data is freed.
1107 struct phy_provider *__devm_of_phy_provider_register(struct device *dev,
1108 struct device_node *children, struct module *owner,
1109 struct phy * (*of_xlate)(struct device *dev,
1110 struct of_phandle_args *args))
1112 struct phy_provider **ptr, *phy_provider;
1114 ptr = devres_alloc(devm_phy_provider_release, sizeof(*ptr), GFP_KERNEL);
1116 return ERR_PTR(-ENOMEM);
1118 phy_provider = __of_phy_provider_register(dev, children, owner,
1120 if (!IS_ERR(phy_provider)) {
1121 *ptr = phy_provider;
1122 devres_add(dev, ptr);
1127 return phy_provider;
1129 EXPORT_SYMBOL_GPL(__devm_of_phy_provider_register);
1132 * of_phy_provider_unregister() - unregister phy provider from the framework
1133 * @phy_provider: phy provider returned by of_phy_provider_register()
1135 * Removes the phy_provider created using of_phy_provider_register().
1137 void of_phy_provider_unregister(struct phy_provider *phy_provider)
1139 if (IS_ERR(phy_provider))
1142 mutex_lock(&phy_provider_mutex);
1143 list_del(&phy_provider->list);
1144 of_node_put(phy_provider->children);
1145 kfree(phy_provider);
1146 mutex_unlock(&phy_provider_mutex);
1148 EXPORT_SYMBOL_GPL(of_phy_provider_unregister);
1151 * devm_of_phy_provider_unregister() - remove phy provider from the framework
1152 * @dev: struct device of the phy provider
1153 * @phy_provider: phy provider returned by of_phy_provider_register()
1155 * destroys the devres associated with this phy provider and invokes
1156 * of_phy_provider_unregister to unregister the phy provider.
1158 void devm_of_phy_provider_unregister(struct device *dev,
1159 struct phy_provider *phy_provider)
1163 r = devres_destroy(dev, devm_phy_provider_release, devm_phy_match,
1165 dev_WARN_ONCE(dev, r, "couldn't find PHY provider device resource\n");
1167 EXPORT_SYMBOL_GPL(devm_of_phy_provider_unregister);
1170 * phy_release() - release the phy
1171 * @dev: the dev member within phy
1173 * When the last reference to the device is removed, it is called
1174 * from the embedded kobject as release method.
1176 static void phy_release(struct device *dev)
1181 dev_vdbg(dev, "releasing '%s'\n", dev_name(dev));
1182 regulator_put(phy->pwr);
1183 ida_simple_remove(&phy_ida, phy->id);
1187 static int __init phy_core_init(void)
1189 phy_class = class_create(THIS_MODULE, "phy");
1190 if (IS_ERR(phy_class)) {
1191 pr_err("failed to create phy class --> %ld\n",
1192 PTR_ERR(phy_class));
1193 return PTR_ERR(phy_class);
1196 phy_class->dev_release = phy_release;
1200 device_initcall(phy_core_init);