usb_dc.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. /* usb_dc.h - USB device controller driver interface */
  2. /*
  3. * Copyright (c) 2016 Intel Corporation.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief USB device controller APIs
  10. *
  11. * This file contains the USB device controller APIs. All device controller
  12. * drivers should implement the APIs described in this file.
  13. */
  14. #ifndef __USB_DC_H__
  15. #define __USB_DC_H__
  16. #include <device.h>
  17. #include <drivers/usb/usb.h>
  18. /**
  19. * USB Driver Status Codes
  20. */
  21. enum usb_dc_status_code {
  22. USB_DC_ERROR, /* USB error reported by the controller */
  23. USB_DC_RESET, /* USB reset */
  24. /* USB connection established, hardware enumeration is completed */
  25. USB_DC_CONNECTED,
  26. USB_DC_CONFIGURED, /* USB configuration done */
  27. USB_DC_DISCONNECTED, /* USB connection lost */
  28. USB_DC_SUSPEND, /* USB connection suspended by the HOST */
  29. USB_DC_RESUME, /* USB connection resumed by the HOST */
  30. USB_DC_INTERFACE, /* USB interface selected */
  31. USB_DC_ALTSETTING, /* get USB altsetting */
  32. USB_DC_HIGHSPEED, /* USB high-speed mode */
  33. USB_DC_SOF, /* Start of Frame received */
  34. USB_DC_UNKNOWN /* Initial USB connection status */
  35. };
  36. /**
  37. * USB Endpoint Callback Status Codes
  38. */
  39. enum usb_dc_ep_cb_status_code {
  40. USB_DC_EP_SETUP, /* SETUP received */
  41. /* Out transaction on this EP, data is available for read */
  42. USB_DC_EP_DATA_OUT,
  43. USB_DC_EP_DATA_IN, /* In transaction done on this EP */
  44. };
  45. /**
  46. * USB Endpoint type
  47. */
  48. enum usb_dc_ep_type {
  49. USB_DC_EP_CONTROL = 0, /* Control type endpoint */
  50. USB_DC_EP_ISOCHRONOUS, /* Isochronous type endpoint */
  51. USB_DC_EP_BULK, /* Bulk type endpoint */
  52. USB_DC_EP_INTERRUPT /* Interrupt type endpoint */
  53. };
  54. #define USB_DC_EP_TYPE_MASK 0x3
  55. /**
  56. * USB Endpoint Configuration.
  57. */
  58. struct usb_dc_ep_cfg_data {
  59. /** The number associated with the EP in the device
  60. * configuration structure
  61. * IN EP = 0x80 | \<endpoint number\>
  62. * OUT EP = 0x00 | \<endpoint number\>
  63. */
  64. uint8_t ep_addr;
  65. uint16_t ep_mps; /** Endpoint max packet size */
  66. enum usb_dc_ep_type ep_type; /** Endpoint type */
  67. };
  68. /**
  69. * Callback function signature for the USB Endpoint status
  70. */
  71. typedef void (*usb_dc_ep_callback)(uint8_t ep,
  72. enum usb_dc_ep_cb_status_code cb_status);
  73. /**
  74. * Callback function signature for the device
  75. */
  76. typedef void (*usb_dc_status_callback)(enum usb_dc_status_code cb_status,
  77. uint8_t *param);
  78. /**
  79. * @brief attach USB for device connection
  80. *
  81. * Function to attach USB for device connection. Upon success, the USB PLL
  82. * is enabled, and the USB device is now capable of transmitting and receiving
  83. * on the USB bus and of generating interrupts.
  84. *
  85. * @return 0 on success, negative errno code on fail.
  86. */
  87. int usb_dc_attach(void);
  88. /**
  89. * @brief detach the USB device
  90. *
  91. * Function to detach the USB device. Upon success, the USB hardware PLL
  92. * is powered down and USB communication is disabled.
  93. *
  94. * @return 0 on success, negative errno code on fail.
  95. */
  96. int usb_dc_detach(void);
  97. /**
  98. * @brief reset the USB device
  99. *
  100. * This function returns the USB device and firmware back to it's initial state.
  101. * N.B. the USB PLL is handled by the usb_detach function
  102. *
  103. * @return 0 on success, negative errno code on fail.
  104. */
  105. int usb_dc_reset(void);
  106. /**
  107. * @brief set USB device address
  108. *
  109. * @param[in] addr device address
  110. *
  111. * @return 0 on success, negative errno code on fail.
  112. */
  113. int usb_dc_set_address(const uint8_t addr);
  114. /**
  115. * @brief set USB device controller status callback
  116. *
  117. * Function to set USB device controller status callback. The registered
  118. * callback is used to report changes in the status of the device controller.
  119. *
  120. * @param[in] cb callback function
  121. *
  122. * @return 0 on success, negative errno code on fail.
  123. */
  124. int usb_dc_set_status_callback(const usb_dc_status_callback cb);
  125. /**
  126. * @brief check endpoint capabilities
  127. *
  128. * Function to check capabilities of an endpoint. usb_dc_ep_cfg_data structure
  129. * provides the endpoint configuration parameters: endpoint address,
  130. * endpoint maximum packet size and endpoint type.
  131. * The driver should check endpoint capabilities and return 0 if the
  132. * endpoint configuration is possible.
  133. *
  134. * @param[in] cfg Endpoint config
  135. *
  136. * @return 0 on success, negative errno code on fail.
  137. */
  138. int usb_dc_ep_check_cap(const struct usb_dc_ep_cfg_data * const cfg);
  139. /**
  140. * @brief configure endpoint
  141. *
  142. * Function to configure an endpoint. usb_dc_ep_cfg_data structure provides
  143. * the endpoint configuration parameters: endpoint address, endpoint maximum
  144. * packet size and endpoint type.
  145. *
  146. * @param[in] cfg Endpoint config
  147. *
  148. * @return 0 on success, negative errno code on fail.
  149. */
  150. int usb_dc_ep_configure(const struct usb_dc_ep_cfg_data * const cfg);
  151. /**
  152. * @brief set stall condition for the selected endpoint
  153. *
  154. * @param[in] ep Endpoint address corresponding to the one
  155. * listed in the device configuration table
  156. *
  157. * @return 0 on success, negative errno code on fail.
  158. */
  159. int usb_dc_ep_set_stall(const uint8_t ep);
  160. /**
  161. * @brief clear stall condition for the selected endpoint
  162. *
  163. * @param[in] ep Endpoint address corresponding to the one
  164. * listed in the device configuration table
  165. *
  166. * @return 0 on success, negative errno code on fail.
  167. */
  168. int usb_dc_ep_clear_stall(const uint8_t ep);
  169. /**
  170. * @brief check if selected endpoint is stalled
  171. *
  172. * @param[in] ep Endpoint address corresponding to the one
  173. * listed in the device configuration table
  174. * @param[out] stalled Endpoint stall status
  175. *
  176. * @return 0 on success, negative errno code on fail.
  177. */
  178. int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled);
  179. /**
  180. * @brief halt the selected endpoint
  181. *
  182. * @param[in] ep Endpoint address corresponding to the one
  183. * listed in the device configuration table
  184. *
  185. * @return 0 on success, negative errno code on fail.
  186. */
  187. int usb_dc_ep_halt(const uint8_t ep);
  188. /**
  189. * @brief enable the selected endpoint
  190. *
  191. * Function to enable the selected endpoint. Upon success interrupts are
  192. * enabled for the corresponding endpoint and the endpoint is ready for
  193. * transmitting/receiving data.
  194. *
  195. * @param[in] ep Endpoint address corresponding to the one
  196. * listed in the device configuration table
  197. *
  198. * @return 0 on success, negative errno code on fail.
  199. */
  200. int usb_dc_ep_enable(const uint8_t ep);
  201. /**
  202. * @brief disable the selected endpoint
  203. *
  204. * Function to disable the selected endpoint. Upon success interrupts are
  205. * disabled for the corresponding endpoint and the endpoint is no longer able
  206. * for transmitting/receiving data.
  207. *
  208. * @param[in] ep Endpoint address corresponding to the one
  209. * listed in the device configuration table
  210. *
  211. * @return 0 on success, negative errno code on fail.
  212. */
  213. int usb_dc_ep_disable(const uint8_t ep);
  214. /**
  215. * @brief flush the selected endpoint
  216. *
  217. * @param[in] ep Endpoint address corresponding to the one
  218. * listed in the device configuration table
  219. *
  220. * @return 0 on success, negative errno code on fail.
  221. */
  222. int usb_dc_ep_flush(const uint8_t ep);
  223. /**
  224. * @brief write data to the specified endpoint
  225. *
  226. * This function is called to write data to the specified endpoint. The supplied
  227. * usb_ep_callback function will be called when data is transmitted out.
  228. *
  229. * @param[in] ep Endpoint address corresponding to the one
  230. * listed in the device configuration table
  231. * @param[in] data pointer to data to write
  232. * @param[in] data_len length of data requested to write. This may
  233. * be zero for a zero length status packet.
  234. * @param[out] ret_bytes bytes scheduled for transmission. This value
  235. * may be NULL if the application expects all
  236. * bytes to be written
  237. *
  238. * @return 0 on success, negative errno code on fail.
  239. */
  240. int usb_dc_ep_write(const uint8_t ep, const uint8_t *const data,
  241. const uint32_t data_len, uint32_t * const ret_bytes);
  242. /**
  243. * @brief read data from the specified endpoint
  244. *
  245. * This function is called by the Endpoint handler function, after an OUT
  246. * interrupt has been received for that EP. The application must only call this
  247. * function through the supplied usb_ep_callback function. This function clears
  248. * the ENDPOINT NAK, if all data in the endpoint FIFO has been read,
  249. * so as to accept more data from host.
  250. *
  251. * @param[in] ep Endpoint address corresponding to the one
  252. * listed in the device configuration table
  253. * @param[in] data pointer to data buffer to write to
  254. * @param[in] max_data_len max length of data to read
  255. * @param[out] read_bytes Number of bytes read. If data is NULL and
  256. * max_data_len is 0 the number of bytes
  257. * available for read should be returned.
  258. *
  259. * @return 0 on success, negative errno code on fail.
  260. */
  261. int usb_dc_ep_read(const uint8_t ep, uint8_t *const data,
  262. const uint32_t max_data_len, uint32_t *const read_bytes);
  263. /**
  264. * @brief set callback function for the specified endpoint
  265. *
  266. * Function to set callback function for notification of data received and
  267. * available to application or transmit done on the selected endpoint,
  268. * NULL if callback not required by application code.
  269. *
  270. * @param[in] ep Endpoint address corresponding to the one
  271. * listed in the device configuration table
  272. * @param[in] cb callback function
  273. *
  274. * @return 0 on success, negative errno code on fail.
  275. */
  276. int usb_dc_ep_set_callback(const uint8_t ep, const usb_dc_ep_callback cb);
  277. /**
  278. * @brief read data from the specified endpoint asynchronously
  279. *
  280. * This is designed for active transfer.
  281. *
  282. * @param[in] ep Endpoint address corresponding to the one
  283. * listed in the device configuration table
  284. * @param[in] data pointer to data buffer to write to
  285. * @param[in] max_data_len max length of data to read
  286. * @param[out] read_bytes Number of bytes read. If data is NULL and
  287. * max_data_len is 0 the number of bytes
  288. * available for read should be returned.
  289. *
  290. * @return 0 on success, negative errno code on fail.
  291. */
  292. int usb_dc_ep_read_async(uint8_t ep, uint8_t *data, uint32_t max_data_len,
  293. uint32_t *read_bytes);
  294. /**
  295. * @brief read asynchronously actual data length from the specified endpoint
  296. *
  297. * @param[in] ep Endpoint address corresponding to the one
  298. * listed in the device configuration table
  299. * @param[out] read_bytes Number of bytes read. If data is NULL and
  300. * max_data_len is 0 the number of bytes
  301. * available for read should be returned.
  302. *
  303. * @return 0 on success, negative errno code on fail.
  304. */
  305. int usb_dc_ep_read_actual(uint8_t ep, uint32_t *read_bytes);
  306. #ifdef CONFIG_USB_AOTG_DC_MULTI_FIFO
  307. /*
  308. * Specific interfaces are used for Actions OTG controller only which
  309. * aim to optimize mass_storage performance only for now.
  310. */
  311. int usb_dc_ep_set_multi_fifo(uint8_t ep);
  312. int usb_dc_ep_write_pending(const uint8_t ep, uint8_t *data,
  313. uint32_t data_len, uint32_t * const ret_bytes);
  314. int usb_dc_ep_read_pending(uint8_t ep, uint8_t *data, uint32_t max_data_len,
  315. uint32_t *read_bytes);
  316. int usb_dc_ep_io_cancel(void);
  317. #endif /* CONFIG_USB_AOTG_DC_MULTI_FIFO */
  318. /**
  319. * @brief read data from the specified endpoint
  320. *
  321. * This is similar to usb_dc_ep_read, the difference being that, it doesn't
  322. * clear the endpoint NAKs so that the consumer is not bogged down by further
  323. * upcalls till he is done with the processing of the data. The caller should
  324. * reactivate ep by invoking usb_dc_ep_read_continue() do so.
  325. *
  326. * @param[in] ep Endpoint address corresponding to the one
  327. * listed in the device configuration table
  328. * @param[in] data pointer to data buffer to write to
  329. * @param[in] max_data_len max length of data to read
  330. * @param[out] read_bytes Number of bytes read. If data is NULL and
  331. * max_data_len is 0 the number of bytes
  332. * available for read should be returned.
  333. *
  334. * @return 0 on success, negative errno code on fail.
  335. */
  336. int usb_dc_ep_read_wait(uint8_t ep, uint8_t *data, uint32_t max_data_len,
  337. uint32_t *read_bytes);
  338. /**
  339. * @brief Continue reading data from the endpoint
  340. *
  341. * Clear the endpoint NAK and enable the endpoint to accept more data
  342. * from the host. Usually called after usb_dc_ep_read_wait() when the consumer
  343. * is fine to accept more data. Thus these calls together acts as flow control
  344. * mechanism.
  345. *
  346. * @param[in] ep Endpoint address corresponding to the one
  347. * listed in the device configuration table
  348. *
  349. * @return 0 on success, negative errno code on fail.
  350. */
  351. int usb_dc_ep_read_continue(uint8_t ep);
  352. /**
  353. * @brief Get endpoint max packet size
  354. *
  355. * @param[in] ep Endpoint address corresponding to the one
  356. * listed in the device configuration table
  357. *
  358. * @return enpoint max packet size (mps)
  359. */
  360. int usb_dc_ep_mps(uint8_t ep);
  361. /**
  362. * @brief Get the maxspeed (static) of USB Device Controller
  363. */
  364. enum usb_device_speed usb_dc_maxspeed(void);
  365. /**
  366. * @brief Get the speed (runtime) of USB Device Controller
  367. */
  368. enum usb_device_speed usb_dc_speed(void);
  369. /**
  370. * @brief do remote wakeup
  371. *
  372. * @return 0 on success, negative errno code on fail.
  373. */
  374. int usb_dc_do_remote_wakeup(void);
  375. #endif /* __USB_DC_H__ */