Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 1 | /* |
| 2 | * phy.h -- generic phy header file |
| 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 |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #ifndef __DRIVERS_PHY_H |
| 15 | #define __DRIVERS_PHY_H |
| 16 | |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/of.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/pm_runtime.h> |
Roger Quadros | 3be8812 | 2014-07-04 12:55:45 +0300 | [diff] [blame] | 21 | #include <linux/regulator/consumer.h> |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 22 | |
| 23 | struct phy; |
| 24 | |
| 25 | /** |
| 26 | * struct phy_ops - set of function pointers for performing phy operations |
| 27 | * @init: operation to be performed for initializing phy |
| 28 | * @exit: operation to be performed while exiting |
| 29 | * @power_on: powering on the phy |
| 30 | * @power_off: powering off the phy |
| 31 | * @owner: the module owner containing the ops |
| 32 | */ |
| 33 | struct phy_ops { |
| 34 | int (*init)(struct phy *phy); |
| 35 | int (*exit)(struct phy *phy); |
| 36 | int (*power_on)(struct phy *phy); |
| 37 | int (*power_off)(struct phy *phy); |
| 38 | struct module *owner; |
| 39 | }; |
| 40 | |
| 41 | /** |
Matt Porter | 8feed34 | 2013-12-19 09:23:02 -0500 | [diff] [blame] | 42 | * struct phy_attrs - represents phy attributes |
| 43 | * @bus_width: Data path width implemented by PHY |
| 44 | */ |
| 45 | struct phy_attrs { |
| 46 | u32 bus_width; |
| 47 | }; |
| 48 | |
| 49 | /** |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 50 | * struct phy - represents the phy device |
| 51 | * @dev: phy device |
| 52 | * @id: id of the phy device |
| 53 | * @ops: function pointers for performing phy operations |
| 54 | * @init_data: list of PHY consumers (non-dt only) |
| 55 | * @mutex: mutex to protect phy_ops |
| 56 | * @init_count: used to protect when the PHY is used by multiple consumers |
| 57 | * @power_count: used to protect when the PHY is used by multiple consumers |
Matt Porter | 8feed34 | 2013-12-19 09:23:02 -0500 | [diff] [blame] | 58 | * @phy_attrs: used to specify PHY specific attributes |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 59 | */ |
| 60 | struct phy { |
| 61 | struct device dev; |
| 62 | int id; |
| 63 | const struct phy_ops *ops; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 64 | struct mutex mutex; |
| 65 | int init_count; |
| 66 | int power_count; |
Matt Porter | 8feed34 | 2013-12-19 09:23:02 -0500 | [diff] [blame] | 67 | struct phy_attrs attrs; |
Roger Quadros | 3be8812 | 2014-07-04 12:55:45 +0300 | [diff] [blame] | 68 | struct regulator *pwr; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | /** |
| 72 | * struct phy_provider - represents the phy provider |
| 73 | * @dev: phy provider device |
| 74 | * @owner: the module owner having of_xlate |
| 75 | * @of_xlate: function pointer to obtain phy instance from phy pointer |
| 76 | * @list: to maintain a linked list of PHY providers |
| 77 | */ |
| 78 | struct phy_provider { |
| 79 | struct device *dev; |
| 80 | struct module *owner; |
| 81 | struct list_head list; |
| 82 | struct phy * (*of_xlate)(struct device *dev, |
| 83 | struct of_phandle_args *args); |
| 84 | }; |
| 85 | |
Heikki Krogerus | b7bc15b | 2014-11-19 17:28:18 +0200 | [diff] [blame] | 86 | struct phy_lookup { |
| 87 | struct list_head node; |
| 88 | const char *dev_id; |
| 89 | const char *con_id; |
| 90 | struct phy *phy; |
| 91 | }; |
| 92 | |
Heikki Krogerus | d451057 | 2014-11-19 17:28:17 +0200 | [diff] [blame] | 93 | #define to_phy(a) (container_of((a), struct phy, dev)) |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 94 | |
| 95 | #define of_phy_provider_register(dev, xlate) \ |
| 96 | __of_phy_provider_register((dev), THIS_MODULE, (xlate)) |
| 97 | |
| 98 | #define devm_of_phy_provider_register(dev, xlate) \ |
| 99 | __devm_of_phy_provider_register((dev), THIS_MODULE, (xlate)) |
| 100 | |
| 101 | static inline void phy_set_drvdata(struct phy *phy, void *data) |
| 102 | { |
| 103 | dev_set_drvdata(&phy->dev, data); |
| 104 | } |
| 105 | |
| 106 | static inline void *phy_get_drvdata(struct phy *phy) |
| 107 | { |
| 108 | return dev_get_drvdata(&phy->dev); |
| 109 | } |
| 110 | |
| 111 | #if IS_ENABLED(CONFIG_GENERIC_PHY) |
| 112 | int phy_pm_runtime_get(struct phy *phy); |
| 113 | int phy_pm_runtime_get_sync(struct phy *phy); |
| 114 | int phy_pm_runtime_put(struct phy *phy); |
| 115 | int phy_pm_runtime_put_sync(struct phy *phy); |
| 116 | void phy_pm_runtime_allow(struct phy *phy); |
| 117 | void phy_pm_runtime_forbid(struct phy *phy); |
| 118 | int phy_init(struct phy *phy); |
| 119 | int phy_exit(struct phy *phy); |
| 120 | int phy_power_on(struct phy *phy); |
| 121 | int phy_power_off(struct phy *phy); |
Matt Porter | 8feed34 | 2013-12-19 09:23:02 -0500 | [diff] [blame] | 122 | static inline int phy_get_bus_width(struct phy *phy) |
| 123 | { |
| 124 | return phy->attrs.bus_width; |
| 125 | } |
| 126 | static inline void phy_set_bus_width(struct phy *phy, int bus_width) |
| 127 | { |
| 128 | phy->attrs.bus_width = bus_width; |
| 129 | } |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 130 | struct phy *phy_get(struct device *dev, const char *string); |
Andrew Lunn | 788a4d5 | 2014-02-04 18:33:12 +0100 | [diff] [blame] | 131 | struct phy *phy_optional_get(struct device *dev, const char *string); |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 132 | struct phy *devm_phy_get(struct device *dev, const char *string); |
Andrew Lunn | 788a4d5 | 2014-02-04 18:33:12 +0100 | [diff] [blame] | 133 | struct phy *devm_phy_optional_get(struct device *dev, const char *string); |
Kamil Debski | b5d682f | 2014-03-06 12:16:47 +0100 | [diff] [blame] | 134 | struct phy *devm_of_phy_get(struct device *dev, struct device_node *np, |
| 135 | const char *con_id); |
Arun Ramamurthy | 6be109b | 2015-04-22 16:04:11 -0700 | [diff] [blame] | 136 | struct phy *devm_of_phy_get_by_index(struct device *dev, struct device_node *np, |
| 137 | int index); |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 138 | void phy_put(struct phy *phy); |
| 139 | void devm_phy_put(struct device *dev, struct phy *phy); |
Kamil Debski | 0b3f3b2 | 2014-03-06 12:16:46 +0100 | [diff] [blame] | 140 | struct phy *of_phy_get(struct device_node *np, const char *con_id); |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 141 | struct phy *of_phy_simple_xlate(struct device *dev, |
| 142 | struct of_phandle_args *args); |
Kishon Vijay Abraham I | f0ed817 | 2014-07-14 15:55:02 +0530 | [diff] [blame] | 143 | struct phy *phy_create(struct device *dev, struct device_node *node, |
Heikki Krogerus | dbc9863 | 2014-11-19 17:28:21 +0200 | [diff] [blame] | 144 | const struct phy_ops *ops); |
Kishon Vijay Abraham I | f0ed817 | 2014-07-14 15:55:02 +0530 | [diff] [blame] | 145 | struct phy *devm_phy_create(struct device *dev, struct device_node *node, |
Heikki Krogerus | dbc9863 | 2014-11-19 17:28:21 +0200 | [diff] [blame] | 146 | const struct phy_ops *ops); |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 147 | void phy_destroy(struct phy *phy); |
| 148 | void devm_phy_destroy(struct device *dev, struct phy *phy); |
| 149 | struct phy_provider *__of_phy_provider_register(struct device *dev, |
| 150 | struct module *owner, struct phy * (*of_xlate)(struct device *dev, |
| 151 | struct of_phandle_args *args)); |
| 152 | struct phy_provider *__devm_of_phy_provider_register(struct device *dev, |
| 153 | struct module *owner, struct phy * (*of_xlate)(struct device *dev, |
| 154 | struct of_phandle_args *args)); |
| 155 | void of_phy_provider_unregister(struct phy_provider *phy_provider); |
| 156 | void devm_of_phy_provider_unregister(struct device *dev, |
| 157 | struct phy_provider *phy_provider); |
Heikki Krogerus | b7bc15b | 2014-11-19 17:28:18 +0200 | [diff] [blame] | 158 | int phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id); |
| 159 | void phy_remove_lookup(struct phy *phy, const char *con_id, const char *dev_id); |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 160 | #else |
| 161 | static inline int phy_pm_runtime_get(struct phy *phy) |
| 162 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 163 | if (!phy) |
| 164 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 165 | return -ENOSYS; |
| 166 | } |
| 167 | |
| 168 | static inline int phy_pm_runtime_get_sync(struct phy *phy) |
| 169 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 170 | if (!phy) |
| 171 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 172 | return -ENOSYS; |
| 173 | } |
| 174 | |
| 175 | static inline int phy_pm_runtime_put(struct phy *phy) |
| 176 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 177 | if (!phy) |
| 178 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 179 | return -ENOSYS; |
| 180 | } |
| 181 | |
| 182 | static inline int phy_pm_runtime_put_sync(struct phy *phy) |
| 183 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 184 | if (!phy) |
| 185 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 186 | return -ENOSYS; |
| 187 | } |
| 188 | |
| 189 | static inline void phy_pm_runtime_allow(struct phy *phy) |
| 190 | { |
| 191 | return; |
| 192 | } |
| 193 | |
| 194 | static inline void phy_pm_runtime_forbid(struct phy *phy) |
| 195 | { |
| 196 | return; |
| 197 | } |
| 198 | |
| 199 | static inline int phy_init(struct phy *phy) |
| 200 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 201 | if (!phy) |
| 202 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 203 | return -ENOSYS; |
| 204 | } |
| 205 | |
| 206 | static inline int phy_exit(struct phy *phy) |
| 207 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 208 | if (!phy) |
| 209 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 210 | return -ENOSYS; |
| 211 | } |
| 212 | |
| 213 | static inline int phy_power_on(struct phy *phy) |
| 214 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 215 | if (!phy) |
| 216 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 217 | return -ENOSYS; |
| 218 | } |
| 219 | |
| 220 | static inline int phy_power_off(struct phy *phy) |
| 221 | { |
Grygorii Strashko | 2b97789 | 2014-04-19 08:51:44 +0530 | [diff] [blame] | 222 | if (!phy) |
| 223 | return 0; |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 224 | return -ENOSYS; |
| 225 | } |
| 226 | |
Matt Porter | 8feed34 | 2013-12-19 09:23:02 -0500 | [diff] [blame] | 227 | static inline int phy_get_bus_width(struct phy *phy) |
| 228 | { |
| 229 | return -ENOSYS; |
| 230 | } |
| 231 | |
| 232 | static inline void phy_set_bus_width(struct phy *phy, int bus_width) |
| 233 | { |
| 234 | return; |
| 235 | } |
| 236 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 237 | static inline struct phy *phy_get(struct device *dev, const char *string) |
| 238 | { |
| 239 | return ERR_PTR(-ENOSYS); |
| 240 | } |
| 241 | |
Andrew Lunn | 788a4d5 | 2014-02-04 18:33:12 +0100 | [diff] [blame] | 242 | static inline struct phy *phy_optional_get(struct device *dev, |
| 243 | const char *string) |
| 244 | { |
| 245 | return ERR_PTR(-ENOSYS); |
| 246 | } |
| 247 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 248 | static inline struct phy *devm_phy_get(struct device *dev, const char *string) |
| 249 | { |
| 250 | return ERR_PTR(-ENOSYS); |
| 251 | } |
| 252 | |
Andrew Lunn | 788a4d5 | 2014-02-04 18:33:12 +0100 | [diff] [blame] | 253 | static inline struct phy *devm_phy_optional_get(struct device *dev, |
| 254 | const char *string) |
| 255 | { |
| 256 | return ERR_PTR(-ENOSYS); |
| 257 | } |
| 258 | |
Kamil Debski | b5d682f | 2014-03-06 12:16:47 +0100 | [diff] [blame] | 259 | static inline struct phy *devm_of_phy_get(struct device *dev, |
| 260 | struct device_node *np, |
| 261 | const char *con_id) |
| 262 | { |
| 263 | return ERR_PTR(-ENOSYS); |
| 264 | } |
| 265 | |
Arun Ramamurthy | 6be109b | 2015-04-22 16:04:11 -0700 | [diff] [blame] | 266 | static inline struct phy *devm_of_phy_get_by_index(struct device *dev, |
| 267 | struct device_node *np, |
| 268 | int index) |
| 269 | { |
| 270 | return ERR_PTR(-ENOSYS); |
| 271 | } |
| 272 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 273 | static inline void phy_put(struct phy *phy) |
| 274 | { |
| 275 | } |
| 276 | |
| 277 | static inline void devm_phy_put(struct device *dev, struct phy *phy) |
| 278 | { |
| 279 | } |
| 280 | |
Kamil Debski | 0b3f3b2 | 2014-03-06 12:16:46 +0100 | [diff] [blame] | 281 | static inline struct phy *of_phy_get(struct device_node *np, const char *con_id) |
| 282 | { |
| 283 | return ERR_PTR(-ENOSYS); |
| 284 | } |
| 285 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 286 | static inline struct phy *of_phy_simple_xlate(struct device *dev, |
| 287 | struct of_phandle_args *args) |
| 288 | { |
| 289 | return ERR_PTR(-ENOSYS); |
| 290 | } |
| 291 | |
| 292 | static inline struct phy *phy_create(struct device *dev, |
Kishon Vijay Abraham I | f0ed817 | 2014-07-14 15:55:02 +0530 | [diff] [blame] | 293 | struct device_node *node, |
Heikki Krogerus | dbc9863 | 2014-11-19 17:28:21 +0200 | [diff] [blame] | 294 | const struct phy_ops *ops) |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 295 | { |
| 296 | return ERR_PTR(-ENOSYS); |
| 297 | } |
| 298 | |
| 299 | static inline struct phy *devm_phy_create(struct device *dev, |
Kishon Vijay Abraham I | f0ed817 | 2014-07-14 15:55:02 +0530 | [diff] [blame] | 300 | struct device_node *node, |
Heikki Krogerus | dbc9863 | 2014-11-19 17:28:21 +0200 | [diff] [blame] | 301 | const struct phy_ops *ops) |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 302 | { |
| 303 | return ERR_PTR(-ENOSYS); |
| 304 | } |
| 305 | |
| 306 | static inline void phy_destroy(struct phy *phy) |
| 307 | { |
| 308 | } |
| 309 | |
| 310 | static inline void devm_phy_destroy(struct device *dev, struct phy *phy) |
| 311 | { |
| 312 | } |
| 313 | |
| 314 | static inline struct phy_provider *__of_phy_provider_register( |
| 315 | struct device *dev, struct module *owner, struct phy * (*of_xlate)( |
| 316 | struct device *dev, struct of_phandle_args *args)) |
| 317 | { |
| 318 | return ERR_PTR(-ENOSYS); |
| 319 | } |
| 320 | |
| 321 | static inline struct phy_provider *__devm_of_phy_provider_register(struct device |
| 322 | *dev, struct module *owner, struct phy * (*of_xlate)(struct device *dev, |
| 323 | struct of_phandle_args *args)) |
| 324 | { |
| 325 | return ERR_PTR(-ENOSYS); |
| 326 | } |
| 327 | |
| 328 | static inline void of_phy_provider_unregister(struct phy_provider *phy_provider) |
| 329 | { |
| 330 | } |
| 331 | |
| 332 | static inline void devm_of_phy_provider_unregister(struct device *dev, |
| 333 | struct phy_provider *phy_provider) |
| 334 | { |
| 335 | } |
Heikki Krogerus | b7bc15b | 2014-11-19 17:28:18 +0200 | [diff] [blame] | 336 | static inline int |
| 337 | phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id) |
| 338 | { |
| 339 | return 0; |
| 340 | } |
| 341 | static inline void phy_remove_lookup(struct phy *phy, const char *con_id, |
| 342 | const char *dev_id) { } |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 343 | #endif |
| 344 | |
| 345 | #endif /* __DRIVERS_PHY_H */ |