blob: 94df4fe6c6c0feb1b6a559a8719a8b7195a5d551 [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
12/* OTG defines lots of enumeration states before device reset */
13enum usb_otg_state {
14 OTG_STATE_UNDEFINED = 0,
15
16 /* single-role peripheral, and dual-role default-b */
17 OTG_STATE_B_IDLE,
18 OTG_STATE_B_SRP_INIT,
19 OTG_STATE_B_PERIPHERAL,
20
21 /* extra dual-role default-b states */
22 OTG_STATE_B_WAIT_ACON,
23 OTG_STATE_B_HOST,
24
25 /* dual-role default-a */
26 OTG_STATE_A_IDLE,
27 OTG_STATE_A_WAIT_VRISE,
28 OTG_STATE_A_WAIT_BCON,
29 OTG_STATE_A_HOST,
30 OTG_STATE_A_SUSPEND,
31 OTG_STATE_A_PERIPHERAL,
32 OTG_STATE_A_WAIT_VFALL,
33 OTG_STATE_A_VBUS_ERR,
34};
35
36/*
37 * the otg driver needs to interact with both device side and host side
38 * usb controllers. it decides which controller is active at a given
39 * moment, using the transceiver, ID signal, HNP and sometimes static
40 * configuration information (including "board isn't wired for otg").
41 */
42struct otg_transceiver {
43 struct device *dev;
44 const char *label;
45
46 u8 default_a;
47 enum usb_otg_state state;
48
49 struct usb_bus *host;
50 struct usb_gadget *gadget;
51
52 /* to pass extra port status to the root hub */
53 u16 port_status;
54 u16 port_change;
55
56 /* bind/unbind the host controller */
David Brownell3a16f7b2006-06-29 12:27:23 -070057 int (*set_host)(struct otg_transceiver *otg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct usb_bus *host);
59
60 /* bind/unbind the peripheral controller */
61 int (*set_peripheral)(struct otg_transceiver *otg,
62 struct usb_gadget *gadget);
63
64 /* effective for B devices, ignored for A-peripheral */
65 int (*set_power)(struct otg_transceiver *otg,
66 unsigned mA);
67
Juha Yrj?l?4e671852005-10-16 15:47:04 -070068 /* for non-OTG B devices: set transceiver into suspend mode */
69 int (*set_suspend)(struct otg_transceiver *otg,
70 int suspend);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* for B devices only: start session with A-Host */
73 int (*start_srp)(struct otg_transceiver *otg);
74
75 /* start or continue HNP role switch */
76 int (*start_hnp)(struct otg_transceiver *otg);
77
78};
79
80
81/* for board-specific init logic */
82extern int otg_set_transceiver(struct otg_transceiver *);
83
84
85/* for usb host and peripheral controller drivers */
86extern struct otg_transceiver *otg_get_transceiver(void);
Philipp Zabel68144e02008-11-24 12:01:17 -080087extern void otg_put_transceiver(struct otg_transceiver *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89static inline int
90otg_start_hnp(struct otg_transceiver *otg)
91{
92 return otg->start_hnp(otg);
93}
94
95
96/* for HCDs */
97static inline int
98otg_set_host(struct otg_transceiver *otg, struct usb_bus *host)
99{
100 return otg->set_host(otg, host);
101}
102
103
104/* for usb peripheral controller drivers */
105static inline int
106otg_set_peripheral(struct otg_transceiver *otg, struct usb_gadget *periph)
107{
108 return otg->set_peripheral(otg, periph);
109}
110
111static inline int
112otg_set_power(struct otg_transceiver *otg, unsigned mA)
113{
114 return otg->set_power(otg, mA);
115}
116
117static inline int
Juha Yrj?l?4e671852005-10-16 15:47:04 -0700118otg_set_suspend(struct otg_transceiver *otg, int suspend)
119{
120 if (otg->set_suspend != NULL)
121 return otg->set_suspend(otg, suspend);
122 else
123 return 0;
124}
125
126static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127otg_start_srp(struct otg_transceiver *otg)
128{
129 return otg->start_srp(otg);
130}
131
132
133/* for OTG controller drivers (and maybe other stuff) */
134extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num);
Robert P. J. Daydda43a02008-03-07 13:45:32 -0500135
136#endif /* __LINUX_USB_OTG_H */