blob: b17e7709c5dc5218b6a9158f66eab900d4d9013f [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,
Quentin Schulzc2a90022018-10-04 14:22:03 +020040 PHY_MODE_QSGMII,
Antoine Tenart5c23f2d2017-08-30 10:29:12 +020041 PHY_MODE_10GKR,
Vivek Gautamfd3e4c92017-10-12 11:49:33 +053042 PHY_MODE_UFS_HS_A,
43 PHY_MODE_UFS_HS_B,
Quentin Schulzc2a90022018-10-04 14:22:03 +020044 PHY_MODE_PCIE,
David Lechner300eb012016-05-09 18:39:59 -050045};
46
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053047/**
48 * struct phy_ops - set of function pointers for performing phy operations
49 * @init: operation to be performed for initializing phy
50 * @exit: operation to be performed while exiting
51 * @power_on: powering on the phy
52 * @power_off: powering off the phy
David Lechner300eb012016-05-09 18:39:59 -050053 * @set_mode: set the mode of the phy
Randy Licac18ec2016-09-10 02:59:37 +080054 * @reset: resetting the phy
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +020055 * @calibrate: calibrate the phy
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053056 * @owner: the module owner containing the ops
57 */
58struct phy_ops {
59 int (*init)(struct phy *phy);
60 int (*exit)(struct phy *phy);
61 int (*power_on)(struct phy *phy);
62 int (*power_off)(struct phy *phy);
Grygorii Strashko79a5a182018-11-19 19:24:20 -060063 int (*set_mode)(struct phy *phy, enum phy_mode mode, int submode);
Randy Licac18ec2016-09-10 02:59:37 +080064 int (*reset)(struct phy *phy);
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +020065 int (*calibrate)(struct phy *phy);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053066 struct module *owner;
67};
68
69/**
Matt Porter8feed342013-12-19 09:23:02 -050070 * struct phy_attrs - represents phy attributes
71 * @bus_width: Data path width implemented by PHY
72 */
73struct phy_attrs {
74 u32 bus_width;
Manu Gautam3b3cd242018-01-16 16:27:09 +053075 enum phy_mode mode;
Matt Porter8feed342013-12-19 09:23:02 -050076};
77
78/**
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053079 * struct phy - represents the phy device
80 * @dev: phy device
81 * @id: id of the phy device
82 * @ops: function pointers for performing phy operations
83 * @init_data: list of PHY consumers (non-dt only)
84 * @mutex: mutex to protect phy_ops
85 * @init_count: used to protect when the PHY is used by multiple consumers
86 * @power_count: used to protect when the PHY is used by multiple consumers
Dov Levenglickbecaf172018-02-02 18:34:50 +020087 * @attrs: used to specify PHY specific attributes
88 * @pwr: power regulator associated with the phy
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053089 */
90struct phy {
91 struct device dev;
92 int id;
93 const struct phy_ops *ops;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053094 struct mutex mutex;
95 int init_count;
96 int power_count;
Matt Porter8feed342013-12-19 09:23:02 -050097 struct phy_attrs attrs;
Roger Quadros3be88122014-07-04 12:55:45 +030098 struct regulator *pwr;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053099};
100
101/**
102 * struct phy_provider - represents the phy provider
103 * @dev: phy provider device
Dov Levenglickbecaf172018-02-02 18:34:50 +0200104 * @children: can be used to override the default (dev->of_node) child node
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530105 * @owner: the module owner having of_xlate
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530106 * @list: to maintain a linked list of PHY providers
Dov Levenglickbecaf172018-02-02 18:34:50 +0200107 * @of_xlate: function pointer to obtain phy instance from phy pointer
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530108 */
109struct phy_provider {
110 struct device *dev;
Thierry Reding1140f7c2016-04-05 17:17:34 +0200111 struct device_node *children;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530112 struct module *owner;
113 struct list_head list;
114 struct phy * (*of_xlate)(struct device *dev,
115 struct of_phandle_args *args);
116};
117
Dov Levenglickbecaf172018-02-02 18:34:50 +0200118/**
119 * struct phy_lookup - PHY association in list of phys managed by the phy driver
120 * @node: list node
121 * @dev_id: the device of the association
122 * @con_id: connection ID string on device
123 * @phy: the phy of the association
124 */
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200125struct phy_lookup {
126 struct list_head node;
127 const char *dev_id;
128 const char *con_id;
129 struct phy *phy;
130};
131
Heikki Krogerusd4510572014-11-19 17:28:17 +0200132#define to_phy(a) (container_of((a), struct phy, dev))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530133
134#define of_phy_provider_register(dev, xlate) \
Thierry Reding1140f7c2016-04-05 17:17:34 +0200135 __of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530136
137#define devm_of_phy_provider_register(dev, xlate) \
Thierry Reding1140f7c2016-04-05 17:17:34 +0200138 __devm_of_phy_provider_register((dev), NULL, THIS_MODULE, (xlate))
139
140#define of_phy_provider_register_full(dev, children, xlate) \
141 __of_phy_provider_register(dev, children, THIS_MODULE, xlate)
142
143#define devm_of_phy_provider_register_full(dev, children, xlate) \
144 __devm_of_phy_provider_register(dev, children, THIS_MODULE, xlate)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530145
146static inline void phy_set_drvdata(struct phy *phy, void *data)
147{
148 dev_set_drvdata(&phy->dev, data);
149}
150
151static inline void *phy_get_drvdata(struct phy *phy)
152{
153 return dev_get_drvdata(&phy->dev);
154}
155
156#if IS_ENABLED(CONFIG_GENERIC_PHY)
157int phy_pm_runtime_get(struct phy *phy);
158int phy_pm_runtime_get_sync(struct phy *phy);
159int phy_pm_runtime_put(struct phy *phy);
160int phy_pm_runtime_put_sync(struct phy *phy);
161void phy_pm_runtime_allow(struct phy *phy);
162void phy_pm_runtime_forbid(struct phy *phy);
163int phy_init(struct phy *phy);
164int phy_exit(struct phy *phy);
165int phy_power_on(struct phy *phy);
166int phy_power_off(struct phy *phy);
Grygorii Strashko79a5a182018-11-19 19:24:20 -0600167int phy_set_mode_ext(struct phy *phy, enum phy_mode mode, int submode);
168#define phy_set_mode(phy, mode) \
169 phy_set_mode_ext(phy, mode, 0)
170
Manu Gautam3b3cd242018-01-16 16:27:09 +0530171static inline enum phy_mode phy_get_mode(struct phy *phy)
172{
173 return phy->attrs.mode;
174}
Randy Licac18ec2016-09-10 02:59:37 +0800175int phy_reset(struct phy *phy);
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +0200176int phy_calibrate(struct phy *phy);
Matt Porter8feed342013-12-19 09:23:02 -0500177static inline int phy_get_bus_width(struct phy *phy)
178{
179 return phy->attrs.bus_width;
180}
181static inline void phy_set_bus_width(struct phy *phy, int bus_width)
182{
183 phy->attrs.bus_width = bus_width;
184}
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530185struct phy *phy_get(struct device *dev, const char *string);
Andrew Lunn788a4d52014-02-04 18:33:12 +0100186struct phy *phy_optional_get(struct device *dev, const char *string);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530187struct phy *devm_phy_get(struct device *dev, const char *string);
Andrew Lunn788a4d52014-02-04 18:33:12 +0100188struct phy *devm_phy_optional_get(struct device *dev, const char *string);
Kamil Debskib5d682f2014-03-06 12:16:47 +0100189struct phy *devm_of_phy_get(struct device *dev, struct device_node *np,
190 const char *con_id);
Arun Ramamurthy6be109b2015-04-22 16:04:11 -0700191struct phy *devm_of_phy_get_by_index(struct device *dev, struct device_node *np,
192 int index);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530193void phy_put(struct phy *phy);
194void devm_phy_put(struct device *dev, struct phy *phy);
Kamil Debski0b3f3b22014-03-06 12:16:46 +0100195struct phy *of_phy_get(struct device_node *np, const char *con_id);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530196struct phy *of_phy_simple_xlate(struct device *dev,
197 struct of_phandle_args *args);
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530198struct phy *phy_create(struct device *dev, struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200199 const struct phy_ops *ops);
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530200struct phy *devm_phy_create(struct device *dev, struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200201 const struct phy_ops *ops);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530202void phy_destroy(struct phy *phy);
203void devm_phy_destroy(struct device *dev, struct phy *phy);
204struct phy_provider *__of_phy_provider_register(struct device *dev,
Thierry Reding1140f7c2016-04-05 17:17:34 +0200205 struct device_node *children, struct module *owner,
206 struct phy * (*of_xlate)(struct device *dev,
207 struct of_phandle_args *args));
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530208struct phy_provider *__devm_of_phy_provider_register(struct device *dev,
Thierry Reding1140f7c2016-04-05 17:17:34 +0200209 struct device_node *children, struct module *owner,
210 struct phy * (*of_xlate)(struct device *dev,
211 struct of_phandle_args *args));
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530212void of_phy_provider_unregister(struct phy_provider *phy_provider);
213void devm_of_phy_provider_unregister(struct device *dev,
214 struct phy_provider *phy_provider);
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200215int phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id);
216void phy_remove_lookup(struct phy *phy, const char *con_id, const char *dev_id);
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530217#else
218static inline int phy_pm_runtime_get(struct phy *phy)
219{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530220 if (!phy)
221 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530222 return -ENOSYS;
223}
224
225static inline int phy_pm_runtime_get_sync(struct phy *phy)
226{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530227 if (!phy)
228 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530229 return -ENOSYS;
230}
231
232static inline int phy_pm_runtime_put(struct phy *phy)
233{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530234 if (!phy)
235 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530236 return -ENOSYS;
237}
238
239static inline int phy_pm_runtime_put_sync(struct phy *phy)
240{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530241 if (!phy)
242 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530243 return -ENOSYS;
244}
245
246static inline void phy_pm_runtime_allow(struct phy *phy)
247{
248 return;
249}
250
251static inline void phy_pm_runtime_forbid(struct phy *phy)
252{
253 return;
254}
255
256static inline int phy_init(struct phy *phy)
257{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530258 if (!phy)
259 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530260 return -ENOSYS;
261}
262
263static inline int phy_exit(struct phy *phy)
264{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530265 if (!phy)
266 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530267 return -ENOSYS;
268}
269
270static inline int phy_power_on(struct phy *phy)
271{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530272 if (!phy)
273 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530274 return -ENOSYS;
275}
276
277static inline int phy_power_off(struct phy *phy)
278{
Grygorii Strashko2b977892014-04-19 08:51:44 +0530279 if (!phy)
280 return 0;
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530281 return -ENOSYS;
282}
283
Grygorii Strashko79a5a182018-11-19 19:24:20 -0600284static inline int phy_set_mode_ext(struct phy *phy, enum phy_mode mode,
285 int submode)
David Lechner300eb012016-05-09 18:39:59 -0500286{
287 if (!phy)
288 return 0;
289 return -ENOSYS;
290}
291
Grygorii Strashko79a5a182018-11-19 19:24:20 -0600292#define phy_set_mode(phy, mode) \
293 phy_set_mode_ext(phy, mode, 0)
294
Manu Gautam3b3cd242018-01-16 16:27:09 +0530295static inline enum phy_mode phy_get_mode(struct phy *phy)
296{
297 return PHY_MODE_INVALID;
298}
299
Randy Li98430c72016-10-25 22:15:34 +0800300static inline int phy_reset(struct phy *phy)
301{
302 if (!phy)
303 return 0;
304 return -ENOSYS;
305}
306
Andrzej Pietrasiewicz36914112017-10-09 14:00:50 +0200307static inline int phy_calibrate(struct phy *phy)
308{
309 if (!phy)
310 return 0;
311 return -ENOSYS;
312}
313
Matt Porter8feed342013-12-19 09:23:02 -0500314static inline int phy_get_bus_width(struct phy *phy)
315{
316 return -ENOSYS;
317}
318
319static inline void phy_set_bus_width(struct phy *phy, int bus_width)
320{
321 return;
322}
323
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530324static inline struct phy *phy_get(struct device *dev, const char *string)
325{
326 return ERR_PTR(-ENOSYS);
327}
328
Andrew Lunn788a4d52014-02-04 18:33:12 +0100329static inline struct phy *phy_optional_get(struct device *dev,
330 const char *string)
331{
332 return ERR_PTR(-ENOSYS);
333}
334
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530335static inline struct phy *devm_phy_get(struct device *dev, const char *string)
336{
337 return ERR_PTR(-ENOSYS);
338}
339
Andrew Lunn788a4d52014-02-04 18:33:12 +0100340static inline struct phy *devm_phy_optional_get(struct device *dev,
341 const char *string)
342{
Maxime Ripard11a6e412017-09-04 14:53:13 +0200343 return NULL;
Andrew Lunn788a4d52014-02-04 18:33:12 +0100344}
345
Kamil Debskib5d682f2014-03-06 12:16:47 +0100346static inline struct phy *devm_of_phy_get(struct device *dev,
347 struct device_node *np,
348 const char *con_id)
349{
350 return ERR_PTR(-ENOSYS);
351}
352
Arun Ramamurthy6be109b2015-04-22 16:04:11 -0700353static inline struct phy *devm_of_phy_get_by_index(struct device *dev,
354 struct device_node *np,
355 int index)
356{
357 return ERR_PTR(-ENOSYS);
358}
359
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530360static inline void phy_put(struct phy *phy)
361{
362}
363
364static inline void devm_phy_put(struct device *dev, struct phy *phy)
365{
366}
367
Kamil Debski0b3f3b22014-03-06 12:16:46 +0100368static inline struct phy *of_phy_get(struct device_node *np, const char *con_id)
369{
370 return ERR_PTR(-ENOSYS);
371}
372
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530373static inline struct phy *of_phy_simple_xlate(struct device *dev,
374 struct of_phandle_args *args)
375{
376 return ERR_PTR(-ENOSYS);
377}
378
379static inline struct phy *phy_create(struct device *dev,
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530380 struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200381 const struct phy_ops *ops)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530382{
383 return ERR_PTR(-ENOSYS);
384}
385
386static inline struct phy *devm_phy_create(struct device *dev,
Kishon Vijay Abraham If0ed8172014-07-14 15:55:02 +0530387 struct device_node *node,
Heikki Krogerusdbc98632014-11-19 17:28:21 +0200388 const struct phy_ops *ops)
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530389{
390 return ERR_PTR(-ENOSYS);
391}
392
393static inline void phy_destroy(struct phy *phy)
394{
395}
396
397static inline void devm_phy_destroy(struct device *dev, struct phy *phy)
398{
399}
400
401static inline struct phy_provider *__of_phy_provider_register(
Thierry Reding1140f7c2016-04-05 17:17:34 +0200402 struct device *dev, struct device_node *children, struct module *owner,
403 struct phy * (*of_xlate)(struct device *dev,
404 struct of_phandle_args *args))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530405{
406 return ERR_PTR(-ENOSYS);
407}
408
409static inline struct phy_provider *__devm_of_phy_provider_register(struct device
Thierry Reding1140f7c2016-04-05 17:17:34 +0200410 *dev, struct device_node *children, struct module *owner,
411 struct phy * (*of_xlate)(struct device *dev,
412 struct of_phandle_args *args))
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530413{
414 return ERR_PTR(-ENOSYS);
415}
416
417static inline void of_phy_provider_unregister(struct phy_provider *phy_provider)
418{
419}
420
421static inline void devm_of_phy_provider_unregister(struct device *dev,
422 struct phy_provider *phy_provider)
423{
424}
Heikki Krogerusb7bc15b2014-11-19 17:28:18 +0200425static inline int
426phy_create_lookup(struct phy *phy, const char *con_id, const char *dev_id)
427{
428 return 0;
429}
430static inline void phy_remove_lookup(struct phy *phy, const char *con_id,
431 const char *dev_id) { }
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530432#endif
433
434#endif /* __DRIVERS_PHY_H */