1 /* USB OTG (On The Go) defines */
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.
9 #ifndef __LINUX_USB_OTG_H
10 #define __LINUX_USB_OTG_H
12 /* OTG defines lots of enumeration states before device reset */
14 OTG_STATE_UNDEFINED
= 0,
16 /* single-role peripheral, and dual-role default-b */
19 OTG_STATE_B_PERIPHERAL
,
21 /* extra dual-role default-b states */
22 OTG_STATE_B_WAIT_ACON
,
25 /* dual-role default-a */
27 OTG_STATE_A_WAIT_VRISE
,
28 OTG_STATE_A_WAIT_BCON
,
31 OTG_STATE_A_PERIPHERAL
,
32 OTG_STATE_A_WAIT_VFALL
,
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").
42 struct otg_transceiver
{
47 enum usb_otg_state state
;
50 struct usb_gadget
*gadget
;
52 /* to pass extra port status to the root hub */
56 /* bind/unbind the host controller */
57 int (*set_host
)(struct otg_transceiver
*otg
,
58 struct usb_bus
*host
);
60 /* bind/unbind the peripheral controller */
61 int (*set_peripheral
)(struct otg_transceiver
*otg
,
62 struct usb_gadget
*gadget
);
64 /* effective for B devices, ignored for A-peripheral */
65 int (*set_power
)(struct otg_transceiver
*otg
,
68 /* for non-OTG B devices: set transceiver into suspend mode */
69 int (*set_suspend
)(struct otg_transceiver
*otg
,
72 /* for B devices only: start session with A-Host */
73 int (*start_srp
)(struct otg_transceiver
*otg
);
75 /* start or continue HNP role switch */
76 int (*start_hnp
)(struct otg_transceiver
*otg
);
81 /* for board-specific init logic */
82 extern int otg_set_transceiver(struct otg_transceiver
*);
85 /* for usb host and peripheral controller drivers */
86 extern struct otg_transceiver
*otg_get_transceiver(void);
89 otg_start_hnp(struct otg_transceiver
*otg
)
91 return otg
->start_hnp(otg
);
97 otg_set_host(struct otg_transceiver
*otg
, struct usb_bus
*host
)
99 return otg
->set_host(otg
, host
);
103 /* for usb peripheral controller drivers */
105 otg_set_peripheral(struct otg_transceiver
*otg
, struct usb_gadget
*periph
)
107 return otg
->set_peripheral(otg
, periph
);
111 otg_set_power(struct otg_transceiver
*otg
, unsigned mA
)
113 return otg
->set_power(otg
, mA
);
117 otg_set_suspend(struct otg_transceiver
*otg
, int suspend
)
119 if (otg
->set_suspend
!= NULL
)
120 return otg
->set_suspend(otg
, suspend
);
126 otg_start_srp(struct otg_transceiver
*otg
)
128 return otg
->start_srp(otg
);
132 /* for OTG controller drivers (and maybe other stuff) */
133 extern int usb_bus_start_enum(struct usb_bus
*bus
, unsigned port_num
);
135 #endif /* __LINUX_USB_OTG_H */