blob: e463b0b400ed45047d400fffe6e6566afb7e9d57 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +02002/*
3 * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
4 * Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +02005 */
6
7#include <common.h>
8#include <dm.h>
9#include <generic-phy.h>
10
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020011static inline struct phy_ops *phy_dev_ops(struct udevice *dev)
12{
13 return (struct phy_ops *)dev->driver->ops;
14}
15
16static int generic_phy_xlate_offs_flags(struct phy *phy,
Simon Glass23558bb2017-05-18 20:09:47 -060017 struct ofnode_phandle_args *args)
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020018{
19 debug("%s(phy=%p)\n", __func__, phy);
20
21 if (args->args_count > 1) {
22 debug("Invaild args_count: %d\n", args->args_count);
23 return -EINVAL;
24 }
25
26 if (args->args_count)
27 phy->id = args->args[0];
28 else
29 phy->id = 0;
30
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020031 return 0;
32}
33
Neil Armstrongc2b9aa92020-03-30 11:27:23 +020034int generic_phy_get_by_node(ofnode node, int index, struct phy *phy)
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020035{
Simon Glass23558bb2017-05-18 20:09:47 -060036 struct ofnode_phandle_args args;
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020037 struct phy_ops *ops;
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020038 struct udevice *phydev;
Patrice Chotarda1b2fae2018-06-27 11:55:42 +020039 int i, ret;
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020040
Neil Armstrongc2b9aa92020-03-30 11:27:23 +020041 debug("%s(node=%s, index=%d, phy=%p)\n",
42 __func__, ofnode_get_name(node), index, phy);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020043
44 assert(phy);
Patrice Chotardb9688df2017-07-18 11:38:42 +020045 phy->dev = NULL;
Neil Armstrongc2b9aa92020-03-30 11:27:23 +020046 ret = ofnode_parse_phandle_with_args(node, "phys", "#phy-cells", 0,
47 index, &args);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020048 if (ret) {
Simon Glass23558bb2017-05-18 20:09:47 -060049 debug("%s: dev_read_phandle_with_args failed: err=%d\n",
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020050 __func__, ret);
51 return ret;
52 }
53
Simon Glass23558bb2017-05-18 20:09:47 -060054 ret = uclass_get_device_by_ofnode(UCLASS_PHY, args.node, &phydev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020055 if (ret) {
Simon Glass23558bb2017-05-18 20:09:47 -060056 debug("%s: uclass_get_device_by_ofnode failed: err=%d\n",
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020057 __func__, ret);
Patrice Chotarda1b2fae2018-06-27 11:55:42 +020058
59 /* Check if args.node's parent is a PHY provider */
60 ret = uclass_get_device_by_ofnode(UCLASS_PHY,
61 ofnode_get_parent(args.node),
62 &phydev);
63 if (ret)
64 return ret;
65
66 /* insert phy idx at first position into args array */
Marek Vasut5e50adf2018-08-07 12:24:35 +020067 for (i = args.args_count; i >= 1 ; i--)
Patrice Chotarda1b2fae2018-06-27 11:55:42 +020068 args.args[i] = args.args[i - 1];
69
70 args.args_count++;
71 args.args[0] = ofnode_read_u32_default(args.node, "reg", -1);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020072 }
73
74 phy->dev = phydev;
75
76 ops = phy_dev_ops(phydev);
77
78 if (ops->of_xlate)
79 ret = ops->of_xlate(phy, &args);
80 else
81 ret = generic_phy_xlate_offs_flags(phy, &args);
82 if (ret) {
83 debug("of_xlate() failed: %d\n", ret);
84 goto err;
85 }
86
87 return 0;
88
89err:
90 return ret;
91}
92
Neil Armstrongc2b9aa92020-03-30 11:27:23 +020093int generic_phy_get_by_index(struct udevice *dev, int index,
94 struct phy *phy)
95{
96 return generic_phy_get_by_node(dev_ofnode(dev), index, phy);
97}
98
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +020099int generic_phy_get_by_name(struct udevice *dev, const char *phy_name,
100 struct phy *phy)
101{
102 int index;
103
104 debug("%s(dev=%p, name=%s, phy=%p)\n", __func__, dev, phy_name, phy);
105
Simon Glass23558bb2017-05-18 20:09:47 -0600106 index = dev_read_stringlist_search(dev, "phy-names", phy_name);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200107 if (index < 0) {
Simon Glass23558bb2017-05-18 20:09:47 -0600108 debug("dev_read_stringlist_search() failed: %d\n", index);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200109 return index;
110 }
111
112 return generic_phy_get_by_index(dev, index, phy);
113}
114
115int generic_phy_init(struct phy *phy)
116{
Jean-Jacques Hiblot4e184292019-10-01 14:03:26 +0200117 struct phy_ops const *ops;
118
119 if (!phy)
120 return 0;
121 ops = phy_dev_ops(phy->dev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200122
123 return ops->init ? ops->init(phy) : 0;
124}
125
126int generic_phy_reset(struct phy *phy)
127{
Jean-Jacques Hiblot4e184292019-10-01 14:03:26 +0200128 struct phy_ops const *ops;
129
130 if (!phy)
131 return 0;
132 ops = phy_dev_ops(phy->dev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200133
134 return ops->reset ? ops->reset(phy) : 0;
135}
136
137int generic_phy_exit(struct phy *phy)
138{
Jean-Jacques Hiblot4e184292019-10-01 14:03:26 +0200139 struct phy_ops const *ops;
140
141 if (!phy)
142 return 0;
143 ops = phy_dev_ops(phy->dev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200144
145 return ops->exit ? ops->exit(phy) : 0;
146}
147
148int generic_phy_power_on(struct phy *phy)
149{
Jean-Jacques Hiblot4e184292019-10-01 14:03:26 +0200150 struct phy_ops const *ops;
151
152 if (!phy)
153 return 0;
154 ops = phy_dev_ops(phy->dev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200155
156 return ops->power_on ? ops->power_on(phy) : 0;
157}
158
159int generic_phy_power_off(struct phy *phy)
160{
Jean-Jacques Hiblot4e184292019-10-01 14:03:26 +0200161 struct phy_ops const *ops;
162
163 if (!phy)
164 return 0;
165 ops = phy_dev_ops(phy->dev);
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200166
167 return ops->power_off ? ops->power_off(phy) : 0;
168}
169
170UCLASS_DRIVER(phy) = {
171 .id = UCLASS_PHY,
172 .name = "phy",
173};