blob: d0960812a47b008312a624e0065525d01cb245a3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vivek Gautam5853e132013-09-14 14:02:45 +05302/*
3 * USB HOST XHCI Controller stack
4 *
5 * Based on xHCI host controller driver in linux-kernel
6 * by Sarah Sharp.
7 *
8 * Copyright (C) 2008 Intel Corp.
9 * Author: Sarah Sharp
10 *
11 * Copyright (C) 2013 Samsung Electronics Co.Ltd
12 * Authors: Vivek Gautam <gautam.vivek@samsung.com>
13 * Vikas Sajjan <vikas.sajjan@samsung.com>
Vivek Gautam5853e132013-09-14 14:02:45 +053014 */
15
16#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070017#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Vivek Gautam5853e132013-09-14 14:02:45 +053019#include <asm/byteorder.h>
20#include <usb.h>
21#include <asm/unaligned.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060022#include <linux/bug.h>
Masahiro Yamada5d97dff2016-09-21 11:28:57 +090023#include <linux/errno.h>
Vivek Gautam5853e132013-09-14 14:02:45 +053024
Jean-Jacques Hiblot1708a122019-09-11 11:33:46 +020025#include <usb/xhci.h>
Vivek Gautam5853e132013-09-14 14:02:45 +053026
Mark Kettenisba1efb32023-01-21 20:27:55 +010027/*
28 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA
29 * address of the TRB.
30 */
31dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg,
32 union xhci_trb *trb)
33{
34 unsigned long segment_offset;
35
36 if (!seg || !trb || trb < seg->trbs)
37 return 0;
38 /* offset in TRBs */
39 segment_offset = trb - seg->trbs;
40 if (segment_offset >= TRBS_PER_SEGMENT)
41 return 0;
42 return seg->dma + (segment_offset * sizeof(*trb));
43}
44
Vivek Gautam5853e132013-09-14 14:02:45 +053045/**
46 * Is this TRB a link TRB or was the last TRB the last TRB in this event ring
47 * segment? I.e. would the updated event TRB pointer step off the end of the
48 * event seg ?
49 *
50 * @param ctrl Host controller data structure
51 * @param ring pointer to the ring
52 * @param seg poniter to the segment to which TRB belongs
53 * @param trb poniter to the ring trb
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010054 * Return: 1 if this TRB a link TRB else 0
Vivek Gautam5853e132013-09-14 14:02:45 +053055 */
56static int last_trb(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
57 struct xhci_segment *seg, union xhci_trb *trb)
58{
59 if (ring == ctrl->event_ring)
60 return trb == &seg->trbs[TRBS_PER_SEGMENT];
61 else
62 return TRB_TYPE_LINK_LE32(trb->link.control);
63}
64
65/**
66 * Does this link TRB point to the first segment in a ring,
67 * or was the previous TRB the last TRB on the last segment in the ERST?
68 *
69 * @param ctrl Host controller data structure
70 * @param ring pointer to the ring
71 * @param seg poniter to the segment to which TRB belongs
72 * @param trb poniter to the ring trb
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010073 * Return: 1 if this TRB is the last TRB on the last segment else 0
Vivek Gautam5853e132013-09-14 14:02:45 +053074 */
75static bool last_trb_on_last_seg(struct xhci_ctrl *ctrl,
76 struct xhci_ring *ring,
77 struct xhci_segment *seg,
78 union xhci_trb *trb)
79{
80 if (ring == ctrl->event_ring)
81 return ((trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
82 (seg->next == ring->first_seg));
83 else
84 return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
85}
86
87/**
88 * See Cycle bit rules. SW is the consumer for the event ring only.
89 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
90 *
91 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
92 * chain bit is set), then set the chain bit in all the following link TRBs.
93 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
94 * have their chain bit cleared (so that each Link TRB is a separate TD).
95 *
96 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
97 * set, but other sections talk about dealing with the chain bit set. This was
98 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
99 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
100 *
101 * @param ctrl Host controller data structure
102 * @param ring pointer to the ring
103 * @param more_trbs_coming flag to indicate whether more trbs
104 * are expected or NOT.
105 * Will you enqueue more TRBs before calling
106 * prepare_ring()?
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100107 * Return: none
Vivek Gautam5853e132013-09-14 14:02:45 +0530108 */
109static void inc_enq(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
110 bool more_trbs_coming)
111{
112 u32 chain;
113 union xhci_trb *next;
114
115 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
116 next = ++(ring->enqueue);
117
118 /*
119 * Update the dequeue pointer further if that was a link TRB or we're at
120 * the end of an event ring segment (which doesn't have link TRBS)
121 */
122 while (last_trb(ctrl, ring, ring->enq_seg, next)) {
123 if (ring != ctrl->event_ring) {
124 /*
125 * If the caller doesn't plan on enqueueing more
126 * TDs before ringing the doorbell, then we
127 * don't want to give the link TRB to the
128 * hardware just yet. We'll give the link TRB
129 * back in prepare_ring() just before we enqueue
130 * the TD at the top of the ring.
131 */
132 if (!chain && !more_trbs_coming)
133 break;
134
135 /*
136 * If we're not dealing with 0.95 hardware or
137 * isoc rings on AMD 0.96 host,
138 * carry over the chain bit of the previous TRB
139 * (which may mean the chain bit is cleared).
140 */
141 next->link.control &= cpu_to_le32(~TRB_CHAIN);
142 next->link.control |= cpu_to_le32(chain);
143
144 next->link.control ^= cpu_to_le32(TRB_CYCLE);
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300145 xhci_flush_cache((uintptr_t)next,
146 sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530147 }
148 /* Toggle the cycle bit after the last ring segment. */
149 if (last_trb_on_last_seg(ctrl, ring,
150 ring->enq_seg, next))
151 ring->cycle_state = (ring->cycle_state ? 0 : 1);
152
153 ring->enq_seg = ring->enq_seg->next;
154 ring->enqueue = ring->enq_seg->trbs;
155 next = ring->enqueue;
156 }
157}
158
159/**
160 * See Cycle bit rules. SW is the consumer for the event ring only.
161 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
162 *
163 * @param ctrl Host controller data structure
164 * @param ring Ring whose Dequeue TRB pointer needs to be incremented.
165 * return none
166 */
167static void inc_deq(struct xhci_ctrl *ctrl, struct xhci_ring *ring)
168{
169 do {
170 /*
171 * Update the dequeue pointer further if that was a link TRB or
172 * we're at the end of an event ring segment (which doesn't have
173 * link TRBS)
174 */
175 if (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue)) {
176 if (ring == ctrl->event_ring &&
177 last_trb_on_last_seg(ctrl, ring,
178 ring->deq_seg, ring->dequeue)) {
179 ring->cycle_state = (ring->cycle_state ? 0 : 1);
180 }
181 ring->deq_seg = ring->deq_seg->next;
182 ring->dequeue = ring->deq_seg->trbs;
183 } else {
184 ring->dequeue++;
185 }
186 } while (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue));
187}
188
189/**
190 * Generic function for queueing a TRB on a ring.
191 * The caller must have checked to make sure there's room on the ring.
192 *
193 * @param more_trbs_coming: Will you enqueue more TRBs before calling
194 * prepare_ring()?
195 * @param ctrl Host controller data structure
196 * @param ring pointer to the ring
197 * @param more_trbs_coming flag to indicate whether more trbs
198 * @param trb_fields pointer to trb field array containing TRB contents
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100199 * Return: pointer to the enqueued trb
Vivek Gautam5853e132013-09-14 14:02:45 +0530200 */
Mark Kettenisba1efb32023-01-21 20:27:55 +0100201static dma_addr_t queue_trb(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
202 bool more_trbs_coming, unsigned int *trb_fields)
Vivek Gautam5853e132013-09-14 14:02:45 +0530203{
204 struct xhci_generic_trb *trb;
205 int i;
206
207 trb = &ring->enqueue->generic;
208
209 for (i = 0; i < 4; i++)
210 trb->field[i] = cpu_to_le32(trb_fields[i]);
211
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300212 xhci_flush_cache((uintptr_t)trb, sizeof(struct xhci_generic_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530213
214 inc_enq(ctrl, ring, more_trbs_coming);
215
Mark Kettenisba1efb32023-01-21 20:27:55 +0100216 return xhci_trb_virt_to_dma(ring->enq_seg, (union xhci_trb *)trb);
Vivek Gautam5853e132013-09-14 14:02:45 +0530217}
218
219/**
220 * Does various checks on the endpoint ring, and makes it ready
221 * to queue num_trbs.
222 *
223 * @param ctrl Host controller data structure
224 * @param ep_ring pointer to the EP Transfer Ring
225 * @param ep_state State of the End Point
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100226 * Return: error code in case of invalid ep_state, 0 on success
Vivek Gautam5853e132013-09-14 14:02:45 +0530227 */
228static int prepare_ring(struct xhci_ctrl *ctrl, struct xhci_ring *ep_ring,
229 u32 ep_state)
230{
231 union xhci_trb *next = ep_ring->enqueue;
232
233 /* Make sure the endpoint has been added to xHC schedule */
234 switch (ep_state) {
235 case EP_STATE_DISABLED:
236 /*
237 * USB core changed config/interfaces without notifying us,
238 * or hardware is reporting the wrong state.
239 */
240 puts("WARN urb submitted to disabled ep\n");
241 return -ENOENT;
242 case EP_STATE_ERROR:
243 puts("WARN waiting for error on ep to be cleared\n");
244 return -EINVAL;
245 case EP_STATE_HALTED:
246 puts("WARN halted endpoint, queueing URB anyway.\n");
247 case EP_STATE_STOPPED:
248 case EP_STATE_RUNNING:
249 debug("EP STATE RUNNING.\n");
250 break;
251 default:
252 puts("ERROR unknown endpoint state for ep\n");
253 return -EINVAL;
254 }
255
256 while (last_trb(ctrl, ep_ring, ep_ring->enq_seg, next)) {
257 /*
258 * If we're not dealing with 0.95 hardware or isoc rings
259 * on AMD 0.96 host, clear the chain bit.
260 */
261 next->link.control &= cpu_to_le32(~TRB_CHAIN);
262
263 next->link.control ^= cpu_to_le32(TRB_CYCLE);
264
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300265 xhci_flush_cache((uintptr_t)next, sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530266
267 /* Toggle the cycle bit after the last ring segment. */
268 if (last_trb_on_last_seg(ctrl, ep_ring,
269 ep_ring->enq_seg, next))
270 ep_ring->cycle_state = (ep_ring->cycle_state ? 0 : 1);
271 ep_ring->enq_seg = ep_ring->enq_seg->next;
272 ep_ring->enqueue = ep_ring->enq_seg->trbs;
273 next = ep_ring->enqueue;
274 }
275
276 return 0;
277}
278
279/**
280 * Generic function for queueing a command TRB on the command ring.
281 * Check to make sure there's room on the command ring for one command TRB.
282 *
283 * @param ctrl Host controller data structure
284 * @param ptr Pointer address to write in the first two fields (opt.)
285 * @param slot_id Slot ID to encode in the flags field (opt.)
286 * @param ep_index Endpoint index to encode in the flags field (opt.)
287 * @param cmd Command type to enqueue
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100288 * Return: none
Vivek Gautam5853e132013-09-14 14:02:45 +0530289 */
Mark Kettenisba1efb32023-01-21 20:27:55 +0100290void xhci_queue_command(struct xhci_ctrl *ctrl, dma_addr_t addr, u32 slot_id,
Vivek Gautam5853e132013-09-14 14:02:45 +0530291 u32 ep_index, trb_type cmd)
292{
293 u32 fields[4];
Vivek Gautam5853e132013-09-14 14:02:45 +0530294
295 BUG_ON(prepare_ring(ctrl, ctrl->cmd_ring, EP_STATE_RUNNING));
296
Mark Kettenisba1efb32023-01-21 20:27:55 +0100297 fields[0] = lower_32_bits(addr);
298 fields[1] = upper_32_bits(addr);
Vivek Gautam5853e132013-09-14 14:02:45 +0530299 fields[2] = 0;
Bin Meng43eb0d42017-07-19 21:49:54 +0800300 fields[3] = TRB_TYPE(cmd) | SLOT_ID_FOR_TRB(slot_id) |
301 ctrl->cmd_ring->cycle_state;
302
303 /*
304 * Only 'reset endpoint', 'stop endpoint' and 'set TR dequeue pointer'
305 * commands need endpoint id encoded.
306 */
307 if (cmd >= TRB_RESET_EP && cmd <= TRB_SET_DEQ)
308 fields[3] |= EP_ID_FOR_TRB(ep_index);
Vivek Gautam5853e132013-09-14 14:02:45 +0530309
310 queue_trb(ctrl, ctrl->cmd_ring, false, fields);
311
312 /* Ring the command ring doorbell */
313 xhci_writel(&ctrl->dba->doorbell[0], DB_VALUE_HOST);
314}
315
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200316/*
317 * For xHCI 1.0 host controllers, TD size is the number of max packet sized
318 * packets remaining in the TD (*not* including this TRB).
Vivek Gautam5853e132013-09-14 14:02:45 +0530319 *
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200320 * Total TD packet count = total_packet_count =
321 * DIV_ROUND_UP(TD size in bytes / wMaxPacketSize)
Vivek Gautam5853e132013-09-14 14:02:45 +0530322 *
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200323 * Packets transferred up to and including this TRB = packets_transferred =
324 * rounddown(total bytes transferred including this TRB / wMaxPacketSize)
325 *
326 * TD size = total_packet_count - packets_transferred
327 *
328 * For xHCI 0.96 and older, TD size field should be the remaining bytes
329 * including this TRB, right shifted by 10
330 *
331 * For all hosts it must fit in bits 21:17, so it can't be bigger than 31.
332 * This is taken care of in the TRB_TD_SIZE() macro
333 *
334 * The last TRB in a TD must have the TD size set to zero.
335 *
336 * @param ctrl host controller data structure
337 * @param transferred total size sent so far
Vivek Gautam5853e132013-09-14 14:02:45 +0530338 * @param trb_buff_len length of the TRB Buffer
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200339 * @param td_total_len total packet count
340 * @param maxp max packet size of current pipe
341 * @param more_trbs_coming indicate last trb in TD
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100342 * Return: remainder
Vivek Gautam5853e132013-09-14 14:02:45 +0530343 */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200344static u32 xhci_td_remainder(struct xhci_ctrl *ctrl, int transferred,
345 int trb_buff_len, unsigned int td_total_len,
346 int maxp, bool more_trbs_coming)
Vivek Gautam5853e132013-09-14 14:02:45 +0530347{
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200348 u32 total_packet_count;
349
Chunfeng Yun74082052020-09-08 18:59:57 +0200350 /* MTK xHCI 0.96 contains some features from 1.0 */
351 if (ctrl->hci_version < 0x100 && !(ctrl->quirks & XHCI_MTK_HOST))
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200352 return ((td_total_len - transferred) >> 10);
Vivek Gautam5853e132013-09-14 14:02:45 +0530353
354 /* One TRB with a zero-length data packet. */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200355 if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) ||
356 trb_buff_len == td_total_len)
Vivek Gautam5853e132013-09-14 14:02:45 +0530357 return 0;
358
Chunfeng Yun74082052020-09-08 18:59:57 +0200359 /* for MTK xHCI 0.96, TD size include this TRB, but not in 1.x */
360 if ((ctrl->quirks & XHCI_MTK_HOST) && (ctrl->hci_version < 0x100))
361 trb_buff_len = 0;
362
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200363 total_packet_count = DIV_ROUND_UP(td_total_len, maxp);
Vivek Gautam5853e132013-09-14 14:02:45 +0530364
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200365 /* Queueing functions don't count the current TRB into transferred */
366 return (total_packet_count - ((transferred + trb_buff_len) / maxp));
Vivek Gautam5853e132013-09-14 14:02:45 +0530367}
368
369/**
370 * Ring the doorbell of the End Point
371 *
372 * @param udev pointer to the USB device structure
373 * @param ep_index index of the endpoint
374 * @param start_cycle cycle flag of the first TRB
375 * @param start_trb pionter to the first TRB
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100376 * Return: none
Vivek Gautam5853e132013-09-14 14:02:45 +0530377 */
378static void giveback_first_trb(struct usb_device *udev, int ep_index,
379 int start_cycle,
380 struct xhci_generic_trb *start_trb)
381{
Simon Glass7c1deec2015-03-25 12:22:49 -0600382 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530383
384 /*
385 * Pass all the TRBs to the hardware at once and make sure this write
386 * isn't reordered.
387 */
388 if (start_cycle)
389 start_trb->field[3] |= cpu_to_le32(start_cycle);
390 else
391 start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
392
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300393 xhci_flush_cache((uintptr_t)start_trb, sizeof(struct xhci_generic_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530394
395 /* Ringing EP doorbell here */
396 xhci_writel(&ctrl->dba->doorbell[udev->slot_id],
397 DB_VALUE(ep_index, 0));
398
399 return;
400}
401
402/**** POLLING mechanism for XHCI ****/
403
404/**
405 * Finalizes a handled event TRB by advancing our dequeue pointer and giving
406 * the TRB back to the hardware for recycling. Must call this exactly once at
407 * the end of each event handler, and not touch the TRB again afterwards.
408 *
409 * @param ctrl Host controller data structure
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100410 * Return: none
Vivek Gautam5853e132013-09-14 14:02:45 +0530411 */
412void xhci_acknowledge_event(struct xhci_ctrl *ctrl)
413{
Mark Kettenisba1efb32023-01-21 20:27:55 +0100414 dma_addr_t deq;
415
Vivek Gautam5853e132013-09-14 14:02:45 +0530416 /* Advance our dequeue pointer to the next event */
417 inc_deq(ctrl, ctrl->event_ring);
418
419 /* Inform the hardware */
Mark Kettenisba1efb32023-01-21 20:27:55 +0100420 deq = xhci_trb_virt_to_dma(ctrl->event_ring->deq_seg,
421 ctrl->event_ring->dequeue);
422 xhci_writeq(&ctrl->ir_set->erst_dequeue, deq | ERST_EHB);
Vivek Gautam5853e132013-09-14 14:02:45 +0530423}
424
425/**
426 * Checks if there is a new event to handle on the event ring.
427 *
428 * @param ctrl Host controller data structure
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100429 * Return: 0 if failure else 1 on success
Vivek Gautam5853e132013-09-14 14:02:45 +0530430 */
431static int event_ready(struct xhci_ctrl *ctrl)
432{
433 union xhci_trb *event;
434
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300435 xhci_inval_cache((uintptr_t)ctrl->event_ring->dequeue,
436 sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530437
438 event = ctrl->event_ring->dequeue;
439
440 /* Does the HC or OS own the TRB? */
441 if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) !=
442 ctrl->event_ring->cycle_state)
443 return 0;
444
445 return 1;
446}
447
448/**
449 * Waits for a specific type of event and returns it. Discards unexpected
450 * events. Caller *must* call xhci_acknowledge_event() after it is finished
451 * processing the event, and must not access the returned pointer afterwards.
452 *
453 * @param ctrl Host controller data structure
454 * @param expected TRB type expected from Event TRB
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100455 * Return: pointer to event trb
Vivek Gautam5853e132013-09-14 14:02:45 +0530456 */
457union xhci_trb *xhci_wait_for_event(struct xhci_ctrl *ctrl, trb_type expected)
458{
459 trb_type type;
460 unsigned long ts = get_timer(0);
461
462 do {
463 union xhci_trb *event = ctrl->event_ring->dequeue;
464
465 if (!event_ready(ctrl))
466 continue;
467
468 type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->event_cmd.flags));
469 if (type == expected)
470 return event;
471
472 if (type == TRB_PORT_STATUS)
473 /* TODO: remove this once enumeration has been reworked */
474 /*
475 * Port status change events always have a
476 * successful completion code
477 */
478 BUG_ON(GET_COMP_CODE(
479 le32_to_cpu(event->generic.field[2])) !=
480 COMP_SUCCESS);
481 else
482 printf("Unexpected XHCI event TRB, skipping... "
483 "(%08x %08x %08x %08x)\n",
484 le32_to_cpu(event->generic.field[0]),
485 le32_to_cpu(event->generic.field[1]),
486 le32_to_cpu(event->generic.field[2]),
487 le32_to_cpu(event->generic.field[3]));
488
489 xhci_acknowledge_event(ctrl);
490 } while (get_timer(ts) < XHCI_TIMEOUT);
491
492 if (expected == TRB_TRANSFER)
493 return NULL;
494
495 printf("XHCI timeout on event type %d... cannot recover.\n", expected);
496 BUG();
497}
498
499/*
Stefan Agnerd5daa022021-09-27 14:42:58 +0200500 * Send reset endpoint command for given endpoint. This recovers from a
501 * halted endpoint (e.g. due to a stall error).
502 */
503static void reset_ep(struct usb_device *udev, int ep_index)
504{
505 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
506 struct xhci_ring *ring = ctrl->devs[udev->slot_id]->eps[ep_index].ring;
507 union xhci_trb *event;
Mark Kettenisba1efb32023-01-21 20:27:55 +0100508 u64 addr;
Stefan Agnerd5daa022021-09-27 14:42:58 +0200509 u32 field;
510
511 printf("Resetting EP %d...\n", ep_index);
Mark Kettenisba1efb32023-01-21 20:27:55 +0100512 xhci_queue_command(ctrl, 0, udev->slot_id, ep_index, TRB_RESET_EP);
Stefan Agnerd5daa022021-09-27 14:42:58 +0200513 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
Hector Martin8d1e03f2023-10-29 15:37:38 +0900514 if (!event)
515 return;
516
Stefan Agnerd5daa022021-09-27 14:42:58 +0200517 field = le32_to_cpu(event->trans_event.flags);
518 BUG_ON(TRB_TO_SLOT_ID(field) != udev->slot_id);
519 xhci_acknowledge_event(ctrl);
520
Mark Kettenisba1efb32023-01-21 20:27:55 +0100521 addr = xhci_trb_virt_to_dma(ring->enq_seg,
522 (void *)((uintptr_t)ring->enqueue | ring->cycle_state));
523 xhci_queue_command(ctrl, addr, udev->slot_id, ep_index, TRB_SET_DEQ);
Stefan Agnerd5daa022021-09-27 14:42:58 +0200524 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
Hector Martin8d1e03f2023-10-29 15:37:38 +0900525 if (!event)
526 return;
527
Stefan Agnerd5daa022021-09-27 14:42:58 +0200528 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
529 != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
530 event->event_cmd.status)) != COMP_SUCCESS);
531 xhci_acknowledge_event(ctrl);
532}
533
534/*
Vivek Gautam5853e132013-09-14 14:02:45 +0530535 * Stops transfer processing for an endpoint and throws away all unprocessed
536 * TRBs by setting the xHC's dequeue pointer to our enqueue pointer. The next
537 * xhci_bulk_tx/xhci_ctrl_tx on this enpoint will add new transfers there and
538 * ring the doorbell, causing this endpoint to start working again.
539 * (Careful: This will BUG() when there was no transfer in progress. Shouldn't
540 * happen in practice for current uses and is too complicated to fix right now.)
541 */
542static void abort_td(struct usb_device *udev, int ep_index)
543{
Simon Glass7c1deec2015-03-25 12:22:49 -0600544 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530545 struct xhci_ring *ring = ctrl->devs[udev->slot_id]->eps[ep_index].ring;
546 union xhci_trb *event;
Mark Kettenisba1efb32023-01-21 20:27:55 +0100547 u64 addr;
Vivek Gautam5853e132013-09-14 14:02:45 +0530548 u32 field;
549
Mark Kettenisba1efb32023-01-21 20:27:55 +0100550 xhci_queue_command(ctrl, 0, udev->slot_id, ep_index, TRB_STOP_RING);
Vivek Gautam5853e132013-09-14 14:02:45 +0530551
552 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
Hector Martin8d1e03f2023-10-29 15:37:38 +0900553 if (!event)
554 return;
555
Vivek Gautam5853e132013-09-14 14:02:45 +0530556 field = le32_to_cpu(event->trans_event.flags);
557 BUG_ON(TRB_TO_SLOT_ID(field) != udev->slot_id);
558 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
559 BUG_ON(GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len
560 != COMP_STOP)));
561 xhci_acknowledge_event(ctrl);
562
563 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
Hector Martin8d1e03f2023-10-29 15:37:38 +0900564 if (!event)
565 return;
566
Vivek Gautam5853e132013-09-14 14:02:45 +0530567 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
568 != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
569 event->event_cmd.status)) != COMP_SUCCESS);
570 xhci_acknowledge_event(ctrl);
571
Mark Kettenisba1efb32023-01-21 20:27:55 +0100572 addr = xhci_trb_virt_to_dma(ring->enq_seg,
573 (void *)((uintptr_t)ring->enqueue | ring->cycle_state));
574 xhci_queue_command(ctrl, addr, udev->slot_id, ep_index, TRB_SET_DEQ);
Vivek Gautam5853e132013-09-14 14:02:45 +0530575 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
Hector Martin8d1e03f2023-10-29 15:37:38 +0900576 if (!event)
577 return;
578
Vivek Gautam5853e132013-09-14 14:02:45 +0530579 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
580 != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
581 event->event_cmd.status)) != COMP_SUCCESS);
582 xhci_acknowledge_event(ctrl);
583}
584
585static void record_transfer_result(struct usb_device *udev,
586 union xhci_trb *event, int length)
587{
588 udev->act_len = min(length, length -
Masahiro Yamadab4141192014-11-07 03:03:31 +0900589 (int)EVENT_TRB_LEN(le32_to_cpu(event->trans_event.transfer_len)));
Vivek Gautam5853e132013-09-14 14:02:45 +0530590
591 switch (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))) {
592 case COMP_SUCCESS:
593 BUG_ON(udev->act_len != length);
594 /* fallthrough */
595 case COMP_SHORT_TX:
596 udev->status = 0;
597 break;
598 case COMP_STALL:
599 udev->status = USB_ST_STALLED;
600 break;
601 case COMP_DB_ERR:
602 case COMP_TRB_ERR:
603 udev->status = USB_ST_BUF_ERR;
604 break;
605 case COMP_BABBLE:
606 udev->status = USB_ST_BABBLE_DET;
607 break;
608 default:
609 udev->status = 0x80; /* USB_ST_TOO_LAZY_TO_MAKE_A_NEW_MACRO */
610 }
611}
612
613/**** Bulk and Control transfer methods ****/
614/**
615 * Queues up the BULK Request
616 *
617 * @param udev pointer to the USB device structure
618 * @param pipe contains the DIR_IN or OUT , devnum
619 * @param length length of the buffer
620 * @param buffer buffer to be read/written based on the request
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100621 * Return: returns 0 if successful else -1 on failure
Vivek Gautam5853e132013-09-14 14:02:45 +0530622 */
623int xhci_bulk_tx(struct usb_device *udev, unsigned long pipe,
624 int length, void *buffer)
625{
626 int num_trbs = 0;
627 struct xhci_generic_trb *start_trb;
Gustavo A. R. Silvaeacccbd2018-01-20 02:37:31 -0600628 bool first_trb = false;
Vivek Gautam5853e132013-09-14 14:02:45 +0530629 int start_cycle;
630 u32 field = 0;
631 u32 length_field = 0;
Simon Glass7c1deec2015-03-25 12:22:49 -0600632 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530633 int slot_id = udev->slot_id;
634 int ep_index;
635 struct xhci_virt_device *virt_dev;
636 struct xhci_ep_ctx *ep_ctx;
637 struct xhci_ring *ring; /* EP transfer ring */
638 union xhci_trb *event;
639
640 int running_total, trb_buff_len;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200641 bool more_trbs_coming = true;
Vivek Gautam5853e132013-09-14 14:02:45 +0530642 int maxpacketsize;
643 u64 addr;
644 int ret;
645 u32 trb_fields[4];
Mark Kettenisba1efb32023-01-21 20:27:55 +0100646 u64 buf_64 = xhci_dma_map(ctrl, buffer, length);
647 dma_addr_t last_transfer_trb_addr;
Ran Wang621ed492020-11-18 15:49:02 +0800648 int available_length;
Vivek Gautam5853e132013-09-14 14:02:45 +0530649
650 debug("dev=%p, pipe=%lx, buffer=%p, length=%d\n",
651 udev, pipe, buffer, length);
652
Ran Wang621ed492020-11-18 15:49:02 +0800653 available_length = length;
Vivek Gautam5853e132013-09-14 14:02:45 +0530654 ep_index = usb_pipe_ep_index(pipe);
655 virt_dev = ctrl->devs[slot_id];
656
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300657 xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
658 virt_dev->out_ctx->size);
Vivek Gautam5853e132013-09-14 14:02:45 +0530659
660 ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
661
662 ring = virt_dev->eps[ep_index].ring;
663 /*
664 * How much data is (potentially) left before the 64KB boundary?
665 * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
666 * that the buffer should not span 64KB boundary. if so
667 * we send request in more than 1 TRB by chaining them.
668 */
669 running_total = TRB_MAX_BUFF_SIZE -
Mark Kettenisba1efb32023-01-21 20:27:55 +0100670 (lower_32_bits(buf_64) & (TRB_MAX_BUFF_SIZE - 1));
Vivek Gautam5853e132013-09-14 14:02:45 +0530671 trb_buff_len = running_total;
672 running_total &= TRB_MAX_BUFF_SIZE - 1;
673
674 /*
675 * If there's some data on this 64KB chunk, or we have to send a
676 * zero-length transfer, we need at least one TRB
677 */
678 if (running_total != 0 || length == 0)
679 num_trbs++;
680
681 /* How many more 64KB chunks to transfer, how many more TRBs? */
682 while (running_total < length) {
683 num_trbs++;
684 running_total += TRB_MAX_BUFF_SIZE;
685 }
686
687 /*
688 * XXX: Calling routine prepare_ring() called in place of
689 * prepare_trasfer() as there in 'Linux' since we are not
690 * maintaining multiple TDs/transfer at the same time.
691 */
692 ret = prepare_ring(ctrl, ring,
693 le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
694 if (ret < 0)
695 return ret;
696
697 /*
698 * Don't give the first TRB to the hardware (by toggling the cycle bit)
699 * until we've finished creating all the other TRBs. The ring's cycle
700 * state may change as we enqueue the other TRBs, so save it too.
701 */
702 start_trb = &ring->enqueue->generic;
703 start_cycle = ring->cycle_state;
704
705 running_total = 0;
706 maxpacketsize = usb_maxpacket(udev, pipe);
707
Vivek Gautam5853e132013-09-14 14:02:45 +0530708 /* How much data is in the first TRB? */
709 /*
710 * How much data is (potentially) left before the 64KB boundary?
711 * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
712 * that the buffer should not span 64KB boundary. if so
713 * we send request in more than 1 TRB by chaining them.
714 */
Mark Kettenisba1efb32023-01-21 20:27:55 +0100715 addr = buf_64;
Vivek Gautam5853e132013-09-14 14:02:45 +0530716
717 if (trb_buff_len > length)
718 trb_buff_len = length;
719
720 first_trb = true;
721
722 /* flush the buffer before use */
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300723 xhci_flush_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530724
725 /* Queue the first TRB, even if it's zero-length */
726 do {
727 u32 remainder = 0;
728 field = 0;
729 /* Don't change the cycle bit of the first TRB until later */
730 if (first_trb) {
731 first_trb = false;
732 if (start_cycle == 0)
733 field |= TRB_CYCLE;
734 } else {
735 field |= ring->cycle_state;
736 }
737
738 /*
739 * Chain all the TRBs together; clear the chain bit in the last
740 * TRB to indicate it's the last TRB in the chain.
741 */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200742 if (num_trbs > 1) {
Vivek Gautam5853e132013-09-14 14:02:45 +0530743 field |= TRB_CHAIN;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200744 } else {
Vivek Gautam5853e132013-09-14 14:02:45 +0530745 field |= TRB_IOC;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200746 more_trbs_coming = false;
747 }
Vivek Gautam5853e132013-09-14 14:02:45 +0530748
749 /* Only set interrupt on short packet for IN endpoints */
750 if (usb_pipein(pipe))
751 field |= TRB_ISP;
752
753 /* Set the TRB length, TD size, and interrupter fields. */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200754 remainder = xhci_td_remainder(ctrl, running_total, trb_buff_len,
755 length, maxpacketsize,
756 more_trbs_coming);
Vivek Gautam5853e132013-09-14 14:02:45 +0530757
Chunfeng Yun43126382020-09-08 19:00:00 +0200758 length_field = (TRB_LEN(trb_buff_len) |
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200759 TRB_TD_SIZE(remainder) |
Chunfeng Yun43126382020-09-08 19:00:00 +0200760 TRB_INTR_TARGET(0));
Vivek Gautam5853e132013-09-14 14:02:45 +0530761
762 trb_fields[0] = lower_32_bits(addr);
763 trb_fields[1] = upper_32_bits(addr);
764 trb_fields[2] = length_field;
Chunfeng Yuna826d762020-09-08 18:59:59 +0200765 trb_fields[3] = field | TRB_TYPE(TRB_NORMAL);
Vivek Gautam5853e132013-09-14 14:02:45 +0530766
Ran Wang621ed492020-11-18 15:49:02 +0800767 last_transfer_trb_addr = queue_trb(ctrl, ring, (num_trbs > 1), trb_fields);
Vivek Gautam5853e132013-09-14 14:02:45 +0530768
769 --num_trbs;
770
771 running_total += trb_buff_len;
772
773 /* Calculate length for next transfer */
774 addr += trb_buff_len;
775 trb_buff_len = min((length - running_total), TRB_MAX_BUFF_SIZE);
776 } while (running_total < length);
777
778 giveback_first_trb(udev, ep_index, start_cycle, start_trb);
779
Ran Wang621ed492020-11-18 15:49:02 +0800780again:
Vivek Gautam5853e132013-09-14 14:02:45 +0530781 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
782 if (!event) {
783 debug("XHCI bulk transfer timed out, aborting...\n");
784 abort_td(udev, ep_index);
785 udev->status = USB_ST_NAK_REC; /* closest thing to a timeout */
786 udev->act_len = 0;
787 return -ETIMEDOUT;
788 }
Vivek Gautam5853e132013-09-14 14:02:45 +0530789
Stefan Roesecec80422021-01-15 08:52:56 +0100790 if ((uintptr_t)(le64_to_cpu(event->trans_event.buffer)) !=
Mark Kettenisba1efb32023-01-21 20:27:55 +0100791 (uintptr_t)last_transfer_trb_addr) {
Ran Wang621ed492020-11-18 15:49:02 +0800792 available_length -=
793 (int)EVENT_TRB_LEN(le32_to_cpu(event->trans_event.transfer_len));
794 xhci_acknowledge_event(ctrl);
795 goto again;
796 }
797
798 field = le32_to_cpu(event->trans_event.flags);
Vivek Gautam5853e132013-09-14 14:02:45 +0530799 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
800 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
Vivek Gautam5853e132013-09-14 14:02:45 +0530801
Ran Wang621ed492020-11-18 15:49:02 +0800802 record_transfer_result(udev, event, available_length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530803 xhci_acknowledge_event(ctrl);
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300804 xhci_inval_cache((uintptr_t)buffer, length);
Mark Kettenisba1efb32023-01-21 20:27:55 +0100805 xhci_dma_unmap(ctrl, buf_64, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530806
807 return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
808}
809
810/**
811 * Queues up the Control Transfer Request
812 *
813 * @param udev pointer to the USB device structure
814 * @param pipe contains the DIR_IN or OUT , devnum
815 * @param req request type
816 * @param length length of the buffer
817 * @param buffer buffer to be read/written based on the request
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100818 * Return: returns 0 if successful else error code on failure
Vivek Gautam5853e132013-09-14 14:02:45 +0530819 */
820int xhci_ctrl_tx(struct usb_device *udev, unsigned long pipe,
821 struct devrequest *req, int length,
822 void *buffer)
823{
824 int ret;
825 int start_cycle;
826 int num_trbs;
827 u32 field;
828 u32 length_field;
829 u64 buf_64 = 0;
830 struct xhci_generic_trb *start_trb;
Simon Glass7c1deec2015-03-25 12:22:49 -0600831 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530832 int slot_id = udev->slot_id;
833 int ep_index;
834 u32 trb_fields[4];
835 struct xhci_virt_device *virt_dev = ctrl->devs[slot_id];
836 struct xhci_ring *ep_ring;
837 union xhci_trb *event;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200838 u32 remainder;
Vivek Gautam5853e132013-09-14 14:02:45 +0530839
840 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
841 req->request, req->request,
842 req->requesttype, req->requesttype,
843 le16_to_cpu(req->value), le16_to_cpu(req->value),
844 le16_to_cpu(req->index));
845
846 ep_index = usb_pipe_ep_index(pipe);
847
848 ep_ring = virt_dev->eps[ep_index].ring;
849
850 /*
851 * Check to see if the max packet size for the default control
852 * endpoint changed during FS device enumeration
853 */
854 if (udev->speed == USB_SPEED_FULL) {
855 ret = xhci_check_maxpacket(udev);
856 if (ret < 0)
857 return ret;
858 }
859
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300860 xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
861 virt_dev->out_ctx->size);
Vivek Gautam5853e132013-09-14 14:02:45 +0530862
863 struct xhci_ep_ctx *ep_ctx = NULL;
864 ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
865
866 /* 1 TRB for setup, 1 for status */
867 num_trbs = 2;
868 /*
869 * Don't need to check if we need additional event data and normal TRBs,
870 * since data in control transfers will never get bigger than 16MB
871 * XXX: can we get a buffer that crosses 64KB boundaries?
872 */
873
874 if (length > 0)
875 num_trbs++;
876 /*
877 * XXX: Calling routine prepare_ring() called in place of
878 * prepare_trasfer() as there in 'Linux' since we are not
879 * maintaining multiple TDs/transfer at the same time.
880 */
881 ret = prepare_ring(ctrl, ep_ring,
882 le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
883
884 if (ret < 0)
885 return ret;
886
887 /*
888 * Don't give the first TRB to the hardware (by toggling the cycle bit)
889 * until we've finished creating all the other TRBs. The ring's cycle
890 * state may change as we enqueue the other TRBs, so save it too.
891 */
892 start_trb = &ep_ring->enqueue->generic;
893 start_cycle = ep_ring->cycle_state;
894
895 debug("start_trb %p, start_cycle %d\n", start_trb, start_cycle);
896
897 /* Queue setup TRB - see section 6.4.1.2.1 */
898 /* FIXME better way to translate setup_packet into two u32 fields? */
899 field = 0;
Chunfeng Yuna826d762020-09-08 18:59:59 +0200900 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
Vivek Gautam5853e132013-09-14 14:02:45 +0530901 if (start_cycle == 0)
902 field |= 0x1;
903
904 /* xHCI 1.0 6.4.1.2.1: Transfer Type field */
Chunfeng Yun74082052020-09-08 18:59:57 +0200905 if (ctrl->hci_version >= 0x100 || ctrl->quirks & XHCI_MTK_HOST) {
Vivek Gautam5853e132013-09-14 14:02:45 +0530906 if (length > 0) {
907 if (req->requesttype & USB_DIR_IN)
Chunfeng Yunbf58cf92020-09-08 19:00:01 +0200908 field |= TRB_TX_TYPE(TRB_DATA_IN);
Vivek Gautam5853e132013-09-14 14:02:45 +0530909 else
Chunfeng Yunbf58cf92020-09-08 19:00:01 +0200910 field |= TRB_TX_TYPE(TRB_DATA_OUT);
Vivek Gautam5853e132013-09-14 14:02:45 +0530911 }
912 }
913
Stefan Roese82e4e192021-04-06 12:10:18 +0200914 debug("req->requesttype = %d, req->request = %d, req->value = %d, req->index = %d, req->length = %d\n",
915 req->requesttype, req->request, le16_to_cpu(req->value),
916 le16_to_cpu(req->index), le16_to_cpu(req->length));
Vivek Gautam5853e132013-09-14 14:02:45 +0530917
918 trb_fields[0] = req->requesttype | req->request << 8 |
919 le16_to_cpu(req->value) << 16;
920 trb_fields[1] = le16_to_cpu(req->index) |
921 le16_to_cpu(req->length) << 16;
922 /* TRB_LEN | (TRB_INTR_TARGET) */
Chunfeng Yun43126382020-09-08 19:00:00 +0200923 trb_fields[2] = (TRB_LEN(8) | TRB_INTR_TARGET(0));
Vivek Gautam5853e132013-09-14 14:02:45 +0530924 /* Immediate data in pointer */
925 trb_fields[3] = field;
926 queue_trb(ctrl, ep_ring, true, trb_fields);
927
928 /* Re-initializing field to zero */
929 field = 0;
930 /* If there's data, queue data TRBs */
931 /* Only set interrupt on short packet for IN endpoints */
932 if (usb_pipein(pipe))
Chunfeng Yuna826d762020-09-08 18:59:59 +0200933 field = TRB_ISP | TRB_TYPE(TRB_DATA);
Vivek Gautam5853e132013-09-14 14:02:45 +0530934 else
Chunfeng Yuna826d762020-09-08 18:59:59 +0200935 field = TRB_TYPE(TRB_DATA);
Vivek Gautam5853e132013-09-14 14:02:45 +0530936
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200937 remainder = xhci_td_remainder(ctrl, 0, length, length,
938 usb_maxpacket(udev, pipe), true);
Chunfeng Yun43126382020-09-08 19:00:00 +0200939 length_field = TRB_LEN(length) | TRB_TD_SIZE(remainder) |
940 TRB_INTR_TARGET(0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530941 debug("length_field = %d, length = %d,"
942 "xhci_td_remainder(length) = %d , TRB_INTR_TARGET(0) = %d\n",
Chunfeng Yun43126382020-09-08 19:00:00 +0200943 length_field, TRB_LEN(length),
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200944 TRB_TD_SIZE(remainder), 0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530945
946 if (length > 0) {
947 if (req->requesttype & USB_DIR_IN)
948 field |= TRB_DIR_IN;
Mark Kettenisba1efb32023-01-21 20:27:55 +0100949 buf_64 = xhci_dma_map(ctrl, buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530950
951 trb_fields[0] = lower_32_bits(buf_64);
952 trb_fields[1] = upper_32_bits(buf_64);
953 trb_fields[2] = length_field;
954 trb_fields[3] = field | ep_ring->cycle_state;
955
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300956 xhci_flush_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530957 queue_trb(ctrl, ep_ring, true, trb_fields);
958 }
959
960 /*
961 * Queue status TRB -
962 * see Table 7 and sections 4.11.2.2 and 6.4.1.2.3
963 */
964
965 /* If the device sent data, the status stage is an OUT transfer */
966 field = 0;
967 if (length > 0 && req->requesttype & USB_DIR_IN)
968 field = 0;
969 else
970 field = TRB_DIR_IN;
971
972 trb_fields[0] = 0;
973 trb_fields[1] = 0;
Chunfeng Yun43126382020-09-08 19:00:00 +0200974 trb_fields[2] = TRB_INTR_TARGET(0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530975 /* Event on completion */
976 trb_fields[3] = field | TRB_IOC |
Chunfeng Yuna826d762020-09-08 18:59:59 +0200977 TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state;
Vivek Gautam5853e132013-09-14 14:02:45 +0530978
979 queue_trb(ctrl, ep_ring, false, trb_fields);
980
981 giveback_first_trb(udev, ep_index, start_cycle, start_trb);
982
983 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
984 if (!event)
985 goto abort;
986 field = le32_to_cpu(event->trans_event.flags);
987
988 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
989 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
990
991 record_transfer_result(udev, event, length);
992 xhci_acknowledge_event(ctrl);
Stefan Agnerd5daa022021-09-27 14:42:58 +0200993 if (udev->status == USB_ST_STALLED) {
994 reset_ep(udev, ep_index);
995 return -EPIPE;
996 }
Vivek Gautam5853e132013-09-14 14:02:45 +0530997
998 /* Invalidate buffer to make it available to usb-core */
Mark Kettenisba1efb32023-01-21 20:27:55 +0100999 if (length > 0) {
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +03001000 xhci_inval_cache((uintptr_t)buffer, length);
Mark Kettenisba1efb32023-01-21 20:27:55 +01001001 xhci_dma_unmap(ctrl, buf_64, length);
1002 }
Vivek Gautam5853e132013-09-14 14:02:45 +05301003
1004 if (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))
1005 == COMP_SHORT_TX) {
1006 /* Short data stage, clear up additional status stage event */
1007 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
1008 if (!event)
1009 goto abort;
1010 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
1011 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
1012 xhci_acknowledge_event(ctrl);
1013 }
1014
1015 return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
1016
1017abort:
1018 debug("XHCI control transfer timed out, aborting...\n");
1019 abort_td(udev, ep_index);
1020 udev->status = USB_ST_NAK_REC;
1021 udev->act_len = 0;
1022 return -ETIMEDOUT;
1023}