Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/ |
| 4 | * Written by Jean-Jacques Hiblot <jjhiblot@ti.com> |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
Patrick Delaunay | 8131335 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_PHY |
| 8 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <dm.h> |
Sean Anderson | 03036a2 | 2020-10-04 21:39:47 -0400 | [diff] [blame] | 11 | #include <dm/device_compat.h> |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 12 | #include <dm/devres.h> |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 13 | #include <generic-phy.h> |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 14 | #include <linux/list.h> |
| 15 | |
| 16 | /** |
| 17 | * struct phy_counts - Init and power-on counts of a single PHY port |
| 18 | * |
| 19 | * This structure is used to keep track of PHY initialization and power |
| 20 | * state change requests, so that we don't power off and deinitialize a |
| 21 | * PHY instance until all of its users want it done. Otherwise, multiple |
| 22 | * consumers using the same PHY port can cause problems (e.g. one might |
| 23 | * call power_off() after another's exit() and hang indefinitely). |
| 24 | * |
| 25 | * @id: The PHY ID within a PHY provider |
| 26 | * @power_on_count: Times generic_phy_power_on() was called for this ID |
| 27 | * without a matching generic_phy_power_off() afterwards |
| 28 | * @init_count: Times generic_phy_init() was called for this ID |
| 29 | * without a matching generic_phy_exit() afterwards |
| 30 | * @list: Handle for a linked list of these structures corresponding to |
| 31 | * ports of the same PHY provider |
| 32 | */ |
| 33 | struct phy_counts { |
| 34 | unsigned long id; |
| 35 | int power_on_count; |
| 36 | int init_count; |
| 37 | struct list_head list; |
| 38 | }; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 39 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 40 | static inline struct phy_ops *phy_dev_ops(struct udevice *dev) |
| 41 | { |
| 42 | return (struct phy_ops *)dev->driver->ops; |
| 43 | } |
| 44 | |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 45 | static struct phy_counts *phy_get_counts(struct phy *phy) |
| 46 | { |
| 47 | struct list_head *uc_priv; |
| 48 | struct phy_counts *counts; |
| 49 | |
| 50 | if (!generic_phy_valid(phy)) |
| 51 | return NULL; |
| 52 | |
| 53 | uc_priv = dev_get_uclass_priv(phy->dev); |
| 54 | list_for_each_entry(counts, uc_priv, list) |
| 55 | if (counts->id == phy->id) |
| 56 | return counts; |
| 57 | |
| 58 | return NULL; |
| 59 | } |
| 60 | |
| 61 | static int phy_alloc_counts(struct phy *phy) |
| 62 | { |
| 63 | struct list_head *uc_priv; |
| 64 | struct phy_counts *counts; |
| 65 | |
| 66 | if (!generic_phy_valid(phy)) |
| 67 | return 0; |
| 68 | if (phy_get_counts(phy)) |
| 69 | return 0; |
| 70 | |
| 71 | uc_priv = dev_get_uclass_priv(phy->dev); |
| 72 | counts = kzalloc(sizeof(*counts), GFP_KERNEL); |
| 73 | if (!counts) |
| 74 | return -ENOMEM; |
| 75 | |
| 76 | counts->id = phy->id; |
| 77 | counts->power_on_count = 0; |
| 78 | counts->init_count = 0; |
| 79 | list_add(&counts->list, uc_priv); |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static int phy_uclass_pre_probe(struct udevice *dev) |
| 85 | { |
| 86 | struct list_head *uc_priv = dev_get_uclass_priv(dev); |
| 87 | |
| 88 | INIT_LIST_HEAD(uc_priv); |
| 89 | |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static int phy_uclass_pre_remove(struct udevice *dev) |
| 94 | { |
| 95 | struct list_head *uc_priv = dev_get_uclass_priv(dev); |
| 96 | struct phy_counts *counts, *next; |
| 97 | |
| 98 | list_for_each_entry_safe(counts, next, uc_priv, list) |
| 99 | kfree(counts); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 104 | static int generic_phy_xlate_offs_flags(struct phy *phy, |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 105 | struct ofnode_phandle_args *args) |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 106 | { |
| 107 | debug("%s(phy=%p)\n", __func__, phy); |
| 108 | |
| 109 | if (args->args_count > 1) { |
Sean Anderson | a1b654b | 2021-12-01 14:26:53 -0500 | [diff] [blame] | 110 | debug("Invalid args_count: %d\n", args->args_count); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 111 | return -EINVAL; |
| 112 | } |
| 113 | |
| 114 | if (args->args_count) |
| 115 | phy->id = args->args[0]; |
| 116 | else |
| 117 | phy->id = 0; |
| 118 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
Jagan Teki | a4e8eee | 2020-05-01 23:44:18 +0530 | [diff] [blame] | 122 | int generic_phy_get_by_index_nodev(ofnode node, int index, struct phy *phy) |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 123 | { |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 124 | struct ofnode_phandle_args args; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 125 | struct phy_ops *ops; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 126 | struct udevice *phydev; |
Patrice Chotard | cf65fa4 | 2018-06-27 11:55:42 +0200 | [diff] [blame] | 127 | int i, ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 128 | |
Neil Armstrong | 8ab77e3 | 2020-03-30 11:27:23 +0200 | [diff] [blame] | 129 | debug("%s(node=%s, index=%d, phy=%p)\n", |
| 130 | __func__, ofnode_get_name(node), index, phy); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 131 | |
| 132 | assert(phy); |
Patrice Chotard | 956b7ad | 2017-07-18 11:38:42 +0200 | [diff] [blame] | 133 | phy->dev = NULL; |
Neil Armstrong | 8ab77e3 | 2020-03-30 11:27:23 +0200 | [diff] [blame] | 134 | ret = ofnode_parse_phandle_with_args(node, "phys", "#phy-cells", 0, |
| 135 | index, &args); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 136 | if (ret) { |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 137 | debug("%s: dev_read_phandle_with_args failed: err=%d\n", |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 138 | __func__, ret); |
| 139 | return ret; |
| 140 | } |
| 141 | |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 142 | ret = uclass_get_device_by_ofnode(UCLASS_PHY, args.node, &phydev); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 143 | if (ret) { |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 144 | debug("%s: uclass_get_device_by_ofnode failed: err=%d\n", |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 145 | __func__, ret); |
Patrice Chotard | cf65fa4 | 2018-06-27 11:55:42 +0200 | [diff] [blame] | 146 | |
| 147 | /* Check if args.node's parent is a PHY provider */ |
| 148 | ret = uclass_get_device_by_ofnode(UCLASS_PHY, |
| 149 | ofnode_get_parent(args.node), |
| 150 | &phydev); |
| 151 | if (ret) |
| 152 | return ret; |
| 153 | |
| 154 | /* insert phy idx at first position into args array */ |
Marek Vasut | 61b17ed | 2018-08-07 12:24:35 +0200 | [diff] [blame] | 155 | for (i = args.args_count; i >= 1 ; i--) |
Patrice Chotard | cf65fa4 | 2018-06-27 11:55:42 +0200 | [diff] [blame] | 156 | args.args[i] = args.args[i - 1]; |
| 157 | |
| 158 | args.args_count++; |
| 159 | args.args[0] = ofnode_read_u32_default(args.node, "reg", -1); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | phy->dev = phydev; |
| 163 | |
| 164 | ops = phy_dev_ops(phydev); |
| 165 | |
| 166 | if (ops->of_xlate) |
| 167 | ret = ops->of_xlate(phy, &args); |
| 168 | else |
| 169 | ret = generic_phy_xlate_offs_flags(phy, &args); |
| 170 | if (ret) { |
| 171 | debug("of_xlate() failed: %d\n", ret); |
| 172 | goto err; |
| 173 | } |
| 174 | |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 175 | ret = phy_alloc_counts(phy); |
| 176 | if (ret) { |
| 177 | debug("phy_alloc_counts() failed: %d\n", ret); |
| 178 | goto err; |
| 179 | } |
| 180 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 181 | return 0; |
| 182 | |
| 183 | err: |
| 184 | return ret; |
| 185 | } |
| 186 | |
Neil Armstrong | 8ab77e3 | 2020-03-30 11:27:23 +0200 | [diff] [blame] | 187 | int generic_phy_get_by_index(struct udevice *dev, int index, |
| 188 | struct phy *phy) |
| 189 | { |
Jagan Teki | a4e8eee | 2020-05-01 23:44:18 +0530 | [diff] [blame] | 190 | return generic_phy_get_by_index_nodev(dev_ofnode(dev), index, phy); |
Neil Armstrong | 8ab77e3 | 2020-03-30 11:27:23 +0200 | [diff] [blame] | 191 | } |
| 192 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 193 | int generic_phy_get_by_name(struct udevice *dev, const char *phy_name, |
| 194 | struct phy *phy) |
| 195 | { |
| 196 | int index; |
| 197 | |
| 198 | debug("%s(dev=%p, name=%s, phy=%p)\n", __func__, dev, phy_name, phy); |
| 199 | |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 200 | index = dev_read_stringlist_search(dev, "phy-names", phy_name); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 201 | if (index < 0) { |
Simon Glass | 8195551 | 2017-05-18 20:09:47 -0600 | [diff] [blame] | 202 | debug("dev_read_stringlist_search() failed: %d\n", index); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 203 | return index; |
| 204 | } |
| 205 | |
| 206 | return generic_phy_get_by_index(dev, index, phy); |
| 207 | } |
| 208 | |
| 209 | int generic_phy_init(struct phy *phy) |
| 210 | { |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 211 | struct phy_counts *counts; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 212 | struct phy_ops const *ops; |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 213 | int ret; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 214 | |
Vignesh Raghavendra | 62bd5b1 | 2020-05-20 22:35:41 +0530 | [diff] [blame] | 215 | if (!generic_phy_valid(phy)) |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 216 | return 0; |
| 217 | ops = phy_dev_ops(phy->dev); |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 218 | if (!ops->init) |
| 219 | return 0; |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 220 | |
| 221 | counts = phy_get_counts(phy); |
| 222 | if (counts->init_count > 0) { |
| 223 | counts->init_count++; |
| 224 | return 0; |
| 225 | } |
| 226 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 227 | ret = ops->init(phy); |
| 228 | if (ret) |
| 229 | dev_err(phy->dev, "PHY: Failed to init %s: %d.\n", |
| 230 | phy->dev->name, ret); |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 231 | else |
| 232 | counts->init_count = 1; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 233 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 234 | return ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | int generic_phy_reset(struct phy *phy) |
| 238 | { |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 239 | struct phy_ops const *ops; |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 240 | int ret; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 241 | |
Vignesh Raghavendra | 62bd5b1 | 2020-05-20 22:35:41 +0530 | [diff] [blame] | 242 | if (!generic_phy_valid(phy)) |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 243 | return 0; |
| 244 | ops = phy_dev_ops(phy->dev); |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 245 | if (!ops->reset) |
| 246 | return 0; |
| 247 | ret = ops->reset(phy); |
| 248 | if (ret) |
| 249 | dev_err(phy->dev, "PHY: Failed to reset %s: %d.\n", |
| 250 | phy->dev->name, ret); |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 251 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 252 | return ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | int generic_phy_exit(struct phy *phy) |
| 256 | { |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 257 | struct phy_counts *counts; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 258 | struct phy_ops const *ops; |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 259 | int ret; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 260 | |
Vignesh Raghavendra | 62bd5b1 | 2020-05-20 22:35:41 +0530 | [diff] [blame] | 261 | if (!generic_phy_valid(phy)) |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 262 | return 0; |
| 263 | ops = phy_dev_ops(phy->dev); |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 264 | if (!ops->exit) |
| 265 | return 0; |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 266 | |
| 267 | counts = phy_get_counts(phy); |
| 268 | if (counts->init_count == 0) |
| 269 | return 0; |
| 270 | if (counts->init_count > 1) { |
| 271 | counts->init_count--; |
| 272 | return 0; |
| 273 | } |
| 274 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 275 | ret = ops->exit(phy); |
| 276 | if (ret) |
| 277 | dev_err(phy->dev, "PHY: Failed to exit %s: %d.\n", |
| 278 | phy->dev->name, ret); |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 279 | else |
| 280 | counts->init_count = 0; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 281 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 282 | return ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | int generic_phy_power_on(struct phy *phy) |
| 286 | { |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 287 | struct phy_counts *counts; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 288 | struct phy_ops const *ops; |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 289 | int ret; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 290 | |
Vignesh Raghavendra | 62bd5b1 | 2020-05-20 22:35:41 +0530 | [diff] [blame] | 291 | if (!generic_phy_valid(phy)) |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 292 | return 0; |
| 293 | ops = phy_dev_ops(phy->dev); |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 294 | if (!ops->power_on) |
| 295 | return 0; |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 296 | |
| 297 | counts = phy_get_counts(phy); |
| 298 | if (counts->power_on_count > 0) { |
| 299 | counts->power_on_count++; |
| 300 | return 0; |
| 301 | } |
| 302 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 303 | ret = ops->power_on(phy); |
| 304 | if (ret) |
| 305 | dev_err(phy->dev, "PHY: Failed to power on %s: %d.\n", |
| 306 | phy->dev->name, ret); |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 307 | else |
| 308 | counts->power_on_count = 1; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 309 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 310 | return ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | int generic_phy_power_off(struct phy *phy) |
| 314 | { |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 315 | struct phy_counts *counts; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 316 | struct phy_ops const *ops; |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 317 | int ret; |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 318 | |
Vignesh Raghavendra | 62bd5b1 | 2020-05-20 22:35:41 +0530 | [diff] [blame] | 319 | if (!generic_phy_valid(phy)) |
Jean-Jacques Hiblot | eae1eeb | 2019-10-01 14:03:26 +0200 | [diff] [blame] | 320 | return 0; |
| 321 | ops = phy_dev_ops(phy->dev); |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 322 | if (!ops->power_off) |
| 323 | return 0; |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 324 | |
| 325 | counts = phy_get_counts(phy); |
| 326 | if (counts->power_on_count == 0) |
| 327 | return 0; |
| 328 | if (counts->power_on_count > 1) { |
| 329 | counts->power_on_count--; |
| 330 | return 0; |
| 331 | } |
| 332 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 333 | ret = ops->power_off(phy); |
| 334 | if (ret) |
| 335 | dev_err(phy->dev, "PHY: Failed to power off %s: %d.\n", |
| 336 | phy->dev->name, ret); |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 337 | else |
| 338 | counts->power_on_count = 0; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 339 | |
Patrick Delaunay | c2e5efd | 2020-07-03 17:36:40 +0200 | [diff] [blame] | 340 | return ret; |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 341 | } |
| 342 | |
Neil Armstrong | 963ae6c | 2020-12-29 14:58:59 +0100 | [diff] [blame] | 343 | int generic_phy_configure(struct phy *phy, void *params) |
| 344 | { |
| 345 | struct phy_ops const *ops; |
| 346 | |
| 347 | if (!generic_phy_valid(phy)) |
| 348 | return 0; |
| 349 | ops = phy_dev_ops(phy->dev); |
| 350 | |
| 351 | return ops->configure ? ops->configure(phy, params) : 0; |
| 352 | } |
| 353 | |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 354 | int generic_phy_get_bulk(struct udevice *dev, struct phy_bulk *bulk) |
| 355 | { |
| 356 | int i, ret, count; |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 357 | struct udevice *phydev = dev; |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 358 | |
| 359 | bulk->count = 0; |
| 360 | |
| 361 | /* Return if no phy declared */ |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 362 | if (!dev_read_prop(dev, "phys", NULL)) { |
| 363 | phydev = dev->parent; |
| 364 | if (!dev_read_prop(phydev, "phys", NULL)) { |
| 365 | pr_err("%s : no phys property\n", __func__); |
| 366 | return 0; |
| 367 | } |
| 368 | } |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 369 | |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 370 | count = dev_count_phandle_with_args(phydev, "phys", "#phy-cells", 0); |
| 371 | if (count < 1) { |
| 372 | pr_err("%s : no phys found %d\n", __func__, count); |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 373 | return count; |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 374 | } |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 375 | |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 376 | bulk->phys = devm_kcalloc(phydev, count, sizeof(struct phy), GFP_KERNEL); |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 377 | if (!bulk->phys) |
| 378 | return -ENOMEM; |
| 379 | |
| 380 | for (i = 0; i < count; i++) { |
Angus Ainslie | 3365fd3 | 2022-02-03 10:08:38 -0800 | [diff] [blame] | 381 | ret = generic_phy_get_by_index(phydev, i, &bulk->phys[i]); |
developer | 272bde6 | 2020-05-02 11:35:11 +0200 | [diff] [blame] | 382 | if (ret) { |
| 383 | pr_err("Failed to get PHY%d for %s\n", i, dev->name); |
| 384 | return ret; |
| 385 | } |
| 386 | bulk->count++; |
| 387 | } |
| 388 | |
| 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | int generic_phy_init_bulk(struct phy_bulk *bulk) |
| 393 | { |
| 394 | struct phy *phys = bulk->phys; |
| 395 | int i, ret; |
| 396 | |
| 397 | for (i = 0; i < bulk->count; i++) { |
| 398 | ret = generic_phy_init(&phys[i]); |
| 399 | if (ret) { |
| 400 | pr_err("Can't init PHY%d\n", i); |
| 401 | goto phys_init_err; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | return 0; |
| 406 | |
| 407 | phys_init_err: |
| 408 | for (; i > 0; i--) |
| 409 | generic_phy_exit(&phys[i - 1]); |
| 410 | |
| 411 | return ret; |
| 412 | } |
| 413 | |
| 414 | int generic_phy_exit_bulk(struct phy_bulk *bulk) |
| 415 | { |
| 416 | struct phy *phys = bulk->phys; |
| 417 | int i, ret = 0; |
| 418 | |
| 419 | for (i = 0; i < bulk->count; i++) |
| 420 | ret |= generic_phy_exit(&phys[i]); |
| 421 | |
| 422 | return ret; |
| 423 | } |
| 424 | |
| 425 | int generic_phy_power_on_bulk(struct phy_bulk *bulk) |
| 426 | { |
| 427 | struct phy *phys = bulk->phys; |
| 428 | int i, ret; |
| 429 | |
| 430 | for (i = 0; i < bulk->count; i++) { |
| 431 | ret = generic_phy_power_on(&phys[i]); |
| 432 | if (ret) { |
| 433 | pr_err("Can't power on PHY%d\n", i); |
| 434 | goto phys_poweron_err; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | return 0; |
| 439 | |
| 440 | phys_poweron_err: |
| 441 | for (; i > 0; i--) |
| 442 | generic_phy_power_off(&phys[i - 1]); |
| 443 | |
| 444 | return ret; |
| 445 | } |
| 446 | |
| 447 | int generic_phy_power_off_bulk(struct phy_bulk *bulk) |
| 448 | { |
| 449 | struct phy *phys = bulk->phys; |
| 450 | int i, ret = 0; |
| 451 | |
| 452 | for (i = 0; i < bulk->count; i++) |
| 453 | ret |= generic_phy_power_off(&phys[i]); |
| 454 | |
| 455 | return ret; |
| 456 | } |
| 457 | |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 458 | UCLASS_DRIVER(phy) = { |
| 459 | .id = UCLASS_PHY, |
| 460 | .name = "phy", |
Alper Nebi Yasak | be4e5e1 | 2021-12-30 22:36:51 +0300 | [diff] [blame] | 461 | .pre_probe = phy_uclass_pre_probe, |
| 462 | .pre_remove = phy_uclass_pre_remove, |
| 463 | .per_device_auto = sizeof(struct list_head), |
Jean-Jacques Hiblot | 4844778 | 2017-04-24 11:51:27 +0200 | [diff] [blame] | 464 | }; |