hcd.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
  2. /*
  3. * hcd.h - DesignWare HS OTG Controller host-mode declarations
  4. *
  5. * Copyright (C) 2004-2013 Synopsys, Inc.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions, and the following disclaimer,
  12. * without modification.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. The names of the above-listed copyright holders may not be used
  17. * to endorse or promote products derived from this software without
  18. * specific prior written permission.
  19. *
  20. * ALTERNATIVELY, this software may be distributed under the terms of the
  21. * GNU General Public License ("GPL") as published by the Free Software
  22. * Foundation; either version 2 of the License, or (at your option) any
  23. * later version.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  26. * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  27. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  28. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  29. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  30. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  31. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  32. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  33. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  34. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  35. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. */
  37. #ifndef __DWC2_HCD_H__
  38. #define __DWC2_HCD_H__
  39. /*
  40. * This file contains the structures, constants, and interfaces for the
  41. * Host Contoller Driver (HCD)
  42. *
  43. * The Host Controller Driver (HCD) is responsible for translating requests
  44. * from the USB Driver into the appropriate actions on the DWC_otg controller.
  45. * It isolates the USBD from the specifics of the controller by providing an
  46. * API to the USBD.
  47. */
  48. struct dwc2_qh;
  49. /**
  50. * struct dwc2_host_chan - Software host channel descriptor
  51. *
  52. * @hc_num: Host channel number, used for register address lookup
  53. * @dev_addr: Address of the device
  54. * @ep_num: Endpoint of the device
  55. * @ep_is_in: Endpoint direction
  56. * @speed: Device speed. One of the following values:
  57. * - USB_SPEED_LOW
  58. * - USB_SPEED_FULL
  59. * - USB_SPEED_HIGH
  60. * @ep_type: Endpoint type. One of the following values:
  61. * - USB_ENDPOINT_XFER_CONTROL: 0
  62. * - USB_ENDPOINT_XFER_ISOC: 1
  63. * - USB_ENDPOINT_XFER_BULK: 2
  64. * - USB_ENDPOINT_XFER_INTR: 3
  65. * @max_packet: Max packet size in bytes
  66. * @data_pid_start: PID for initial transaction.
  67. * 0: DATA0
  68. * 1: DATA2
  69. * 2: DATA1
  70. * 3: MDATA (non-Control EP),
  71. * SETUP (Control EP)
  72. * @multi_count: Number of additional periodic transactions per
  73. * (micro)frame
  74. * @xfer_buf: Pointer to current transfer buffer position
  75. * @xfer_dma: DMA address of xfer_buf
  76. * @align_buf: In Buffer DMA mode this will be used if xfer_buf is not
  77. * DWORD aligned
  78. * @xfer_len: Total number of bytes to transfer
  79. * @xfer_count: Number of bytes transferred so far
  80. * @start_pkt_count: Packet count at start of transfer
  81. * @xfer_started: True if the transfer has been started
  82. * @do_ping: True if a PING request should be issued on this channel
  83. * @error_state: True if the error count for this transaction is non-zero
  84. * @halt_on_queue: True if this channel should be halted the next time a
  85. * request is queued for the channel. This is necessary in
  86. * slave mode if no request queue space is available when
  87. * an attempt is made to halt the channel.
  88. * @halt_pending: True if the host channel has been halted, but the core
  89. * is not finished flushing queued requests
  90. * @do_split: Enable split for the channel
  91. * @complete_split: Enable complete split
  92. * @hub_addr: Address of high speed hub for the split
  93. * @hub_port: Port of the low/full speed device for the split
  94. * @xact_pos: Split transaction position. One of the following values:
  95. * - DWC2_HCSPLT_XACTPOS_MID
  96. * - DWC2_HCSPLT_XACTPOS_BEGIN
  97. * - DWC2_HCSPLT_XACTPOS_END
  98. * - DWC2_HCSPLT_XACTPOS_ALL
  99. * @requests: Number of requests issued for this channel since it was
  100. * assigned to the current transfer (not counting PINGs)
  101. * @schinfo: Scheduling micro-frame bitmap
  102. * @ntd: Number of transfer descriptors for the transfer
  103. * @halt_status: Reason for halting the host channel
  104. * @hcint: Contents of the HCINT register when the interrupt came
  105. * @qh: QH for the transfer being processed by this channel
  106. * @hc_list_entry: For linking to list of host channels
  107. * @desc_list_addr: Current QH's descriptor list DMA address
  108. * @desc_list_sz: Current QH's descriptor list size
  109. * @split_order_list_entry: List entry for keeping track of the order of splits
  110. *
  111. * This structure represents the state of a single host channel when acting in
  112. * host mode. It contains the data items needed to transfer packets to an
  113. * endpoint via a host channel.
  114. */
  115. struct dwc2_host_chan {
  116. u8 hc_num;
  117. unsigned dev_addr:7;
  118. unsigned ep_num:4;
  119. unsigned ep_is_in:1;
  120. unsigned speed:4;
  121. unsigned ep_type:2;
  122. unsigned max_packet:11;
  123. unsigned data_pid_start:2;
  124. #define DWC2_HC_PID_DATA0 TSIZ_SC_MC_PID_DATA0
  125. #define DWC2_HC_PID_DATA2 TSIZ_SC_MC_PID_DATA2
  126. #define DWC2_HC_PID_DATA1 TSIZ_SC_MC_PID_DATA1
  127. #define DWC2_HC_PID_MDATA TSIZ_SC_MC_PID_MDATA
  128. #define DWC2_HC_PID_SETUP TSIZ_SC_MC_PID_SETUP
  129. unsigned multi_count:2;
  130. u8 *xfer_buf;
  131. dma_addr_t xfer_dma;
  132. dma_addr_t align_buf;
  133. u32 xfer_len;
  134. u32 xfer_count;
  135. u16 start_pkt_count;
  136. u8 xfer_started;
  137. u8 do_ping;
  138. u8 error_state;
  139. u8 halt_on_queue;
  140. u8 halt_pending;
  141. u8 do_split;
  142. u8 complete_split;
  143. u8 hub_addr;
  144. u8 hub_port;
  145. u8 xact_pos;
  146. #define DWC2_HCSPLT_XACTPOS_MID HCSPLT_XACTPOS_MID
  147. #define DWC2_HCSPLT_XACTPOS_END HCSPLT_XACTPOS_END
  148. #define DWC2_HCSPLT_XACTPOS_BEGIN HCSPLT_XACTPOS_BEGIN
  149. #define DWC2_HCSPLT_XACTPOS_ALL HCSPLT_XACTPOS_ALL
  150. u8 requests;
  151. u8 schinfo;
  152. u16 ntd;
  153. enum dwc2_halt_status halt_status;
  154. u32 hcint;
  155. struct dwc2_qh *qh;
  156. struct list_head hc_list_entry;
  157. dma_addr_t desc_list_addr;
  158. u32 desc_list_sz;
  159. struct list_head split_order_list_entry;
  160. };
  161. struct dwc2_hcd_pipe_info {
  162. u8 dev_addr;
  163. u8 ep_num;
  164. u8 pipe_type;
  165. u8 pipe_dir;
  166. u16 maxp;
  167. u16 maxp_mult;
  168. };
  169. struct dwc2_hcd_iso_packet_desc {
  170. u32 offset;
  171. u32 length;
  172. u32 actual_length;
  173. u32 status;
  174. };
  175. struct dwc2_qtd;
  176. struct dwc2_hcd_urb {
  177. void *priv;
  178. struct dwc2_qtd *qtd;
  179. void *buf;
  180. dma_addr_t dma;
  181. void *setup_packet;
  182. dma_addr_t setup_dma;
  183. u32 length;
  184. u32 actual_length;
  185. u32 status;
  186. u32 error_count;
  187. u32 packet_count;
  188. u32 flags;
  189. u16 interval;
  190. struct dwc2_hcd_pipe_info pipe_info;
  191. struct dwc2_hcd_iso_packet_desc iso_descs[0];
  192. };
  193. /* Phases for control transfers */
  194. enum dwc2_control_phase {
  195. DWC2_CONTROL_SETUP,
  196. DWC2_CONTROL_DATA,
  197. DWC2_CONTROL_STATUS,
  198. };
  199. /* Transaction types */
  200. enum dwc2_transaction_type {
  201. DWC2_TRANSACTION_NONE,
  202. DWC2_TRANSACTION_PERIODIC,
  203. DWC2_TRANSACTION_NON_PERIODIC,
  204. DWC2_TRANSACTION_ALL,
  205. };
  206. /* The number of elements per LS bitmap (per port on multi_tt) */
  207. #define DWC2_ELEMENTS_PER_LS_BITMAP DIV_ROUND_UP(DWC2_LS_SCHEDULE_SLICES, \
  208. BITS_PER_LONG)
  209. /**
  210. * struct dwc2_tt - dwc2 data associated with a usb_tt
  211. *
  212. * @refcount: Number of Queue Heads (QHs) holding a reference.
  213. * @usb_tt: Pointer back to the official usb_tt.
  214. * @periodic_bitmaps: Bitmap for which parts of the 1ms frame are accounted
  215. * for already. Each is DWC2_ELEMENTS_PER_LS_BITMAP
  216. * elements (so sizeof(long) times that in bytes).
  217. *
  218. * This structure is stored in the hcpriv of the official usb_tt.
  219. */
  220. struct dwc2_tt {
  221. int refcount;
  222. struct usb_tt *usb_tt;
  223. unsigned long periodic_bitmaps[];
  224. };
  225. /**
  226. * struct dwc2_hs_transfer_time - Info about a transfer on the high speed bus.
  227. *
  228. * @start_schedule_us: The start time on the main bus schedule. Note that
  229. * the main bus schedule is tightly packed and this
  230. * time should be interpreted as tightly packed (so
  231. * uFrame 0 starts at 0 us, uFrame 1 starts at 100 us
  232. * instead of 125 us).
  233. * @duration_us: How long this transfer goes.
  234. */
  235. struct dwc2_hs_transfer_time {
  236. u32 start_schedule_us;
  237. u16 duration_us;
  238. };
  239. /**
  240. * struct dwc2_qh - Software queue head structure
  241. *
  242. * @hsotg: The HCD state structure for the DWC OTG controller
  243. * @ep_type: Endpoint type. One of the following values:
  244. * - USB_ENDPOINT_XFER_CONTROL
  245. * - USB_ENDPOINT_XFER_BULK
  246. * - USB_ENDPOINT_XFER_INT
  247. * - USB_ENDPOINT_XFER_ISOC
  248. * @ep_is_in: Endpoint direction
  249. * @maxp: Value from wMaxPacketSize field of Endpoint Descriptor
  250. * @maxp_mult: Multiplier for maxp
  251. * @dev_speed: Device speed. One of the following values:
  252. * - USB_SPEED_LOW
  253. * - USB_SPEED_FULL
  254. * - USB_SPEED_HIGH
  255. * @data_toggle: Determines the PID of the next data packet for
  256. * non-controltransfers. Ignored for control transfers.
  257. * One of the following values:
  258. * - DWC2_HC_PID_DATA0
  259. * - DWC2_HC_PID_DATA1
  260. * @ping_state: Ping state
  261. * @do_split: Full/low speed endpoint on high-speed hub requires split
  262. * @td_first: Index of first activated isochronous transfer descriptor
  263. * @td_last: Index of last activated isochronous transfer descriptor
  264. * @host_us: Bandwidth in microseconds per transfer as seen by host
  265. * @device_us: Bandwidth in microseconds per transfer as seen by device
  266. * @host_interval: Interval between transfers as seen by the host. If
  267. * the host is high speed and the device is low speed this
  268. * will be 8 times device interval.
  269. * @device_interval: Interval between transfers as seen by the device.
  270. * interval.
  271. * @next_active_frame: (Micro)frame _before_ we next need to put something on
  272. * the bus. We'll move the qh to active here. If the
  273. * host is in high speed mode this will be a uframe. If
  274. * the host is in low speed mode this will be a full frame.
  275. * @start_active_frame: If we are partway through a split transfer, this will be
  276. * what next_active_frame was when we started. Otherwise
  277. * it should always be the same as next_active_frame.
  278. * @num_hs_transfers: Number of transfers in hs_transfers.
  279. * Normally this is 1 but can be more than one for splits.
  280. * Always >= 1 unless the host is in low/full speed mode.
  281. * @hs_transfers: Transfers that are scheduled as seen by the high speed
  282. * bus. Not used if host is in low or full speed mode (but
  283. * note that it IS USED if the device is low or full speed
  284. * as long as the HOST is in high speed mode).
  285. * @ls_start_schedule_slice: Start time (in slices) on the low speed bus
  286. * schedule that's being used by this device. This
  287. * will be on the periodic_bitmap in a
  288. * "struct dwc2_tt". Not used if this device is high
  289. * speed. Note that this is in "schedule slice" which
  290. * is tightly packed.
  291. * @ntd: Actual number of transfer descriptors in a list
  292. * @dw_align_buf: Used instead of original buffer if its physical address
  293. * is not dword-aligned
  294. * @dw_align_buf_dma: DMA address for dw_align_buf
  295. * @qtd_list: List of QTDs for this QH
  296. * @channel: Host channel currently processing transfers for this QH
  297. * @qh_list_entry: Entry for QH in either the periodic or non-periodic
  298. * schedule
  299. * @desc_list: List of transfer descriptors
  300. * @desc_list_dma: Physical address of desc_list
  301. * @desc_list_sz: Size of descriptors list
  302. * @n_bytes: Xfer Bytes array. Each element corresponds to a transfer
  303. * descriptor and indicates original XferSize value for the
  304. * descriptor
  305. * @unreserve_timer: Timer for releasing periodic reservation.
  306. * @wait_timer: Timer used to wait before re-queuing.
  307. * @dwc_tt: Pointer to our tt info (or NULL if no tt).
  308. * @ttport: Port number within our tt.
  309. * @tt_buffer_dirty True if clear_tt_buffer_complete is pending
  310. * @unreserve_pending: True if we planned to unreserve but haven't yet.
  311. * @schedule_low_speed: True if we have a low/full speed component (either the
  312. * host is in low/full speed mode or do_split).
  313. * @want_wait: We should wait before re-queuing; only matters for non-
  314. * periodic transfers and is ignored for periodic ones.
  315. * @wait_timer_cancel: Set to true to cancel the wait_timer.
  316. *
  317. * @tt_buffer_dirty: True if EP's TT buffer is not clean.
  318. * A Queue Head (QH) holds the static characteristics of an endpoint and
  319. * maintains a list of transfers (QTDs) for that endpoint. A QH structure may
  320. * be entered in either the non-periodic or periodic schedule.
  321. */
  322. struct dwc2_qh {
  323. struct dwc2_hsotg *hsotg;
  324. u8 ep_type;
  325. u8 ep_is_in;
  326. u16 maxp;
  327. u16 maxp_mult;
  328. u8 dev_speed;
  329. u8 data_toggle;
  330. u8 ping_state;
  331. u8 do_split;
  332. u8 td_first;
  333. u8 td_last;
  334. u16 host_us;
  335. u16 device_us;
  336. u16 host_interval;
  337. u16 device_interval;
  338. u16 next_active_frame;
  339. u16 start_active_frame;
  340. s16 num_hs_transfers;
  341. struct dwc2_hs_transfer_time hs_transfers[DWC2_HS_SCHEDULE_UFRAMES];
  342. u32 ls_start_schedule_slice;
  343. u16 ntd;
  344. u8 *dw_align_buf;
  345. dma_addr_t dw_align_buf_dma;
  346. struct list_head qtd_list;
  347. struct dwc2_host_chan *channel;
  348. struct list_head qh_list_entry;
  349. struct dwc2_dma_desc *desc_list;
  350. dma_addr_t desc_list_dma;
  351. u32 desc_list_sz;
  352. u32 *n_bytes;
  353. struct timer_list unreserve_timer;
  354. struct hrtimer wait_timer;
  355. struct dwc2_tt *dwc_tt;
  356. int ttport;
  357. unsigned tt_buffer_dirty:1;
  358. unsigned unreserve_pending:1;
  359. unsigned schedule_low_speed:1;
  360. unsigned want_wait:1;
  361. unsigned wait_timer_cancel:1;
  362. };
  363. /**
  364. * struct dwc2_qtd - Software queue transfer descriptor (QTD)
  365. *
  366. * @control_phase: Current phase for control transfers (Setup, Data, or
  367. * Status)
  368. * @in_process: Indicates if this QTD is currently processed by HW
  369. * @data_toggle: Determines the PID of the next data packet for the
  370. * data phase of control transfers. Ignored for other
  371. * transfer types. One of the following values:
  372. * - DWC2_HC_PID_DATA0
  373. * - DWC2_HC_PID_DATA1
  374. * @complete_split: Keeps track of the current split type for FS/LS
  375. * endpoints on a HS Hub
  376. * @isoc_split_pos: Position of the ISOC split in full/low speed
  377. * @isoc_frame_index: Index of the next frame descriptor for an isochronous
  378. * transfer. A frame descriptor describes the buffer
  379. * position and length of the data to be transferred in the
  380. * next scheduled (micro)frame of an isochronous transfer.
  381. * It also holds status for that transaction. The frame
  382. * index starts at 0.
  383. * @isoc_split_offset: Position of the ISOC split in the buffer for the
  384. * current frame
  385. * @ssplit_out_xfer_count: How many bytes transferred during SSPLIT OUT
  386. * @error_count: Holds the number of bus errors that have occurred for
  387. * a transaction within this transfer
  388. * @n_desc: Number of DMA descriptors for this QTD
  389. * @isoc_frame_index_last: Last activated frame (packet) index, used in
  390. * descriptor DMA mode only
  391. * @num_naks: Number of NAKs received on this QTD.
  392. * @urb: URB for this transfer
  393. * @qh: Queue head for this QTD
  394. * @qtd_list_entry: For linking to the QH's list of QTDs
  395. * @isoc_td_first: Index of first activated isochronous transfer
  396. * descriptor in Descriptor DMA mode
  397. * @isoc_td_last: Index of last activated isochronous transfer
  398. * descriptor in Descriptor DMA mode
  399. *
  400. * A Queue Transfer Descriptor (QTD) holds the state of a bulk, control,
  401. * interrupt, or isochronous transfer. A single QTD is created for each URB
  402. * (of one of these types) submitted to the HCD. The transfer associated with
  403. * a QTD may require one or multiple transactions.
  404. *
  405. * A QTD is linked to a Queue Head, which is entered in either the
  406. * non-periodic or periodic schedule for execution. When a QTD is chosen for
  407. * execution, some or all of its transactions may be executed. After
  408. * execution, the state of the QTD is updated. The QTD may be retired if all
  409. * its transactions are complete or if an error occurred. Otherwise, it
  410. * remains in the schedule so more transactions can be executed later.
  411. */
  412. struct dwc2_qtd {
  413. enum dwc2_control_phase control_phase;
  414. u8 in_process;
  415. u8 data_toggle;
  416. u8 complete_split;
  417. u8 isoc_split_pos;
  418. u16 isoc_frame_index;
  419. u16 isoc_split_offset;
  420. u16 isoc_td_last;
  421. u16 isoc_td_first;
  422. u32 ssplit_out_xfer_count;
  423. u8 error_count;
  424. u8 n_desc;
  425. u16 isoc_frame_index_last;
  426. u16 num_naks;
  427. struct dwc2_hcd_urb *urb;
  428. struct dwc2_qh *qh;
  429. struct list_head qtd_list_entry;
  430. };
  431. #ifdef DEBUG
  432. struct hc_xfer_info {
  433. struct dwc2_hsotg *hsotg;
  434. struct dwc2_host_chan *chan;
  435. };
  436. #endif
  437. u32 dwc2_calc_frame_interval(struct dwc2_hsotg *hsotg);
  438. /* Gets the struct usb_hcd that contains a struct dwc2_hsotg */
  439. static inline struct usb_hcd *dwc2_hsotg_to_hcd(struct dwc2_hsotg *hsotg)
  440. {
  441. return (struct usb_hcd *)hsotg->priv;
  442. }
  443. /*
  444. * Inline used to disable one channel interrupt. Channel interrupts are
  445. * disabled when the channel is halted or released by the interrupt handler.
  446. * There is no need to handle further interrupts of that type until the
  447. * channel is re-assigned. In fact, subsequent handling may cause crashes
  448. * because the channel structures are cleaned up when the channel is released.
  449. */
  450. static inline void disable_hc_int(struct dwc2_hsotg *hsotg, int chnum, u32 intr)
  451. {
  452. u32 mask = dwc2_readl(hsotg, HCINTMSK(chnum));
  453. mask &= ~intr;
  454. dwc2_writel(hsotg, mask, HCINTMSK(chnum));
  455. }
  456. void dwc2_hc_cleanup(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan);
  457. void dwc2_hc_halt(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan,
  458. enum dwc2_halt_status halt_status);
  459. void dwc2_hc_start_transfer_ddma(struct dwc2_hsotg *hsotg,
  460. struct dwc2_host_chan *chan);
  461. /*
  462. * Reads HPRT0 in preparation to modify. It keeps the WC bits 0 so that if they
  463. * are read as 1, they won't clear when written back.
  464. */
  465. static inline u32 dwc2_read_hprt0(struct dwc2_hsotg *hsotg)
  466. {
  467. u32 hprt0 = dwc2_readl(hsotg, HPRT0);
  468. hprt0 &= ~(HPRT0_ENA | HPRT0_CONNDET | HPRT0_ENACHG | HPRT0_OVRCURRCHG);
  469. return hprt0;
  470. }
  471. static inline u8 dwc2_hcd_get_ep_num(struct dwc2_hcd_pipe_info *pipe)
  472. {
  473. return pipe->ep_num;
  474. }
  475. static inline u8 dwc2_hcd_get_pipe_type(struct dwc2_hcd_pipe_info *pipe)
  476. {
  477. return pipe->pipe_type;
  478. }
  479. static inline u16 dwc2_hcd_get_maxp(struct dwc2_hcd_pipe_info *pipe)
  480. {
  481. return pipe->maxp;
  482. }
  483. static inline u16 dwc2_hcd_get_maxp_mult(struct dwc2_hcd_pipe_info *pipe)
  484. {
  485. return pipe->maxp_mult;
  486. }
  487. static inline u8 dwc2_hcd_get_dev_addr(struct dwc2_hcd_pipe_info *pipe)
  488. {
  489. return pipe->dev_addr;
  490. }
  491. static inline u8 dwc2_hcd_is_pipe_isoc(struct dwc2_hcd_pipe_info *pipe)
  492. {
  493. return pipe->pipe_type == USB_ENDPOINT_XFER_ISOC;
  494. }
  495. static inline u8 dwc2_hcd_is_pipe_int(struct dwc2_hcd_pipe_info *pipe)
  496. {
  497. return pipe->pipe_type == USB_ENDPOINT_XFER_INT;
  498. }
  499. static inline u8 dwc2_hcd_is_pipe_bulk(struct dwc2_hcd_pipe_info *pipe)
  500. {
  501. return pipe->pipe_type == USB_ENDPOINT_XFER_BULK;
  502. }
  503. static inline u8 dwc2_hcd_is_pipe_control(struct dwc2_hcd_pipe_info *pipe)
  504. {
  505. return pipe->pipe_type == USB_ENDPOINT_XFER_CONTROL;
  506. }
  507. static inline u8 dwc2_hcd_is_pipe_in(struct dwc2_hcd_pipe_info *pipe)
  508. {
  509. return pipe->pipe_dir == USB_DIR_IN;
  510. }
  511. static inline u8 dwc2_hcd_is_pipe_out(struct dwc2_hcd_pipe_info *pipe)
  512. {
  513. return !dwc2_hcd_is_pipe_in(pipe);
  514. }
  515. int dwc2_hcd_init(struct dwc2_hsotg *hsotg);
  516. void dwc2_hcd_remove(struct dwc2_hsotg *hsotg);
  517. /* Transaction Execution Functions */
  518. enum dwc2_transaction_type dwc2_hcd_select_transactions(
  519. struct dwc2_hsotg *hsotg);
  520. void dwc2_hcd_queue_transactions(struct dwc2_hsotg *hsotg,
  521. enum dwc2_transaction_type tr_type);
  522. /* Schedule Queue Functions */
  523. /* Implemented in hcd_queue.c */
  524. struct dwc2_qh *dwc2_hcd_qh_create(struct dwc2_hsotg *hsotg,
  525. struct dwc2_hcd_urb *urb,
  526. gfp_t mem_flags);
  527. void dwc2_hcd_qh_free(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
  528. int dwc2_hcd_qh_add(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
  529. void dwc2_hcd_qh_unlink(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
  530. void dwc2_hcd_qh_deactivate(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
  531. int sched_csplit);
  532. void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb);
  533. int dwc2_hcd_qtd_add(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
  534. struct dwc2_qh *qh);
  535. /* Unlinks and frees a QTD */
  536. static inline void dwc2_hcd_qtd_unlink_and_free(struct dwc2_hsotg *hsotg,
  537. struct dwc2_qtd *qtd,
  538. struct dwc2_qh *qh)
  539. {
  540. list_del(&qtd->qtd_list_entry);
  541. kfree(qtd);
  542. qtd = NULL;
  543. }
  544. /* Descriptor DMA support functions */
  545. void dwc2_hcd_start_xfer_ddma(struct dwc2_hsotg *hsotg,
  546. struct dwc2_qh *qh);
  547. void dwc2_hcd_complete_xfer_ddma(struct dwc2_hsotg *hsotg,
  548. struct dwc2_host_chan *chan, int chnum,
  549. enum dwc2_halt_status halt_status);
  550. int dwc2_hcd_qh_init_ddma(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
  551. gfp_t mem_flags);
  552. void dwc2_hcd_qh_free_ddma(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
  553. /* Check if QH is non-periodic */
  554. #define dwc2_qh_is_non_per(_qh_ptr_) \
  555. ((_qh_ptr_)->ep_type == USB_ENDPOINT_XFER_BULK || \
  556. (_qh_ptr_)->ep_type == USB_ENDPOINT_XFER_CONTROL)
  557. #ifdef CONFIG_USB_DWC2_DEBUG_PERIODIC
  558. static inline bool dbg_hc(struct dwc2_host_chan *hc) { return true; }
  559. static inline bool dbg_qh(struct dwc2_qh *qh) { return true; }
  560. static inline bool dbg_urb(struct urb *urb) { return true; }
  561. static inline bool dbg_perio(void) { return true; }
  562. #else /* !CONFIG_USB_DWC2_DEBUG_PERIODIC */
  563. static inline bool dbg_hc(struct dwc2_host_chan *hc)
  564. {
  565. return hc->ep_type == USB_ENDPOINT_XFER_BULK ||
  566. hc->ep_type == USB_ENDPOINT_XFER_CONTROL;
  567. }
  568. static inline bool dbg_qh(struct dwc2_qh *qh)
  569. {
  570. return qh->ep_type == USB_ENDPOINT_XFER_BULK ||
  571. qh->ep_type == USB_ENDPOINT_XFER_CONTROL;
  572. }
  573. static inline bool dbg_urb(struct urb *urb)
  574. {
  575. return usb_pipetype(urb->pipe) == PIPE_BULK ||
  576. usb_pipetype(urb->pipe) == PIPE_CONTROL;
  577. }
  578. static inline bool dbg_perio(void) { return false; }
  579. #endif
  580. /*
  581. * Returns true if frame1 index is greater than frame2 index. The comparison
  582. * is done modulo FRLISTEN_64_SIZE. This accounts for the rollover of the
  583. * frame number when the max index frame number is reached.
  584. */
  585. static inline bool dwc2_frame_idx_num_gt(u16 fr_idx1, u16 fr_idx2)
  586. {
  587. u16 diff = fr_idx1 - fr_idx2;
  588. u16 sign = diff & (FRLISTEN_64_SIZE >> 1);
  589. return diff && !sign;
  590. }
  591. /*
  592. * Returns true if frame1 is less than or equal to frame2. The comparison is
  593. * done modulo HFNUM_MAX_FRNUM. This accounts for the rollover of the
  594. * frame number when the max frame number is reached.
  595. */
  596. static inline int dwc2_frame_num_le(u16 frame1, u16 frame2)
  597. {
  598. return ((frame2 - frame1) & HFNUM_MAX_FRNUM) <= (HFNUM_MAX_FRNUM >> 1);
  599. }
  600. /*
  601. * Returns true if frame1 is greater than frame2. The comparison is done
  602. * modulo HFNUM_MAX_FRNUM. This accounts for the rollover of the frame
  603. * number when the max frame number is reached.
  604. */
  605. static inline int dwc2_frame_num_gt(u16 frame1, u16 frame2)
  606. {
  607. return (frame1 != frame2) &&
  608. ((frame1 - frame2) & HFNUM_MAX_FRNUM) < (HFNUM_MAX_FRNUM >> 1);
  609. }
  610. /*
  611. * Increments frame by the amount specified by inc. The addition is done
  612. * modulo HFNUM_MAX_FRNUM. Returns the incremented value.
  613. */
  614. static inline u16 dwc2_frame_num_inc(u16 frame, u16 inc)
  615. {
  616. return (frame + inc) & HFNUM_MAX_FRNUM;
  617. }
  618. static inline u16 dwc2_frame_num_dec(u16 frame, u16 dec)
  619. {
  620. return (frame + HFNUM_MAX_FRNUM + 1 - dec) & HFNUM_MAX_FRNUM;
  621. }
  622. static inline u16 dwc2_full_frame_num(u16 frame)
  623. {
  624. return (frame & HFNUM_MAX_FRNUM) >> 3;
  625. }
  626. static inline u16 dwc2_micro_frame_num(u16 frame)
  627. {
  628. return frame & 0x7;
  629. }
  630. /*
  631. * Returns the Core Interrupt Status register contents, ANDed with the Core
  632. * Interrupt Mask register contents
  633. */
  634. static inline u32 dwc2_read_core_intr(struct dwc2_hsotg *hsotg)
  635. {
  636. return dwc2_readl(hsotg, GINTSTS) &
  637. dwc2_readl(hsotg, GINTMSK);
  638. }
  639. static inline u32 dwc2_hcd_urb_get_status(struct dwc2_hcd_urb *dwc2_urb)
  640. {
  641. return dwc2_urb->status;
  642. }
  643. static inline u32 dwc2_hcd_urb_get_actual_length(
  644. struct dwc2_hcd_urb *dwc2_urb)
  645. {
  646. return dwc2_urb->actual_length;
  647. }
  648. static inline u32 dwc2_hcd_urb_get_error_count(struct dwc2_hcd_urb *dwc2_urb)
  649. {
  650. return dwc2_urb->error_count;
  651. }
  652. static inline void dwc2_hcd_urb_set_iso_desc_params(
  653. struct dwc2_hcd_urb *dwc2_urb, int desc_num, u32 offset,
  654. u32 length)
  655. {
  656. dwc2_urb->iso_descs[desc_num].offset = offset;
  657. dwc2_urb->iso_descs[desc_num].length = length;
  658. }
  659. static inline u32 dwc2_hcd_urb_get_iso_desc_status(
  660. struct dwc2_hcd_urb *dwc2_urb, int desc_num)
  661. {
  662. return dwc2_urb->iso_descs[desc_num].status;
  663. }
  664. static inline u32 dwc2_hcd_urb_get_iso_desc_actual_length(
  665. struct dwc2_hcd_urb *dwc2_urb, int desc_num)
  666. {
  667. return dwc2_urb->iso_descs[desc_num].actual_length;
  668. }
  669. static inline int dwc2_hcd_is_bandwidth_allocated(struct dwc2_hsotg *hsotg,
  670. struct usb_host_endpoint *ep)
  671. {
  672. struct dwc2_qh *qh = ep->hcpriv;
  673. if (qh && !list_empty(&qh->qh_list_entry))
  674. return 1;
  675. return 0;
  676. }
  677. static inline u16 dwc2_hcd_get_ep_bandwidth(struct dwc2_hsotg *hsotg,
  678. struct usb_host_endpoint *ep)
  679. {
  680. struct dwc2_qh *qh = ep->hcpriv;
  681. if (!qh) {
  682. WARN_ON(1);
  683. return 0;
  684. }
  685. return qh->host_us;
  686. }
  687. void dwc2_hcd_save_data_toggle(struct dwc2_hsotg *hsotg,
  688. struct dwc2_host_chan *chan, int chnum,
  689. struct dwc2_qtd *qtd);
  690. /* HCD Core API */
  691. /**
  692. * dwc2_handle_hcd_intr() - Called on every hardware interrupt
  693. *
  694. * @hsotg: The DWC2 HCD
  695. *
  696. * Returns IRQ_HANDLED if interrupt is handled
  697. * Return IRQ_NONE if interrupt is not handled
  698. */
  699. irqreturn_t dwc2_handle_hcd_intr(struct dwc2_hsotg *hsotg);
  700. /**
  701. * dwc2_hcd_stop() - Halts the DWC_otg host mode operation
  702. *
  703. * @hsotg: The DWC2 HCD
  704. */
  705. void dwc2_hcd_stop(struct dwc2_hsotg *hsotg);
  706. /**
  707. * dwc2_hcd_is_b_host() - Returns 1 if core currently is acting as B host,
  708. * and 0 otherwise
  709. *
  710. * @hsotg: The DWC2 HCD
  711. */
  712. int dwc2_hcd_is_b_host(struct dwc2_hsotg *hsotg);
  713. /**
  714. * dwc2_hcd_dump_state() - Dumps hsotg state
  715. *
  716. * @hsotg: The DWC2 HCD
  717. *
  718. * NOTE: This function will be removed once the peripheral controller code
  719. * is integrated and the driver is stable
  720. */
  721. void dwc2_hcd_dump_state(struct dwc2_hsotg *hsotg);
  722. /* URB interface */
  723. /* Transfer flags */
  724. #define URB_GIVEBACK_ASAP 0x1
  725. #define URB_SEND_ZERO_PACKET 0x2
  726. /* Host driver callbacks */
  727. struct dwc2_tt *dwc2_host_get_tt_info(struct dwc2_hsotg *hsotg,
  728. void *context, gfp_t mem_flags,
  729. int *ttport);
  730. void dwc2_host_put_tt_info(struct dwc2_hsotg *hsotg,
  731. struct dwc2_tt *dwc_tt);
  732. int dwc2_host_get_speed(struct dwc2_hsotg *hsotg, void *context);
  733. void dwc2_host_complete(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
  734. int status);
  735. #endif /* __DWC2_HCD_H__ */