xref: /linux/drivers/usb/cdns3/cdnsp-ring.c (revision e68fddb47aad85ebd294a051243066f29da20d8d)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Cadence CDNSP DRD Driver.
4  *
5  * Copyright (C) 2020 Cadence.
6  *
7  * Author: Pawel Laszczak <pawell@cadence.com>
8  *
9  * Code based on Linux XHCI driver.
10  * Origin: Copyright (C) 2008 Intel Corp
11  */
12 
13 /*
14  * Ring initialization rules:
15  * 1. Each segment is initialized to zero, except for link TRBs.
16  * 2. Ring cycle state = 0. This represents Producer Cycle State (PCS) or
17  *    Consumer Cycle State (CCS), depending on ring function.
18  * 3. Enqueue pointer = dequeue pointer = address of first TRB in the segment.
19  *
20  * Ring behavior rules:
21  * 1. A ring is empty if enqueue == dequeue. This means there will always be at
22  *    least one free TRB in the ring. This is useful if you want to turn that
23  *    into a link TRB and expand the ring.
24  * 2. When incrementing an enqueue or dequeue pointer, if the next TRB is a
25  *    link TRB, then load the pointer with the address in the link TRB. If the
26  *    link TRB had its toggle bit set, you may need to update the ring cycle
27  *    state (see cycle bit rules). You may have to do this multiple times
28  *    until you reach a non-link TRB.
29  * 3. A ring is full if enqueue++ (for the definition of increment above)
30  *    equals the dequeue pointer.
31  *
32  * Cycle bit rules:
33  * 1. When a consumer increments a dequeue pointer and encounters a toggle bit
34  *    in a link TRB, it must toggle the ring cycle state.
35  * 2. When a producer increments an enqueue pointer and encounters a toggle bit
36  *    in a link TRB, it must toggle the ring cycle state.
37  *
38  * Producer rules:
39  * 1. Check if ring is full before you enqueue.
40  * 2. Write the ring cycle state to the cycle bit in the TRB you're enqueuing.
41  *    Update enqueue pointer between each write (which may update the ring
42  *    cycle state).
43  * 3. Notify consumer. If SW is producer, it rings the doorbell for command
44  *    and endpoint rings. If controller is the producer for the event ring,
45  *    and it generates an interrupt according to interrupt modulation rules.
46  *
47  * Consumer rules:
48  * 1. Check if TRB belongs to you. If the cycle bit == your ring cycle state,
49  *    the TRB is owned by the consumer.
50  * 2. Update dequeue pointer (which may update the ring cycle state) and
51  *    continue processing TRBs until you reach a TRB which is not owned by you.
52  * 3. Notify the producer. SW is the consumer for the event ring, and it
53  *    updates event ring dequeue pointer. Controller is the consumer for the
54  *    command and endpoint rings; it generates events on the event ring
55  *    for these.
56  */
57 
58 #include <linux/scatterlist.h>
59 #include <linux/dma-mapping.h>
60 #include <linux/delay.h>
61 #include <linux/slab.h>
62 #include <linux/irq.h>
63 
64 #include "cdnsp-trace.h"
65 #include "cdnsp-gadget.h"
66 
67 /*
68  * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
69  * address of the TRB.
70  */
71 dma_addr_t cdnsp_trb_virt_to_dma(struct cdnsp_segment *seg,
72 				 union cdnsp_trb *trb)
73 {
74 	unsigned long segment_offset = trb - seg->trbs;
75 
76 	if (trb < seg->trbs || segment_offset >= TRBS_PER_SEGMENT)
77 		return 0;
78 
79 	return seg->dma + (segment_offset * sizeof(*trb));
80 }
81 
82 static bool cdnsp_trb_is_noop(union cdnsp_trb *trb)
83 {
84 	return TRB_TYPE_NOOP_LE32(trb->generic.field[3]);
85 }
86 
87 static bool cdnsp_trb_is_link(union cdnsp_trb *trb)
88 {
89 	return TRB_TYPE_LINK_LE32(trb->link.control);
90 }
91 
92 bool cdnsp_last_trb_on_seg(struct cdnsp_segment *seg, union cdnsp_trb *trb)
93 {
94 	return trb == &seg->trbs[TRBS_PER_SEGMENT - 1];
95 }
96 
97 bool cdnsp_last_trb_on_ring(struct cdnsp_ring *ring,
98 			    struct cdnsp_segment *seg,
99 			    union cdnsp_trb *trb)
100 {
101 	return cdnsp_last_trb_on_seg(seg, trb) && (seg->next == ring->first_seg);
102 }
103 
104 static bool cdnsp_link_trb_toggles_cycle(union cdnsp_trb *trb)
105 {
106 	return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
107 }
108 
109 static void cdnsp_trb_to_noop(union cdnsp_trb *trb, u32 noop_type)
110 {
111 	if (cdnsp_trb_is_link(trb)) {
112 		/* Unchain chained link TRBs. */
113 		trb->link.control &= cpu_to_le32(~TRB_CHAIN);
114 	} else {
115 		trb->generic.field[0] = 0;
116 		trb->generic.field[1] = 0;
117 		trb->generic.field[2] = 0;
118 		/* Preserve only the cycle bit of this TRB. */
119 		trb->generic.field[3] &= cpu_to_le32(TRB_CYCLE);
120 		trb->generic.field[3] |= cpu_to_le32(TRB_TYPE(noop_type));
121 	}
122 }
123 
124 /*
125  * Updates trb to point to the next TRB in the ring, and updates seg if the next
126  * TRB is in a new segment. This does not skip over link TRBs, and it does not
127  * effect the ring dequeue or enqueue pointers.
128  */
129 static void cdnsp_next_trb(struct cdnsp_device *pdev,
130 			   struct cdnsp_ring *ring,
131 			   struct cdnsp_segment **seg,
132 			   union cdnsp_trb **trb)
133 {
134 	if (cdnsp_trb_is_link(*trb)) {
135 		*seg = (*seg)->next;
136 		*trb = ((*seg)->trbs);
137 	} else {
138 		(*trb)++;
139 	}
140 }
141 
142 /*
143  * See Cycle bit rules. SW is the consumer for the event ring only.
144  * Don't make a ring full of link TRBs. That would be dumb and this would loop.
145  */
146 void cdnsp_inc_deq(struct cdnsp_device *pdev, struct cdnsp_ring *ring)
147 {
148 	/* event ring doesn't have link trbs, check for last trb. */
149 	if (ring->type == TYPE_EVENT) {
150 		if (!cdnsp_last_trb_on_seg(ring->deq_seg, ring->dequeue)) {
151 			ring->dequeue++;
152 			goto out;
153 		}
154 
155 		if (cdnsp_last_trb_on_ring(ring, ring->deq_seg, ring->dequeue))
156 			ring->cycle_state ^= 1;
157 
158 		ring->deq_seg = ring->deq_seg->next;
159 		ring->dequeue = ring->deq_seg->trbs;
160 		goto out;
161 	}
162 
163 	/* All other rings have link trbs. */
164 	if (!cdnsp_trb_is_link(ring->dequeue)) {
165 		ring->dequeue++;
166 		ring->num_trbs_free++;
167 	}
168 	while (cdnsp_trb_is_link(ring->dequeue)) {
169 		ring->deq_seg = ring->deq_seg->next;
170 		ring->dequeue = ring->deq_seg->trbs;
171 	}
172 out:
173 	trace_cdnsp_inc_deq(ring);
174 }
175 
176 /*
177  * See Cycle bit rules. SW is the consumer for the event ring only.
178  * Don't make a ring full of link TRBs. That would be dumb and this would loop.
179  *
180  * If we've just enqueued a TRB that is in the middle of a TD (meaning the
181  * chain bit is set), then set the chain bit in all the following link TRBs.
182  * If we've enqueued the last TRB in a TD, make sure the following link TRBs
183  * have their chain bit cleared (so that each Link TRB is a separate TD).
184  *
185  * @more_trbs_coming:	Will you enqueue more TRBs before ringing the doorbell.
186  */
187 static void cdnsp_inc_enq(struct cdnsp_device *pdev,
188 			  struct cdnsp_ring *ring,
189 			  bool more_trbs_coming)
190 {
191 	union cdnsp_trb *next;
192 	u32 chain;
193 
194 	chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
195 
196 	/* If this is not event ring, there is one less usable TRB. */
197 	if (!cdnsp_trb_is_link(ring->enqueue))
198 		ring->num_trbs_free--;
199 	next = ++(ring->enqueue);
200 
201 	/* Update the dequeue pointer further if that was a link TRB */
202 	while (cdnsp_trb_is_link(next)) {
203 		/*
204 		 * If the caller doesn't plan on enqueuing more TDs before
205 		 * ringing the doorbell, then we don't want to give the link TRB
206 		 * to the hardware just yet. We'll give the link TRB back in
207 		 * cdnsp_prepare_ring() just before we enqueue the TD at the
208 		 * top of the ring.
209 		 */
210 		if (!chain && !more_trbs_coming)
211 			break;
212 
213 		next->link.control &= cpu_to_le32(~TRB_CHAIN);
214 		next->link.control |= cpu_to_le32(chain);
215 
216 		/* Give this link TRB to the hardware */
217 		wmb();
218 		next->link.control ^= cpu_to_le32(TRB_CYCLE);
219 
220 		/* Toggle the cycle bit after the last ring segment. */
221 		if (cdnsp_link_trb_toggles_cycle(next))
222 			ring->cycle_state ^= 1;
223 
224 		ring->enq_seg = ring->enq_seg->next;
225 		ring->enqueue = ring->enq_seg->trbs;
226 		next = ring->enqueue;
227 	}
228 
229 	trace_cdnsp_inc_enq(ring);
230 }
231 
232 /*
233  * Check to see if there's room to enqueue num_trbs on the ring and make sure
234  * enqueue pointer will not advance into dequeue segment.
235  */
236 static bool cdnsp_room_on_ring(struct cdnsp_device *pdev,
237 			       struct cdnsp_ring *ring,
238 			       unsigned int num_trbs)
239 {
240 	int num_trbs_in_deq_seg;
241 
242 	if (ring->num_trbs_free < num_trbs)
243 		return false;
244 
245 	if (ring->type != TYPE_COMMAND && ring->type != TYPE_EVENT) {
246 		num_trbs_in_deq_seg = ring->dequeue - ring->deq_seg->trbs;
247 
248 		if (ring->num_trbs_free < num_trbs + num_trbs_in_deq_seg)
249 			return false;
250 	}
251 
252 	return true;
253 }
254 
255 /*
256  * Workaround for L1: controller has issue with resuming from L1 after
257  * setting doorbell for endpoint during L1 state. This function forces
258  * resume signal in such case.
259  */
260 static void cdnsp_force_l0_go(struct cdnsp_device *pdev)
261 {
262 	if (pdev->active_port != &pdev->usb3_port && pdev->gadget.lpm_capable)
263 		cdnsp_set_link_state(pdev, &pdev->active_port->regs->portsc, XDEV_U0);
264 }
265 
266 /* Ring the doorbell after placing a command on the ring. */
267 void cdnsp_ring_cmd_db(struct cdnsp_device *pdev)
268 {
269 	writel(DB_VALUE_CMD, &pdev->dba->cmd_db);
270 }
271 
272 /*
273  * Ring the doorbell after placing a transfer on the ring.
274  * Returns true if doorbell was set, otherwise false.
275  */
276 static bool cdnsp_ring_ep_doorbell(struct cdnsp_device *pdev,
277 				   struct cdnsp_ep *pep,
278 				   unsigned int stream_id)
279 {
280 	__le32 __iomem *reg_addr = &pdev->dba->ep_db;
281 	unsigned int ep_state = pep->ep_state;
282 	unsigned int db_value;
283 
284 	/*
285 	 * Don't ring the doorbell for this endpoint if endpoint is halted or
286 	 * disabled.
287 	 */
288 	if (ep_state & EP_HALTED || !(ep_state & EP_ENABLED))
289 		return false;
290 
291 	/* For stream capable endpoints driver can ring doorbell only twice. */
292 	if (pep->ep_state & EP_HAS_STREAMS) {
293 		if (pep->stream_info.drbls_count >= 2)
294 			return false;
295 
296 		pep->stream_info.drbls_count++;
297 	}
298 
299 	pep->ep_state &= ~EP_STOPPED;
300 
301 	if (pep->idx == 0 && pdev->ep0_stage == CDNSP_DATA_STAGE &&
302 	    !pdev->ep0_expect_in)
303 		db_value = DB_VALUE_EP0_OUT(pep->idx, stream_id);
304 	else
305 		db_value = DB_VALUE(pep->idx, stream_id);
306 
307 	trace_cdnsp_tr_drbl(pep, stream_id);
308 
309 	writel(db_value, reg_addr);
310 
311 	if (pdev->rtl_revision < RTL_REVISION_NEW_LPM)
312 		cdnsp_force_l0_go(pdev);
313 
314 	/* Doorbell was set. */
315 	return true;
316 }
317 
318 /*
319  * Get the right ring for the given pep and stream_id.
320  * If the endpoint supports streams, boundary check the USB request's stream ID.
321  * If the endpoint doesn't support streams, return the singular endpoint ring.
322  */
323 static struct cdnsp_ring *cdnsp_get_transfer_ring(struct cdnsp_device *pdev,
324 						  struct cdnsp_ep *pep,
325 						  unsigned int stream_id)
326 {
327 	if (!(pep->ep_state & EP_HAS_STREAMS))
328 		return pep->ring;
329 
330 	if (stream_id == 0 || stream_id >= pep->stream_info.num_streams) {
331 		dev_err(pdev->dev, "ERR: %s ring doesn't exist for SID: %d.\n",
332 			pep->name, stream_id);
333 		return NULL;
334 	}
335 
336 	return pep->stream_info.stream_rings[stream_id];
337 }
338 
339 static struct cdnsp_ring *
340 	cdnsp_request_to_transfer_ring(struct cdnsp_device *pdev,
341 				       struct cdnsp_request *preq)
342 {
343 	return cdnsp_get_transfer_ring(pdev, preq->pep,
344 				       preq->request.stream_id);
345 }
346 
347 /* Ring the doorbell for any rings with pending requests. */
348 void cdnsp_ring_doorbell_for_active_rings(struct cdnsp_device *pdev,
349 					  struct cdnsp_ep *pep)
350 {
351 	struct cdnsp_stream_info *stream_info;
352 	unsigned int stream_id;
353 	int ret;
354 
355 	if (pep->ep_state & EP_DIS_IN_RROGRESS)
356 		return;
357 
358 	/* A ring has pending Request if its TD list is not empty. */
359 	if (!(pep->ep_state & EP_HAS_STREAMS) && pep->number) {
360 		if (pep->ring && !list_empty(&pep->ring->td_list))
361 			cdnsp_ring_ep_doorbell(pdev, pep, 0);
362 		return;
363 	}
364 
365 	stream_info = &pep->stream_info;
366 
367 	for (stream_id = 1; stream_id < stream_info->num_streams; stream_id++) {
368 		struct cdnsp_td *td, *td_temp;
369 		struct cdnsp_ring *ep_ring;
370 
371 		if (stream_info->drbls_count >= 2)
372 			return;
373 
374 		ep_ring = cdnsp_get_transfer_ring(pdev, pep, stream_id);
375 		if (!ep_ring)
376 			continue;
377 
378 		if (!ep_ring->stream_active || ep_ring->stream_rejected)
379 			continue;
380 
381 		list_for_each_entry_safe(td, td_temp, &ep_ring->td_list,
382 					 td_list) {
383 			if (td->drbl)
384 				continue;
385 
386 			ret = cdnsp_ring_ep_doorbell(pdev, pep, stream_id);
387 			if (ret)
388 				td->drbl = 1;
389 		}
390 	}
391 }
392 
393 /*
394  * Get the hw dequeue pointer controller stopped on, either directly from the
395  * endpoint context, or if streams are in use from the stream context.
396  * The returned hw_dequeue contains the lowest four bits with cycle state
397  * and possible stream context type.
398  */
399 static u64 cdnsp_get_hw_deq(struct cdnsp_device *pdev,
400 			    unsigned int ep_index,
401 			    unsigned int stream_id)
402 {
403 	struct cdnsp_stream_ctx *st_ctx;
404 	struct cdnsp_ep *pep;
405 
406 	pep = &pdev->eps[ep_index];
407 
408 	if (pep->ep_state & EP_HAS_STREAMS) {
409 		st_ctx = &pep->stream_info.stream_ctx_array[stream_id];
410 		return le64_to_cpu(st_ctx->stream_ring);
411 	}
412 
413 	return le64_to_cpu(pep->out_ctx->deq);
414 }
415 
416 /*
417  * Move the controller endpoint ring dequeue pointer past cur_td.
418  * Record the new state of the controller endpoint ring dequeue segment,
419  * dequeue pointer, and new consumer cycle state in state.
420  * Update internal representation of the ring's dequeue pointer.
421  *
422  * We do this in three jumps:
423  *  - First we update our new ring state to be the same as when the
424  *    controller stopped.
425  *  - Then we traverse the ring to find the segment that contains
426  *    the last TRB in the TD. We toggle the controller new cycle state
427  *    when we pass any link TRBs with the toggle cycle bit set.
428  *  - Finally we move the dequeue state one TRB further, toggling the cycle bit
429  *    if we've moved it past a link TRB with the toggle cycle bit set.
430  */
431 static void cdnsp_find_new_dequeue_state(struct cdnsp_device *pdev,
432 					 struct cdnsp_ep *pep,
433 					 unsigned int stream_id,
434 					 struct cdnsp_td *cur_td,
435 					 struct cdnsp_dequeue_state *state)
436 {
437 	bool td_last_trb_found = false;
438 	struct cdnsp_segment *new_seg;
439 	struct cdnsp_ring *ep_ring;
440 	union cdnsp_trb *new_deq;
441 	bool cycle_found = false;
442 	u64 hw_dequeue;
443 
444 	ep_ring = cdnsp_get_transfer_ring(pdev, pep, stream_id);
445 	if (!ep_ring)
446 		return;
447 
448 	/*
449 	 * Dig out the cycle state saved by the controller during the
450 	 * stop endpoint command.
451 	 */
452 	hw_dequeue = cdnsp_get_hw_deq(pdev, pep->idx, stream_id);
453 	new_seg = ep_ring->deq_seg;
454 	new_deq = ep_ring->dequeue;
455 	state->new_cycle_state = hw_dequeue & 0x1;
456 	state->stream_id = stream_id;
457 
458 	/*
459 	 * We want to find the pointer, segment and cycle state of the new trb
460 	 * (the one after current TD's last_trb). We know the cycle state at
461 	 * hw_dequeue, so walk the ring until both hw_dequeue and last_trb are
462 	 * found.
463 	 */
464 	do {
465 		if (!cycle_found && cdnsp_trb_virt_to_dma(new_seg, new_deq)
466 		    == (dma_addr_t)(hw_dequeue & ~0xf)) {
467 			cycle_found = true;
468 
469 			if (td_last_trb_found)
470 				break;
471 		}
472 
473 		if (new_deq == cur_td->last_trb)
474 			td_last_trb_found = true;
475 
476 		if (cycle_found && cdnsp_trb_is_link(new_deq) &&
477 		    cdnsp_link_trb_toggles_cycle(new_deq))
478 			state->new_cycle_state ^= 0x1;
479 
480 		cdnsp_next_trb(pdev, ep_ring, &new_seg, &new_deq);
481 
482 		/* Search wrapped around, bail out. */
483 		if (new_deq == pep->ring->dequeue) {
484 			dev_err(pdev->dev,
485 				"Error: Failed finding new dequeue state\n");
486 			state->new_deq_seg = NULL;
487 			state->new_deq_ptr = NULL;
488 			return;
489 		}
490 
491 	} while (!cycle_found || !td_last_trb_found);
492 
493 	state->new_deq_seg = new_seg;
494 	state->new_deq_ptr = new_deq;
495 
496 	trace_cdnsp_new_deq_state(state);
497 }
498 
499 /*
500  * flip_cycle means flip the cycle bit of all but the first and last TRB.
501  * (The last TRB actually points to the ring enqueue pointer, which is not part
502  * of this TD.) This is used to remove partially enqueued isoc TDs from a ring.
503  */
504 static void cdnsp_td_to_noop(struct cdnsp_device *pdev,
505 			     struct cdnsp_ring *ep_ring,
506 			     struct cdnsp_td *td,
507 			     bool flip_cycle)
508 {
509 	struct cdnsp_segment *seg = td->start_seg;
510 	union cdnsp_trb *trb = td->first_trb;
511 
512 	while (1) {
513 		cdnsp_trb_to_noop(trb, TRB_TR_NOOP);
514 
515 		/* flip cycle if asked to */
516 		if (flip_cycle && trb != td->first_trb && trb != td->last_trb)
517 			trb->generic.field[3] ^= cpu_to_le32(TRB_CYCLE);
518 
519 		if (trb == td->last_trb)
520 			break;
521 
522 		cdnsp_next_trb(pdev, ep_ring, &seg, &trb);
523 	}
524 }
525 
526 /*
527  * This TD is defined by the TRBs starting at start_trb in start_seg and ending
528  * at end_trb, which may be in another segment. If the suspect DMA address is a
529  * TRB in this TD, this function returns that TRB's segment. Otherwise it
530  * returns 0.
531  */
532 static struct cdnsp_segment *cdnsp_trb_in_td(struct cdnsp_device *pdev,
533 					     struct cdnsp_segment *start_seg,
534 					     union cdnsp_trb *start_trb,
535 					     union cdnsp_trb *end_trb,
536 					     dma_addr_t suspect_dma)
537 {
538 	struct cdnsp_segment *cur_seg;
539 	union cdnsp_trb *temp_trb;
540 	dma_addr_t end_seg_dma;
541 	dma_addr_t end_trb_dma;
542 	dma_addr_t start_dma;
543 
544 	start_dma = cdnsp_trb_virt_to_dma(start_seg, start_trb);
545 	cur_seg = start_seg;
546 
547 	do {
548 		if (start_dma == 0)
549 			return NULL;
550 
551 		temp_trb = &cur_seg->trbs[TRBS_PER_SEGMENT - 1];
552 		/* We may get an event for a Link TRB in the middle of a TD */
553 		end_seg_dma = cdnsp_trb_virt_to_dma(cur_seg, temp_trb);
554 		/* If the end TRB isn't in this segment, this is set to 0 */
555 		end_trb_dma = cdnsp_trb_virt_to_dma(cur_seg, end_trb);
556 
557 		trace_cdnsp_looking_trb_in_td(suspect_dma, start_dma,
558 					      end_trb_dma, cur_seg->dma,
559 					      end_seg_dma);
560 
561 		if (end_trb_dma > 0) {
562 			/*
563 			 * The end TRB is in this segment, so suspect should
564 			 * be here
565 			 */
566 			if (start_dma <= end_trb_dma) {
567 				if (suspect_dma >= start_dma &&
568 				    suspect_dma <= end_trb_dma) {
569 					return cur_seg;
570 				}
571 			} else {
572 				/*
573 				 * Case for one segment with a
574 				 * TD wrapped around to the top
575 				 */
576 				if ((suspect_dma >= start_dma &&
577 				     suspect_dma <= end_seg_dma) ||
578 				    (suspect_dma >= cur_seg->dma &&
579 				     suspect_dma <= end_trb_dma)) {
580 					return cur_seg;
581 				}
582 			}
583 
584 			return NULL;
585 		}
586 
587 		/* Might still be somewhere in this segment */
588 		if (suspect_dma >= start_dma && suspect_dma <= end_seg_dma)
589 			return cur_seg;
590 
591 		cur_seg = cur_seg->next;
592 		start_dma = cdnsp_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]);
593 	} while (cur_seg != start_seg);
594 
595 	return NULL;
596 }
597 
598 static void cdnsp_unmap_td_bounce_buffer(struct cdnsp_device *pdev,
599 					 struct cdnsp_ring *ring,
600 					 struct cdnsp_td *td)
601 {
602 	struct cdnsp_segment *seg = td->bounce_seg;
603 	struct cdnsp_request *preq;
604 	size_t len;
605 
606 	if (!seg)
607 		return;
608 
609 	preq = td->preq;
610 
611 	trace_cdnsp_bounce_unmap(td->preq, seg->bounce_len, seg->bounce_offs,
612 				 seg->bounce_dma, 0);
613 
614 	if (!preq->direction) {
615 		dma_unmap_single(pdev->dev, seg->bounce_dma,
616 				 ring->bounce_buf_len,  DMA_TO_DEVICE);
617 		return;
618 	}
619 
620 	dma_unmap_single(pdev->dev, seg->bounce_dma, ring->bounce_buf_len,
621 			 DMA_FROM_DEVICE);
622 
623 	/* For in transfers we need to copy the data from bounce to sg */
624 	len = sg_pcopy_from_buffer(preq->request.sg, preq->request.num_sgs,
625 				   seg->bounce_buf, seg->bounce_len,
626 				   seg->bounce_offs);
627 	if (len != seg->bounce_len)
628 		dev_warn(pdev->dev, "WARN Wrong bounce buffer read length: %zu != %d\n",
629 			 len, seg->bounce_len);
630 
631 	seg->bounce_len = 0;
632 	seg->bounce_offs = 0;
633 }
634 
635 static int cdnsp_cmd_set_deq(struct cdnsp_device *pdev,
636 			     struct cdnsp_ep *pep,
637 			     struct cdnsp_dequeue_state *deq_state)
638 {
639 	struct cdnsp_ring *ep_ring;
640 	int ret;
641 
642 	if (!deq_state->new_deq_ptr || !deq_state->new_deq_seg) {
643 		cdnsp_ring_doorbell_for_active_rings(pdev, pep);
644 		return 0;
645 	}
646 
647 	cdnsp_queue_new_dequeue_state(pdev, pep, deq_state);
648 	cdnsp_ring_cmd_db(pdev);
649 	ret = cdnsp_wait_for_cmd_compl(pdev);
650 
651 	trace_cdnsp_handle_cmd_set_deq(cdnsp_get_slot_ctx(&pdev->out_ctx));
652 	trace_cdnsp_handle_cmd_set_deq_ep(pep->out_ctx);
653 
654 	/*
655 	 * Update the ring's dequeue segment and dequeue pointer
656 	 * to reflect the new position.
657 	 */
658 	ep_ring = cdnsp_get_transfer_ring(pdev, pep, deq_state->stream_id);
659 
660 	if (cdnsp_trb_is_link(ep_ring->dequeue)) {
661 		ep_ring->deq_seg = ep_ring->deq_seg->next;
662 		ep_ring->dequeue = ep_ring->deq_seg->trbs;
663 	}
664 
665 	while (ep_ring->dequeue != deq_state->new_deq_ptr) {
666 		ep_ring->num_trbs_free++;
667 		ep_ring->dequeue++;
668 
669 		if (cdnsp_trb_is_link(ep_ring->dequeue)) {
670 			if (ep_ring->dequeue == deq_state->new_deq_ptr)
671 				break;
672 
673 			ep_ring->deq_seg = ep_ring->deq_seg->next;
674 			ep_ring->dequeue = ep_ring->deq_seg->trbs;
675 		}
676 	}
677 
678 	/*
679 	 * Probably there was TIMEOUT during handling Set Dequeue Pointer
680 	 * command. It's critical error and controller will be stopped.
681 	 */
682 	if (ret)
683 		return -ESHUTDOWN;
684 
685 	/* Restart any rings with pending requests */
686 	cdnsp_ring_doorbell_for_active_rings(pdev, pep);
687 
688 	return 0;
689 }
690 
691 int cdnsp_remove_request(struct cdnsp_device *pdev,
692 			 struct cdnsp_request *preq,
693 			 struct cdnsp_ep *pep)
694 {
695 	struct cdnsp_dequeue_state deq_state;
696 	struct cdnsp_td *cur_td = NULL;
697 	struct cdnsp_ring *ep_ring;
698 	struct cdnsp_segment *seg;
699 	int status = -ECONNRESET;
700 	int ret = 0;
701 	u64 hw_deq;
702 
703 	memset(&deq_state, 0, sizeof(deq_state));
704 
705 	trace_cdnsp_remove_request(pep->out_ctx);
706 	trace_cdnsp_remove_request_td(preq);
707 
708 	cur_td = &preq->td;
709 	ep_ring = cdnsp_request_to_transfer_ring(pdev, preq);
710 
711 	/*
712 	 * If we stopped on the TD we need to cancel, then we have to
713 	 * move the controller endpoint ring dequeue pointer past
714 	 * this TD.
715 	 */
716 	hw_deq = cdnsp_get_hw_deq(pdev, pep->idx, preq->request.stream_id);
717 	hw_deq &= ~0xf;
718 
719 	seg = cdnsp_trb_in_td(pdev, cur_td->start_seg, cur_td->first_trb,
720 			      cur_td->last_trb, hw_deq);
721 
722 	if (seg && (pep->ep_state & EP_ENABLED) &&
723 	    !(pep->ep_state & EP_DIS_IN_RROGRESS))
724 		cdnsp_find_new_dequeue_state(pdev, pep, preq->request.stream_id,
725 					     cur_td, &deq_state);
726 	else
727 		cdnsp_td_to_noop(pdev, ep_ring, cur_td, false);
728 
729 	/*
730 	 * The event handler won't see a completion for this TD anymore,
731 	 * so remove it from the endpoint ring's TD list.
732 	 */
733 	list_del_init(&cur_td->td_list);
734 	ep_ring->num_tds--;
735 	pep->stream_info.td_count--;
736 
737 	/*
738 	 * During disconnecting all endpoint will be disabled so we don't
739 	 * have to worry about updating dequeue pointer.
740 	 */
741 	if (pdev->cdnsp_state & CDNSP_STATE_DISCONNECT_PENDING ||
742 	    pep->ep_state & EP_DIS_IN_RROGRESS) {
743 		status = -ESHUTDOWN;
744 		ret = cdnsp_cmd_set_deq(pdev, pep, &deq_state);
745 	}
746 
747 	cdnsp_unmap_td_bounce_buffer(pdev, ep_ring, cur_td);
748 	cdnsp_gadget_giveback(pep, cur_td->preq, status);
749 
750 	return ret;
751 }
752 
753 static int cdnsp_update_port_id(struct cdnsp_device *pdev, u32 port_id)
754 {
755 	struct cdnsp_port *port = pdev->active_port;
756 	u8 old_port = 0;
757 
758 	if (port && port->port_num == port_id)
759 		return 0;
760 
761 	if (port)
762 		old_port = port->port_num;
763 
764 	if (port_id == pdev->usb2_port.port_num) {
765 		port = &pdev->usb2_port;
766 	} else if (port_id == pdev->eusb_port.port_num) {
767 		port = &pdev->eusb_port;
768 	} else if (port_id == pdev->usb3_port.port_num) {
769 		port  = &pdev->usb3_port;
770 	} else {
771 		dev_err(pdev->dev, "Port event with invalid port ID %d\n",
772 			port_id);
773 		return -EINVAL;
774 	}
775 
776 	if (port_id != old_port) {
777 		if (pdev->slot_id)
778 			cdnsp_disable_slot(pdev);
779 
780 		pdev->active_port = port;
781 		cdnsp_enable_slot(pdev);
782 	}
783 
784 	if ((pdev->usb2_port.exist && port_id == pdev->usb2_port.port_num) ||
785 	    (pdev->eusb_port.exist && port_id == pdev->eusb_port.port_num))
786 		cdnsp_set_usb2_hardware_lpm(pdev, NULL, 1);
787 	else
788 		writel(PORT_U1_TIMEOUT(1) | PORT_U2_TIMEOUT(1),
789 		       &pdev->usb3_port.regs->portpmsc);
790 
791 	return 0;
792 }
793 
794 static void cdnsp_handle_port_status(struct cdnsp_device *pdev,
795 				     union cdnsp_trb *event)
796 {
797 	struct cdnsp_port_regs __iomem *port_regs;
798 	u32 portsc, cmd_regs;
799 	bool port2 = false;
800 	u32 link_state;
801 	u32 port_id;
802 
803 	/* Port status change events always have a successful completion code */
804 	if (GET_COMP_CODE(le32_to_cpu(event->generic.field[2])) != COMP_SUCCESS)
805 		dev_err(pdev->dev, "ERR: incorrect PSC event\n");
806 
807 	port_id = GET_PORT_ID(le32_to_cpu(event->generic.field[0]));
808 
809 	if (cdnsp_update_port_id(pdev, port_id))
810 		goto cleanup;
811 
812 	port_regs = pdev->active_port->regs;
813 
814 	if (port_id == pdev->usb2_port.port_num || port_id == pdev->eusb_port.port_num)
815 		port2 = true;
816 
817 new_event:
818 	portsc = readl(&port_regs->portsc);
819 	writel(cdnsp_port_state_to_neutral(portsc) |
820 	       (portsc & PORT_CHANGE_BITS), &port_regs->portsc);
821 
822 	trace_cdnsp_handle_port_status(pdev->active_port->port_num, portsc);
823 
824 	pdev->gadget.speed = cdnsp_port_speed(portsc);
825 	link_state = portsc & PORT_PLS_MASK;
826 
827 	/* Port Link State change detected. */
828 	if ((portsc & PORT_PLC)) {
829 		if (!(pdev->cdnsp_state & CDNSP_WAKEUP_PENDING)  &&
830 		    link_state == XDEV_RESUME) {
831 			cmd_regs = readl(&pdev->op_regs->command);
832 			if (!(cmd_regs & CMD_R_S))
833 				goto cleanup;
834 
835 			if (DEV_SUPERSPEED_ANY(portsc)) {
836 				cdnsp_set_link_state(pdev, &port_regs->portsc,
837 						     XDEV_U0);
838 
839 				cdnsp_resume_gadget(pdev);
840 			}
841 		}
842 
843 		if ((pdev->cdnsp_state & CDNSP_WAKEUP_PENDING) &&
844 		    link_state == XDEV_U0) {
845 			pdev->cdnsp_state &= ~CDNSP_WAKEUP_PENDING;
846 
847 			cdnsp_force_header_wakeup(pdev, 1);
848 			cdnsp_ring_cmd_db(pdev);
849 			cdnsp_wait_for_cmd_compl(pdev);
850 		}
851 
852 		if (link_state == XDEV_U0 && pdev->link_state == XDEV_U3 &&
853 		    !DEV_SUPERSPEED_ANY(portsc))
854 			cdnsp_resume_gadget(pdev);
855 
856 		if (link_state == XDEV_U3 &&  pdev->link_state != XDEV_U3)
857 			cdnsp_suspend_gadget(pdev);
858 
859 		pdev->link_state = link_state;
860 	}
861 
862 	if (portsc & PORT_CSC) {
863 		/* Detach device. */
864 		if (pdev->gadget.connected && !(portsc & PORT_CONNECT))
865 			cdnsp_disconnect_gadget(pdev);
866 
867 		/* Attach device. */
868 		if (portsc & PORT_CONNECT) {
869 			if (!port2)
870 				cdnsp_irq_reset(pdev);
871 
872 			usb_gadget_set_state(&pdev->gadget, USB_STATE_ATTACHED);
873 		}
874 	}
875 
876 	/* Port reset. */
877 	if ((portsc & (PORT_RC | PORT_WRC)) && (portsc & PORT_CONNECT)) {
878 		cdnsp_irq_reset(pdev);
879 		pdev->u1_allowed = 0;
880 		pdev->u2_allowed = 0;
881 		pdev->may_wakeup = 0;
882 	}
883 
884 	if (portsc & PORT_CEC)
885 		dev_err(pdev->dev, "Port Over Current detected\n");
886 
887 	if (portsc & PORT_CEC)
888 		dev_err(pdev->dev, "Port Configure Error detected\n");
889 
890 	if (readl(&port_regs->portsc) & PORT_CHANGE_BITS)
891 		goto new_event;
892 
893 cleanup:
894 	cdnsp_inc_deq(pdev, pdev->event_ring);
895 }
896 
897 static void cdnsp_td_cleanup(struct cdnsp_device *pdev,
898 			     struct cdnsp_td *td,
899 			     struct cdnsp_ring *ep_ring,
900 			     int *status)
901 {
902 	struct cdnsp_request *preq = td->preq;
903 
904 	/* if a bounce buffer was used to align this td then unmap it */
905 	cdnsp_unmap_td_bounce_buffer(pdev, ep_ring, td);
906 
907 	/*
908 	 * If the controller said we transferred more data than the buffer
909 	 * length, Play it safe and say we didn't transfer anything.
910 	 */
911 	if (preq->request.actual > preq->request.length) {
912 		preq->request.actual = 0;
913 		*status = 0;
914 	}
915 
916 	list_del_init(&td->td_list);
917 	ep_ring->num_tds--;
918 	preq->pep->stream_info.td_count--;
919 
920 	cdnsp_gadget_giveback(preq->pep, preq, *status);
921 }
922 
923 static void cdnsp_finish_td(struct cdnsp_device *pdev,
924 			    struct cdnsp_td *td,
925 			    struct cdnsp_transfer_event *event,
926 			    struct cdnsp_ep *ep,
927 			    int *status)
928 {
929 	struct cdnsp_ring *ep_ring;
930 	u32 trb_comp_code;
931 
932 	ep_ring = cdnsp_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
933 	trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
934 
935 	if (trb_comp_code == COMP_STOPPED_LENGTH_INVALID ||
936 	    trb_comp_code == COMP_STOPPED ||
937 	    trb_comp_code == COMP_STOPPED_SHORT_PACKET) {
938 		/*
939 		 * The Endpoint Stop Command completion will take care of any
940 		 * stopped TDs. A stopped TD may be restarted, so don't update
941 		 * the ring dequeue pointer or take this TD off any lists yet.
942 		 */
943 		return;
944 	}
945 
946 	/* Update ring dequeue pointer */
947 	while (ep_ring->dequeue != td->last_trb)
948 		cdnsp_inc_deq(pdev, ep_ring);
949 
950 	cdnsp_inc_deq(pdev, ep_ring);
951 
952 	cdnsp_td_cleanup(pdev, td, ep_ring, status);
953 }
954 
955 /* sum trb lengths from ring dequeue up to stop_trb, _excluding_ stop_trb */
956 static int cdnsp_sum_trb_lengths(struct cdnsp_device *pdev,
957 				 struct cdnsp_ring *ring,
958 				 union cdnsp_trb *stop_trb)
959 {
960 	struct cdnsp_segment *seg = ring->deq_seg;
961 	union cdnsp_trb *trb = ring->dequeue;
962 	u32 sum;
963 
964 	for (sum = 0; trb != stop_trb; cdnsp_next_trb(pdev, ring, &seg, &trb)) {
965 		if (!cdnsp_trb_is_noop(trb) && !cdnsp_trb_is_link(trb))
966 			sum += TRB_LEN(le32_to_cpu(trb->generic.field[2]));
967 	}
968 	return sum;
969 }
970 
971 static int cdnsp_giveback_first_trb(struct cdnsp_device *pdev,
972 				    struct cdnsp_ep *pep,
973 				    unsigned int stream_id,
974 				    int start_cycle,
975 				    struct cdnsp_generic_trb *start_trb)
976 {
977 	/*
978 	 * Pass all the TRBs to the hardware at once and make sure this write
979 	 * isn't reordered.
980 	 */
981 	wmb();
982 
983 	if (start_cycle)
984 		start_trb->field[3] |= cpu_to_le32(start_cycle);
985 	else
986 		start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
987 
988 	if ((pep->ep_state & EP_HAS_STREAMS) &&
989 	    !pep->stream_info.first_prime_det) {
990 		trace_cdnsp_wait_for_prime(pep, stream_id);
991 		return 0;
992 	}
993 
994 	return cdnsp_ring_ep_doorbell(pdev, pep, stream_id);
995 }
996 
997 /*
998  * Process control tds, update USB request status and actual_length.
999  */
1000 static void cdnsp_process_ctrl_td(struct cdnsp_device *pdev,
1001 				  struct cdnsp_td *td,
1002 				  union cdnsp_trb *event_trb,
1003 				  struct cdnsp_transfer_event *event,
1004 				  struct cdnsp_ep *pep,
1005 				  int *status)
1006 {
1007 	struct cdnsp_ring *ep_ring;
1008 	u32 remaining;
1009 	u32 trb_type;
1010 
1011 	trb_type = TRB_FIELD_TO_TYPE(le32_to_cpu(event_trb->generic.field[3]));
1012 	ep_ring = cdnsp_dma_to_transfer_ring(pep, le64_to_cpu(event->buffer));
1013 	remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
1014 
1015 	/*
1016 	 * if on data stage then update the actual_length of the USB
1017 	 * request and flag it as set, so it won't be overwritten in the event
1018 	 * for the last TRB.
1019 	 */
1020 	if (trb_type == TRB_DATA) {
1021 		td->request_length_set = true;
1022 		td->preq->request.actual = td->preq->request.length - remaining;
1023 	}
1024 
1025 	/* at status stage */
1026 	if (!td->request_length_set)
1027 		td->preq->request.actual = td->preq->request.length;
1028 
1029 	if (pdev->ep0_stage == CDNSP_DATA_STAGE && pep->number == 0 &&
1030 	    pdev->three_stage_setup) {
1031 		td = list_entry(ep_ring->td_list.next, struct cdnsp_td,
1032 				td_list);
1033 		pdev->ep0_stage = CDNSP_STATUS_STAGE;
1034 
1035 		cdnsp_giveback_first_trb(pdev, pep, 0, ep_ring->cycle_state,
1036 					 &td->last_trb->generic);
1037 		return;
1038 	}
1039 
1040 	*status = 0;
1041 
1042 	cdnsp_finish_td(pdev, td, event, pep, status);
1043 }
1044 
1045 /*
1046  * Process isochronous tds, update usb request status and actual_length.
1047  */
1048 static void cdnsp_process_isoc_td(struct cdnsp_device *pdev,
1049 				  struct cdnsp_td *td,
1050 				  union cdnsp_trb *ep_trb,
1051 				  struct cdnsp_transfer_event *event,
1052 				  struct cdnsp_ep *pep,
1053 				  int status)
1054 {
1055 	struct cdnsp_request *preq = td->preq;
1056 	u32 remaining, requested, ep_trb_len;
1057 	bool sum_trbs_for_length = false;
1058 	struct cdnsp_ring *ep_ring;
1059 	u32 trb_comp_code;
1060 	u32 td_length;
1061 
1062 	ep_ring = cdnsp_dma_to_transfer_ring(pep, le64_to_cpu(event->buffer));
1063 	trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
1064 	remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
1065 	ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2]));
1066 
1067 	requested = preq->request.length;
1068 
1069 	/* handle completion code */
1070 	switch (trb_comp_code) {
1071 	case COMP_SUCCESS:
1072 		preq->request.status = 0;
1073 		break;
1074 	case COMP_SHORT_PACKET:
1075 		preq->request.status = 0;
1076 		sum_trbs_for_length = true;
1077 		break;
1078 	case COMP_ISOCH_BUFFER_OVERRUN:
1079 	case COMP_BABBLE_DETECTED_ERROR:
1080 		preq->request.status = -EOVERFLOW;
1081 		break;
1082 	case COMP_STOPPED:
1083 		sum_trbs_for_length = true;
1084 		break;
1085 	case COMP_STOPPED_SHORT_PACKET:
1086 		/* field normally containing residue now contains transferred */
1087 		preq->request.status  = 0;
1088 		requested = remaining;
1089 		break;
1090 	case COMP_STOPPED_LENGTH_INVALID:
1091 		requested = 0;
1092 		remaining = 0;
1093 		break;
1094 	default:
1095 		sum_trbs_for_length = true;
1096 		preq->request.status = -1;
1097 		break;
1098 	}
1099 
1100 	if (sum_trbs_for_length) {
1101 		td_length = cdnsp_sum_trb_lengths(pdev, ep_ring, ep_trb);
1102 		td_length += ep_trb_len - remaining;
1103 	} else {
1104 		td_length = requested;
1105 	}
1106 
1107 	td->preq->request.actual += td_length;
1108 
1109 	cdnsp_finish_td(pdev, td, event, pep, &status);
1110 }
1111 
1112 static void cdnsp_skip_isoc_td(struct cdnsp_device *pdev,
1113 			       struct cdnsp_td *td,
1114 			       struct cdnsp_transfer_event *event,
1115 			       struct cdnsp_ep *pep,
1116 			       int status)
1117 {
1118 	struct cdnsp_ring *ep_ring;
1119 
1120 	ep_ring = cdnsp_dma_to_transfer_ring(pep, le64_to_cpu(event->buffer));
1121 	td->preq->request.status = -EXDEV;
1122 	td->preq->request.actual = 0;
1123 
1124 	/* Update ring dequeue pointer */
1125 	while (ep_ring->dequeue != td->last_trb)
1126 		cdnsp_inc_deq(pdev, ep_ring);
1127 
1128 	cdnsp_inc_deq(pdev, ep_ring);
1129 
1130 	cdnsp_td_cleanup(pdev, td, ep_ring, &status);
1131 }
1132 
1133 /*
1134  * Process bulk and interrupt tds, update usb request status and actual_length.
1135  */
1136 static void cdnsp_process_bulk_intr_td(struct cdnsp_device *pdev,
1137 				       struct cdnsp_td *td,
1138 				       union cdnsp_trb *ep_trb,
1139 				       struct cdnsp_transfer_event *event,
1140 				       struct cdnsp_ep *ep,
1141 				       int *status)
1142 {
1143 	u32 remaining, requested, ep_trb_len;
1144 	struct cdnsp_ring *ep_ring;
1145 	u32 trb_comp_code;
1146 
1147 	ep_ring = cdnsp_dma_to_transfer_ring(ep, le64_to_cpu(event->buffer));
1148 	trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
1149 	remaining = EVENT_TRB_LEN(le32_to_cpu(event->transfer_len));
1150 	ep_trb_len = TRB_LEN(le32_to_cpu(ep_trb->generic.field[2]));
1151 	requested = td->preq->request.length;
1152 
1153 	switch (trb_comp_code) {
1154 	case COMP_SUCCESS:
1155 	case COMP_SHORT_PACKET:
1156 		*status = 0;
1157 		break;
1158 	case COMP_STOPPED_SHORT_PACKET:
1159 		td->preq->request.actual = remaining;
1160 		goto finish_td;
1161 	case COMP_STOPPED_LENGTH_INVALID:
1162 		/* Stopped on ep trb with invalid length, exclude it. */
1163 		ep_trb_len = 0;
1164 		remaining = 0;
1165 		break;
1166 	}
1167 
1168 	if (ep_trb == td->last_trb)
1169 		ep_trb_len = requested - remaining;
1170 	else
1171 		ep_trb_len = cdnsp_sum_trb_lengths(pdev, ep_ring, ep_trb) +
1172 						   ep_trb_len - remaining;
1173 	td->preq->request.actual = ep_trb_len;
1174 
1175 finish_td:
1176 	ep->stream_info.drbls_count--;
1177 
1178 	cdnsp_finish_td(pdev, td, event, ep, status);
1179 }
1180 
1181 static void cdnsp_handle_tx_nrdy(struct cdnsp_device *pdev,
1182 				 struct cdnsp_transfer_event *event)
1183 {
1184 	struct cdnsp_generic_trb *generic;
1185 	struct cdnsp_ring *ep_ring;
1186 	struct cdnsp_ep *pep;
1187 	int cur_stream;
1188 	int ep_index;
1189 	int host_sid;
1190 	int dev_sid;
1191 
1192 	generic = (struct cdnsp_generic_trb *)event;
1193 	ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
1194 	dev_sid = TRB_TO_DEV_STREAM(le32_to_cpu(generic->field[0]));
1195 	host_sid = TRB_TO_HOST_STREAM(le32_to_cpu(generic->field[2]));
1196 
1197 	pep = &pdev->eps[ep_index];
1198 
1199 	if (!(pep->ep_state & EP_HAS_STREAMS))
1200 		return;
1201 
1202 	if (host_sid == STREAM_PRIME_ACK) {
1203 		pep->stream_info.first_prime_det = 1;
1204 		for (cur_stream = 1; cur_stream < pep->stream_info.num_streams;
1205 		    cur_stream++) {
1206 			ep_ring = pep->stream_info.stream_rings[cur_stream];
1207 			ep_ring->stream_active = 1;
1208 			ep_ring->stream_rejected = 0;
1209 		}
1210 	}
1211 
1212 	if (host_sid == STREAM_REJECTED) {
1213 		struct cdnsp_td *td, *td_temp;
1214 
1215 		pep->stream_info.drbls_count--;
1216 		ep_ring = pep->stream_info.stream_rings[dev_sid];
1217 		ep_ring->stream_active = 0;
1218 		ep_ring->stream_rejected = 1;
1219 
1220 		list_for_each_entry_safe(td, td_temp, &ep_ring->td_list,
1221 					 td_list) {
1222 			td->drbl = 0;
1223 		}
1224 	}
1225 
1226 	cdnsp_ring_doorbell_for_active_rings(pdev, pep);
1227 }
1228 
1229 /*
1230  * If this function returns an error condition, it means it got a Transfer
1231  * event with a corrupted TRB DMA address or endpoint is disabled.
1232  */
1233 static int cdnsp_handle_tx_event(struct cdnsp_device *pdev,
1234 				 struct cdnsp_transfer_event *event)
1235 {
1236 	const struct usb_endpoint_descriptor *desc;
1237 	bool handling_skipped_tds = false;
1238 	struct cdnsp_segment *ep_seg;
1239 	struct cdnsp_ring *ep_ring;
1240 	int status = -EINPROGRESS;
1241 	union cdnsp_trb *ep_trb;
1242 	dma_addr_t ep_trb_dma;
1243 	struct cdnsp_ep *pep;
1244 	struct cdnsp_td *td;
1245 	u32 trb_comp_code;
1246 	int invalidate;
1247 	int ep_index;
1248 
1249 	invalidate = le32_to_cpu(event->flags) & TRB_EVENT_INVALIDATE;
1250 	ep_index = TRB_TO_EP_ID(le32_to_cpu(event->flags)) - 1;
1251 	trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
1252 	ep_trb_dma = le64_to_cpu(event->buffer);
1253 
1254 	pep = &pdev->eps[ep_index];
1255 	ep_ring = cdnsp_dma_to_transfer_ring(pep, le64_to_cpu(event->buffer));
1256 
1257 	/*
1258 	 * If device is disconnect then all requests will be dequeued
1259 	 * by upper layers as part of disconnect sequence.
1260 	 * We don't want handle such event to avoid racing.
1261 	 */
1262 	if (invalidate || !pdev->gadget.connected)
1263 		goto cleanup;
1264 
1265 	if (GET_EP_CTX_STATE(pep->out_ctx) == EP_STATE_DISABLED) {
1266 		trace_cdnsp_ep_disabled(pep->out_ctx);
1267 		goto err_out;
1268 	}
1269 
1270 	/* Some transfer events don't always point to a trb*/
1271 	if (!ep_ring) {
1272 		switch (trb_comp_code) {
1273 		case COMP_INVALID_STREAM_TYPE_ERROR:
1274 		case COMP_INVALID_STREAM_ID_ERROR:
1275 		case COMP_RING_UNDERRUN:
1276 		case COMP_RING_OVERRUN:
1277 			goto cleanup;
1278 		default:
1279 			dev_err(pdev->dev, "ERROR: %s event for unknown ring\n",
1280 				pep->name);
1281 			goto err_out;
1282 		}
1283 	}
1284 
1285 	/* Look for some error cases that need special treatment. */
1286 	switch (trb_comp_code) {
1287 	case COMP_BABBLE_DETECTED_ERROR:
1288 		status = -EOVERFLOW;
1289 		break;
1290 	case COMP_RING_UNDERRUN:
1291 	case COMP_RING_OVERRUN:
1292 		/*
1293 		 * When the Isoch ring is empty, the controller will generate
1294 		 * a Ring Overrun Event for IN Isoch endpoint or Ring
1295 		 * Underrun Event for OUT Isoch endpoint.
1296 		 */
1297 		goto cleanup;
1298 	case COMP_MISSED_SERVICE_ERROR:
1299 		/*
1300 		 * When encounter missed service error, one or more isoc tds
1301 		 * may be missed by controller.
1302 		 * Set skip flag of the ep_ring; Complete the missed tds as
1303 		 * short transfer when process the ep_ring next time.
1304 		 */
1305 		pep->skip = true;
1306 		break;
1307 	}
1308 
1309 	do {
1310 		/*
1311 		 * This TRB should be in the TD at the head of this ring's TD
1312 		 * list.
1313 		 */
1314 		if (list_empty(&ep_ring->td_list)) {
1315 			/*
1316 			 * Don't print warnings if it's due to a stopped
1317 			 * endpoint generating an extra completion event, or
1318 			 * a event for the last TRB of a short TD we already
1319 			 * got a short event for.
1320 			 * The short TD is already removed from the TD list.
1321 			 */
1322 			if (!(trb_comp_code == COMP_STOPPED ||
1323 			      trb_comp_code == COMP_STOPPED_LENGTH_INVALID ||
1324 			      ep_ring->last_td_was_short))
1325 				trace_cdnsp_trb_without_td(ep_ring,
1326 					(struct cdnsp_generic_trb *)event);
1327 
1328 			if (pep->skip) {
1329 				pep->skip = false;
1330 				trace_cdnsp_ep_list_empty_with_skip(pep, 0);
1331 			}
1332 
1333 			goto cleanup;
1334 		}
1335 
1336 		td = list_entry(ep_ring->td_list.next, struct cdnsp_td,
1337 				td_list);
1338 
1339 		/* Is this a TRB in the currently executing TD? */
1340 		ep_seg = cdnsp_trb_in_td(pdev, ep_ring->deq_seg,
1341 					 ep_ring->dequeue, td->last_trb,
1342 					 ep_trb_dma);
1343 
1344 		desc = td->preq->pep->endpoint.desc;
1345 
1346 		if (ep_seg) {
1347 			ep_trb = &ep_seg->trbs[(ep_trb_dma - ep_seg->dma)
1348 					       / sizeof(*ep_trb)];
1349 
1350 			trace_cdnsp_handle_transfer(ep_ring,
1351 					(struct cdnsp_generic_trb *)ep_trb);
1352 
1353 			if (pep->skip && usb_endpoint_xfer_isoc(desc) &&
1354 			    td->last_trb != ep_trb)
1355 				return -EAGAIN;
1356 		}
1357 
1358 		/*
1359 		 * Skip the Force Stopped Event. The event_trb(ep_trb_dma)
1360 		 * of FSE is not in the current TD pointed by ep_ring->dequeue
1361 		 * because that the hardware dequeue pointer still at the
1362 		 * previous TRB of the current TD. The previous TRB maybe a
1363 		 * Link TD or the last TRB of the previous TD. The command
1364 		 * completion handle will take care the rest.
1365 		 */
1366 		if (!ep_seg && (trb_comp_code == COMP_STOPPED ||
1367 				trb_comp_code == COMP_STOPPED_LENGTH_INVALID)) {
1368 			pep->skip = false;
1369 			goto cleanup;
1370 		}
1371 
1372 		if (!ep_seg) {
1373 			if (!pep->skip || !usb_endpoint_xfer_isoc(desc)) {
1374 				/* Something is busted, give up! */
1375 				dev_err(pdev->dev,
1376 					"ERROR Transfer event TRB DMA ptr not "
1377 					"part of current TD ep_index %d "
1378 					"comp_code %u\n", ep_index,
1379 					trb_comp_code);
1380 				return -EINVAL;
1381 			}
1382 
1383 			cdnsp_skip_isoc_td(pdev, td, event, pep, status);
1384 			goto cleanup;
1385 		}
1386 
1387 		if (trb_comp_code == COMP_SHORT_PACKET)
1388 			ep_ring->last_td_was_short = true;
1389 		else
1390 			ep_ring->last_td_was_short = false;
1391 
1392 		if (pep->skip) {
1393 			pep->skip = false;
1394 			cdnsp_skip_isoc_td(pdev, td, event, pep, status);
1395 			goto cleanup;
1396 		}
1397 
1398 		if (cdnsp_trb_is_noop(ep_trb))
1399 			goto cleanup;
1400 
1401 		if (usb_endpoint_xfer_control(desc))
1402 			cdnsp_process_ctrl_td(pdev, td, ep_trb, event, pep,
1403 					      &status);
1404 		else if (usb_endpoint_xfer_isoc(desc))
1405 			cdnsp_process_isoc_td(pdev, td, ep_trb, event, pep,
1406 					      status);
1407 		else
1408 			cdnsp_process_bulk_intr_td(pdev, td, ep_trb, event, pep,
1409 						   &status);
1410 cleanup:
1411 		handling_skipped_tds = pep->skip;
1412 
1413 		/*
1414 		 * Do not update event ring dequeue pointer if we're in a loop
1415 		 * processing missed tds.
1416 		 */
1417 		if (!handling_skipped_tds)
1418 			cdnsp_inc_deq(pdev, pdev->event_ring);
1419 
1420 	/*
1421 	 * If ep->skip is set, it means there are missed tds on the
1422 	 * endpoint ring need to take care of.
1423 	 * Process them as short transfer until reach the td pointed by
1424 	 * the event.
1425 	 */
1426 	} while (handling_skipped_tds);
1427 	return 0;
1428 
1429 err_out:
1430 	dev_err(pdev->dev, "@%016llx %08x %08x %08x %08x\n",
1431 		(unsigned long long)
1432 		cdnsp_trb_virt_to_dma(pdev->event_ring->deq_seg,
1433 				      pdev->event_ring->dequeue),
1434 		 lower_32_bits(le64_to_cpu(event->buffer)),
1435 		 upper_32_bits(le64_to_cpu(event->buffer)),
1436 		 le32_to_cpu(event->transfer_len),
1437 		 le32_to_cpu(event->flags));
1438 	return -EINVAL;
1439 }
1440 
1441 /*
1442  * This function handles all events on the event ring.
1443  * Returns true for "possibly more events to process" (caller should call
1444  * again), otherwise false if done.
1445  */
1446 static bool cdnsp_handle_event(struct cdnsp_device *pdev)
1447 {
1448 	unsigned int comp_code;
1449 	union cdnsp_trb *event;
1450 	bool update_ptrs = true;
1451 	u32 cycle_bit;
1452 	int ret = 0;
1453 	u32 flags;
1454 
1455 	event = pdev->event_ring->dequeue;
1456 	flags = le32_to_cpu(event->event_cmd.flags);
1457 	cycle_bit = (flags & TRB_CYCLE);
1458 
1459 	/* Does the controller or driver own the TRB? */
1460 	if (cycle_bit != pdev->event_ring->cycle_state)
1461 		return false;
1462 
1463 	trace_cdnsp_handle_event(pdev->event_ring, &event->generic);
1464 
1465 	/*
1466 	 * Barrier between reading the TRB_CYCLE (valid) flag above and any
1467 	 * reads of the event's flags/data below.
1468 	 */
1469 	rmb();
1470 
1471 	switch (flags & TRB_TYPE_BITMASK) {
1472 	case TRB_TYPE(TRB_COMPLETION):
1473 		/*
1474 		 * Command can't be handled in interrupt context so just
1475 		 * increment command ring dequeue pointer.
1476 		 */
1477 		cdnsp_inc_deq(pdev, pdev->cmd_ring);
1478 		break;
1479 	case TRB_TYPE(TRB_PORT_STATUS):
1480 		cdnsp_handle_port_status(pdev, event);
1481 		update_ptrs = false;
1482 		break;
1483 	case TRB_TYPE(TRB_TRANSFER):
1484 		ret = cdnsp_handle_tx_event(pdev, &event->trans_event);
1485 		if (ret >= 0)
1486 			update_ptrs = false;
1487 		break;
1488 	case TRB_TYPE(TRB_SETUP):
1489 		pdev->ep0_stage = CDNSP_SETUP_STAGE;
1490 		pdev->setup_id = TRB_SETUPID_TO_TYPE(flags);
1491 		pdev->setup_speed = TRB_SETUP_SPEEDID(flags);
1492 		pdev->setup = *((struct usb_ctrlrequest *)
1493 				&event->trans_event.buffer);
1494 
1495 		cdnsp_setup_analyze(pdev);
1496 		break;
1497 	case TRB_TYPE(TRB_ENDPOINT_NRDY):
1498 		cdnsp_handle_tx_nrdy(pdev, &event->trans_event);
1499 		break;
1500 	case TRB_TYPE(TRB_HC_EVENT): {
1501 		comp_code = GET_COMP_CODE(le32_to_cpu(event->generic.field[2]));
1502 
1503 		switch (comp_code) {
1504 		case COMP_EVENT_RING_FULL_ERROR:
1505 			dev_err(pdev->dev, "Event Ring Full\n");
1506 			break;
1507 		default:
1508 			dev_err(pdev->dev, "Controller error code 0x%02x\n",
1509 				comp_code);
1510 		}
1511 
1512 		break;
1513 	}
1514 	case TRB_TYPE(TRB_MFINDEX_WRAP):
1515 	case TRB_TYPE(TRB_DRB_OVERFLOW):
1516 		break;
1517 	default:
1518 		dev_warn(pdev->dev, "ERROR unknown event type %ld\n",
1519 			 TRB_FIELD_TO_TYPE(flags));
1520 	}
1521 
1522 	if (update_ptrs)
1523 		/* Update SW event ring dequeue pointer. */
1524 		cdnsp_inc_deq(pdev, pdev->event_ring);
1525 
1526 	/*
1527 	 * Caller will call us again to check if there are more items
1528 	 * on the event ring.
1529 	 */
1530 	return true;
1531 }
1532 
1533 irqreturn_t cdnsp_thread_irq_handler(int irq, void *data)
1534 {
1535 	struct cdnsp_device *pdev = (struct cdnsp_device *)data;
1536 	union cdnsp_trb *event_ring_deq;
1537 	unsigned long flags;
1538 	int counter = 0;
1539 
1540 	local_bh_disable();
1541 	spin_lock_irqsave(&pdev->lock, flags);
1542 
1543 	if (pdev->cdnsp_state & (CDNSP_STATE_HALTED | CDNSP_STATE_DYING)) {
1544 		/*
1545 		 * While removing or stopping driver there may still be deferred
1546 		 * not handled interrupt which should not be treated as error.
1547 		 * Driver should simply ignore it.
1548 		 */
1549 		if (pdev->gadget_driver)
1550 			cdnsp_died(pdev);
1551 
1552 		spin_unlock_irqrestore(&pdev->lock, flags);
1553 		local_bh_enable();
1554 		return IRQ_HANDLED;
1555 	}
1556 
1557 	event_ring_deq = pdev->event_ring->dequeue;
1558 
1559 	while (cdnsp_handle_event(pdev)) {
1560 		if (++counter >= TRBS_PER_EV_DEQ_UPDATE) {
1561 			cdnsp_update_erst_dequeue(pdev, event_ring_deq, 0);
1562 			event_ring_deq = pdev->event_ring->dequeue;
1563 			counter = 0;
1564 		}
1565 	}
1566 
1567 	cdnsp_update_erst_dequeue(pdev, event_ring_deq, 1);
1568 
1569 	spin_unlock_irqrestore(&pdev->lock, flags);
1570 	local_bh_enable();
1571 
1572 	return IRQ_HANDLED;
1573 }
1574 
1575 irqreturn_t cdnsp_irq_handler(int irq, void *priv)
1576 {
1577 	struct cdnsp_device *pdev = (struct cdnsp_device *)priv;
1578 	u32 irq_pending;
1579 	u32 status;
1580 
1581 	status = readl(&pdev->op_regs->status);
1582 
1583 	if (status == ~(u32)0) {
1584 		cdnsp_died(pdev);
1585 		return IRQ_HANDLED;
1586 	}
1587 
1588 	if (!(status & STS_EINT))
1589 		return IRQ_NONE;
1590 
1591 	writel(status | STS_EINT, &pdev->op_regs->status);
1592 	irq_pending = readl(&pdev->ir_set->irq_pending);
1593 	irq_pending |= IMAN_IP;
1594 	writel(irq_pending, &pdev->ir_set->irq_pending);
1595 
1596 	if (status & STS_FATAL) {
1597 		cdnsp_died(pdev);
1598 		return IRQ_HANDLED;
1599 	}
1600 
1601 	return IRQ_WAKE_THREAD;
1602 }
1603 
1604 /*
1605  * Generic function for queuing a TRB on a ring.
1606  * The caller must have checked to make sure there's room on the ring.
1607  *
1608  * @more_trbs_coming:	Will you enqueue more TRBs before setting doorbell?
1609  */
1610 static void cdnsp_queue_trb(struct cdnsp_device *pdev, struct cdnsp_ring *ring,
1611 			    bool more_trbs_coming, u32 field1, u32 field2,
1612 			    u32 field3, u32 field4)
1613 {
1614 	struct cdnsp_generic_trb *trb;
1615 
1616 	trb = &ring->enqueue->generic;
1617 
1618 	trb->field[0] = cpu_to_le32(field1);
1619 	trb->field[1] = cpu_to_le32(field2);
1620 	trb->field[2] = cpu_to_le32(field3);
1621 	trb->field[3] = cpu_to_le32(field4);
1622 
1623 	trace_cdnsp_queue_trb(ring, trb);
1624 	cdnsp_inc_enq(pdev, ring, more_trbs_coming);
1625 }
1626 
1627 /*
1628  * Does various checks on the endpoint ring, and makes it ready to
1629  * queue num_trbs.
1630  */
1631 static int cdnsp_prepare_ring(struct cdnsp_device *pdev,
1632 			      struct cdnsp_ring *ep_ring,
1633 			      u32 ep_state, unsigned
1634 			      int num_trbs,
1635 			      gfp_t mem_flags)
1636 {
1637 	unsigned int num_trbs_needed;
1638 
1639 	/* Make sure the endpoint has been added to controller schedule. */
1640 	switch (ep_state) {
1641 	case EP_STATE_STOPPED:
1642 	case EP_STATE_RUNNING:
1643 	case EP_STATE_HALTED:
1644 		break;
1645 	default:
1646 		dev_err(pdev->dev, "ERROR: incorrect endpoint state\n");
1647 		return -EINVAL;
1648 	}
1649 
1650 	while (1) {
1651 		if (cdnsp_room_on_ring(pdev, ep_ring, num_trbs))
1652 			break;
1653 
1654 		trace_cdnsp_no_room_on_ring("try ring expansion");
1655 
1656 		num_trbs_needed = num_trbs - ep_ring->num_trbs_free;
1657 		if (cdnsp_ring_expansion(pdev, ep_ring, num_trbs_needed,
1658 					 mem_flags)) {
1659 			dev_err(pdev->dev, "Ring expansion failed\n");
1660 			return -ENOMEM;
1661 		}
1662 	}
1663 
1664 	while (cdnsp_trb_is_link(ep_ring->enqueue)) {
1665 		ep_ring->enqueue->link.control |= cpu_to_le32(TRB_CHAIN);
1666 		/* The cycle bit must be set as the last operation. */
1667 		wmb();
1668 		ep_ring->enqueue->link.control ^= cpu_to_le32(TRB_CYCLE);
1669 
1670 		/* Toggle the cycle bit after the last ring segment. */
1671 		if (cdnsp_link_trb_toggles_cycle(ep_ring->enqueue))
1672 			ep_ring->cycle_state ^= 1;
1673 		ep_ring->enq_seg = ep_ring->enq_seg->next;
1674 		ep_ring->enqueue = ep_ring->enq_seg->trbs;
1675 	}
1676 	return 0;
1677 }
1678 
1679 static int cdnsp_prepare_transfer(struct cdnsp_device *pdev,
1680 				  struct cdnsp_request *preq,
1681 				  unsigned int num_trbs)
1682 {
1683 	struct cdnsp_ring *ep_ring;
1684 	int ret;
1685 
1686 	ep_ring = cdnsp_get_transfer_ring(pdev, preq->pep,
1687 					  preq->request.stream_id);
1688 	if (!ep_ring)
1689 		return -EINVAL;
1690 
1691 	ret = cdnsp_prepare_ring(pdev, ep_ring,
1692 				 GET_EP_CTX_STATE(preq->pep->out_ctx),
1693 				 num_trbs, GFP_ATOMIC);
1694 	if (ret)
1695 		return ret;
1696 
1697 	INIT_LIST_HEAD(&preq->td.td_list);
1698 	preq->td.preq = preq;
1699 
1700 	/* Add this TD to the tail of the endpoint ring's TD list. */
1701 	list_add_tail(&preq->td.td_list, &ep_ring->td_list);
1702 	ep_ring->num_tds++;
1703 	preq->pep->stream_info.td_count++;
1704 
1705 	preq->td.start_seg = ep_ring->enq_seg;
1706 	preq->td.first_trb = ep_ring->enqueue;
1707 
1708 	return 0;
1709 }
1710 
1711 static unsigned int cdnsp_count_trbs(u64 addr, u64 len)
1712 {
1713 	unsigned int num_trbs;
1714 
1715 	num_trbs = DIV_ROUND_UP(len + (addr & (TRB_MAX_BUFF_SIZE - 1)),
1716 				TRB_MAX_BUFF_SIZE);
1717 	if (num_trbs == 0)
1718 		num_trbs++;
1719 
1720 	return num_trbs;
1721 }
1722 
1723 static unsigned int count_trbs_needed(struct cdnsp_request *preq)
1724 {
1725 	return cdnsp_count_trbs(preq->request.dma, preq->request.length);
1726 }
1727 
1728 static unsigned int count_sg_trbs_needed(struct cdnsp_request *preq)
1729 {
1730 	unsigned int i, len, full_len, num_trbs = 0;
1731 	struct scatterlist *sg;
1732 
1733 	full_len = preq->request.length;
1734 
1735 	for_each_sg(preq->request.sg, sg, preq->request.num_sgs, i) {
1736 		len = sg_dma_len(sg);
1737 		num_trbs += cdnsp_count_trbs(sg_dma_address(sg), len);
1738 		len = min(len, full_len);
1739 		full_len -= len;
1740 		if (full_len == 0)
1741 			break;
1742 	}
1743 
1744 	return num_trbs;
1745 }
1746 
1747 static void cdnsp_check_trb_math(struct cdnsp_request *preq, int running_total)
1748 {
1749 	if (running_total != preq->request.length)
1750 		dev_err(preq->pep->pdev->dev,
1751 			"%s - Miscalculated tx length, "
1752 			"queued %#x, asked for %#x (%d)\n",
1753 			preq->pep->name, running_total,
1754 			preq->request.length, preq->request.actual);
1755 }
1756 
1757 /*
1758  * TD size is the number of max packet sized packets remaining in the TD
1759  * (*not* including this TRB).
1760  *
1761  * Total TD packet count = total_packet_count =
1762  *     DIV_ROUND_UP(TD size in bytes / wMaxPacketSize)
1763  *
1764  * Packets transferred up to and including this TRB = packets_transferred =
1765  *     rounddown(total bytes transferred including this TRB / wMaxPacketSize)
1766  *
1767  * TD size = total_packet_count - packets_transferred
1768  *
1769  * It must fit in bits 21:17, so it can't be bigger than 31.
1770  * This is taken care of in the TRB_TD_SIZE() macro
1771  *
1772  * The last TRB in a TD must have the TD size set to zero.
1773  */
1774 static u32 cdnsp_td_remainder(struct cdnsp_device *pdev,
1775 			      int transferred,
1776 			      int trb_buff_len,
1777 			      unsigned int td_total_len,
1778 			      struct cdnsp_request *preq,
1779 			      bool more_trbs_coming,
1780 			      bool zlp)
1781 {
1782 	u32 maxp, total_packet_count;
1783 
1784 	/* Before ZLP driver needs set TD_SIZE = 1. */
1785 	if (zlp)
1786 		return 1;
1787 
1788 	/* One TRB with a zero-length data packet. */
1789 	if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) ||
1790 	    trb_buff_len == td_total_len)
1791 		return 0;
1792 
1793 	maxp = usb_endpoint_maxp(preq->pep->endpoint.desc);
1794 	total_packet_count = DIV_ROUND_UP(td_total_len, maxp);
1795 
1796 	/* Queuing functions don't count the current TRB into transferred. */
1797 	return (total_packet_count - ((transferred + trb_buff_len) / maxp));
1798 }
1799 
1800 static int cdnsp_align_td(struct cdnsp_device *pdev,
1801 			  struct cdnsp_request *preq, u32 enqd_len,
1802 			  u32 *trb_buff_len, struct cdnsp_segment *seg)
1803 {
1804 	struct device *dev = pdev->dev;
1805 	unsigned int unalign;
1806 	unsigned int max_pkt;
1807 	u32 new_buff_len;
1808 
1809 	max_pkt = usb_endpoint_maxp(preq->pep->endpoint.desc);
1810 	unalign = (enqd_len + *trb_buff_len) % max_pkt;
1811 
1812 	/* We got lucky, last normal TRB data on segment is packet aligned. */
1813 	if (unalign == 0)
1814 		return 0;
1815 
1816 	/* Is the last nornal TRB alignable by splitting it. */
1817 	if (*trb_buff_len > unalign) {
1818 		*trb_buff_len -= unalign;
1819 		trace_cdnsp_bounce_align_td_split(preq, *trb_buff_len,
1820 						  enqd_len, 0, unalign);
1821 		return 0;
1822 	}
1823 
1824 	/*
1825 	 * We want enqd_len + trb_buff_len to sum up to a number aligned to
1826 	 * number which is divisible by the endpoint's wMaxPacketSize. IOW:
1827 	 * (size of currently enqueued TRBs + remainder) % wMaxPacketSize == 0.
1828 	 */
1829 	new_buff_len = max_pkt - (enqd_len % max_pkt);
1830 
1831 	if (new_buff_len > (preq->request.length - enqd_len))
1832 		new_buff_len = (preq->request.length - enqd_len);
1833 
1834 	/* Create a max max_pkt sized bounce buffer pointed to by last trb. */
1835 	if (preq->direction) {
1836 		sg_pcopy_to_buffer(preq->request.sg,
1837 				   preq->request.num_mapped_sgs,
1838 				   seg->bounce_buf, new_buff_len, enqd_len);
1839 		seg->bounce_dma = dma_map_single(dev, seg->bounce_buf,
1840 						 max_pkt, DMA_TO_DEVICE);
1841 	} else {
1842 		seg->bounce_dma = dma_map_single(dev, seg->bounce_buf,
1843 						 max_pkt, DMA_FROM_DEVICE);
1844 	}
1845 
1846 	if (dma_mapping_error(dev, seg->bounce_dma)) {
1847 		/* Try without aligning.*/
1848 		dev_warn(pdev->dev,
1849 			 "Failed mapping bounce buffer, not aligning\n");
1850 		return 0;
1851 	}
1852 
1853 	*trb_buff_len = new_buff_len;
1854 	seg->bounce_len = new_buff_len;
1855 	seg->bounce_offs = enqd_len;
1856 
1857 	trace_cdnsp_bounce_map(preq, new_buff_len, enqd_len, seg->bounce_dma,
1858 			       unalign);
1859 
1860 	/*
1861 	 * Bounce buffer successful aligned and seg->bounce_dma will be used
1862 	 * in transfer TRB as new transfer buffer address.
1863 	 */
1864 	return 1;
1865 }
1866 
1867 int cdnsp_queue_bulk_tx(struct cdnsp_device *pdev, struct cdnsp_request *preq)
1868 {
1869 	unsigned int enqd_len, block_len, trb_buff_len, full_len;
1870 	unsigned int start_cycle, num_sgs = 0;
1871 	struct cdnsp_generic_trb *start_trb;
1872 	u32 field, length_field, remainder;
1873 	struct scatterlist *sg = NULL;
1874 	bool more_trbs_coming = true;
1875 	bool need_zero_pkt = false;
1876 	bool zero_len_trb = false;
1877 	struct cdnsp_ring *ring;
1878 	bool first_trb = true;
1879 	unsigned int num_trbs;
1880 	struct cdnsp_ep *pep;
1881 	u64 addr, send_addr;
1882 	int sent_len, ret;
1883 
1884 	ring = cdnsp_request_to_transfer_ring(pdev, preq);
1885 	if (!ring)
1886 		return -EINVAL;
1887 
1888 	full_len = preq->request.length;
1889 
1890 	if (preq->request.num_sgs) {
1891 		num_sgs = preq->request.num_sgs;
1892 		sg = preq->request.sg;
1893 		addr = (u64)sg_dma_address(sg);
1894 		block_len = sg_dma_len(sg);
1895 		num_trbs = count_sg_trbs_needed(preq);
1896 	} else {
1897 		num_trbs = count_trbs_needed(preq);
1898 		addr = (u64)preq->request.dma;
1899 		block_len = full_len;
1900 	}
1901 
1902 	pep = preq->pep;
1903 
1904 	/* Deal with request.zero - need one more td/trb. */
1905 	if (preq->request.zero && preq->request.length &&
1906 	    IS_ALIGNED(full_len, usb_endpoint_maxp(pep->endpoint.desc))) {
1907 		need_zero_pkt = true;
1908 		num_trbs++;
1909 	}
1910 
1911 	ret = cdnsp_prepare_transfer(pdev, preq, num_trbs);
1912 	if (ret)
1913 		return ret;
1914 
1915 	/*
1916 	 * workaround 1: STOP EP command on LINK TRB with TC bit set to 1
1917 	 * causes that internal cycle bit can have incorrect state after
1918 	 * command complete. In consequence empty transfer ring can be
1919 	 * incorrectly detected when EP is resumed.
1920 	 * NOP TRB before LINK TRB avoid such scenario. STOP EP command is
1921 	 * then on NOP TRB and internal cycle bit is not changed and have
1922 	 * correct value.
1923 	 */
1924 	if (pep->wa1_nop_trb) {
1925 		field = le32_to_cpu(pep->wa1_nop_trb->trans_event.flags);
1926 		field ^= TRB_CYCLE;
1927 
1928 		pep->wa1_nop_trb->trans_event.flags = cpu_to_le32(field);
1929 		pep->wa1_nop_trb = NULL;
1930 	}
1931 
1932 	/*
1933 	 * Don't give the first TRB to the hardware (by toggling the cycle bit)
1934 	 * until we've finished creating all the other TRBs. The ring's cycle
1935 	 * state may change as we enqueue the other TRBs, so save it too.
1936 	 */
1937 	start_trb = &ring->enqueue->generic;
1938 	start_cycle = ring->cycle_state;
1939 	send_addr = addr;
1940 
1941 	/* Queue the TRBs, even if they are zero-length */
1942 	for (enqd_len = 0; zero_len_trb || first_trb || enqd_len < full_len;
1943 	     enqd_len += trb_buff_len) {
1944 		field = TRB_TYPE(TRB_NORMAL);
1945 
1946 		/* TRB buffer should not cross 64KB boundaries */
1947 		trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr);
1948 		trb_buff_len = min(trb_buff_len, block_len);
1949 		if (enqd_len + trb_buff_len > full_len)
1950 			trb_buff_len = full_len - enqd_len;
1951 
1952 		/* Don't change the cycle bit of the first TRB until later */
1953 		if (first_trb) {
1954 			first_trb = false;
1955 			if (start_cycle == 0)
1956 				field |= TRB_CYCLE;
1957 		} else {
1958 			field |= ring->cycle_state;
1959 		}
1960 
1961 		/*
1962 		 * Chain all the TRBs together; clear the chain bit in the last
1963 		 * TRB to indicate it's the last TRB in the chain.
1964 		 */
1965 		if (enqd_len + trb_buff_len < full_len || need_zero_pkt) {
1966 			field |= TRB_CHAIN;
1967 			if (cdnsp_trb_is_link(ring->enqueue + 1)) {
1968 				if (cdnsp_align_td(pdev, preq, enqd_len,
1969 						   &trb_buff_len,
1970 						   ring->enq_seg)) {
1971 					send_addr = ring->enq_seg->bounce_dma;
1972 					/* Assuming TD won't span 2 segs */
1973 					preq->td.bounce_seg = ring->enq_seg;
1974 				}
1975 			}
1976 		}
1977 
1978 		if (enqd_len + trb_buff_len >= full_len) {
1979 			if (need_zero_pkt && !zero_len_trb) {
1980 				zero_len_trb = true;
1981 			} else {
1982 				zero_len_trb = false;
1983 				field &= ~TRB_CHAIN;
1984 				field |= TRB_IOC;
1985 				more_trbs_coming = false;
1986 				need_zero_pkt = false;
1987 				preq->td.last_trb = ring->enqueue;
1988 			}
1989 		}
1990 
1991 		/* Only set interrupt on short packet for OUT endpoints. */
1992 		if (!preq->direction)
1993 			field |= TRB_ISP;
1994 
1995 		/* Set the TRB length, TD size, and interrupter fields. */
1996 		remainder = cdnsp_td_remainder(pdev, enqd_len, trb_buff_len,
1997 					       full_len, preq,
1998 					       more_trbs_coming,
1999 					       zero_len_trb);
2000 
2001 		length_field = TRB_LEN(trb_buff_len) | TRB_TD_SIZE(remainder) |
2002 			TRB_INTR_TARGET(0);
2003 
2004 		cdnsp_queue_trb(pdev, ring, more_trbs_coming,
2005 				lower_32_bits(send_addr),
2006 				upper_32_bits(send_addr),
2007 				length_field,
2008 				field);
2009 
2010 		addr += trb_buff_len;
2011 		sent_len = trb_buff_len;
2012 		while (sg && sent_len >= block_len) {
2013 			/* New sg entry */
2014 			--num_sgs;
2015 			sent_len -= block_len;
2016 			if (num_sgs != 0) {
2017 				sg = sg_next(sg);
2018 				block_len = sg_dma_len(sg);
2019 				addr = (u64)sg_dma_address(sg);
2020 				addr += sent_len;
2021 			}
2022 		}
2023 		block_len -= sent_len;
2024 		send_addr = addr;
2025 	}
2026 
2027 	if (cdnsp_trb_is_link(ring->enqueue + 1)) {
2028 		field = TRB_TYPE(TRB_TR_NOOP) | TRB_IOC;
2029 		if (!ring->cycle_state)
2030 			field |= TRB_CYCLE;
2031 
2032 		pep->wa1_nop_trb = ring->enqueue;
2033 
2034 		cdnsp_queue_trb(pdev, ring, 0, 0x0, 0x0,
2035 				TRB_INTR_TARGET(0), field);
2036 	}
2037 
2038 	cdnsp_check_trb_math(preq, enqd_len);
2039 	ret = cdnsp_giveback_first_trb(pdev, pep, preq->request.stream_id,
2040 				       start_cycle, start_trb);
2041 
2042 	if (ret)
2043 		preq->td.drbl = 1;
2044 
2045 	return 0;
2046 }
2047 
2048 int cdnsp_queue_ctrl_tx(struct cdnsp_device *pdev, struct cdnsp_request *preq)
2049 {
2050 	u32 field, length_field, zlp = 0;
2051 	struct cdnsp_ep *pep = preq->pep;
2052 	struct cdnsp_ring *ep_ring;
2053 	int num_trbs;
2054 	u32 maxp;
2055 	int ret;
2056 
2057 	ep_ring = cdnsp_request_to_transfer_ring(pdev, preq);
2058 	if (!ep_ring)
2059 		return -EINVAL;
2060 
2061 	/* 1 TRB for data, 1 for status */
2062 	num_trbs = (pdev->three_stage_setup) ? 2 : 1;
2063 
2064 	maxp = usb_endpoint_maxp(pep->endpoint.desc);
2065 
2066 	if (preq->request.zero && preq->request.length &&
2067 	    (preq->request.length % maxp == 0)) {
2068 		num_trbs++;
2069 		zlp = 1;
2070 	}
2071 
2072 	ret = cdnsp_prepare_transfer(pdev, preq, num_trbs);
2073 	if (ret)
2074 		return ret;
2075 
2076 	/* If there's data, queue data TRBs */
2077 	if (preq->request.length > 0) {
2078 		field = TRB_TYPE(TRB_DATA);
2079 
2080 		if (zlp)
2081 			field |= TRB_CHAIN;
2082 		else
2083 			field |= TRB_IOC | (pdev->ep0_expect_in ? 0 : TRB_ISP);
2084 
2085 		if (pdev->ep0_expect_in)
2086 			field |= TRB_DIR_IN;
2087 
2088 		length_field = TRB_LEN(preq->request.length) |
2089 			       TRB_TD_SIZE(zlp) | TRB_INTR_TARGET(0);
2090 
2091 		cdnsp_queue_trb(pdev, ep_ring, true,
2092 				lower_32_bits(preq->request.dma),
2093 				upper_32_bits(preq->request.dma), length_field,
2094 				field | ep_ring->cycle_state |
2095 				TRB_SETUPID(pdev->setup_id) |
2096 				pdev->setup_speed);
2097 
2098 		if (zlp) {
2099 			field = TRB_TYPE(TRB_NORMAL) | TRB_IOC;
2100 
2101 			if (!pdev->ep0_expect_in)
2102 				field = TRB_ISP;
2103 
2104 			cdnsp_queue_trb(pdev, ep_ring, true,
2105 					lower_32_bits(preq->request.dma),
2106 					upper_32_bits(preq->request.dma), 0,
2107 					field | ep_ring->cycle_state |
2108 					TRB_SETUPID(pdev->setup_id) |
2109 					pdev->setup_speed);
2110 		}
2111 
2112 		pdev->ep0_stage = CDNSP_DATA_STAGE;
2113 	}
2114 
2115 	/* Save the DMA address of the last TRB in the TD. */
2116 	preq->td.last_trb = ep_ring->enqueue;
2117 
2118 	/* Queue status TRB. */
2119 	if (preq->request.length == 0)
2120 		field = ep_ring->cycle_state;
2121 	else
2122 		field = (ep_ring->cycle_state ^ 1);
2123 
2124 	if (preq->request.length > 0 && pdev->ep0_expect_in)
2125 		field |= TRB_DIR_IN;
2126 
2127 	if (pep->ep_state & EP0_HALTED_STATUS) {
2128 		pep->ep_state &= ~EP0_HALTED_STATUS;
2129 		field |= TRB_SETUPSTAT(TRB_SETUPSTAT_STALL);
2130 	} else {
2131 		field |= TRB_SETUPSTAT(TRB_SETUPSTAT_ACK);
2132 	}
2133 
2134 	cdnsp_queue_trb(pdev, ep_ring, false, 0, 0, TRB_INTR_TARGET(0),
2135 			field | TRB_IOC | TRB_SETUPID(pdev->setup_id) |
2136 			TRB_TYPE(TRB_STATUS) | pdev->setup_speed);
2137 
2138 	cdnsp_ring_ep_doorbell(pdev, pep, preq->request.stream_id);
2139 
2140 	return 0;
2141 }
2142 
2143 int cdnsp_cmd_stop_ep(struct cdnsp_device *pdev, struct cdnsp_ep *pep)
2144 {
2145 	u32 ep_state = GET_EP_CTX_STATE(pep->out_ctx);
2146 	int ret = 0;
2147 
2148 	if (ep_state == EP_STATE_STOPPED || ep_state == EP_STATE_DISABLED ||
2149 	    ep_state == EP_STATE_HALTED) {
2150 		trace_cdnsp_ep_stopped_or_disabled(pep->out_ctx);
2151 		goto ep_stopped;
2152 	}
2153 
2154 	cdnsp_queue_stop_endpoint(pdev, pep->idx);
2155 	cdnsp_ring_cmd_db(pdev);
2156 	ret = cdnsp_wait_for_cmd_compl(pdev);
2157 
2158 	trace_cdnsp_handle_cmd_stop_ep(pep->out_ctx);
2159 
2160 ep_stopped:
2161 	pep->ep_state |= EP_STOPPED;
2162 	return ret;
2163 }
2164 
2165 /*
2166  * The transfer burst count field of the isochronous TRB defines the number of
2167  * bursts that are required to move all packets in this TD. Only SuperSpeed
2168  * devices can burst up to bMaxBurst number of packets per service interval.
2169  * This field is zero based, meaning a value of zero in the field means one
2170  * burst. Basically, for everything but SuperSpeed devices, this field will be
2171  * zero.
2172  */
2173 static unsigned int cdnsp_get_burst_count(struct cdnsp_device *pdev,
2174 					  struct cdnsp_request *preq,
2175 					  unsigned int total_packet_count)
2176 {
2177 	unsigned int max_burst;
2178 
2179 	if (pdev->gadget.speed < USB_SPEED_SUPER)
2180 		return 0;
2181 
2182 	max_burst = preq->pep->endpoint.comp_desc->bMaxBurst;
2183 	return DIV_ROUND_UP(total_packet_count, max_burst + 1) - 1;
2184 }
2185 
2186 /*
2187  * Returns the number of packets in the last "burst" of packets. This field is
2188  * valid for all speeds of devices. USB 2.0 devices can only do one "burst", so
2189  * the last burst packet count is equal to the total number of packets in the
2190  * TD. SuperSpeed endpoints can have up to 3 bursts. All but the last burst
2191  * must contain (bMaxBurst + 1) number of packets, but the last burst can
2192  * contain 1 to (bMaxBurst + 1) packets.
2193  */
2194 static unsigned int
2195 	cdnsp_get_last_burst_packet_count(struct cdnsp_device *pdev,
2196 					  struct cdnsp_request *preq,
2197 					  unsigned int total_packet_count)
2198 {
2199 	unsigned int max_burst;
2200 	unsigned int residue;
2201 
2202 	if (pdev->gadget.speed >= USB_SPEED_SUPER) {
2203 		/* bMaxBurst is zero based: 0 means 1 packet per burst. */
2204 		max_burst = preq->pep->endpoint.comp_desc->bMaxBurst;
2205 		residue = total_packet_count % (max_burst + 1);
2206 
2207 		/*
2208 		 * If residue is zero, the last burst contains (max_burst + 1)
2209 		 * number of packets, but the TLBPC field is zero-based.
2210 		 */
2211 		if (residue == 0)
2212 			return max_burst;
2213 
2214 		return residue - 1;
2215 	}
2216 	if (total_packet_count == 0)
2217 		return 0;
2218 
2219 	return total_packet_count - 1;
2220 }
2221 
2222 /* Queue function isoc transfer */
2223 int cdnsp_queue_isoc_tx(struct cdnsp_device *pdev,
2224 			struct cdnsp_request *preq)
2225 {
2226 	unsigned int trb_buff_len, td_len, td_remain_len, block_len;
2227 	unsigned int burst_count, last_burst_pkt;
2228 	unsigned int total_pkt_count, max_pkt;
2229 	struct cdnsp_generic_trb *start_trb;
2230 	struct scatterlist *sg = NULL;
2231 	bool more_trbs_coming = true;
2232 	struct cdnsp_ring *ep_ring;
2233 	unsigned int num_sgs = 0;
2234 	int running_total = 0;
2235 	u32 field, length_field;
2236 	u64 addr, send_addr;
2237 	int start_cycle;
2238 	int trbs_per_td;
2239 	int i, sent_len, ret;
2240 
2241 	ep_ring = preq->pep->ring;
2242 
2243 	td_len = preq->request.length;
2244 
2245 	if (preq->request.num_sgs) {
2246 		num_sgs = preq->request.num_sgs;
2247 		sg = preq->request.sg;
2248 		addr = (u64)sg_dma_address(sg);
2249 		block_len = sg_dma_len(sg);
2250 		trbs_per_td = count_sg_trbs_needed(preq);
2251 	} else {
2252 		addr = (u64)preq->request.dma;
2253 		block_len = td_len;
2254 		trbs_per_td = count_trbs_needed(preq);
2255 	}
2256 
2257 	ret = cdnsp_prepare_transfer(pdev, preq, trbs_per_td);
2258 	if (ret)
2259 		return ret;
2260 
2261 	start_trb = &ep_ring->enqueue->generic;
2262 	start_cycle = ep_ring->cycle_state;
2263 	td_remain_len = td_len;
2264 	send_addr = addr;
2265 
2266 	max_pkt = usb_endpoint_maxp(preq->pep->endpoint.desc);
2267 	total_pkt_count = DIV_ROUND_UP(td_len, max_pkt);
2268 
2269 	/* A zero-length transfer still involves at least one packet. */
2270 	if (total_pkt_count == 0)
2271 		total_pkt_count++;
2272 
2273 	burst_count = cdnsp_get_burst_count(pdev, preq, total_pkt_count);
2274 	last_burst_pkt = cdnsp_get_last_burst_packet_count(pdev, preq,
2275 							   total_pkt_count);
2276 
2277 	/*
2278 	 * Set isoc specific data for the first TRB in a TD.
2279 	 * Prevent HW from getting the TRBs by keeping the cycle state
2280 	 * inverted in the first TDs isoc TRB.
2281 	 */
2282 	field = TRB_TYPE(TRB_ISOC) | TRB_TLBPC(last_burst_pkt) |
2283 		TRB_SIA | TRB_TBC(burst_count);
2284 
2285 	if (!start_cycle)
2286 		field |= TRB_CYCLE;
2287 
2288 	/* Fill the rest of the TRB fields, and remaining normal TRBs. */
2289 	for (i = 0; i < trbs_per_td; i++) {
2290 		u32 remainder;
2291 
2292 		/* Calculate TRB length. */
2293 		trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(addr);
2294 		trb_buff_len = min(trb_buff_len, block_len);
2295 		if (trb_buff_len > td_remain_len)
2296 			trb_buff_len = td_remain_len;
2297 
2298 		/* Set the TRB length, TD size, & interrupter fields. */
2299 		remainder = cdnsp_td_remainder(pdev, running_total,
2300 					       trb_buff_len, td_len, preq,
2301 					       more_trbs_coming, 0);
2302 
2303 		length_field = TRB_LEN(trb_buff_len) | TRB_TD_SIZE(remainder) |
2304 			TRB_INTR_TARGET(0);
2305 
2306 		/* Only first TRB is isoc, overwrite otherwise. */
2307 		if (i) {
2308 			field = TRB_TYPE(TRB_NORMAL) | ep_ring->cycle_state;
2309 			length_field |= TRB_TD_SIZE(remainder);
2310 		} else {
2311 			length_field |= TRB_TD_SIZE_TBC(burst_count);
2312 		}
2313 
2314 		/* Only set interrupt on short packet for OUT EPs. */
2315 		if (usb_endpoint_dir_out(preq->pep->endpoint.desc))
2316 			field |= TRB_ISP;
2317 
2318 		/* Set the chain bit for all except the last TRB. */
2319 		if (i < trbs_per_td - 1) {
2320 			more_trbs_coming = true;
2321 			field |= TRB_CHAIN;
2322 		} else {
2323 			more_trbs_coming = false;
2324 			preq->td.last_trb = ep_ring->enqueue;
2325 			field |= TRB_IOC;
2326 		}
2327 
2328 		cdnsp_queue_trb(pdev, ep_ring, more_trbs_coming,
2329 				lower_32_bits(send_addr), upper_32_bits(send_addr),
2330 				length_field, field);
2331 
2332 		running_total += trb_buff_len;
2333 		addr += trb_buff_len;
2334 		td_remain_len -= trb_buff_len;
2335 
2336 		sent_len = trb_buff_len;
2337 		while (sg && sent_len >= block_len) {
2338 			/* New sg entry */
2339 			--num_sgs;
2340 			sent_len -= block_len;
2341 			if (num_sgs != 0) {
2342 				sg = sg_next(sg);
2343 				block_len = sg_dma_len(sg);
2344 				addr = (u64)sg_dma_address(sg);
2345 				addr += sent_len;
2346 			}
2347 		}
2348 		block_len -= sent_len;
2349 		send_addr = addr;
2350 	}
2351 
2352 	/* Check TD length */
2353 	if (running_total != td_len) {
2354 		dev_err(pdev->dev, "ISOC TD length unmatch\n");
2355 		ret = -EINVAL;
2356 		goto cleanup;
2357 	}
2358 
2359 	cdnsp_giveback_first_trb(pdev, preq->pep, preq->request.stream_id,
2360 				 start_cycle, start_trb);
2361 
2362 	return 0;
2363 
2364 cleanup:
2365 	/* Clean up a partially enqueued isoc transfer. */
2366 	list_del_init(&preq->td.td_list);
2367 	ep_ring->num_tds--;
2368 
2369 	/*
2370 	 * Use the first TD as a temporary variable to turn the TDs we've
2371 	 * queued into No-ops with a software-owned cycle bit.
2372 	 * That way the hardware won't accidentally start executing bogus TDs
2373 	 * when we partially overwrite them.
2374 	 * td->first_trb and td->start_seg are already set.
2375 	 */
2376 	preq->td.last_trb = ep_ring->enqueue;
2377 	/* Every TRB except the first & last will have its cycle bit flipped. */
2378 	cdnsp_td_to_noop(pdev, ep_ring, &preq->td, true);
2379 
2380 	/* Reset the ring enqueue back to the first TRB and its cycle bit. */
2381 	ep_ring->enqueue = preq->td.first_trb;
2382 	ep_ring->enq_seg = preq->td.start_seg;
2383 	ep_ring->cycle_state = start_cycle;
2384 	return ret;
2385 }
2386 
2387 /****		Command Ring Operations		****/
2388 /*
2389  * Generic function for queuing a command TRB on the command ring.
2390  * Driver queue only one command to ring in the moment.
2391  */
2392 static void cdnsp_queue_command(struct cdnsp_device *pdev,
2393 				u32 field1,
2394 				u32 field2,
2395 				u32 field3,
2396 				u32 field4)
2397 {
2398 	cdnsp_prepare_ring(pdev, pdev->cmd_ring, EP_STATE_RUNNING, 1,
2399 			   GFP_ATOMIC);
2400 
2401 	pdev->cmd.command_trb = pdev->cmd_ring->enqueue;
2402 
2403 	cdnsp_queue_trb(pdev, pdev->cmd_ring, false, field1, field2,
2404 			field3, field4 | pdev->cmd_ring->cycle_state);
2405 }
2406 
2407 /* Queue a slot enable or disable request on the command ring */
2408 void cdnsp_queue_slot_control(struct cdnsp_device *pdev, u32 trb_type)
2409 {
2410 	cdnsp_queue_command(pdev, 0, 0, 0, TRB_TYPE(trb_type) |
2411 			    SLOT_ID_FOR_TRB(pdev->slot_id));
2412 }
2413 
2414 /* Queue an address device command TRB */
2415 void cdnsp_queue_address_device(struct cdnsp_device *pdev,
2416 				dma_addr_t in_ctx_ptr,
2417 				enum cdnsp_setup_dev setup)
2418 {
2419 	cdnsp_queue_command(pdev, lower_32_bits(in_ctx_ptr),
2420 			    upper_32_bits(in_ctx_ptr), 0,
2421 			    TRB_TYPE(TRB_ADDR_DEV) |
2422 			    SLOT_ID_FOR_TRB(pdev->slot_id) |
2423 			    (setup == SETUP_CONTEXT_ONLY ? TRB_BSR : 0));
2424 }
2425 
2426 /* Queue a reset device command TRB */
2427 void cdnsp_queue_reset_device(struct cdnsp_device *pdev)
2428 {
2429 	cdnsp_queue_command(pdev, 0, 0, 0, TRB_TYPE(TRB_RESET_DEV) |
2430 			    SLOT_ID_FOR_TRB(pdev->slot_id));
2431 }
2432 
2433 /* Queue a configure endpoint command TRB */
2434 void cdnsp_queue_configure_endpoint(struct cdnsp_device *pdev,
2435 				    dma_addr_t in_ctx_ptr)
2436 {
2437 	cdnsp_queue_command(pdev, lower_32_bits(in_ctx_ptr),
2438 			    upper_32_bits(in_ctx_ptr), 0,
2439 			    TRB_TYPE(TRB_CONFIG_EP) |
2440 			    SLOT_ID_FOR_TRB(pdev->slot_id));
2441 }
2442 
2443 /*
2444  * Suspend is set to indicate "Stop Endpoint Command" is being issued to stop
2445  * activity on an endpoint that is about to be suspended.
2446  */
2447 void cdnsp_queue_stop_endpoint(struct cdnsp_device *pdev, unsigned int ep_index)
2448 {
2449 	cdnsp_queue_command(pdev, 0, 0, 0, SLOT_ID_FOR_TRB(pdev->slot_id) |
2450 			    EP_ID_FOR_TRB(ep_index) | TRB_TYPE(TRB_STOP_RING));
2451 }
2452 
2453 /* Set Transfer Ring Dequeue Pointer command. */
2454 void cdnsp_queue_new_dequeue_state(struct cdnsp_device *pdev,
2455 				   struct cdnsp_ep *pep,
2456 				   struct cdnsp_dequeue_state *deq_state)
2457 {
2458 	u32 trb_stream_id = STREAM_ID_FOR_TRB(deq_state->stream_id);
2459 	u32 trb_slot_id = SLOT_ID_FOR_TRB(pdev->slot_id);
2460 	u32 type = TRB_TYPE(TRB_SET_DEQ);
2461 	u32 trb_sct = 0;
2462 	dma_addr_t addr;
2463 
2464 	addr = cdnsp_trb_virt_to_dma(deq_state->new_deq_seg,
2465 				     deq_state->new_deq_ptr);
2466 
2467 	if (deq_state->stream_id)
2468 		trb_sct = SCT_FOR_TRB(SCT_PRI_TR);
2469 
2470 	cdnsp_queue_command(pdev, lower_32_bits(addr) | trb_sct |
2471 			    deq_state->new_cycle_state, upper_32_bits(addr),
2472 			    trb_stream_id, trb_slot_id |
2473 			    EP_ID_FOR_TRB(pep->idx) | type);
2474 }
2475 
2476 void cdnsp_queue_reset_ep(struct cdnsp_device *pdev, unsigned int ep_index)
2477 {
2478 	return cdnsp_queue_command(pdev, 0, 0, 0,
2479 				   SLOT_ID_FOR_TRB(pdev->slot_id) |
2480 				   EP_ID_FOR_TRB(ep_index) |
2481 				   TRB_TYPE(TRB_RESET_EP));
2482 }
2483 
2484 /*
2485  * Queue a halt endpoint request on the command ring.
2486  */
2487 void cdnsp_queue_halt_endpoint(struct cdnsp_device *pdev, unsigned int ep_index)
2488 {
2489 	cdnsp_queue_command(pdev, 0, 0, 0, TRB_TYPE(TRB_HALT_ENDPOINT) |
2490 			    SLOT_ID_FOR_TRB(pdev->slot_id) |
2491 			    EP_ID_FOR_TRB(ep_index) |
2492 			    (!ep_index ? TRB_ESP : 0));
2493 }
2494 
2495 void cdnsp_force_header_wakeup(struct cdnsp_device *pdev, int intf_num)
2496 {
2497 	u32 lo, mid;
2498 
2499 	lo = TRB_FH_TO_PACKET_TYPE(TRB_FH_TR_PACKET) |
2500 	     TRB_FH_TO_DEVICE_ADDRESS(pdev->device_address);
2501 	mid = TRB_FH_TR_PACKET_DEV_NOT |
2502 	      TRB_FH_TO_NOT_TYPE(TRB_FH_TR_PACKET_FUNCTION_WAKE) |
2503 	      TRB_FH_TO_INTERFACE(intf_num);
2504 
2505 	cdnsp_queue_command(pdev, lo, mid, 0,
2506 			    TRB_TYPE(TRB_FORCE_HEADER) | SET_PORT_ID(2));
2507 }
2508