blob: 9ef72efe9598001910d55bc77847c0755546828a [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
27/**
28 * Is this TRB a link TRB or was the last TRB the last TRB in this event ring
29 * segment? I.e. would the updated event TRB pointer step off the end of the
30 * event seg ?
31 *
32 * @param ctrl Host controller data structure
33 * @param ring pointer to the ring
34 * @param seg poniter to the segment to which TRB belongs
35 * @param trb poniter to the ring trb
36 * @return 1 if this TRB a link TRB else 0
37 */
38static int last_trb(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
39 struct xhci_segment *seg, union xhci_trb *trb)
40{
41 if (ring == ctrl->event_ring)
42 return trb == &seg->trbs[TRBS_PER_SEGMENT];
43 else
44 return TRB_TYPE_LINK_LE32(trb->link.control);
45}
46
47/**
48 * Does this link TRB point to the first segment in a ring,
49 * or was the previous TRB the last TRB on the last segment in the ERST?
50 *
51 * @param ctrl Host controller data structure
52 * @param ring pointer to the ring
53 * @param seg poniter to the segment to which TRB belongs
54 * @param trb poniter to the ring trb
55 * @return 1 if this TRB is the last TRB on the last segment else 0
56 */
57static bool last_trb_on_last_seg(struct xhci_ctrl *ctrl,
58 struct xhci_ring *ring,
59 struct xhci_segment *seg,
60 union xhci_trb *trb)
61{
62 if (ring == ctrl->event_ring)
63 return ((trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
64 (seg->next == ring->first_seg));
65 else
66 return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
67}
68
69/**
70 * See Cycle bit rules. SW is the consumer for the event ring only.
71 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
72 *
73 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
74 * chain bit is set), then set the chain bit in all the following link TRBs.
75 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
76 * have their chain bit cleared (so that each Link TRB is a separate TD).
77 *
78 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
79 * set, but other sections talk about dealing with the chain bit set. This was
80 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
81 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
82 *
83 * @param ctrl Host controller data structure
84 * @param ring pointer to the ring
85 * @param more_trbs_coming flag to indicate whether more trbs
86 * are expected or NOT.
87 * Will you enqueue more TRBs before calling
88 * prepare_ring()?
89 * @return none
90 */
91static void inc_enq(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
92 bool more_trbs_coming)
93{
94 u32 chain;
95 union xhci_trb *next;
96
97 chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
98 next = ++(ring->enqueue);
99
100 /*
101 * Update the dequeue pointer further if that was a link TRB or we're at
102 * the end of an event ring segment (which doesn't have link TRBS)
103 */
104 while (last_trb(ctrl, ring, ring->enq_seg, next)) {
105 if (ring != ctrl->event_ring) {
106 /*
107 * If the caller doesn't plan on enqueueing more
108 * TDs before ringing the doorbell, then we
109 * don't want to give the link TRB to the
110 * hardware just yet. We'll give the link TRB
111 * back in prepare_ring() just before we enqueue
112 * the TD at the top of the ring.
113 */
114 if (!chain && !more_trbs_coming)
115 break;
116
117 /*
118 * If we're not dealing with 0.95 hardware or
119 * isoc rings on AMD 0.96 host,
120 * carry over the chain bit of the previous TRB
121 * (which may mean the chain bit is cleared).
122 */
123 next->link.control &= cpu_to_le32(~TRB_CHAIN);
124 next->link.control |= cpu_to_le32(chain);
125
126 next->link.control ^= cpu_to_le32(TRB_CYCLE);
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300127 xhci_flush_cache((uintptr_t)next,
128 sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530129 }
130 /* Toggle the cycle bit after the last ring segment. */
131 if (last_trb_on_last_seg(ctrl, ring,
132 ring->enq_seg, next))
133 ring->cycle_state = (ring->cycle_state ? 0 : 1);
134
135 ring->enq_seg = ring->enq_seg->next;
136 ring->enqueue = ring->enq_seg->trbs;
137 next = ring->enqueue;
138 }
139}
140
141/**
142 * See Cycle bit rules. SW is the consumer for the event ring only.
143 * Don't make a ring full of link TRBs. That would be dumb and this would loop.
144 *
145 * @param ctrl Host controller data structure
146 * @param ring Ring whose Dequeue TRB pointer needs to be incremented.
147 * return none
148 */
149static void inc_deq(struct xhci_ctrl *ctrl, struct xhci_ring *ring)
150{
151 do {
152 /*
153 * Update the dequeue pointer further if that was a link TRB or
154 * we're at the end of an event ring segment (which doesn't have
155 * link TRBS)
156 */
157 if (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue)) {
158 if (ring == ctrl->event_ring &&
159 last_trb_on_last_seg(ctrl, ring,
160 ring->deq_seg, ring->dequeue)) {
161 ring->cycle_state = (ring->cycle_state ? 0 : 1);
162 }
163 ring->deq_seg = ring->deq_seg->next;
164 ring->dequeue = ring->deq_seg->trbs;
165 } else {
166 ring->dequeue++;
167 }
168 } while (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue));
169}
170
171/**
172 * Generic function for queueing a TRB on a ring.
173 * The caller must have checked to make sure there's room on the ring.
174 *
175 * @param more_trbs_coming: Will you enqueue more TRBs before calling
176 * prepare_ring()?
177 * @param ctrl Host controller data structure
178 * @param ring pointer to the ring
179 * @param more_trbs_coming flag to indicate whether more trbs
180 * @param trb_fields pointer to trb field array containing TRB contents
181 * @return pointer to the enqueued trb
182 */
183static struct xhci_generic_trb *queue_trb(struct xhci_ctrl *ctrl,
184 struct xhci_ring *ring,
185 bool more_trbs_coming,
186 unsigned int *trb_fields)
187{
188 struct xhci_generic_trb *trb;
189 int i;
190
191 trb = &ring->enqueue->generic;
192
193 for (i = 0; i < 4; i++)
194 trb->field[i] = cpu_to_le32(trb_fields[i]);
195
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300196 xhci_flush_cache((uintptr_t)trb, sizeof(struct xhci_generic_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530197
198 inc_enq(ctrl, ring, more_trbs_coming);
199
200 return trb;
201}
202
203/**
204 * Does various checks on the endpoint ring, and makes it ready
205 * to queue num_trbs.
206 *
207 * @param ctrl Host controller data structure
208 * @param ep_ring pointer to the EP Transfer Ring
209 * @param ep_state State of the End Point
210 * @return error code in case of invalid ep_state, 0 on success
211 */
212static int prepare_ring(struct xhci_ctrl *ctrl, struct xhci_ring *ep_ring,
213 u32 ep_state)
214{
215 union xhci_trb *next = ep_ring->enqueue;
216
217 /* Make sure the endpoint has been added to xHC schedule */
218 switch (ep_state) {
219 case EP_STATE_DISABLED:
220 /*
221 * USB core changed config/interfaces without notifying us,
222 * or hardware is reporting the wrong state.
223 */
224 puts("WARN urb submitted to disabled ep\n");
225 return -ENOENT;
226 case EP_STATE_ERROR:
227 puts("WARN waiting for error on ep to be cleared\n");
228 return -EINVAL;
229 case EP_STATE_HALTED:
230 puts("WARN halted endpoint, queueing URB anyway.\n");
231 case EP_STATE_STOPPED:
232 case EP_STATE_RUNNING:
233 debug("EP STATE RUNNING.\n");
234 break;
235 default:
236 puts("ERROR unknown endpoint state for ep\n");
237 return -EINVAL;
238 }
239
240 while (last_trb(ctrl, ep_ring, ep_ring->enq_seg, next)) {
241 /*
242 * If we're not dealing with 0.95 hardware or isoc rings
243 * on AMD 0.96 host, clear the chain bit.
244 */
245 next->link.control &= cpu_to_le32(~TRB_CHAIN);
246
247 next->link.control ^= cpu_to_le32(TRB_CYCLE);
248
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300249 xhci_flush_cache((uintptr_t)next, sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530250
251 /* Toggle the cycle bit after the last ring segment. */
252 if (last_trb_on_last_seg(ctrl, ep_ring,
253 ep_ring->enq_seg, next))
254 ep_ring->cycle_state = (ep_ring->cycle_state ? 0 : 1);
255 ep_ring->enq_seg = ep_ring->enq_seg->next;
256 ep_ring->enqueue = ep_ring->enq_seg->trbs;
257 next = ep_ring->enqueue;
258 }
259
260 return 0;
261}
262
263/**
264 * Generic function for queueing a command TRB on the command ring.
265 * Check to make sure there's room on the command ring for one command TRB.
266 *
267 * @param ctrl Host controller data structure
268 * @param ptr Pointer address to write in the first two fields (opt.)
269 * @param slot_id Slot ID to encode in the flags field (opt.)
270 * @param ep_index Endpoint index to encode in the flags field (opt.)
271 * @param cmd Command type to enqueue
272 * @return none
273 */
274void xhci_queue_command(struct xhci_ctrl *ctrl, u8 *ptr, u32 slot_id,
275 u32 ep_index, trb_type cmd)
276{
277 u32 fields[4];
Stefan Roeseb5152a62020-07-21 10:46:05 +0200278 u64 val_64 = virt_to_phys(ptr);
Vivek Gautam5853e132013-09-14 14:02:45 +0530279
280 BUG_ON(prepare_ring(ctrl, ctrl->cmd_ring, EP_STATE_RUNNING));
281
282 fields[0] = lower_32_bits(val_64);
283 fields[1] = upper_32_bits(val_64);
284 fields[2] = 0;
Bin Meng43eb0d42017-07-19 21:49:54 +0800285 fields[3] = TRB_TYPE(cmd) | SLOT_ID_FOR_TRB(slot_id) |
286 ctrl->cmd_ring->cycle_state;
287
288 /*
289 * Only 'reset endpoint', 'stop endpoint' and 'set TR dequeue pointer'
290 * commands need endpoint id encoded.
291 */
292 if (cmd >= TRB_RESET_EP && cmd <= TRB_SET_DEQ)
293 fields[3] |= EP_ID_FOR_TRB(ep_index);
Vivek Gautam5853e132013-09-14 14:02:45 +0530294
295 queue_trb(ctrl, ctrl->cmd_ring, false, fields);
296
297 /* Ring the command ring doorbell */
298 xhci_writel(&ctrl->dba->doorbell[0], DB_VALUE_HOST);
299}
300
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200301/*
302 * For xHCI 1.0 host controllers, TD size is the number of max packet sized
303 * packets remaining in the TD (*not* including this TRB).
Vivek Gautam5853e132013-09-14 14:02:45 +0530304 *
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200305 * Total TD packet count = total_packet_count =
306 * DIV_ROUND_UP(TD size in bytes / wMaxPacketSize)
Vivek Gautam5853e132013-09-14 14:02:45 +0530307 *
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200308 * Packets transferred up to and including this TRB = packets_transferred =
309 * rounddown(total bytes transferred including this TRB / wMaxPacketSize)
310 *
311 * TD size = total_packet_count - packets_transferred
312 *
313 * For xHCI 0.96 and older, TD size field should be the remaining bytes
314 * including this TRB, right shifted by 10
315 *
316 * For all hosts it must fit in bits 21:17, so it can't be bigger than 31.
317 * This is taken care of in the TRB_TD_SIZE() macro
318 *
319 * The last TRB in a TD must have the TD size set to zero.
320 *
321 * @param ctrl host controller data structure
322 * @param transferred total size sent so far
Vivek Gautam5853e132013-09-14 14:02:45 +0530323 * @param trb_buff_len length of the TRB Buffer
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200324 * @param td_total_len total packet count
325 * @param maxp max packet size of current pipe
326 * @param more_trbs_coming indicate last trb in TD
327 * @return remainder
Vivek Gautam5853e132013-09-14 14:02:45 +0530328 */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200329static u32 xhci_td_remainder(struct xhci_ctrl *ctrl, int transferred,
330 int trb_buff_len, unsigned int td_total_len,
331 int maxp, bool more_trbs_coming)
Vivek Gautam5853e132013-09-14 14:02:45 +0530332{
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200333 u32 total_packet_count;
334
Chunfeng Yun74082052020-09-08 18:59:57 +0200335 /* MTK xHCI 0.96 contains some features from 1.0 */
336 if (ctrl->hci_version < 0x100 && !(ctrl->quirks & XHCI_MTK_HOST))
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200337 return ((td_total_len - transferred) >> 10);
Vivek Gautam5853e132013-09-14 14:02:45 +0530338
339 /* One TRB with a zero-length data packet. */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200340 if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) ||
341 trb_buff_len == td_total_len)
Vivek Gautam5853e132013-09-14 14:02:45 +0530342 return 0;
343
Chunfeng Yun74082052020-09-08 18:59:57 +0200344 /* for MTK xHCI 0.96, TD size include this TRB, but not in 1.x */
345 if ((ctrl->quirks & XHCI_MTK_HOST) && (ctrl->hci_version < 0x100))
346 trb_buff_len = 0;
347
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200348 total_packet_count = DIV_ROUND_UP(td_total_len, maxp);
Vivek Gautam5853e132013-09-14 14:02:45 +0530349
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200350 /* Queueing functions don't count the current TRB into transferred */
351 return (total_packet_count - ((transferred + trb_buff_len) / maxp));
Vivek Gautam5853e132013-09-14 14:02:45 +0530352}
353
354/**
355 * Ring the doorbell of the End Point
356 *
357 * @param udev pointer to the USB device structure
358 * @param ep_index index of the endpoint
359 * @param start_cycle cycle flag of the first TRB
360 * @param start_trb pionter to the first TRB
361 * @return none
362 */
363static void giveback_first_trb(struct usb_device *udev, int ep_index,
364 int start_cycle,
365 struct xhci_generic_trb *start_trb)
366{
Simon Glass7c1deec2015-03-25 12:22:49 -0600367 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530368
369 /*
370 * Pass all the TRBs to the hardware at once and make sure this write
371 * isn't reordered.
372 */
373 if (start_cycle)
374 start_trb->field[3] |= cpu_to_le32(start_cycle);
375 else
376 start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
377
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300378 xhci_flush_cache((uintptr_t)start_trb, sizeof(struct xhci_generic_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530379
380 /* Ringing EP doorbell here */
381 xhci_writel(&ctrl->dba->doorbell[udev->slot_id],
382 DB_VALUE(ep_index, 0));
383
384 return;
385}
386
387/**** POLLING mechanism for XHCI ****/
388
389/**
390 * Finalizes a handled event TRB by advancing our dequeue pointer and giving
391 * the TRB back to the hardware for recycling. Must call this exactly once at
392 * the end of each event handler, and not touch the TRB again afterwards.
393 *
394 * @param ctrl Host controller data structure
395 * @return none
396 */
397void xhci_acknowledge_event(struct xhci_ctrl *ctrl)
398{
399 /* Advance our dequeue pointer to the next event */
400 inc_deq(ctrl, ctrl->event_ring);
401
402 /* Inform the hardware */
403 xhci_writeq(&ctrl->ir_set->erst_dequeue,
Stefan Roeseb5152a62020-07-21 10:46:05 +0200404 virt_to_phys(ctrl->event_ring->dequeue) | ERST_EHB);
Vivek Gautam5853e132013-09-14 14:02:45 +0530405}
406
407/**
408 * Checks if there is a new event to handle on the event ring.
409 *
410 * @param ctrl Host controller data structure
411 * @return 0 if failure else 1 on success
412 */
413static int event_ready(struct xhci_ctrl *ctrl)
414{
415 union xhci_trb *event;
416
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300417 xhci_inval_cache((uintptr_t)ctrl->event_ring->dequeue,
418 sizeof(union xhci_trb));
Vivek Gautam5853e132013-09-14 14:02:45 +0530419
420 event = ctrl->event_ring->dequeue;
421
422 /* Does the HC or OS own the TRB? */
423 if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) !=
424 ctrl->event_ring->cycle_state)
425 return 0;
426
427 return 1;
428}
429
430/**
431 * Waits for a specific type of event and returns it. Discards unexpected
432 * events. Caller *must* call xhci_acknowledge_event() after it is finished
433 * processing the event, and must not access the returned pointer afterwards.
434 *
435 * @param ctrl Host controller data structure
436 * @param expected TRB type expected from Event TRB
437 * @return pointer to event trb
438 */
439union xhci_trb *xhci_wait_for_event(struct xhci_ctrl *ctrl, trb_type expected)
440{
441 trb_type type;
442 unsigned long ts = get_timer(0);
443
444 do {
445 union xhci_trb *event = ctrl->event_ring->dequeue;
446
447 if (!event_ready(ctrl))
448 continue;
449
450 type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->event_cmd.flags));
451 if (type == expected)
452 return event;
453
454 if (type == TRB_PORT_STATUS)
455 /* TODO: remove this once enumeration has been reworked */
456 /*
457 * Port status change events always have a
458 * successful completion code
459 */
460 BUG_ON(GET_COMP_CODE(
461 le32_to_cpu(event->generic.field[2])) !=
462 COMP_SUCCESS);
463 else
464 printf("Unexpected XHCI event TRB, skipping... "
465 "(%08x %08x %08x %08x)\n",
466 le32_to_cpu(event->generic.field[0]),
467 le32_to_cpu(event->generic.field[1]),
468 le32_to_cpu(event->generic.field[2]),
469 le32_to_cpu(event->generic.field[3]));
470
471 xhci_acknowledge_event(ctrl);
472 } while (get_timer(ts) < XHCI_TIMEOUT);
473
474 if (expected == TRB_TRANSFER)
475 return NULL;
476
477 printf("XHCI timeout on event type %d... cannot recover.\n", expected);
478 BUG();
479}
480
481/*
482 * Stops transfer processing for an endpoint and throws away all unprocessed
483 * TRBs by setting the xHC's dequeue pointer to our enqueue pointer. The next
484 * xhci_bulk_tx/xhci_ctrl_tx on this enpoint will add new transfers there and
485 * ring the doorbell, causing this endpoint to start working again.
486 * (Careful: This will BUG() when there was no transfer in progress. Shouldn't
487 * happen in practice for current uses and is too complicated to fix right now.)
488 */
489static void abort_td(struct usb_device *udev, int ep_index)
490{
Simon Glass7c1deec2015-03-25 12:22:49 -0600491 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530492 struct xhci_ring *ring = ctrl->devs[udev->slot_id]->eps[ep_index].ring;
493 union xhci_trb *event;
494 u32 field;
495
496 xhci_queue_command(ctrl, NULL, udev->slot_id, ep_index, TRB_STOP_RING);
497
498 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
499 field = le32_to_cpu(event->trans_event.flags);
500 BUG_ON(TRB_TO_SLOT_ID(field) != udev->slot_id);
501 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
502 BUG_ON(GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len
503 != COMP_STOP)));
504 xhci_acknowledge_event(ctrl);
505
506 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
507 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
508 != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
509 event->event_cmd.status)) != COMP_SUCCESS);
510 xhci_acknowledge_event(ctrl);
511
512 xhci_queue_command(ctrl, (void *)((uintptr_t)ring->enqueue |
513 ring->cycle_state), udev->slot_id, ep_index, TRB_SET_DEQ);
514 event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
515 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
516 != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
517 event->event_cmd.status)) != COMP_SUCCESS);
518 xhci_acknowledge_event(ctrl);
519}
520
521static void record_transfer_result(struct usb_device *udev,
522 union xhci_trb *event, int length)
523{
524 udev->act_len = min(length, length -
Masahiro Yamadab4141192014-11-07 03:03:31 +0900525 (int)EVENT_TRB_LEN(le32_to_cpu(event->trans_event.transfer_len)));
Vivek Gautam5853e132013-09-14 14:02:45 +0530526
527 switch (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))) {
528 case COMP_SUCCESS:
529 BUG_ON(udev->act_len != length);
530 /* fallthrough */
531 case COMP_SHORT_TX:
532 udev->status = 0;
533 break;
534 case COMP_STALL:
535 udev->status = USB_ST_STALLED;
536 break;
537 case COMP_DB_ERR:
538 case COMP_TRB_ERR:
539 udev->status = USB_ST_BUF_ERR;
540 break;
541 case COMP_BABBLE:
542 udev->status = USB_ST_BABBLE_DET;
543 break;
544 default:
545 udev->status = 0x80; /* USB_ST_TOO_LAZY_TO_MAKE_A_NEW_MACRO */
546 }
547}
548
549/**** Bulk and Control transfer methods ****/
550/**
551 * Queues up the BULK Request
552 *
553 * @param udev pointer to the USB device structure
554 * @param pipe contains the DIR_IN or OUT , devnum
555 * @param length length of the buffer
556 * @param buffer buffer to be read/written based on the request
557 * @return returns 0 if successful else -1 on failure
558 */
559int xhci_bulk_tx(struct usb_device *udev, unsigned long pipe,
560 int length, void *buffer)
561{
562 int num_trbs = 0;
563 struct xhci_generic_trb *start_trb;
Gustavo A. R. Silvaeacccbd2018-01-20 02:37:31 -0600564 bool first_trb = false;
Vivek Gautam5853e132013-09-14 14:02:45 +0530565 int start_cycle;
566 u32 field = 0;
567 u32 length_field = 0;
Simon Glass7c1deec2015-03-25 12:22:49 -0600568 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530569 int slot_id = udev->slot_id;
570 int ep_index;
571 struct xhci_virt_device *virt_dev;
572 struct xhci_ep_ctx *ep_ctx;
573 struct xhci_ring *ring; /* EP transfer ring */
574 union xhci_trb *event;
575
576 int running_total, trb_buff_len;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200577 bool more_trbs_coming = true;
Vivek Gautam5853e132013-09-14 14:02:45 +0530578 int maxpacketsize;
579 u64 addr;
580 int ret;
581 u32 trb_fields[4];
Stefan Roeseb5152a62020-07-21 10:46:05 +0200582 u64 val_64 = virt_to_phys(buffer);
Vivek Gautam5853e132013-09-14 14:02:45 +0530583
584 debug("dev=%p, pipe=%lx, buffer=%p, length=%d\n",
585 udev, pipe, buffer, length);
586
587 ep_index = usb_pipe_ep_index(pipe);
588 virt_dev = ctrl->devs[slot_id];
589
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300590 xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
591 virt_dev->out_ctx->size);
Vivek Gautam5853e132013-09-14 14:02:45 +0530592
593 ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
594
595 ring = virt_dev->eps[ep_index].ring;
596 /*
597 * How much data is (potentially) left before the 64KB boundary?
598 * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
599 * that the buffer should not span 64KB boundary. if so
600 * we send request in more than 1 TRB by chaining them.
601 */
602 running_total = TRB_MAX_BUFF_SIZE -
603 (lower_32_bits(val_64) & (TRB_MAX_BUFF_SIZE - 1));
604 trb_buff_len = running_total;
605 running_total &= TRB_MAX_BUFF_SIZE - 1;
606
607 /*
608 * If there's some data on this 64KB chunk, or we have to send a
609 * zero-length transfer, we need at least one TRB
610 */
611 if (running_total != 0 || length == 0)
612 num_trbs++;
613
614 /* How many more 64KB chunks to transfer, how many more TRBs? */
615 while (running_total < length) {
616 num_trbs++;
617 running_total += TRB_MAX_BUFF_SIZE;
618 }
619
620 /*
621 * XXX: Calling routine prepare_ring() called in place of
622 * prepare_trasfer() as there in 'Linux' since we are not
623 * maintaining multiple TDs/transfer at the same time.
624 */
625 ret = prepare_ring(ctrl, ring,
626 le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
627 if (ret < 0)
628 return ret;
629
630 /*
631 * Don't give the first TRB to the hardware (by toggling the cycle bit)
632 * until we've finished creating all the other TRBs. The ring's cycle
633 * state may change as we enqueue the other TRBs, so save it too.
634 */
635 start_trb = &ring->enqueue->generic;
636 start_cycle = ring->cycle_state;
637
638 running_total = 0;
639 maxpacketsize = usb_maxpacket(udev, pipe);
640
Vivek Gautam5853e132013-09-14 14:02:45 +0530641 /* How much data is in the first TRB? */
642 /*
643 * How much data is (potentially) left before the 64KB boundary?
644 * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
645 * that the buffer should not span 64KB boundary. if so
646 * we send request in more than 1 TRB by chaining them.
647 */
648 addr = val_64;
649
650 if (trb_buff_len > length)
651 trb_buff_len = length;
652
653 first_trb = true;
654
655 /* flush the buffer before use */
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300656 xhci_flush_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530657
658 /* Queue the first TRB, even if it's zero-length */
659 do {
660 u32 remainder = 0;
661 field = 0;
662 /* Don't change the cycle bit of the first TRB until later */
663 if (first_trb) {
664 first_trb = false;
665 if (start_cycle == 0)
666 field |= TRB_CYCLE;
667 } else {
668 field |= ring->cycle_state;
669 }
670
671 /*
672 * Chain all the TRBs together; clear the chain bit in the last
673 * TRB to indicate it's the last TRB in the chain.
674 */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200675 if (num_trbs > 1) {
Vivek Gautam5853e132013-09-14 14:02:45 +0530676 field |= TRB_CHAIN;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200677 } else {
Vivek Gautam5853e132013-09-14 14:02:45 +0530678 field |= TRB_IOC;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200679 more_trbs_coming = false;
680 }
Vivek Gautam5853e132013-09-14 14:02:45 +0530681
682 /* Only set interrupt on short packet for IN endpoints */
683 if (usb_pipein(pipe))
684 field |= TRB_ISP;
685
686 /* Set the TRB length, TD size, and interrupter fields. */
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200687 remainder = xhci_td_remainder(ctrl, running_total, trb_buff_len,
688 length, maxpacketsize,
689 more_trbs_coming);
Vivek Gautam5853e132013-09-14 14:02:45 +0530690
Chunfeng Yun43126382020-09-08 19:00:00 +0200691 length_field = (TRB_LEN(trb_buff_len) |
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200692 TRB_TD_SIZE(remainder) |
Chunfeng Yun43126382020-09-08 19:00:00 +0200693 TRB_INTR_TARGET(0));
Vivek Gautam5853e132013-09-14 14:02:45 +0530694
695 trb_fields[0] = lower_32_bits(addr);
696 trb_fields[1] = upper_32_bits(addr);
697 trb_fields[2] = length_field;
Chunfeng Yuna826d762020-09-08 18:59:59 +0200698 trb_fields[3] = field | TRB_TYPE(TRB_NORMAL);
Vivek Gautam5853e132013-09-14 14:02:45 +0530699
700 queue_trb(ctrl, ring, (num_trbs > 1), trb_fields);
701
702 --num_trbs;
703
704 running_total += trb_buff_len;
705
706 /* Calculate length for next transfer */
707 addr += trb_buff_len;
708 trb_buff_len = min((length - running_total), TRB_MAX_BUFF_SIZE);
709 } while (running_total < length);
710
711 giveback_first_trb(udev, ep_index, start_cycle, start_trb);
712
713 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
714 if (!event) {
715 debug("XHCI bulk transfer timed out, aborting...\n");
716 abort_td(udev, ep_index);
717 udev->status = USB_ST_NAK_REC; /* closest thing to a timeout */
718 udev->act_len = 0;
719 return -ETIMEDOUT;
720 }
721 field = le32_to_cpu(event->trans_event.flags);
722
723 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
724 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
725 BUG_ON(*(void **)(uintptr_t)le64_to_cpu(event->trans_event.buffer) -
726 buffer > (size_t)length);
727
728 record_transfer_result(udev, event, length);
729 xhci_acknowledge_event(ctrl);
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300730 xhci_inval_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530731
732 return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
733}
734
735/**
736 * Queues up the Control Transfer Request
737 *
738 * @param udev pointer to the USB device structure
739 * @param pipe contains the DIR_IN or OUT , devnum
740 * @param req request type
741 * @param length length of the buffer
742 * @param buffer buffer to be read/written based on the request
743 * @return returns 0 if successful else error code on failure
744 */
745int xhci_ctrl_tx(struct usb_device *udev, unsigned long pipe,
746 struct devrequest *req, int length,
747 void *buffer)
748{
749 int ret;
750 int start_cycle;
751 int num_trbs;
752 u32 field;
753 u32 length_field;
754 u64 buf_64 = 0;
755 struct xhci_generic_trb *start_trb;
Simon Glass7c1deec2015-03-25 12:22:49 -0600756 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
Vivek Gautam5853e132013-09-14 14:02:45 +0530757 int slot_id = udev->slot_id;
758 int ep_index;
759 u32 trb_fields[4];
760 struct xhci_virt_device *virt_dev = ctrl->devs[slot_id];
761 struct xhci_ring *ep_ring;
762 union xhci_trb *event;
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200763 u32 remainder;
Vivek Gautam5853e132013-09-14 14:02:45 +0530764
765 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
766 req->request, req->request,
767 req->requesttype, req->requesttype,
768 le16_to_cpu(req->value), le16_to_cpu(req->value),
769 le16_to_cpu(req->index));
770
771 ep_index = usb_pipe_ep_index(pipe);
772
773 ep_ring = virt_dev->eps[ep_index].ring;
774
775 /*
776 * Check to see if the max packet size for the default control
777 * endpoint changed during FS device enumeration
778 */
779 if (udev->speed == USB_SPEED_FULL) {
780 ret = xhci_check_maxpacket(udev);
781 if (ret < 0)
782 return ret;
783 }
784
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300785 xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
786 virt_dev->out_ctx->size);
Vivek Gautam5853e132013-09-14 14:02:45 +0530787
788 struct xhci_ep_ctx *ep_ctx = NULL;
789 ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
790
791 /* 1 TRB for setup, 1 for status */
792 num_trbs = 2;
793 /*
794 * Don't need to check if we need additional event data and normal TRBs,
795 * since data in control transfers will never get bigger than 16MB
796 * XXX: can we get a buffer that crosses 64KB boundaries?
797 */
798
799 if (length > 0)
800 num_trbs++;
801 /*
802 * XXX: Calling routine prepare_ring() called in place of
803 * prepare_trasfer() as there in 'Linux' since we are not
804 * maintaining multiple TDs/transfer at the same time.
805 */
806 ret = prepare_ring(ctrl, ep_ring,
807 le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
808
809 if (ret < 0)
810 return ret;
811
812 /*
813 * Don't give the first TRB to the hardware (by toggling the cycle bit)
814 * until we've finished creating all the other TRBs. The ring's cycle
815 * state may change as we enqueue the other TRBs, so save it too.
816 */
817 start_trb = &ep_ring->enqueue->generic;
818 start_cycle = ep_ring->cycle_state;
819
820 debug("start_trb %p, start_cycle %d\n", start_trb, start_cycle);
821
822 /* Queue setup TRB - see section 6.4.1.2.1 */
823 /* FIXME better way to translate setup_packet into two u32 fields? */
824 field = 0;
Chunfeng Yuna826d762020-09-08 18:59:59 +0200825 field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
Vivek Gautam5853e132013-09-14 14:02:45 +0530826 if (start_cycle == 0)
827 field |= 0x1;
828
829 /* xHCI 1.0 6.4.1.2.1: Transfer Type field */
Chunfeng Yun74082052020-09-08 18:59:57 +0200830 if (ctrl->hci_version >= 0x100 || ctrl->quirks & XHCI_MTK_HOST) {
Vivek Gautam5853e132013-09-14 14:02:45 +0530831 if (length > 0) {
832 if (req->requesttype & USB_DIR_IN)
833 field |= (TRB_DATA_IN << TRB_TX_TYPE_SHIFT);
834 else
835 field |= (TRB_DATA_OUT << TRB_TX_TYPE_SHIFT);
836 }
837 }
838
839 debug("req->requesttype = %d, req->request = %d,"
840 "le16_to_cpu(req->value) = %d,"
841 "le16_to_cpu(req->index) = %d,"
842 "le16_to_cpu(req->length) = %d\n",
843 req->requesttype, req->request, le16_to_cpu(req->value),
844 le16_to_cpu(req->index), le16_to_cpu(req->length));
845
846 trb_fields[0] = req->requesttype | req->request << 8 |
847 le16_to_cpu(req->value) << 16;
848 trb_fields[1] = le16_to_cpu(req->index) |
849 le16_to_cpu(req->length) << 16;
850 /* TRB_LEN | (TRB_INTR_TARGET) */
Chunfeng Yun43126382020-09-08 19:00:00 +0200851 trb_fields[2] = (TRB_LEN(8) | TRB_INTR_TARGET(0));
Vivek Gautam5853e132013-09-14 14:02:45 +0530852 /* Immediate data in pointer */
853 trb_fields[3] = field;
854 queue_trb(ctrl, ep_ring, true, trb_fields);
855
856 /* Re-initializing field to zero */
857 field = 0;
858 /* If there's data, queue data TRBs */
859 /* Only set interrupt on short packet for IN endpoints */
860 if (usb_pipein(pipe))
Chunfeng Yuna826d762020-09-08 18:59:59 +0200861 field = TRB_ISP | TRB_TYPE(TRB_DATA);
Vivek Gautam5853e132013-09-14 14:02:45 +0530862 else
Chunfeng Yuna826d762020-09-08 18:59:59 +0200863 field = TRB_TYPE(TRB_DATA);
Vivek Gautam5853e132013-09-14 14:02:45 +0530864
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200865 remainder = xhci_td_remainder(ctrl, 0, length, length,
866 usb_maxpacket(udev, pipe), true);
Chunfeng Yun43126382020-09-08 19:00:00 +0200867 length_field = TRB_LEN(length) | TRB_TD_SIZE(remainder) |
868 TRB_INTR_TARGET(0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530869 debug("length_field = %d, length = %d,"
870 "xhci_td_remainder(length) = %d , TRB_INTR_TARGET(0) = %d\n",
Chunfeng Yun43126382020-09-08 19:00:00 +0200871 length_field, TRB_LEN(length),
Chunfeng Yune3ea4812020-09-08 18:59:56 +0200872 TRB_TD_SIZE(remainder), 0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530873
874 if (length > 0) {
875 if (req->requesttype & USB_DIR_IN)
876 field |= TRB_DIR_IN;
Stefan Roeseb5152a62020-07-21 10:46:05 +0200877 buf_64 = virt_to_phys(buffer);
Vivek Gautam5853e132013-09-14 14:02:45 +0530878
879 trb_fields[0] = lower_32_bits(buf_64);
880 trb_fields[1] = upper_32_bits(buf_64);
881 trb_fields[2] = length_field;
882 trb_fields[3] = field | ep_ring->cycle_state;
883
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300884 xhci_flush_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530885 queue_trb(ctrl, ep_ring, true, trb_fields);
886 }
887
888 /*
889 * Queue status TRB -
890 * see Table 7 and sections 4.11.2.2 and 6.4.1.2.3
891 */
892
893 /* If the device sent data, the status stage is an OUT transfer */
894 field = 0;
895 if (length > 0 && req->requesttype & USB_DIR_IN)
896 field = 0;
897 else
898 field = TRB_DIR_IN;
899
900 trb_fields[0] = 0;
901 trb_fields[1] = 0;
Chunfeng Yun43126382020-09-08 19:00:00 +0200902 trb_fields[2] = TRB_INTR_TARGET(0);
Vivek Gautam5853e132013-09-14 14:02:45 +0530903 /* Event on completion */
904 trb_fields[3] = field | TRB_IOC |
Chunfeng Yuna826d762020-09-08 18:59:59 +0200905 TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state;
Vivek Gautam5853e132013-09-14 14:02:45 +0530906
907 queue_trb(ctrl, ep_ring, false, trb_fields);
908
909 giveback_first_trb(udev, ep_index, start_cycle, start_trb);
910
911 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
912 if (!event)
913 goto abort;
914 field = le32_to_cpu(event->trans_event.flags);
915
916 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
917 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
918
919 record_transfer_result(udev, event, length);
920 xhci_acknowledge_event(ctrl);
921
922 /* Invalidate buffer to make it available to usb-core */
923 if (length > 0)
Sergey Temerkhanov421a5a02015-04-01 17:18:45 +0300924 xhci_inval_cache((uintptr_t)buffer, length);
Vivek Gautam5853e132013-09-14 14:02:45 +0530925
926 if (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))
927 == COMP_SHORT_TX) {
928 /* Short data stage, clear up additional status stage event */
929 event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
930 if (!event)
931 goto abort;
932 BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
933 BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
934 xhci_acknowledge_event(ctrl);
935 }
936
937 return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
938
939abort:
940 debug("XHCI control transfer timed out, aborting...\n");
941 abort_td(udev, ep_index);
942 udev->status = USB_ST_NAK_REC;
943 udev->act_len = 0;
944 return -ETIMEDOUT;
945}