blob: f67810f8f21b1e6468af6c61e044923c005e0da4 [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
Felipe Balbie9a20172009-12-17 13:01:36 +020012#include <linux/notifier.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/* OTG defines lots of enumeration states before device reset */
15enum usb_otg_state {
16 OTG_STATE_UNDEFINED = 0,
17
18 /* single-role peripheral, and dual-role default-b */
19 OTG_STATE_B_IDLE,
20 OTG_STATE_B_SRP_INIT,
21 OTG_STATE_B_PERIPHERAL,
22
23 /* extra dual-role default-b states */
24 OTG_STATE_B_WAIT_ACON,
25 OTG_STATE_B_HOST,
26
27 /* dual-role default-a */
28 OTG_STATE_A_IDLE,
29 OTG_STATE_A_WAIT_VRISE,
30 OTG_STATE_A_WAIT_BCON,
31 OTG_STATE_A_HOST,
32 OTG_STATE_A_SUSPEND,
33 OTG_STATE_A_PERIPHERAL,
34 OTG_STATE_A_WAIT_VFALL,
35 OTG_STATE_A_VBUS_ERR,
36};
37
Heikki Krogerusde07e182012-02-13 13:24:03 +020038enum usb_phy_events {
Felipe Balbie9a20172009-12-17 13:01:36 +020039 USB_EVENT_NONE, /* no events or cable disconnected */
40 USB_EVENT_VBUS, /* vbus valid event */
41 USB_EVENT_ID, /* id was grounded */
42 USB_EVENT_CHARGER, /* usb dedicated charger */
43 USB_EVENT_ENUMERATED, /* gadget driver enumerated */
44};
45
Heikki Krogerus86753812012-02-13 13:24:02 +020046struct usb_phy;
Daniel Mack91c8a5a2009-10-15 17:09:34 +030047
48/* for transceivers connected thru an ULPI interface, the user must
49 * provide access ops
50 */
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020051struct usb_phy_io_ops {
Heikki Krogerus86753812012-02-13 13:24:02 +020052 int (*read)(struct usb_phy *x, u32 reg);
53 int (*write)(struct usb_phy *x, u32 val, u32 reg);
Daniel Mack91c8a5a2009-10-15 17:09:34 +030054};
55
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020056struct usb_otg {
57 u8 default_a;
58
59 struct usb_phy *phy;
60 struct usb_bus *host;
61 struct usb_gadget *gadget;
62
63 /* bind/unbind the host controller */
64 int (*set_host)(struct usb_otg *otg, struct usb_bus *host);
65
66 /* bind/unbind the peripheral controller */
67 int (*set_peripheral)(struct usb_otg *otg,
68 struct usb_gadget *gadget);
69
70 /* effective for A-peripheral, ignored for B devices */
71 int (*set_vbus)(struct usb_otg *otg, bool enabled);
72
73 /* for B devices only: start session with A-Host */
74 int (*start_srp)(struct usb_otg *otg);
75
76 /* start or continue HNP role switch */
77 int (*start_hnp)(struct usb_otg *otg);
78
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * the otg driver needs to interact with both device side and host side
83 * usb controllers. it decides which controller is active at a given
84 * moment, using the transceiver, ID signal, HNP and sometimes static
85 * configuration information (including "board isn't wired for otg").
86 */
Heikki Krogerus86753812012-02-13 13:24:02 +020087struct usb_phy {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 struct device *dev;
89 const char *label;
Daniel Mack91c8a5a2009-10-15 17:09:34 +030090 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 enum usb_otg_state state;
Heikki Krogerusde07e182012-02-13 13:24:03 +020093 enum usb_phy_events last_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020095 struct usb_otg *otg;
96
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +020097 struct usb_phy_io_ops *io_ops;
98 void __iomem *io_priv;
Daniel Mack91c8a5a2009-10-15 17:09:34 +030099
Heikki Krogerusde07e182012-02-13 13:24:03 +0200100 /* for notification of usb_phy_events */
Felipe Balbicccad6d2010-09-29 10:55:49 +0300101 struct atomic_notifier_head notifier;
Felipe Balbie9a20172009-12-17 13:01:36 +0200102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* to pass extra port status to the root hub */
104 u16 port_status;
105 u16 port_change;
106
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300107 /* initialize/shutdown the OTG controller */
Heikki Krogerus86753812012-02-13 13:24:02 +0200108 int (*init)(struct usb_phy *x);
109 void (*shutdown)(struct usb_phy *x);
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* effective for B devices, ignored for A-peripheral */
Heikki Krogerus86753812012-02-13 13:24:02 +0200112 int (*set_power)(struct usb_phy *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned mA);
114
Juha Yrj?l?4e671852005-10-16 15:47:04 -0700115 /* for non-OTG B devices: set transceiver into suspend mode */
Heikki Krogerus86753812012-02-13 13:24:02 +0200116 int (*set_suspend)(struct usb_phy *x,
Juha Yrj?l?4e671852005-10-16 15:47:04 -0700117 int suspend);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
121
122/* for board-specific init logic */
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200123extern int usb_set_transceiver(struct usb_phy *);
David Brownellcc835e32009-03-31 12:28:31 -0700124
Guennadi Liakhovetski352a3372010-12-09 22:46:29 +0100125#if defined(CONFIG_NOP_USB_XCEIV) || (defined(CONFIG_NOP_USB_XCEIV_MODULE) && defined(MODULE))
David Brownellcc835e32009-03-31 12:28:31 -0700126/* sometimes transceivers are accessed only through e.g. ULPI */
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530127extern void usb_nop_xceiv_register(void);
128extern void usb_nop_xceiv_unregister(void);
Maulik Mankad224e1542010-02-17 14:09:29 -0800129#else
130static inline void usb_nop_xceiv_register(void)
131{
132}
133
134static inline void usb_nop_xceiv_unregister(void)
135{
136}
137#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300139/* helpers for direct access thru low-level io interface */
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200140static inline int usb_phy_io_read(struct usb_phy *x, u32 reg)
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300141{
Heikki Krogerus86753812012-02-13 13:24:02 +0200142 if (x->io_ops && x->io_ops->read)
143 return x->io_ops->read(x, reg);
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300144
145 return -EINVAL;
146}
147
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200148static inline int usb_phy_io_write(struct usb_phy *x, u32 val, u32 reg)
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300149{
Heikki Krogerus86753812012-02-13 13:24:02 +0200150 if (x->io_ops && x->io_ops->write)
151 return x->io_ops->write(x, val, reg);
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300152
153 return -EINVAL;
154}
155
156static inline int
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200157usb_phy_init(struct usb_phy *x)
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300158{
Heikki Krogerus86753812012-02-13 13:24:02 +0200159 if (x->init)
160 return x->init(x);
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300161
162 return 0;
163}
164
165static inline void
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200166usb_phy_shutdown(struct usb_phy *x)
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300167{
Heikki Krogerus86753812012-02-13 13:24:02 +0200168 if (x->shutdown)
169 x->shutdown(x);
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* for usb host and peripheral controller drivers */
Grazvydas Ignotas748eee02010-09-27 15:17:18 +0300173#ifdef CONFIG_USB_OTG_UTILS
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200174extern struct usb_phy *usb_get_transceiver(void);
175extern void usb_put_transceiver(struct usb_phy *);
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200176extern const char *otg_state_string(enum usb_otg_state state);
Grazvydas Ignotas748eee02010-09-27 15:17:18 +0300177#else
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200178static inline struct usb_phy *usb_get_transceiver(void)
Grazvydas Ignotas748eee02010-09-27 15:17:18 +0300179{
180 return NULL;
181}
182
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200183static inline void usb_put_transceiver(struct usb_phy *x)
Grazvydas Ignotas748eee02010-09-27 15:17:18 +0300184{
185}
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200186
187static inline const char *otg_state_string(enum usb_otg_state state)
188{
189 return NULL;
190}
Grazvydas Ignotas748eee02010-09-27 15:17:18 +0300191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800193/* Context: can sleep */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200195otg_start_hnp(struct usb_otg *otg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200197 if (otg && otg->start_hnp)
198 return otg->start_hnp(otg);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200199
Heikki Krogerus136ced82012-02-13 13:24:19 +0200200 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300203/* Context: can sleep */
204static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200205otg_set_vbus(struct usb_otg *otg, bool enabled)
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300206{
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200207 if (otg && otg->set_vbus)
208 return otg->set_vbus(otg, enabled);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200209
Heikki Krogerus136ced82012-02-13 13:24:19 +0200210 return -ENOTSUPP;
Daniel Mack91c8a5a2009-10-15 17:09:34 +0300211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/* for HCDs */
214static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200215otg_set_host(struct usb_otg *otg, struct usb_bus *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200217 if (otg && otg->set_host)
218 return otg->set_host(otg, host);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200219
Heikki Krogerus136ced82012-02-13 13:24:19 +0200220 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/* for usb peripheral controller drivers */
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800224
225/* Context: can sleep */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200227otg_set_peripheral(struct usb_otg *otg, struct usb_gadget *periph)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200229 if (otg && otg->set_peripheral)
230 return otg->set_peripheral(otg, periph);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200231
Heikki Krogerus136ced82012-02-13 13:24:19 +0200232 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static inline int
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200236usb_phy_set_power(struct usb_phy *x, unsigned mA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200238 if (x && x->set_power)
239 return x->set_power(x, mA);
240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800243/* Context: can sleep */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static inline int
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200245usb_phy_set_suspend(struct usb_phy *x, int suspend)
Juha Yrj?l?4e671852005-10-16 15:47:04 -0700246{
Heikki Krogerus86753812012-02-13 13:24:02 +0200247 if (x->set_suspend != NULL)
248 return x->set_suspend(x, suspend);
Juha Yrj?l?4e671852005-10-16 15:47:04 -0700249 else
250 return 0;
251}
252
253static inline int
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200254otg_start_srp(struct usb_otg *otg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200256 if (otg && otg->start_srp)
257 return otg->start_srp(otg);
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200258
Heikki Krogerus136ced82012-02-13 13:24:19 +0200259 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Felipe Balbie9a20172009-12-17 13:01:36 +0200262/* notifiers */
263static inline int
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200264usb_register_notifier(struct usb_phy *x, struct notifier_block *nb)
Felipe Balbie9a20172009-12-17 13:01:36 +0200265{
Heikki Krogerus86753812012-02-13 13:24:02 +0200266 return atomic_notifier_chain_register(&x->notifier, nb);
Felipe Balbie9a20172009-12-17 13:01:36 +0200267}
268
269static inline void
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200270usb_unregister_notifier(struct usb_phy *x, struct notifier_block *nb)
Felipe Balbie9a20172009-12-17 13:01:36 +0200271{
Heikki Krogerus86753812012-02-13 13:24:02 +0200272 atomic_notifier_chain_unregister(&x->notifier, nb);
Felipe Balbie9a20172009-12-17 13:01:36 +0200273}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275/* for OTG controller drivers (and maybe other stuff) */
276extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num);
Robert P. J. Daydda43a02008-03-07 13:45:32 -0500277
278#endif /* __LINUX_USB_OTG_H */