blob: 9713aebdd348b1d9bb73ecbe2b82efba3f929695 [file] [log] [blame]
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05301/*
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 Quadros3be88122014-07-04 12:55:45 +030021#include <linux/regulator/consumer.h>
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053022
23struct phy;
24
David Lechner300eb012016-05-09 18:39:59 -050025enum phy_mode {
26 PHY_MODE_INVALID,
27 PHY_MODE_USB_HOST,
Manu Gautam3b3cd242018-01-16 16:27:09 +053028 PHY_MODE_USB_HOST_LS,
29 PHY_MODE_USB_HOST_FS,
30 PHY_MODE_USB_HOST_HS,
31 PHY_MODE_USB_HOST_SS,
David Lechner300eb012016-05-09 18:39:59 -050032 PHY_MODE_USB_DEVICE,
Manu Gautam3b3cd242018-01-16 16:27:09 +053033 PHY_MODE_USB_DEVICE_LS,
34 PHY_MODE_USB_DEVICE_FS,
35 PHY_MODE_USB_DEVICE_HS,
36 PHY_MODE_USB_DEVICE_SS,
David Lechner300eb012016-05-09 18:39:59 -050037 PHY_MODE_USB_OTG,
Antoine Tenart5c23f2d2017-08-30 10:29:12 +020038 PHY_MODE_SGMII,
Antoine Tenart5490b872018-05-17 10:29:32 +020039 PHY_MODE_2500SGMII,
Antoine Tenart5c23f2d2017-08-30 10:29:12 +020040 PHY_MODE_10GKR,
Vivek Gautamfd3e4c92017-10-12 11:49:33 +053041 PHY_MODE_UFS_HS_A,
42 PHY_MODE_UFS_HS_B,
David Lechner300eb012016-05-09 18:39:59 -050043};
44
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053045/**
46 * struct phy_ops - set of function pointers for performing phy operations
47 * @init: operation to be performed for initializing phy
48 * @exit: operation to be performed while exiting
49 * @power_on: powering on the phy
50 * @power_off: powering off the phy
David Lechner300eb012016-05-09 18:39:59 -050051 * @set_mode: set the mode of the phy
Randy Licac18ec2016-09-10 02:59:37 +080052 * @reset: resetting the phy
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +020053 * @calibrate: calibrate the phy
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053054 * @owner: the module owner containing the ops
55 */
56struct phy_ops {
57 int (*init)(struct phy *phy);
58 int (*exit)(struct phy *phy);
59 int (*power_on)(struct phy *phy);
60 int (*power_off)(struct phy *phy);
David Lechner300eb012016-05-09 18:39:59 -050061 int (*set_mode)(struct phy *phy, enum phy_mode mode);
Randy Licac18ec2016-09-10 02:59:37 +080062 int (*reset)(struct phy *phy);
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +020063 int (*calibrate)(struct phy *phy);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053064 struct module *owner;
65};
66
67/**
Matt Porter8feed342013-12-19 09:23:02 -050068 * struct phy_attrs - represents phy attributes
69 * @bus_width: Data path width implemented by PHY
70 */
71struct phy_attrs {
72 u32 bus_width;
Manu Gautam3b3cd242018-01-16 16:27:09 +053073 enum phy_mode mode;
Matt Porter8feed342013-12-19 09:23:02 -050074};
75
76/**
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053077 * struct phy - represents the phy device
78 * @dev: phy device
79 * @id: id of the phy device
80 * @ops: function pointers for performing phy operations
81 * @init_data: list of PHY consumers (non-dt only)
82 * @mutex: mutex to protect phy_ops
83 * @init_count: used to protect when the PHY is used by multiple consumers
84 * @power_count: used to protect when the PHY is used by multiple consumers
Dov Levenglickbecaf172018-02-02 18:34:50 +020085 * @attrs: used to specify PHY specific attributes
86 * @pwr: power regulator associated with the phy
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053087 */
88struct phy {
89 struct device dev;
90 int id;
91 const struct phy_ops *ops;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053092 struct mutex mutex;
93 int init_count;
94 int power_count;
Matt Porter8feed342013-12-19 09:23:02 -050095 struct phy_attrs attrs;
Roger Quadros3be88122014-07-04 12:55:45 +030096 struct regulator *pwr;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053097};
98
99/**
100 * struct phy_provider - represents the phy provider
101 * @dev: phy provider device
Dov Levenglickbecaf172018-02-02 18:34:50 +0200102 * @children: can be used to override the default (dev->of_node) child node
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530103 * @owner: the module owner having of_xlate
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530104 * @list: to maintain a linked list of PHY providers
Dov Levenglickbecaf172018-02-02 18:34:50 +0200105 * @of_xlate: function pointer to obtain phy instance from phy pointer
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530106 */
107struct phy_provider {
108 struct device *dev;
Thierry Reding1140f7c2016-04-05 17:17:34 +0200109 struct device_node *children;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530110 struct module *owner;
111 struct list_head list;
112 struct phy * (*of_xlate)(struct device *dev,
113 struct of_phandle_args *args);
114};
115
Dov Levenglickbecaf172018-02-02 18:34:50 +0200116/**
117 * struct phy_lookup - PHY association in list of phys managed by the phy driver
118 * @node: list node
119 * @dev_id: the device of the association
120 * @con_id: connection ID string on device
121 * @phy: the phy of the association
122 */
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200123struct phy_lookup {
124 struct list_head node;
125 const char *dev_id;
126 const char *con_id;
127 struct phy *phy;
128};
129
Heikki Krogerusd4510572014-11-19 17:28:17 +0200130#define to_phy(a) (container_of((a), struct phy, dev))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530131
132#define of_phy_provider_register(dev, xlate) \
Thierry Reding1140f7c2016-04-05 17:17:34 +0200133 __of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530134
135#define devm_of_phy_provider_register(dev, xlate) \
Thierry Reding1140f7c2016-04-05 17:17:34 +0200136 __devm_of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate))
137
138#define of_phy_provider_register_full(dev, children, xlate) \
139 __of_phy_provider_register(dev, children, THIS_MODULE, xlate)
140
141#define devm_of_phy_provider_register_full(dev, children, xlate) \
142 __devm_of_phy_provider_register(dev, children, THIS_MODULE, xlate)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530143
144static inline void phy_set_drvdata(struct phy *phy, void *data)
145{
146 dev_set_drvdata(&phy->dev, data);
147}
148
149static inline void *phy_get_drvdata(struct phy *phy)
150{
151 return dev_get_drvdata(&phy->dev);
152}
153
154#if IS_ENABLED(CONFIG_GENERIC_PHY)
155int phy_pm_runtime_get(struct phy *phy);
156int phy_pm_runtime_get_sync(struct phy *phy);
157int phy_pm_runtime_put(struct phy *phy);
158int phy_pm_runtime_put_sync(struct phy *phy);
159void phy_pm_runtime_allow(struct phy *phy);
160void phy_pm_runtime_forbid(struct phy *phy);
161int phy_init(struct phy *phy);
162int phy_exit(struct phy *phy);
163int phy_power_on(struct phy *phy);
164int phy_power_off(struct phy *phy);
David Lechner300eb012016-05-09 18:39:59 -0500165int phy_set_mode(struct phy *phy, enum phy_mode mode);
Manu Gautam3b3cd242018-01-16 16:27:09 +0530166static inline enum phy_mode phy_get_mode(struct phy *phy)
167{
168 return phy->attrs.mode;
169}
Randy Licac18ec2016-09-10 02:59:37 +0800170int phy_reset(struct phy *phy);
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +0200171int phy_calibrate(struct phy *phy);
Matt Porter8feed342013-12-19 09:23:02 -0500172static inline int phy_get_bus_width(struct phy *phy)
173{
174 return phy->attrs.bus_width;
175}
176static inline void phy_set_bus_width(struct phy *phy, int bus_width)
177{
178 phy->attrs.bus_width = bus_width;
179}
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530180struct phy *phy_get(struct device *dev, const char *string);
Andrew Lunn788a4d52014-02-04 18:33:12 +0100181struct phy *phy_optional_get(struct device *dev, const char *string);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530182struct phy *devm_phy_get(struct device *dev, const char *string);
Andrew Lunn788a4d52014-02-04 18:33:12 +0100183struct phy *devm_phy_optional_get(struct device *dev, const char *string);
Kamil Debskib5d682f2014-03-06 12:16:47 +0100184struct phy *devm_of_phy_get(struct device *dev, struct device_node *np,
185 const char *con_id);
Arun Ramamurthy6be109b2015-04-22 16:04:11 -0700186struct phy *devm_of_phy_get_by_index(struct device *dev, struct device_node *np,
187 int index);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530188void phy_put(struct phy *phy);
189void devm_phy_put(struct device *dev, struct phy *phy);
Kamil Debski0b3f3b22014-03-06 12:16:46 +0100190struct phy *of_phy_get(struct device_node *np, const char *con_id);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530191struct phy *of_phy_simple_xlate(struct device *dev,
192 struct of_phandle_args *args);
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530193struct phy *phy_create(struct device *dev, struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200194 const struct phy_ops *ops);
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530195struct phy *devm_phy_create(struct device *dev, struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200196 const struct phy_ops *ops);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530197void phy_destroy(struct phy *phy);
198void devm_phy_destroy(struct device *dev, struct phy *phy);
199struct phy_provider *__of_phy_provider_register(struct device *dev,
Thierry Reding1140f7c2016-04-05 17:17:34 +0200200 struct device_node *children, struct module *owner,
201 struct phy * (*of_xlate)(struct device *dev,
202 struct of_phandle_args *args));
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530203struct phy_provider *__devm_of_phy_provider_register(struct device *dev,
Thierry Reding1140f7c2016-04-05 17:17:34 +0200204 struct device_node *children, struct module *owner,
205 struct phy * (*of_xlate)(struct device *dev,
206 struct of_phandle_args *args));
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530207void of_phy_provider_unregister(struct phy_provider *phy_provider);
208void devm_of_phy_provider_unregister(struct device *dev,
209 struct phy_provider *phy_provider);
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200210int phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id);
211void phy_remove_lookup(struct phy *phy, const char *con_id, const char *dev_id);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530212#else
213static inline int phy_pm_runtime_get(struct phy *phy)
214{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530215 if (!phy)
216 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530217 return -ENOSYS;
218}
219
220static inline int phy_pm_runtime_get_sync(struct phy *phy)
221{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530222 if (!phy)
223 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530224 return -ENOSYS;
225}
226
227static inline int phy_pm_runtime_put(struct phy *phy)
228{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530229 if (!phy)
230 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530231 return -ENOSYS;
232}
233
234static inline int phy_pm_runtime_put_sync(struct phy *phy)
235{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530236 if (!phy)
237 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530238 return -ENOSYS;
239}
240
241static inline void phy_pm_runtime_allow(struct phy *phy)
242{
243 return;
244}
245
246static inline void phy_pm_runtime_forbid(struct phy *phy)
247{
248 return;
249}
250
251static inline int phy_init(struct phy *phy)
252{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530253 if (!phy)
254 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530255 return -ENOSYS;
256}
257
258static inline int phy_exit(struct phy *phy)
259{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530260 if (!phy)
261 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530262 return -ENOSYS;
263}
264
265static inline int phy_power_on(struct phy *phy)
266{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530267 if (!phy)
268 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530269 return -ENOSYS;
270}
271
272static inline int phy_power_off(struct phy *phy)
273{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530274 if (!phy)
275 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530276 return -ENOSYS;
277}
278
David Lechner300eb012016-05-09 18:39:59 -0500279static inline int phy_set_mode(struct phy *phy, enum phy_mode mode)
280{
281 if (!phy)
282 return 0;
283 return -ENOSYS;
284}
285
Manu Gautam3b3cd242018-01-16 16:27:09 +0530286static inline enum phy_mode phy_get_mode(struct phy *phy)
287{
288 return PHY_MODE_INVALID;
289}
290
Randy Li98430c72016-10-25 22:15:34 +0800291static inline int phy_reset(struct phy *phy)
292{
293 if (!phy)
294 return 0;
295 return -ENOSYS;
296}
297
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +0200298static inline int phy_calibrate(struct phy *phy)
299{
300 if (!phy)
301 return 0;
302 return -ENOSYS;
303}
304
Matt Porter8feed342013-12-19 09:23:02 -0500305static inline int phy_get_bus_width(struct phy *phy)
306{
307 return -ENOSYS;
308}
309
310static inline void phy_set_bus_width(struct phy *phy, int bus_width)
311{
312 return;
313}
314
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530315static inline struct phy *phy_get(struct device *dev, const char *string)
316{
317 return ERR_PTR(-ENOSYS);
318}
319
Andrew Lunn788a4d52014-02-04 18:33:12 +0100320static inline struct phy *phy_optional_get(struct device *dev,
321 const char *string)
322{
323 return ERR_PTR(-ENOSYS);
324}
325
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530326static inline struct phy *devm_phy_get(struct device *dev, const char *string)
327{
328 return ERR_PTR(-ENOSYS);
329}
330
Andrew Lunn788a4d52014-02-04 18:33:12 +0100331static inline struct phy *devm_phy_optional_get(struct device *dev,
332 const char *string)
333{
Maxime Ripard11a6e412017-09-04 14:53:13 +0200334 return NULL;
Andrew Lunn788a4d52014-02-04 18:33:12 +0100335}
336
Kamil Debskib5d682f2014-03-06 12:16:47 +0100337static inline struct phy *devm_of_phy_get(struct device *dev,
338 struct device_node *np,
339 const char *con_id)
340{
341 return ERR_PTR(-ENOSYS);
342}
343
Arun Ramamurthy6be109b2015-04-22 16:04:11 -0700344static inline struct phy *devm_of_phy_get_by_index(struct device *dev,
345 struct device_node *np,
346 int index)
347{
348 return ERR_PTR(-ENOSYS);
349}
350
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530351static inline void phy_put(struct phy *phy)
352{
353}
354
355static inline void devm_phy_put(struct device *dev, struct phy *phy)
356{
357}
358
Kamil Debski0b3f3b22014-03-06 12:16:46 +0100359static inline struct phy *of_phy_get(struct device_node *np, const char *con_id)
360{
361 return ERR_PTR(-ENOSYS);
362}
363
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530364static inline struct phy *of_phy_simple_xlate(struct device *dev,
365 struct of_phandle_args *args)
366{
367 return ERR_PTR(-ENOSYS);
368}
369
370static inline struct phy *phy_create(struct device *dev,
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530371 struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200372 const struct phy_ops *ops)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530373{
374 return ERR_PTR(-ENOSYS);
375}
376
377static inline struct phy *devm_phy_create(struct device *dev,
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530378 struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200379 const struct phy_ops *ops)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530380{
381 return ERR_PTR(-ENOSYS);
382}
383
384static inline void phy_destroy(struct phy *phy)
385{
386}
387
388static inline void devm_phy_destroy(struct device *dev, struct phy *phy)
389{
390}
391
392static inline struct phy_provider *__of_phy_provider_register(
Thierry Reding1140f7c2016-04-05 17:17:34 +0200393 struct device *dev, struct device_node *children, struct module *owner,
394 struct phy * (*of_xlate)(struct device *dev,
395 struct of_phandle_args *args))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530396{
397 return ERR_PTR(-ENOSYS);
398}
399
400static inline struct phy_provider *__devm_of_phy_provider_register(struct device
Thierry Reding1140f7c2016-04-05 17:17:34 +0200401 *dev, struct device_node *children, struct module *owner,
402 struct phy * (*of_xlate)(struct device *dev,
403 struct of_phandle_args *args))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530404{
405 return ERR_PTR(-ENOSYS);
406}
407
408static inline void of_phy_provider_unregister(struct phy_provider *phy_provider)
409{
410}
411
412static inline void devm_of_phy_provider_unregister(struct device *dev,
413 struct phy_provider *phy_provider)
414{
415}
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200416static inline int
417phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id)
418{
419 return 0;
420}
421static inline void phy_remove_lookup(struct phy *phy, const char *con_id,
422 const char *dev_id) { }
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530423#endif
424
425#endif /* __DRIVERS_PHY_H */