blob: e8a5fe87c6bdeb0700310503defff73ee630864a [file] [log] [blame]
Greg Kroah-Hartman41dceed2008-01-30 15:21:33 -08001/* USB OTG (On The Go) defines */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Robert P. J. Daydda43a02008-03-07 13:45:32 -05003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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
Robert P. J. Daydda43a02008-03-07 13:45:32 -05009#ifndef __LINUX_USB_OTG_H
10#define __LINUX_USB_OTG_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Venu Byravarasude4217d2012-09-04 14:25:58 +053012#include <linux/usb/phy.h>
Felipe Balbie9a20172009-12-17 13:01:36 +020013
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020014struct usb_otg {
15 u8 default_a;
16
17 struct usb_phy *phy;
18 struct usb_bus *host;
19 struct usb_gadget *gadget;
20
21 /* bind/unbind the host controller */
22 int (*set_host)(struct usb_otg *otg, struct usb_bus *host);
23
24 /* bind/unbind the peripheral controller */
25 int (*set_peripheral)(struct usb_otg *otg,
26 struct usb_gadget *gadget);
27
28 /* effective for A-peripheral, ignored for B devices */
29 int (*set_vbus)(struct usb_otg *otg, bool enabled);
30
31 /* for B devices only: start session with A-Host */
32 int (*start_srp)(struct usb_otg *otg);
33
34 /* start or continue HNP role switch */
35 int (*start_hnp)(struct usb_otg *otg);
36
37};
38
Grazvydas Ignotas748eee02010-09-27 15:17:18 +030039#ifdef CONFIG_USB_OTG_UTILS
Anatolij Gustschin3df00452011-05-05 12:11:21 +020040extern const char *otg_state_string(enum usb_otg_state state);
Grazvydas Ignotas748eee02010-09-27 15:17:18 +030041#else
Anatolij Gustschin3df00452011-05-05 12:11:21 +020042static inline const char *otg_state_string(enum usb_otg_state state)
43{
44 return NULL;
45}
Grazvydas Ignotas748eee02010-09-27 15:17:18 +030046#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Robert Jarzmikc2344f12009-01-24 23:54:31 -080048/* Context: can sleep */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +020050otg_start_hnp(struct usb_otg *otg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Heikki Krogerus6e13c652012-02-13 13:24:20 +020052 if (otg && otg->start_hnp)
53 return otg->start_hnp(otg);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020054
Heikki Krogerus136ced82012-02-13 13:24:19 +020055 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Daniel Mack91c8a5a2009-10-15 17:09:34 +030058/* Context: can sleep */
59static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +020060otg_set_vbus(struct usb_otg *otg, bool enabled)
Daniel Mack91c8a5a2009-10-15 17:09:34 +030061{
Heikki Krogerus6e13c652012-02-13 13:24:20 +020062 if (otg && otg->set_vbus)
63 return otg->set_vbus(otg, enabled);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020064
Heikki Krogerus136ced82012-02-13 13:24:19 +020065 return -ENOTSUPP;
Daniel Mack91c8a5a2009-10-15 17:09:34 +030066}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* for HCDs */
69static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +020070otg_set_host(struct usb_otg *otg, struct usb_bus *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Heikki Krogerus6e13c652012-02-13 13:24:20 +020072 if (otg && otg->set_host)
73 return otg->set_host(otg, host);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020074
Heikki Krogerus136ced82012-02-13 13:24:19 +020075 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* for usb peripheral controller drivers */
Robert Jarzmikc2344f12009-01-24 23:54:31 -080079
80/* Context: can sleep */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +020082otg_set_peripheral(struct usb_otg *otg, struct usb_gadget *periph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Heikki Krogerus6e13c652012-02-13 13:24:20 +020084 if (otg && otg->set_peripheral)
85 return otg->set_peripheral(otg, periph);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020086
Heikki Krogerus136ced82012-02-13 13:24:19 +020087 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +020091otg_start_srp(struct usb_otg *otg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Heikki Krogerus6e13c652012-02-13 13:24:20 +020093 if (otg && otg->start_srp)
94 return otg->start_srp(otg);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020095
Heikki Krogerus136ced82012-02-13 13:24:19 +020096 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* for OTG controller drivers (and maybe other stuff) */
100extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num);
Robert P. J. Daydda43a02008-03-07 13:45:32 -0500101
102#endif /* __LINUX_USB_OTG_H */