usb_phy.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* usb_phy.h - USB otg controller driver interface */
  2. /*
  3. * Copyright (c) 2020 Actions Corporation.
  4. * Author: Jinang Lv <lvjinang@actions-semi.com>
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. /**
  9. * @file
  10. * @brief USB OTG/PHY layer APIs
  11. *
  12. * This file contains the USB OTG/PHY layer APIs. All otg controller
  13. * drivers should implement the APIs described in this file.
  14. */
  15. #ifndef __USB_PHY_H__
  16. #define __USB_PHY_H__
  17. #include <device.h>
  18. enum usb_otg_state {
  19. OTG_STATE_UNDEFINED = 0,
  20. /* single-role peripheral, and dual-role default-b */
  21. OTG_STATE_B_IDLE,
  22. OTG_STATE_B_SRP_INIT,
  23. OTG_STATE_B_PERIPHERAL,
  24. /* extra dual-role default-b states */
  25. OTG_STATE_B_WAIT_ACON,
  26. OTG_STATE_B_HOST,
  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. /* Idpin */
  38. enum {
  39. USB_ID_LOW = 0,
  40. USB_ID_HIGH,
  41. USB_ID_INVALID,
  42. };
  43. /* Vbus */
  44. enum {
  45. USB_VBUS_LOW = 0,
  46. USB_VBUS_HIGH,
  47. USB_VBUS_INVALID,
  48. };
  49. /* OTG mode */
  50. enum {
  51. USB_OTG_UNKNOWN = 0,
  52. USB_OTG_DEVICE,
  53. USB_OTG_HOST,
  54. };
  55. /**
  56. * @brief USB PHY Idpin state
  57. *
  58. * @return USB_ID_HIGH if high, USB_ID_LOW if low, else USB_ID_INVALID.
  59. */
  60. uint8_t usb_phy_get_id(void);
  61. /**
  62. * @brief USB PHY Vbus state
  63. *
  64. * @return USB_VBUS_HIGH if high, USB_VBUS_LOW if low, else USB_VBUS_INVALID.
  65. */
  66. uint8_t usb_phy_get_vbus(void);
  67. /**
  68. * @brief USB PHY detects peripheral is connected
  69. *
  70. * @return true if connected, otherwise false.
  71. */
  72. bool usb_phy_hc_attached(void);
  73. /**
  74. * @brief USB host controller detects peripheral is connected
  75. *
  76. * @return true if connected, otherwise false.
  77. */
  78. bool usb_phy_hc_connected(void);
  79. /**
  80. * @brief USB host controller detects peripheral is disconnected
  81. *
  82. * @return true if disconnected, otherwise false.
  83. */
  84. bool usb_phy_hc_disconnected(void);
  85. /**
  86. * @brief USB PHY device mode is attached
  87. *
  88. * @return true if attached, otherwise false.
  89. */
  90. bool usb_phy_dc_attached(void);
  91. /**
  92. * @brief USB device controller is detached to host
  93. *
  94. * @return true if detached, otherwise false.
  95. */
  96. bool usb_phy_dc_detached(void);
  97. /**
  98. * @brief USB device controller is connected to host
  99. *
  100. * @return true if connected, otherwise false.
  101. */
  102. bool usb_phy_dc_connected(void);
  103. /**
  104. * @brief USB PHY device mode disconnected
  105. *
  106. * @return true if disconnected, otherwise false.
  107. */
  108. bool usb_phy_dc_disconnected(void);
  109. /**
  110. * @brief USB PHY disconnect device mode
  111. */
  112. void usb_phy_dc_disconnect(void);
  113. /**
  114. * @brief USB PHY enter a_idle state to prepare for a_wait_bcon state
  115. *
  116. * @return always 0, not used yet.
  117. */
  118. int usb_phy_enter_a_idle(void);
  119. /**
  120. * @brief USB PHY enter b_idle state to prepare for device mode
  121. *
  122. * @return always 0, not used yet.
  123. */
  124. int usb_phy_enter_b_idle(void);
  125. /**
  126. * @brief USB PHY enter a_wait_bcon state to prepare for a_host state
  127. *
  128. * @return always 0, not used yet.
  129. */
  130. int usb_phy_enter_a_wait_bcon(void);
  131. /**
  132. * @brief reset USB PHY
  133. *
  134. * @return always 0, not used yet.
  135. */
  136. int usb_phy_reset(void);
  137. /**
  138. * @brief initialize USB PHY (call once!)
  139. *
  140. * @return always 0, not used yet.
  141. */
  142. int usb_phy_init(void);
  143. /**
  144. * @brief de-initialize USB PHY
  145. *
  146. * @return always 0, not used yet.
  147. */
  148. int usb_phy_exit(void);
  149. #endif /* __USB_PHY_H__ */