usb_otg.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. // include/linux/usb_otg.h 
  2. /*
  3.  * These APIs may be used between USB controllers.  USB device drivers
  4.  * (for either host or peripheral roles) don't use these calls; they
  5.  * continue to use just usb_device and usb_gadget.
  6.  */
  7. /* OTG defines lots of enumeration states before device reset */
  8. enum usb_otg_state {
  9. OTG_STATE_UNDEFINED = 0,
  10. /* single-role peripheral, and dual-role default-b */
  11. OTG_STATE_B_IDLE,
  12. OTG_STATE_B_SRP_INIT,
  13. OTG_STATE_B_PERIPHERAL,
  14. /* extra dual-role default-b states */
  15. OTG_STATE_B_WAIT_ACON,
  16. OTG_STATE_B_HOST,
  17. /* dual-role default-a */
  18. OTG_STATE_A_IDLE,
  19. OTG_STATE_A_WAIT_VRISE,
  20. OTG_STATE_A_WAIT_BCON,
  21. OTG_STATE_A_HOST,
  22. OTG_STATE_A_SUSPEND,
  23. OTG_STATE_A_PERIPHERAL,
  24. OTG_STATE_A_WAIT_VFALL,
  25. OTG_STATE_A_VBUS_ERR,
  26. };
  27. /*
  28.  * the otg driver needs to interact with both device side and host side
  29.  * usb controllers.  it decides which controller is active at a given
  30.  * moment, using the transceiver, ID signal, HNP and sometimes static
  31.  * configuration information (including "board isn't wired for otg").
  32.  */
  33. struct otg_transceiver {
  34. struct device *dev;
  35. const char *label;
  36. u8 default_a;
  37. enum usb_otg_state state;
  38. struct usb_bus *host;
  39. struct usb_gadget *gadget;
  40. /* to pass extra port status to the root hub */
  41. u16 port_status;
  42. u16 port_change;
  43. /* bind/unbind the host controller */
  44. int  (*set_host)(struct otg_transceiver *otg,
  45. struct usb_bus *host);
  46. /* bind/unbind the peripheral controller */
  47. int (*set_peripheral)(struct otg_transceiver *otg,
  48. struct usb_gadget *gadget);
  49. /* effective for B devices, ignored for A-peripheral */
  50. int (*set_power)(struct otg_transceiver *otg,
  51. unsigned mA);
  52. /* for B devices only:  start session with A-Host */
  53. int (*start_srp)(struct otg_transceiver *otg);
  54. /* start or continue HNP role switch */
  55. int (*start_hnp)(struct otg_transceiver *otg);
  56. };
  57. /* for board-specific init logic */
  58. extern int otg_set_transceiver(struct otg_transceiver *);
  59. /* for usb host and peripheral controller drivers */
  60. extern struct otg_transceiver *otg_get_transceiver(void);
  61. static inline int
  62. otg_start_hnp(struct otg_transceiver *otg)
  63. {
  64. return otg->start_hnp(otg);
  65. }
  66. /* for HCDs */
  67. static inline int
  68. otg_set_host(struct otg_transceiver *otg, struct usb_bus *host)
  69. {
  70. return otg->set_host(otg, host);
  71. }
  72. /* for usb peripheral controller drivers */
  73. static inline int
  74. otg_set_peripheral(struct otg_transceiver *otg, struct usb_gadget *periph)
  75. {
  76. return otg->set_peripheral(otg, periph);
  77. }
  78. static inline int
  79. otg_set_power(struct otg_transceiver *otg, unsigned mA)
  80. {
  81. return otg->set_power(otg, mA);
  82. }
  83. static inline int
  84. otg_start_srp(struct otg_transceiver *otg)
  85. {
  86. return otg->start_srp(otg);
  87. }
  88. /* for OTG controller drivers (and maybe other stuff) */
  89. extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num);