blob: 42f2e4e233dab0aa928928650cdf157f2a44af30 [file] [log] [blame]
Paul Zimmerman7359d482013-03-11 17:47:59 -07001/*
2 * hcd.h - DesignWare HS OTG Controller host-mode declarations
3 *
4 * Copyright (C) 2004-2013 Synopsys, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The names of the above-listed copyright holders may not be used
16 * to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * ALTERNATIVELY, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") as published by the Free Software
21 * Foundation; either version 2 of the License, or (at your option) any
22 * later version.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36#ifndef __DWC2_HCD_H__
37#define __DWC2_HCD_H__
38
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
49struct dwc2_qh;
50
51/**
52 * struct dwc2_host_chan - Software host channel descriptor
53 *
54 * @hc_num: Host channel number, used for register address lookup
55 * @dev_addr: Address of the device
56 * @ep_num: Endpoint of the device
57 * @ep_is_in: Endpoint direction
58 * @speed: Device speed. One of the following values:
59 * - USB_SPEED_LOW
60 * - USB_SPEED_FULL
61 * - USB_SPEED_HIGH
62 * @ep_type: Endpoint type. One of the following values:
63 * - USB_ENDPOINT_XFER_CONTROL: 0
64 * - USB_ENDPOINT_XFER_ISOC: 1
65 * - USB_ENDPOINT_XFER_BULK: 2
66 * - USB_ENDPOINT_XFER_INTR: 3
67 * @max_packet: Max packet size in bytes
68 * @data_pid_start: PID for initial transaction.
69 * 0: DATA0
70 * 1: DATA2
71 * 2: DATA1
72 * 3: MDATA (non-Control EP),
73 * SETUP (Control EP)
74 * @multi_count: Number of additional periodic transactions per
75 * (micro)frame
76 * @xfer_buf: Pointer to current transfer buffer position
77 * @xfer_dma: DMA address of xfer_buf
Paul Zimmerman7359d482013-03-11 17:47:59 -070078 * @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 * @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
Gregory Herrero95105a92015-11-20 11:49:29 +0100108 * @desc_list_sz: Current QH's descriptor list size
Paul Zimmerman7359d482013-03-11 17:47:59 -0700109 *
110 * This structure represents the state of a single host channel when acting in
111 * host mode. It contains the data items needed to transfer packets to an
112 * endpoint via a host channel.
113 */
114struct dwc2_host_chan {
115 u8 hc_num;
116
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;
Matthijs Kooijmanf9234632013-08-30 18:45:13 +0200124#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
Paul Zimmerman7359d482013-03-11 17:47:59 -0700129
130 unsigned multi_count:2;
131
132 u8 *xfer_buf;
133 dma_addr_t xfer_dma;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700134 u32 xfer_len;
135 u32 xfer_count;
136 u16 start_pkt_count;
137 u8 xfer_started;
138 u8 do_ping;
139 u8 error_state;
140 u8 halt_on_queue;
141 u8 halt_pending;
142 u8 do_split;
143 u8 complete_split;
144 u8 hub_addr;
145 u8 hub_port;
146 u8 xact_pos;
Matthijs Kooijmanf9234632013-08-30 18:45:13 +0200147#define DWC2_HCSPLT_XACTPOS_MID HCSPLT_XACTPOS_MID
148#define DWC2_HCSPLT_XACTPOS_END HCSPLT_XACTPOS_END
149#define DWC2_HCSPLT_XACTPOS_BEGIN HCSPLT_XACTPOS_BEGIN
150#define DWC2_HCSPLT_XACTPOS_ALL HCSPLT_XACTPOS_ALL
Paul Zimmerman7359d482013-03-11 17:47:59 -0700151
152 u8 requests;
153 u8 schinfo;
154 u16 ntd;
155 enum dwc2_halt_status halt_status;
156 u32 hcint;
157 struct dwc2_qh *qh;
158 struct list_head hc_list_entry;
159 dma_addr_t desc_list_addr;
Gregory Herrero95105a92015-11-20 11:49:29 +0100160 u32 desc_list_sz;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700161};
162
163struct dwc2_hcd_pipe_info {
164 u8 dev_addr;
165 u8 ep_num;
166 u8 pipe_type;
167 u8 pipe_dir;
168 u16 mps;
169};
170
171struct dwc2_hcd_iso_packet_desc {
172 u32 offset;
173 u32 length;
174 u32 actual_length;
175 u32 status;
176};
177
178struct dwc2_qtd;
179
180struct dwc2_hcd_urb {
181 void *priv;
182 struct dwc2_qtd *qtd;
183 void *buf;
184 dma_addr_t dma;
185 void *setup_packet;
186 dma_addr_t setup_dma;
187 u32 length;
188 u32 actual_length;
189 u32 status;
190 u32 error_count;
191 u32 packet_count;
192 u32 flags;
193 u16 interval;
194 struct dwc2_hcd_pipe_info pipe_info;
195 struct dwc2_hcd_iso_packet_desc iso_descs[0];
196};
197
198/* Phases for control transfers */
199enum dwc2_control_phase {
200 DWC2_CONTROL_SETUP,
201 DWC2_CONTROL_DATA,
202 DWC2_CONTROL_STATUS,
203};
204
205/* Transaction types */
206enum dwc2_transaction_type {
207 DWC2_TRANSACTION_NONE,
208 DWC2_TRANSACTION_PERIODIC,
209 DWC2_TRANSACTION_NON_PERIODIC,
210 DWC2_TRANSACTION_ALL,
211};
212
213/**
214 * struct dwc2_qh - Software queue head structure
215 *
216 * @ep_type: Endpoint type. One of the following values:
217 * - USB_ENDPOINT_XFER_CONTROL
218 * - USB_ENDPOINT_XFER_BULK
219 * - USB_ENDPOINT_XFER_INT
220 * - USB_ENDPOINT_XFER_ISOC
221 * @ep_is_in: Endpoint direction
222 * @maxp: Value from wMaxPacketSize field of Endpoint Descriptor
223 * @dev_speed: Device speed. One of the following values:
224 * - USB_SPEED_LOW
225 * - USB_SPEED_FULL
226 * - USB_SPEED_HIGH
227 * @data_toggle: Determines the PID of the next data packet for
228 * non-controltransfers. Ignored for control transfers.
229 * One of the following values:
230 * - DWC2_HC_PID_DATA0
231 * - DWC2_HC_PID_DATA1
232 * @ping_state: Ping state
233 * @do_split: Full/low speed endpoint on high-speed hub requires split
Paul Zimmerman725acc82013-08-11 12:50:17 -0700234 * @td_first: Index of first activated isochronous transfer descriptor
235 * @td_last: Index of last activated isochronous transfer descriptor
Paul Zimmerman7359d482013-03-11 17:47:59 -0700236 * @usecs: Bandwidth in microseconds per (micro)frame
237 * @interval: Interval between transfers in (micro)frames
Paul Zimmerman725acc82013-08-11 12:50:17 -0700238 * @sched_frame: (Micro)frame to initialize a periodic transfer.
Paul Zimmerman7359d482013-03-11 17:47:59 -0700239 * The transfer executes in the following (micro)frame.
Dom Cobley20f2eb92013-09-23 14:23:34 -0700240 * @frame_usecs: Internal variable used by the microframe scheduler
Paul Zimmerman7359d482013-03-11 17:47:59 -0700241 * @start_split_frame: (Micro)frame at which last start split was initialized
Paul Zimmerman725acc82013-08-11 12:50:17 -0700242 * @ntd: Actual number of transfer descriptors in a list
Paul Zimmerman725acc82013-08-11 12:50:17 -0700243 * @qtd_list: List of QTDs for this QH
244 * @channel: Host channel currently processing transfers for this QH
Paul Zimmerman7359d482013-03-11 17:47:59 -0700245 * @qh_list_entry: Entry for QH in either the periodic or non-periodic
246 * schedule
247 * @desc_list: List of transfer descriptors
248 * @desc_list_dma: Physical address of desc_list
Gregory Herrero95105a92015-11-20 11:49:29 +0100249 * @desc_list_sz: Size of descriptors list
Paul Zimmerman7359d482013-03-11 17:47:59 -0700250 * @n_bytes: Xfer Bytes array. Each element corresponds to a transfer
251 * descriptor and indicates original XferSize value for the
252 * descriptor
Paul Zimmerman7359d482013-03-11 17:47:59 -0700253 * @tt_buffer_dirty True if clear_tt_buffer_complete is pending
254 *
255 * A Queue Head (QH) holds the static characteristics of an endpoint and
256 * maintains a list of transfers (QTDs) for that endpoint. A QH structure may
257 * be entered in either the non-periodic or periodic schedule.
258 */
259struct dwc2_qh {
260 u8 ep_type;
261 u8 ep_is_in;
262 u16 maxp;
263 u8 dev_speed;
264 u8 data_toggle;
265 u8 ping_state;
266 u8 do_split;
Paul Zimmerman725acc82013-08-11 12:50:17 -0700267 u8 td_first;
268 u8 td_last;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700269 u16 usecs;
270 u16 interval;
271 u16 sched_frame;
Dom Cobley20f2eb92013-09-23 14:23:34 -0700272 u16 frame_usecs[8];
Paul Zimmerman7359d482013-03-11 17:47:59 -0700273 u16 start_split_frame;
Paul Zimmerman725acc82013-08-11 12:50:17 -0700274 u16 ntd;
Paul Zimmerman725acc82013-08-11 12:50:17 -0700275 struct list_head qtd_list;
276 struct dwc2_host_chan *channel;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700277 struct list_head qh_list_entry;
278 struct dwc2_hcd_dma_desc *desc_list;
279 dma_addr_t desc_list_dma;
Gregory Herrero95105a92015-11-20 11:49:29 +0100280 u32 desc_list_sz;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700281 u32 *n_bytes;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700282 unsigned tt_buffer_dirty:1;
283};
284
285/**
286 * struct dwc2_qtd - Software queue transfer descriptor (QTD)
287 *
288 * @control_phase: Current phase for control transfers (Setup, Data, or
289 * Status)
290 * @in_process: Indicates if this QTD is currently processed by HW
291 * @data_toggle: Determines the PID of the next data packet for the
292 * data phase of control transfers. Ignored for other
293 * transfer types. One of the following values:
294 * - DWC2_HC_PID_DATA0
295 * - DWC2_HC_PID_DATA1
296 * @complete_split: Keeps track of the current split type for FS/LS
297 * endpoints on a HS Hub
298 * @isoc_split_pos: Position of the ISOC split in full/low speed
299 * @isoc_frame_index: Index of the next frame descriptor for an isochronous
300 * transfer. A frame descriptor describes the buffer
301 * position and length of the data to be transferred in the
302 * next scheduled (micro)frame of an isochronous transfer.
303 * It also holds status for that transaction. The frame
304 * index starts at 0.
305 * @isoc_split_offset: Position of the ISOC split in the buffer for the
306 * current frame
307 * @ssplit_out_xfer_count: How many bytes transferred during SSPLIT OUT
308 * @error_count: Holds the number of bus errors that have occurred for
309 * a transaction within this transfer
310 * @n_desc: Number of DMA descriptors for this QTD
311 * @isoc_frame_index_last: Last activated frame (packet) index, used in
312 * descriptor DMA mode only
313 * @urb: URB for this transfer
314 * @qh: Queue head for this QTD
315 * @qtd_list_entry: For linking to the QH's list of QTDs
316 *
317 * A Queue Transfer Descriptor (QTD) holds the state of a bulk, control,
318 * interrupt, or isochronous transfer. A single QTD is created for each URB
319 * (of one of these types) submitted to the HCD. The transfer associated with
320 * a QTD may require one or multiple transactions.
321 *
322 * A QTD is linked to a Queue Head, which is entered in either the
323 * non-periodic or periodic schedule for execution. When a QTD is chosen for
324 * execution, some or all of its transactions may be executed. After
325 * execution, the state of the QTD is updated. The QTD may be retired if all
326 * its transactions are complete or if an error occurred. Otherwise, it
327 * remains in the schedule so more transactions can be executed later.
328 */
329struct dwc2_qtd {
330 enum dwc2_control_phase control_phase;
331 u8 in_process;
332 u8 data_toggle;
333 u8 complete_split;
334 u8 isoc_split_pos;
335 u16 isoc_frame_index;
336 u16 isoc_split_offset;
Gregory Herreroc17b3372015-11-05 09:41:43 +0100337 u16 isoc_td_last;
338 u16 isoc_td_first;
Paul Zimmerman7359d482013-03-11 17:47:59 -0700339 u32 ssplit_out_xfer_count;
340 u8 error_count;
341 u8 n_desc;
342 u16 isoc_frame_index_last;
343 struct dwc2_hcd_urb *urb;
344 struct dwc2_qh *qh;
345 struct list_head qtd_list_entry;
346};
347
348#ifdef DEBUG
349struct hc_xfer_info {
350 struct dwc2_hsotg *hsotg;
351 struct dwc2_host_chan *chan;
352};
353#endif
354
355/* Gets the struct usb_hcd that contains a struct dwc2_hsotg */
356static inline struct usb_hcd *dwc2_hsotg_to_hcd(struct dwc2_hsotg *hsotg)
357{
358 return (struct usb_hcd *)hsotg->priv;
359}
360
361/*
362 * Inline used to disable one channel interrupt. Channel interrupts are
363 * disabled when the channel is halted or released by the interrupt handler.
364 * There is no need to handle further interrupts of that type until the
365 * channel is re-assigned. In fact, subsequent handling may cause crashes
366 * because the channel structures are cleaned up when the channel is released.
367 */
368static inline void disable_hc_int(struct dwc2_hsotg *hsotg, int chnum, u32 intr)
369{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300370 u32 mask = dwc2_readl(hsotg->regs + HCINTMSK(chnum));
Paul Zimmerman7359d482013-03-11 17:47:59 -0700371
372 mask &= ~intr;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300373 dwc2_writel(mask, hsotg->regs + HCINTMSK(chnum));
Paul Zimmerman7359d482013-03-11 17:47:59 -0700374}
375
376/*
Paul Zimmerman7359d482013-03-11 17:47:59 -0700377 * Reads HPRT0 in preparation to modify. It keeps the WC bits 0 so that if they
378 * are read as 1, they won't clear when written back.
379 */
380static inline u32 dwc2_read_hprt0(struct dwc2_hsotg *hsotg)
381{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300382 u32 hprt0 = dwc2_readl(hsotg->regs + HPRT0);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700383
384 hprt0 &= ~(HPRT0_ENA | HPRT0_CONNDET | HPRT0_ENACHG | HPRT0_OVRCURRCHG);
385 return hprt0;
386}
387
388static inline u8 dwc2_hcd_get_ep_num(struct dwc2_hcd_pipe_info *pipe)
389{
390 return pipe->ep_num;
391}
392
393static inline u8 dwc2_hcd_get_pipe_type(struct dwc2_hcd_pipe_info *pipe)
394{
395 return pipe->pipe_type;
396}
397
398static inline u16 dwc2_hcd_get_mps(struct dwc2_hcd_pipe_info *pipe)
399{
400 return pipe->mps;
401}
402
403static inline u8 dwc2_hcd_get_dev_addr(struct dwc2_hcd_pipe_info *pipe)
404{
405 return pipe->dev_addr;
406}
407
408static inline u8 dwc2_hcd_is_pipe_isoc(struct dwc2_hcd_pipe_info *pipe)
409{
410 return pipe->pipe_type == USB_ENDPOINT_XFER_ISOC;
411}
412
413static inline u8 dwc2_hcd_is_pipe_int(struct dwc2_hcd_pipe_info *pipe)
414{
415 return pipe->pipe_type == USB_ENDPOINT_XFER_INT;
416}
417
418static inline u8 dwc2_hcd_is_pipe_bulk(struct dwc2_hcd_pipe_info *pipe)
419{
420 return pipe->pipe_type == USB_ENDPOINT_XFER_BULK;
421}
422
423static inline u8 dwc2_hcd_is_pipe_control(struct dwc2_hcd_pipe_info *pipe)
424{
425 return pipe->pipe_type == USB_ENDPOINT_XFER_CONTROL;
426}
427
428static inline u8 dwc2_hcd_is_pipe_in(struct dwc2_hcd_pipe_info *pipe)
429{
430 return pipe->pipe_dir == USB_DIR_IN;
431}
432
433static inline u8 dwc2_hcd_is_pipe_out(struct dwc2_hcd_pipe_info *pipe)
434{
435 return !dwc2_hcd_is_pipe_in(pipe);
436}
437
Mian Yousaf Kaukabecb176c2015-04-29 22:09:05 +0200438extern int dwc2_hcd_init(struct dwc2_hsotg *hsotg, int irq);
Paul Zimmermane62662c2013-03-25 17:03:35 -0700439extern void dwc2_hcd_remove(struct dwc2_hsotg *hsotg);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700440
441/* Transaction Execution Functions */
442extern enum dwc2_transaction_type dwc2_hcd_select_transactions(
443 struct dwc2_hsotg *hsotg);
444extern void dwc2_hcd_queue_transactions(struct dwc2_hsotg *hsotg,
445 enum dwc2_transaction_type tr_type);
446
447/* Schedule Queue Functions */
448/* Implemented in hcd_queue.c */
Dom Cobley20f2eb92013-09-23 14:23:34 -0700449extern void dwc2_hcd_init_usecs(struct dwc2_hsotg *hsotg);
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +0200450extern struct dwc2_qh *dwc2_hcd_qh_create(struct dwc2_hsotg *hsotg,
451 struct dwc2_hcd_urb *urb,
452 gfp_t mem_flags);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700453extern void dwc2_hcd_qh_free(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
454extern int dwc2_hcd_qh_add(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
455extern void dwc2_hcd_qh_unlink(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
456extern void dwc2_hcd_qh_deactivate(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
457 int sched_csplit);
458
459extern void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb);
460extern int dwc2_hcd_qtd_add(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +0200461 struct dwc2_qh *qh);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700462
463/* Unlinks and frees a QTD */
464static inline void dwc2_hcd_qtd_unlink_and_free(struct dwc2_hsotg *hsotg,
465 struct dwc2_qtd *qtd,
466 struct dwc2_qh *qh)
467{
468 list_del(&qtd->qtd_list_entry);
469 kfree(qtd);
470}
471
472/* Descriptor DMA support functions */
473extern void dwc2_hcd_start_xfer_ddma(struct dwc2_hsotg *hsotg,
474 struct dwc2_qh *qh);
475extern void dwc2_hcd_complete_xfer_ddma(struct dwc2_hsotg *hsotg,
476 struct dwc2_host_chan *chan, int chnum,
477 enum dwc2_halt_status halt_status);
478
479extern int dwc2_hcd_qh_init_ddma(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
480 gfp_t mem_flags);
481extern void dwc2_hcd_qh_free_ddma(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh);
482
483/* Check if QH is non-periodic */
484#define dwc2_qh_is_non_per(_qh_ptr_) \
485 ((_qh_ptr_)->ep_type == USB_ENDPOINT_XFER_BULK || \
486 (_qh_ptr_)->ep_type == USB_ENDPOINT_XFER_CONTROL)
487
Matthijs Kooijmanb49977a2013-04-10 09:55:50 +0200488#ifdef CONFIG_USB_DWC2_DEBUG_PERIODIC
489static inline bool dbg_hc(struct dwc2_host_chan *hc) { return true; }
490static inline bool dbg_qh(struct dwc2_qh *qh) { return true; }
491static inline bool dbg_urb(struct urb *urb) { return true; }
492static inline bool dbg_perio(void) { return true; }
493#else /* !CONFIG_USB_DWC2_DEBUG_PERIODIC */
494static inline bool dbg_hc(struct dwc2_host_chan *hc)
495{
496 return hc->ep_type == USB_ENDPOINT_XFER_BULK ||
497 hc->ep_type == USB_ENDPOINT_XFER_CONTROL;
498}
499
500static inline bool dbg_qh(struct dwc2_qh *qh)
501{
502 return qh->ep_type == USB_ENDPOINT_XFER_BULK ||
503 qh->ep_type == USB_ENDPOINT_XFER_CONTROL;
504}
505
506static inline bool dbg_urb(struct urb *urb)
507{
508 return usb_pipetype(urb->pipe) == PIPE_BULK ||
509 usb_pipetype(urb->pipe) == PIPE_CONTROL;
510}
511
512static inline bool dbg_perio(void) { return false; }
513#endif
514
Paul Zimmerman7359d482013-03-11 17:47:59 -0700515/* High bandwidth multiplier as encoded in highspeed endpoint descriptors */
516#define dwc2_hb_mult(wmaxpacketsize) (1 + (((wmaxpacketsize) >> 11) & 0x03))
517
518/* Packet size for any kind of endpoint descriptor */
519#define dwc2_max_packet(wmaxpacketsize) ((wmaxpacketsize) & 0x07ff)
520
521/*
Gregory Herrerob9392d92015-11-05 09:41:42 +0100522 * Returns true if frame1 index is greater than frame2 index. The comparison
523 * is done modulo FRLISTEN_64_SIZE. This accounts for the rollover of the
524 * frame number when the max index frame number is reached.
525 */
526static inline bool dwc2_frame_idx_num_gt(u16 fr_idx1, u16 fr_idx2)
527{
528 u16 diff = fr_idx1 - fr_idx2;
529 u16 sign = diff & (FRLISTEN_64_SIZE >> 1);
530
531 return diff && !sign;
532}
533
534/*
Paul Zimmerman7359d482013-03-11 17:47:59 -0700535 * Returns true if frame1 is less than or equal to frame2. The comparison is
536 * done modulo HFNUM_MAX_FRNUM. This accounts for the rollover of the
537 * frame number when the max frame number is reached.
538 */
539static inline int dwc2_frame_num_le(u16 frame1, u16 frame2)
540{
541 return ((frame2 - frame1) & HFNUM_MAX_FRNUM) <= (HFNUM_MAX_FRNUM >> 1);
542}
543
544/*
545 * Returns true if frame1 is greater than frame2. The comparison is done
546 * modulo HFNUM_MAX_FRNUM. This accounts for the rollover of the frame
547 * number when the max frame number is reached.
548 */
549static inline int dwc2_frame_num_gt(u16 frame1, u16 frame2)
550{
551 return (frame1 != frame2) &&
552 ((frame1 - frame2) & HFNUM_MAX_FRNUM) < (HFNUM_MAX_FRNUM >> 1);
553}
554
555/*
556 * Increments frame by the amount specified by inc. The addition is done
557 * modulo HFNUM_MAX_FRNUM. Returns the incremented value.
558 */
559static inline u16 dwc2_frame_num_inc(u16 frame, u16 inc)
560{
561 return (frame + inc) & HFNUM_MAX_FRNUM;
562}
563
564static inline u16 dwc2_full_frame_num(u16 frame)
565{
566 return (frame & HFNUM_MAX_FRNUM) >> 3;
567}
568
569static inline u16 dwc2_micro_frame_num(u16 frame)
570{
571 return frame & 0x7;
572}
573
574/*
575 * Returns the Core Interrupt Status register contents, ANDed with the Core
576 * Interrupt Mask register contents
577 */
578static inline u32 dwc2_read_core_intr(struct dwc2_hsotg *hsotg)
579{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300580 return dwc2_readl(hsotg->regs + GINTSTS) &
581 dwc2_readl(hsotg->regs + GINTMSK);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700582}
583
584static inline u32 dwc2_hcd_urb_get_status(struct dwc2_hcd_urb *dwc2_urb)
585{
586 return dwc2_urb->status;
587}
588
589static inline u32 dwc2_hcd_urb_get_actual_length(
590 struct dwc2_hcd_urb *dwc2_urb)
591{
592 return dwc2_urb->actual_length;
593}
594
595static inline u32 dwc2_hcd_urb_get_error_count(struct dwc2_hcd_urb *dwc2_urb)
596{
597 return dwc2_urb->error_count;
598}
599
600static inline void dwc2_hcd_urb_set_iso_desc_params(
601 struct dwc2_hcd_urb *dwc2_urb, int desc_num, u32 offset,
602 u32 length)
603{
604 dwc2_urb->iso_descs[desc_num].offset = offset;
605 dwc2_urb->iso_descs[desc_num].length = length;
606}
607
608static inline u32 dwc2_hcd_urb_get_iso_desc_status(
609 struct dwc2_hcd_urb *dwc2_urb, int desc_num)
610{
611 return dwc2_urb->iso_descs[desc_num].status;
612}
613
614static inline u32 dwc2_hcd_urb_get_iso_desc_actual_length(
615 struct dwc2_hcd_urb *dwc2_urb, int desc_num)
616{
617 return dwc2_urb->iso_descs[desc_num].actual_length;
618}
619
620static inline int dwc2_hcd_is_bandwidth_allocated(struct dwc2_hsotg *hsotg,
621 struct usb_host_endpoint *ep)
622{
623 struct dwc2_qh *qh = ep->hcpriv;
624
625 if (qh && !list_empty(&qh->qh_list_entry))
626 return 1;
627
628 return 0;
629}
630
631static inline u16 dwc2_hcd_get_ep_bandwidth(struct dwc2_hsotg *hsotg,
632 struct usb_host_endpoint *ep)
633{
634 struct dwc2_qh *qh = ep->hcpriv;
635
636 if (!qh) {
637 WARN_ON(1);
638 return 0;
639 }
640
641 return qh->usecs;
642}
643
644extern void dwc2_hcd_save_data_toggle(struct dwc2_hsotg *hsotg,
645 struct dwc2_host_chan *chan, int chnum,
646 struct dwc2_qtd *qtd);
647
648/* HCD Core API */
649
650/**
Matthijs Kooijmanca18f4a2013-04-25 23:39:15 +0200651 * dwc2_handle_hcd_intr() - Called on every hardware interrupt
Paul Zimmerman7359d482013-03-11 17:47:59 -0700652 *
653 * @hsotg: The DWC2 HCD
654 *
Matthijs Kooijman6aafb002013-04-25 23:39:14 +0200655 * Returns IRQ_HANDLED if interrupt is handled
656 * Return IRQ_NONE if interrupt is not handled
Paul Zimmerman7359d482013-03-11 17:47:59 -0700657 */
Matthijs Kooijmanca18f4a2013-04-25 23:39:15 +0200658extern irqreturn_t dwc2_handle_hcd_intr(struct dwc2_hsotg *hsotg);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700659
660/**
661 * dwc2_hcd_stop() - Halts the DWC_otg host mode operation
662 *
663 * @hsotg: The DWC2 HCD
664 */
665extern void dwc2_hcd_stop(struct dwc2_hsotg *hsotg);
666
Paul Zimmerman7359d482013-03-11 17:47:59 -0700667/**
668 * dwc2_hcd_is_b_host() - Returns 1 if core currently is acting as B host,
669 * and 0 otherwise
670 *
671 * @hsotg: The DWC2 HCD
672 */
673extern int dwc2_hcd_is_b_host(struct dwc2_hsotg *hsotg);
674
675/**
Paul Zimmerman7359d482013-03-11 17:47:59 -0700676 * dwc2_hcd_dump_state() - Dumps hsotg state
677 *
678 * @hsotg: The DWC2 HCD
679 *
680 * NOTE: This function will be removed once the peripheral controller code
681 * is integrated and the driver is stable
682 */
683extern void dwc2_hcd_dump_state(struct dwc2_hsotg *hsotg);
684
685/**
686 * dwc2_hcd_dump_frrem() - Dumps the average frame remaining at SOF
687 *
688 * @hsotg: The DWC2 HCD
689 *
690 * This can be used to determine average interrupt latency. Frame remaining is
691 * also shown for start transfer and two additional sample points.
692 *
693 * NOTE: This function will be removed once the peripheral controller code
694 * is integrated and the driver is stable
695 */
696extern void dwc2_hcd_dump_frrem(struct dwc2_hsotg *hsotg);
697
698/* URB interface */
699
700/* Transfer flags */
701#define URB_GIVEBACK_ASAP 0x1
702#define URB_SEND_ZERO_PACKET 0x2
703
704/* Host driver callbacks */
705
706extern void dwc2_host_start(struct dwc2_hsotg *hsotg);
707extern void dwc2_host_disconnect(struct dwc2_hsotg *hsotg);
708extern void dwc2_host_hub_info(struct dwc2_hsotg *hsotg, void *context,
709 int *hub_addr, int *hub_port);
710extern int dwc2_host_get_speed(struct dwc2_hsotg *hsotg, void *context);
Paul Zimmerman0d012b92013-07-13 14:53:48 -0700711extern void dwc2_host_complete(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
712 int status);
Paul Zimmerman7359d482013-03-11 17:47:59 -0700713
714#ifdef DEBUG
715/*
716 * Macro to sample the remaining PHY clocks left in the current frame. This
717 * may be used during debugging to determine the average time it takes to
718 * execute sections of code. There are two possible sample points, "a" and
719 * "b", so the _letter_ argument must be one of these values.
720 *
721 * To dump the average sample times, read the "hcd_frrem" sysfs attribute. For
722 * example, "cat /sys/devices/lm0/hcd_frrem".
723 */
724#define dwc2_sample_frrem(_hcd_, _qh_, _letter_) \
725do { \
726 struct hfnum_data _hfnum_; \
727 struct dwc2_qtd *_qtd_; \
728 \
729 _qtd_ = list_entry((_qh_)->qtd_list.next, struct dwc2_qtd, \
730 qtd_list_entry); \
731 if (usb_pipeint(_qtd_->urb->pipe) && \
732 (_qh_)->start_split_frame != 0 && !_qtd_->complete_split) { \
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300733 _hfnum_.d32 = dwc2_readl((_hcd_)->regs + HFNUM); \
Paul Zimmerman7359d482013-03-11 17:47:59 -0700734 switch (_hfnum_.b.frnum & 0x7) { \
735 case 7: \
736 (_hcd_)->hfnum_7_samples_##_letter_++; \
737 (_hcd_)->hfnum_7_frrem_accum_##_letter_ += \
738 _hfnum_.b.frrem; \
739 break; \
740 case 0: \
741 (_hcd_)->hfnum_0_samples_##_letter_++; \
742 (_hcd_)->hfnum_0_frrem_accum_##_letter_ += \
743 _hfnum_.b.frrem; \
744 break; \
745 default: \
746 (_hcd_)->hfnum_other_samples_##_letter_++; \
747 (_hcd_)->hfnum_other_frrem_accum_##_letter_ += \
748 _hfnum_.b.frrem; \
749 break; \
750 } \
751 } \
752} while (0)
753#else
754#define dwc2_sample_frrem(_hcd_, _qh_, _letter_) do {} while (0)
755#endif
756
757#endif /* __DWC2_HCD_H__ */