blob: 353053a33f21e11af2e11a52fdebf535cfaeaab4 [file] [log] [blame]
Venu Byravarasude4217d2012-09-04 14:25:58 +05301/* USB OTG (On The Go) defines */
2/*
3 *
4 * These APIs may be used between USB controllers. USB device drivers
5 * (for either host or peripheral roles) don't use these calls; they
6 * continue to use just usb_device and usb_gadget.
7 */
8
9#ifndef __LINUX_USB_PHY_H
10#define __LINUX_USB_PHY_H
11
12#include <linux/notifier.h>
Peter Chenac965112012-11-09 09:44:44 +080013#include <linux/usb.h>
Venu Byravarasude4217d2012-09-04 14:25:58 +053014
Michael Grzeschik1c9af652013-06-13 17:59:55 +030015enum usb_phy_interface {
16 USBPHY_INTERFACE_MODE_UNKNOWN,
17 USBPHY_INTERFACE_MODE_UTMI,
18 USBPHY_INTERFACE_MODE_UTMIW,
19 USBPHY_INTERFACE_MODE_ULPI,
20 USBPHY_INTERFACE_MODE_SERIAL,
21 USBPHY_INTERFACE_MODE_HSIC,
22};
23
Venu Byravarasude4217d2012-09-04 14:25:58 +053024enum usb_phy_events {
25 USB_EVENT_NONE, /* no events or cable disconnected */
26 USB_EVENT_VBUS, /* vbus valid event */
27 USB_EVENT_ID, /* id was grounded */
28 USB_EVENT_CHARGER, /* usb dedicated charger */
29 USB_EVENT_ENUMERATED, /* gadget driver enumerated */
30};
31
32/* associate a type with PHY */
33enum usb_phy_type {
34 USB_PHY_TYPE_UNDEFINED,
35 USB_PHY_TYPE_USB2,
36 USB_PHY_TYPE_USB3,
37};
38
Venu Byravarasua4c3dde2012-09-06 10:42:15 +053039/* OTG defines lots of enumeration states before device reset */
40enum usb_otg_state {
41 OTG_STATE_UNDEFINED = 0,
42
43 /* single-role peripheral, and dual-role default-b */
44 OTG_STATE_B_IDLE,
45 OTG_STATE_B_SRP_INIT,
46 OTG_STATE_B_PERIPHERAL,
47
48 /* extra dual-role default-b states */
49 OTG_STATE_B_WAIT_ACON,
50 OTG_STATE_B_HOST,
51
52 /* dual-role default-a */
53 OTG_STATE_A_IDLE,
54 OTG_STATE_A_WAIT_VRISE,
55 OTG_STATE_A_WAIT_BCON,
56 OTG_STATE_A_HOST,
57 OTG_STATE_A_SUSPEND,
58 OTG_STATE_A_PERIPHERAL,
59 OTG_STATE_A_WAIT_VFALL,
60 OTG_STATE_A_VBUS_ERR,
61};
62
Venu Byravarasude4217d2012-09-04 14:25:58 +053063struct usb_phy;
64struct usb_otg;
65
66/* for transceivers connected thru an ULPI interface, the user must
67 * provide access ops
68 */
69struct usb_phy_io_ops {
70 int (*read)(struct usb_phy *x, u32 reg);
71 int (*write)(struct usb_phy *x, u32 val, u32 reg);
72};
73
74struct usb_phy {
75 struct device *dev;
76 const char *label;
77 unsigned int flags;
78
79 enum usb_phy_type type;
Venu Byravarasua4c3dde2012-09-06 10:42:15 +053080 enum usb_otg_state state;
Venu Byravarasude4217d2012-09-04 14:25:58 +053081 enum usb_phy_events last_event;
82
83 struct usb_otg *otg;
84
85 struct device *io_dev;
86 struct usb_phy_io_ops *io_ops;
87 void __iomem *io_priv;
88
89 /* for notification of usb_phy_events */
90 struct atomic_notifier_head notifier;
91
92 /* to pass extra port status to the root hub */
93 u16 port_status;
94 u16 port_change;
95
96 /* to support controllers that have multiple transceivers */
97 struct list_head head;
98
99 /* initialize/shutdown the OTG controller */
100 int (*init)(struct usb_phy *x);
101 void (*shutdown)(struct usb_phy *x);
102
Felipe Balbib7742122013-03-08 13:22:58 +0200103 /* enable/disable VBUS */
104 int (*set_vbus)(struct usb_phy *x, int on);
105
Venu Byravarasude4217d2012-09-04 14:25:58 +0530106 /* effective for B devices, ignored for A-peripheral */
107 int (*set_power)(struct usb_phy *x,
108 unsigned mA);
109
110 /* for non-OTG B devices: set transceiver into suspend mode */
111 int (*set_suspend)(struct usb_phy *x,
112 int suspend);
113
Peter Chen57bf9b02014-02-24 10:21:01 +0800114 /*
115 * Set wakeup enable for PHY, in that case, the PHY can be
116 * woken up from suspend status due to external events,
117 * like vbus change, dp/dm change and id.
118 */
119 int (*set_wakeup)(struct usb_phy *x, bool enabled);
120
Venu Byravarasude4217d2012-09-04 14:25:58 +0530121 /* notify phy connect status change */
Peter Chenac965112012-11-09 09:44:44 +0800122 int (*notify_connect)(struct usb_phy *x,
123 enum usb_device_speed speed);
124 int (*notify_disconnect)(struct usb_phy *x,
125 enum usb_device_speed speed);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530126};
127
Kishon Vijay Abraham Ib4a83e42013-01-25 08:03:21 +0530128/**
129 * struct usb_phy_bind - represent the binding for the phy
130 * @dev_name: the device name of the device that will bind to the phy
131 * @phy_dev_name: the device name of the phy
132 * @index: used if a single controller uses multiple phys
133 * @phy: reference to the phy
134 * @list: to maintain a linked list of the binding information
135 */
136struct usb_phy_bind {
137 const char *dev_name;
138 const char *phy_dev_name;
139 u8 index;
140 struct usb_phy *phy;
141 struct list_head list;
142};
Venu Byravarasude4217d2012-09-04 14:25:58 +0530143
144/* for board-specific init logic */
145extern int usb_add_phy(struct usb_phy *, enum usb_phy_type type);
Kishon Vijay Abraham I0fa4fab2013-01-25 08:03:22 +0530146extern int usb_add_phy_dev(struct usb_phy *);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530147extern void usb_remove_phy(struct usb_phy *);
148
149/* helpers for direct access thru low-level io interface */
150static inline int usb_phy_io_read(struct usb_phy *x, u32 reg)
151{
Felipe Balbi410aee72013-06-30 15:27:26 +0300152 if (x && x->io_ops && x->io_ops->read)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530153 return x->io_ops->read(x, reg);
154
155 return -EINVAL;
156}
157
158static inline int usb_phy_io_write(struct usb_phy *x, u32 val, u32 reg)
159{
Felipe Balbi410aee72013-06-30 15:27:26 +0300160 if (x && x->io_ops && x->io_ops->write)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530161 return x->io_ops->write(x, val, reg);
162
163 return -EINVAL;
164}
165
166static inline int
167usb_phy_init(struct usb_phy *x)
168{
Felipe Balbi410aee72013-06-30 15:27:26 +0300169 if (x && x->init)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530170 return x->init(x);
171
172 return 0;
173}
174
175static inline void
176usb_phy_shutdown(struct usb_phy *x)
177{
Felipe Balbi410aee72013-06-30 15:27:26 +0300178 if (x && x->shutdown)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530179 x->shutdown(x);
180}
181
Felipe Balbib7742122013-03-08 13:22:58 +0200182static inline int
183usb_phy_vbus_on(struct usb_phy *x)
184{
Felipe Balbi410aee72013-06-30 15:27:26 +0300185 if (!x || !x->set_vbus)
Felipe Balbib7742122013-03-08 13:22:58 +0200186 return 0;
187
188 return x->set_vbus(x, true);
189}
190
191static inline int
192usb_phy_vbus_off(struct usb_phy *x)
193{
Felipe Balbi410aee72013-06-30 15:27:26 +0300194 if (!x || !x->set_vbus)
Felipe Balbib7742122013-03-08 13:22:58 +0200195 return 0;
196
197 return x->set_vbus(x, false);
198}
199
Venu Byravarasude4217d2012-09-04 14:25:58 +0530200/* for usb host and peripheral controller drivers */
Felipe Balbiedc7cb22013-03-07 11:13:43 +0200201#if IS_ENABLED(CONFIG_USB_PHY)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530202extern struct usb_phy *usb_get_phy(enum usb_phy_type type);
203extern struct usb_phy *devm_usb_get_phy(struct device *dev,
204 enum usb_phy_type type);
Kishon Vijay Abraham I0fa4fab2013-01-25 08:03:22 +0530205extern struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index);
206extern struct usb_phy *devm_usb_get_phy_dev(struct device *dev, u8 index);
Kishon Vijay Abraham I5d3c28b2013-01-25 08:03:25 +0530207extern struct usb_phy *devm_usb_get_phy_by_phandle(struct device *dev,
208 const char *phandle, u8 index);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530209extern void usb_put_phy(struct usb_phy *);
210extern void devm_usb_put_phy(struct device *dev, struct usb_phy *x);
Kishon Vijay Abraham Ib4a83e42013-01-25 08:03:21 +0530211extern int usb_bind_phy(const char *dev_name, u8 index,
212 const char *phy_dev_name);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530213#else
214static inline struct usb_phy *usb_get_phy(enum usb_phy_type type)
215{
Felipe Balbib7fa5c22013-03-14 17:59:06 +0200216 return ERR_PTR(-ENXIO);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530217}
218
219static inline struct usb_phy *devm_usb_get_phy(struct device *dev,
220 enum usb_phy_type type)
221{
Felipe Balbib7fa5c22013-03-14 17:59:06 +0200222 return ERR_PTR(-ENXIO);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530223}
224
Kishon Vijay Abraham I0fa4fab2013-01-25 08:03:22 +0530225static inline struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index)
226{
Felipe Balbib7fa5c22013-03-14 17:59:06 +0200227 return ERR_PTR(-ENXIO);
Kishon Vijay Abraham I0fa4fab2013-01-25 08:03:22 +0530228}
229
230static inline struct usb_phy *devm_usb_get_phy_dev(struct device *dev, u8 index)
231{
Felipe Balbib7fa5c22013-03-14 17:59:06 +0200232 return ERR_PTR(-ENXIO);
Kishon Vijay Abraham I0fa4fab2013-01-25 08:03:22 +0530233}
234
Kishon Vijay Abraham I5d3c28b2013-01-25 08:03:25 +0530235static inline struct usb_phy *devm_usb_get_phy_by_phandle(struct device *dev,
236 const char *phandle, u8 index)
237{
Felipe Balbib7fa5c22013-03-14 17:59:06 +0200238 return ERR_PTR(-ENXIO);
Kishon Vijay Abraham I5d3c28b2013-01-25 08:03:25 +0530239}
240
Venu Byravarasude4217d2012-09-04 14:25:58 +0530241static inline void usb_put_phy(struct usb_phy *x)
242{
243}
244
245static inline void devm_usb_put_phy(struct device *dev, struct usb_phy *x)
246{
247}
248
Kishon Vijay Abraham Ib4a83e42013-01-25 08:03:21 +0530249static inline int usb_bind_phy(const char *dev_name, u8 index,
250 const char *phy_dev_name)
251{
252 return -EOPNOTSUPP;
253}
Venu Byravarasude4217d2012-09-04 14:25:58 +0530254#endif
255
256static inline int
257usb_phy_set_power(struct usb_phy *x, unsigned mA)
258{
259 if (x && x->set_power)
260 return x->set_power(x, mA);
261 return 0;
262}
263
264/* Context: can sleep */
265static inline int
266usb_phy_set_suspend(struct usb_phy *x, int suspend)
267{
Felipe Balbi410aee72013-06-30 15:27:26 +0300268 if (x && x->set_suspend != NULL)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530269 return x->set_suspend(x, suspend);
270 else
271 return 0;
272}
273
274static inline int
Peter Chen57bf9b02014-02-24 10:21:01 +0800275usb_phy_set_wakeup(struct usb_phy *x, bool enabled)
276{
277 if (x && x->set_wakeup)
278 return x->set_wakeup(x, enabled);
279 else
280 return 0;
281}
282
283static inline int
Peter Chenac965112012-11-09 09:44:44 +0800284usb_phy_notify_connect(struct usb_phy *x, enum usb_device_speed speed)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530285{
Felipe Balbi410aee72013-06-30 15:27:26 +0300286 if (x && x->notify_connect)
Peter Chenac965112012-11-09 09:44:44 +0800287 return x->notify_connect(x, speed);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530288 else
289 return 0;
290}
291
292static inline int
Peter Chenac965112012-11-09 09:44:44 +0800293usb_phy_notify_disconnect(struct usb_phy *x, enum usb_device_speed speed)
Venu Byravarasude4217d2012-09-04 14:25:58 +0530294{
Felipe Balbi410aee72013-06-30 15:27:26 +0300295 if (x && x->notify_disconnect)
Peter Chenac965112012-11-09 09:44:44 +0800296 return x->notify_disconnect(x, speed);
Venu Byravarasude4217d2012-09-04 14:25:58 +0530297 else
298 return 0;
299}
300
301/* notifiers */
302static inline int
303usb_register_notifier(struct usb_phy *x, struct notifier_block *nb)
304{
305 return atomic_notifier_chain_register(&x->notifier, nb);
306}
307
308static inline void
309usb_unregister_notifier(struct usb_phy *x, struct notifier_block *nb)
310{
311 atomic_notifier_chain_unregister(&x->notifier, nb);
312}
313
314static inline const char *usb_phy_type_string(enum usb_phy_type type)
315{
316 switch (type) {
317 case USB_PHY_TYPE_USB2:
318 return "USB2 PHY";
319 case USB_PHY_TYPE_USB3:
320 return "USB3 PHY";
321 default:
322 return "UNKNOWN PHY TYPE";
323 }
324}
325#endif /* __LINUX_USB_PHY_H */