blob: d7c3d6c776d86a8edf5c41832a7856cd6fca29eb [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
Paul Zimmerman7359d482013-03-11 17:47:59 -07002/*
3 * hcd_queue.c - DesignWare HS OTG Controller host queuing routines
4 *
5 * Copyright (C) 2004-2013 Synopsys, Inc.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The names of the above-listed copyright holders may not be used
17 * to endorse or promote products derived from this software without
18 * specific prior written permission.
19 *
20 * ALTERNATIVELY, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") as published by the Free Software
22 * Foundation; either version 2 of the License, or (at your option) any
23 * later version.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
26 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
27 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38/*
39 * This file contains the functions to manage Queue Heads and Queue
40 * Transfer Descriptors for Host mode
41 */
Douglas Andersonfb616e32016-01-28 18:20:08 -080042#include <linux/gcd.h>
Paul Zimmerman7359d482013-03-11 17:47:59 -070043#include <linux/kernel.h>
44#include <linux/module.h>
45#include <linux/spinlock.h>
46#include <linux/interrupt.h>
47#include <linux/dma-mapping.h>
48#include <linux/io.h>
49#include <linux/slab.h>
50#include <linux/usb.h>
51
52#include <linux/usb/hcd.h>
53#include <linux/usb/ch11.h>
54
55#include "core.h"
56#include "hcd.h"
57
Douglas Anderson17dd5b62016-01-28 18:19:59 -080058/* Wait this long before releasing periodic reservation */
59#define DWC2_UNRESERVE_DELAY (msecs_to_jiffies(5))
60
Douglas Anderson38d2b5f2017-12-12 10:30:31 -080061/* If we get a NAK, wait this long before retrying */
62#define DWC2_RETRY_WAIT_DELAY (msecs_to_jiffies(1))
63
Douglas Anderson17dd5b62016-01-28 18:19:59 -080064/**
Douglas Andersonb951c6c2016-01-28 18:20:05 -080065 * dwc2_periodic_channel_available() - Checks that a channel is available for a
66 * periodic transfer
67 *
68 * @hsotg: The HCD state structure for the DWC OTG controller
69 *
70 * Return: 0 if successful, negative error code otherwise
71 */
72static int dwc2_periodic_channel_available(struct dwc2_hsotg *hsotg)
73{
74 /*
75 * Currently assuming that there is a dedicated host channel for
76 * each periodic transaction plus at least one host channel for
77 * non-periodic transactions
78 */
79 int status;
80 int num_channels;
81
John Younbea8e862016-11-03 17:55:53 -070082 num_channels = hsotg->params.host_channels;
John Younab283202017-01-17 20:31:28 -080083 if ((hsotg->periodic_channels + hsotg->non_periodic_channels <
84 num_channels) && (hsotg->periodic_channels < num_channels - 1)) {
Douglas Andersonb951c6c2016-01-28 18:20:05 -080085 status = 0;
86 } else {
87 dev_dbg(hsotg->dev,
John Youn9da51972017-01-17 20:30:27 -080088 "%s: Total channels: %d, Periodic: %d, Non-periodic: %d\n",
89 __func__, num_channels,
Douglas Andersonb951c6c2016-01-28 18:20:05 -080090 hsotg->periodic_channels, hsotg->non_periodic_channels);
91 status = -ENOSPC;
92 }
93
94 return status;
95}
96
97/**
98 * dwc2_check_periodic_bandwidth() - Checks that there is sufficient bandwidth
99 * for the specified QH in the periodic schedule
100 *
101 * @hsotg: The HCD state structure for the DWC OTG controller
102 * @qh: QH containing periodic bandwidth required
103 *
104 * Return: 0 if successful, negative error code otherwise
105 *
106 * For simplicity, this calculation assumes that all the transfers in the
107 * periodic schedule may occur in the same (micro)frame
108 */
109static int dwc2_check_periodic_bandwidth(struct dwc2_hsotg *hsotg,
110 struct dwc2_qh *qh)
111{
112 int status;
113 s16 max_claimed_usecs;
114
115 status = 0;
116
117 if (qh->dev_speed == USB_SPEED_HIGH || qh->do_split) {
118 /*
119 * High speed mode
120 * Max periodic usecs is 80% x 125 usec = 100 usec
121 */
122 max_claimed_usecs = 100 - qh->host_us;
123 } else {
124 /*
125 * Full speed mode
126 * Max periodic usecs is 90% x 1000 usec = 900 usec
127 */
128 max_claimed_usecs = 900 - qh->host_us;
129 }
130
131 if (hsotg->periodic_usecs > max_claimed_usecs) {
132 dev_err(hsotg->dev,
133 "%s: already claimed usecs %d, required usecs %d\n",
134 __func__, hsotg->periodic_usecs, qh->host_us);
135 status = -ENOSPC;
136 }
137
138 return status;
139}
140
141/**
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800142 * pmap_schedule() - Schedule time in a periodic bitmap (pmap).
143 *
144 * @map: The bitmap representing the schedule; will be updated
145 * upon success.
146 * @bits_per_period: The schedule represents several periods. This is how many
147 * bits are in each period. It's assumed that the beginning
148 * of the schedule will repeat after its end.
149 * @periods_in_map: The number of periods in the schedule.
150 * @num_bits: The number of bits we need per period we want to reserve
151 * in this function call.
152 * @interval: How often we need to be scheduled for the reservation this
153 * time. 1 means every period. 2 means every other period.
154 * ...you get the picture?
155 * @start: The bit number to start at. Normally 0. Must be within
156 * the interval or we return failure right away.
157 * @only_one_period: Normally we'll allow picking a start anywhere within the
158 * first interval, since we can still make all repetition
159 * requirements by doing that. However, if you pass true
160 * here then we'll return failure if we can't fit within
161 * the period that "start" is in.
162 *
163 * The idea here is that we want to schedule time for repeating events that all
164 * want the same resource. The resource is divided into fixed-sized periods
165 * and the events want to repeat every "interval" periods. The schedule
166 * granularity is one bit.
167 *
168 * To keep things "simple", we'll represent our schedule with a bitmap that
169 * contains a fixed number of periods. This gets rid of a lot of complexity
170 * but does mean that we need to handle things specially (and non-ideally) if
171 * the number of the periods in the schedule doesn't match well with the
172 * intervals that we're trying to schedule.
173 *
174 * Here's an explanation of the scheme we'll implement, assuming 8 periods.
175 * - If interval is 1, we need to take up space in each of the 8
176 * periods we're scheduling. Easy.
177 * - If interval is 2, we need to take up space in half of the
178 * periods. Again, easy.
179 * - If interval is 3, we actually need to fall back to interval 1.
180 * Why? Because we might need time in any period. AKA for the
181 * first 8 periods, we'll be in slot 0, 3, 6. Then we'll be
182 * in slot 1, 4, 7. Then we'll be in 2, 5. Then we'll be back to
183 * 0, 3, and 6. Since we could be in any frame we need to reserve
184 * for all of them. Sucks, but that's what you gotta do. Note that
185 * if we were instead scheduling 8 * 3 = 24 we'd do much better, but
186 * then we need more memory and time to do scheduling.
187 * - If interval is 4, easy.
188 * - If interval is 5, we again need interval 1. The schedule will be
189 * 0, 5, 2, 7, 4, 1, 6, 3, 0
190 * - If interval is 6, we need interval 2. 0, 6, 4, 2.
191 * - If interval is 7, we need interval 1.
192 * - If interval is 8, we need interval 8.
193 *
194 * If you do the math, you'll see that we need to pretend that interval is
195 * equal to the greatest_common_divisor(interval, periods_in_map).
196 *
197 * Note that at the moment this function tends to front-pack the schedule.
198 * In some cases that's really non-ideal (it's hard to schedule things that
199 * need to repeat every period). In other cases it's perfect (you can easily
200 * schedule bigger, less often repeating things).
201 *
202 * Here's the algorithm in action (8 periods, 5 bits per period):
203 * |** | |** | |** | |** | | OK 2 bits, intv 2 at 0
204 * |*****| ***|*****| ***|*****| ***|*****| ***| OK 3 bits, intv 3 at 2
205 * |*****|* ***|*****| ***|*****|* ***|*****| ***| OK 1 bits, intv 4 at 5
206 * |** |* |** | |** |* |** | | Remv 3 bits, intv 3 at 2
207 * |*** |* |*** | |*** |* |*** | | OK 1 bits, intv 6 at 2
208 * |**** |* * |**** | * |**** |* * |**** | * | OK 1 bits, intv 1 at 3
209 * |**** |**** |**** | *** |**** |**** |**** | *** | OK 2 bits, intv 2 at 6
210 * |*****|*****|*****| ****|*****|*****|*****| ****| OK 1 bits, intv 1 at 4
211 * |*****|*****|*****| ****|*****|*****|*****| ****| FAIL 1 bits, intv 1
212 * | ***|*****| ***| ****| ***|*****| ***| ****| Remv 2 bits, intv 2 at 0
213 * | ***| ****| ***| ****| ***| ****| ***| ****| Remv 1 bits, intv 4 at 5
214 * | **| ****| **| ****| **| ****| **| ****| Remv 1 bits, intv 6 at 2
215 * | *| ** *| *| ** *| *| ** *| *| ** *| Remv 1 bits, intv 1 at 3
216 * | *| *| *| *| *| *| *| *| Remv 2 bits, intv 2 at 6
217 * | | | | | | | | | Remv 1 bits, intv 1 at 4
218 * |** | |** | |** | |** | | OK 2 bits, intv 2 at 0
219 * |*** | |** | |*** | |** | | OK 1 bits, intv 4 at 2
220 * |*****| |** **| |*****| |** **| | OK 2 bits, intv 2 at 3
221 * |*****|* |** **| |*****|* |** **| | OK 1 bits, intv 4 at 5
222 * |*****|*** |** **| ** |*****|*** |** **| ** | OK 2 bits, intv 2 at 6
223 * |*****|*****|** **| ****|*****|*****|** **| ****| OK 2 bits, intv 2 at 8
224 * |*****|*****|*****| ****|*****|*****|*****| ****| OK 1 bits, intv 4 at 12
225 *
226 * This function is pretty generic and could be easily abstracted if anything
227 * needed similar scheduling.
228 *
229 * Returns either -ENOSPC or a >= 0 start bit which should be passed to the
230 * unschedule routine. The map bitmap will be updated on a non-error result.
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800231 */
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800232static int pmap_schedule(unsigned long *map, int bits_per_period,
233 int periods_in_map, int num_bits,
234 int interval, int start, bool only_one_period)
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800235{
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800236 int interval_bits;
237 int to_reserve;
238 int first_end;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800239 int i;
240
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800241 if (num_bits > bits_per_period)
242 return -ENOSPC;
243
244 /* Adjust interval as per description */
245 interval = gcd(interval, periods_in_map);
246
247 interval_bits = bits_per_period * interval;
248 to_reserve = periods_in_map / interval;
249
250 /* If start has gotten us past interval then we can't schedule */
251 if (start >= interval_bits)
252 return -ENOSPC;
253
254 if (only_one_period)
255 /* Must fit within same period as start; end at begin of next */
256 first_end = (start / bits_per_period + 1) * bits_per_period;
257 else
258 /* Can fit anywhere in the first interval */
259 first_end = interval_bits;
260
261 /*
262 * We'll try to pick the first repetition, then see if that time
263 * is free for each of the subsequent repetitions. If it's not
264 * we'll adjust the start time for the next search of the first
265 * repetition.
266 */
267 while (start + num_bits <= first_end) {
268 int end;
269
270 /* Need to stay within this period */
271 end = (start / bits_per_period + 1) * bits_per_period;
272
273 /* Look for num_bits us in this microframe starting at start */
274 start = bitmap_find_next_zero_area(map, end, start, num_bits,
275 0);
276
277 /*
278 * We should get start >= end if we fail. We might be
279 * able to check the next microframe depending on the
280 * interval, so continue on (start already updated).
281 */
282 if (start >= end) {
283 start = end;
284 continue;
285 }
286
287 /* At this point we have a valid point for first one */
288 for (i = 1; i < to_reserve; i++) {
289 int ith_start = start + interval_bits * i;
290 int ith_end = end + interval_bits * i;
291 int ret;
292
293 /* Use this as a dumb "check if bits are 0" */
294 ret = bitmap_find_next_zero_area(
295 map, ith_start + num_bits, ith_start, num_bits,
296 0);
297
298 /* We got the right place, continue checking */
299 if (ret == ith_start)
300 continue;
301
302 /* Move start up for next time and exit for loop */
303 ith_start = bitmap_find_next_zero_area(
304 map, ith_end, ith_start, num_bits, 0);
305 if (ith_start >= ith_end)
306 /* Need a while new period next time */
307 start = end;
308 else
309 start = ith_start - interval_bits * i;
310 break;
311 }
312
313 /* If didn't exit the for loop with a break, we have success */
314 if (i == to_reserve)
315 break;
316 }
317
318 if (start + num_bits > first_end)
319 return -ENOSPC;
320
321 for (i = 0; i < to_reserve; i++) {
322 int ith_start = start + interval_bits * i;
323
324 bitmap_set(map, ith_start, num_bits);
325 }
326
327 return start;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800328}
329
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800330/**
331 * pmap_unschedule() - Undo work done by pmap_schedule()
332 *
333 * @map: See pmap_schedule().
334 * @bits_per_period: See pmap_schedule().
335 * @periods_in_map: See pmap_schedule().
336 * @num_bits: The number of bits that was passed to schedule.
337 * @interval: The interval that was passed to schedule.
338 * @start: The return value from pmap_schedule().
339 */
340static void pmap_unschedule(unsigned long *map, int bits_per_period,
341 int periods_in_map, int num_bits,
342 int interval, int start)
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800343{
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800344 int interval_bits;
345 int to_release;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800346 int i;
347
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800348 /* Adjust interval as per description in pmap_schedule() */
349 interval = gcd(interval, periods_in_map);
350
351 interval_bits = bits_per_period * interval;
352 to_release = periods_in_map / interval;
353
354 for (i = 0; i < to_release; i++) {
355 int ith_start = start + interval_bits * i;
356
357 bitmap_clear(map, ith_start, num_bits);
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800358 }
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800359}
360
Vardan Mikayelyan3c2203702016-11-10 17:38:21 -0800361/**
362 * dwc2_get_ls_map() - Get the map used for the given qh
363 *
364 * @hsotg: The HCD state structure for the DWC OTG controller.
365 * @qh: QH for the periodic transfer.
366 *
367 * We'll always get the periodic map out of our TT. Note that even if we're
368 * running the host straight in low speed / full speed mode it appears as if
369 * a TT is allocated for us, so we'll use it. If that ever changes we can
370 * add logic here to get a map out of "hsotg" if !qh->do_split.
371 *
372 * Returns: the map or NULL if a map couldn't be found.
373 */
374static unsigned long *dwc2_get_ls_map(struct dwc2_hsotg *hsotg,
375 struct dwc2_qh *qh)
376{
377 unsigned long *map;
378
379 /* Don't expect to be missing a TT and be doing low speed scheduling */
380 if (WARN_ON(!qh->dwc_tt))
381 return NULL;
382
383 /* Get the map and adjust if this is a multi_tt hub */
384 map = qh->dwc_tt->periodic_bitmaps;
385 if (qh->dwc_tt->usb_tt->multi)
386 map += DWC2_ELEMENTS_PER_LS_BITMAP * qh->ttport;
387
388 return map;
389}
390
391#ifdef DWC2_PRINT_SCHEDULE
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800392/*
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800393 * cat_printf() - A printf() + strcat() helper
394 *
395 * This is useful for concatenating a bunch of strings where each string is
396 * constructed using printf.
397 *
398 * @buf: The destination buffer; will be updated to point after the printed
399 * data.
400 * @size: The number of bytes in the buffer (includes space for '\0').
401 * @fmt: The format for printf.
402 * @...: The args for printf.
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800403 */
Nicolas Ioosse135ab72016-06-26 10:12:38 +0200404static __printf(3, 4)
405void cat_printf(char **buf, size_t *size, const char *fmt, ...)
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800406{
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800407 va_list args;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800408 int i;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800409
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800410 if (*size == 0)
411 return;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800412
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800413 va_start(args, fmt);
414 i = vsnprintf(*buf, *size, fmt, args);
415 va_end(args);
416
417 if (i >= *size) {
418 (*buf)[*size - 1] = '\0';
419 *buf += *size;
420 *size = 0;
421 } else {
422 *buf += i;
423 *size -= i;
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800424 }
Douglas Andersonb951c6c2016-01-28 18:20:05 -0800425}
426
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800427/*
428 * pmap_print() - Print the given periodic map
429 *
430 * Will attempt to print out the periodic schedule.
431 *
432 * @map: See pmap_schedule().
433 * @bits_per_period: See pmap_schedule().
434 * @periods_in_map: See pmap_schedule().
435 * @period_name: The name of 1 period, like "uFrame"
436 * @units: The name of the units, like "us".
437 * @print_fn: The function to call for printing.
438 * @print_data: Opaque data to pass to the print function.
439 */
440static void pmap_print(unsigned long *map, int bits_per_period,
441 int periods_in_map, const char *period_name,
442 const char *units,
443 void (*print_fn)(const char *str, void *data),
444 void *print_data)
445{
446 int period;
447
448 for (period = 0; period < periods_in_map; period++) {
449 char tmp[64];
450 char *buf = tmp;
451 size_t buf_size = sizeof(tmp);
452 int period_start = period * bits_per_period;
453 int period_end = period_start + bits_per_period;
454 int start = 0;
455 int count = 0;
456 bool printed = false;
457 int i;
458
459 for (i = period_start; i < period_end + 1; i++) {
460 /* Handle case when ith bit is set */
461 if (i < period_end &&
462 bitmap_find_next_zero_area(map, i + 1,
463 i, 1, 0) != i) {
464 if (count == 0)
465 start = i - period_start;
466 count++;
467 continue;
468 }
469
470 /* ith bit isn't set; don't care if count == 0 */
471 if (count == 0)
472 continue;
473
474 if (!printed)
475 cat_printf(&buf, &buf_size, "%s %d: ",
476 period_name, period);
477 else
478 cat_printf(&buf, &buf_size, ", ");
479 printed = true;
480
481 cat_printf(&buf, &buf_size, "%d %s -%3d %s", start,
482 units, start + count - 1, units);
483 count = 0;
484 }
485
486 if (printed)
487 print_fn(tmp, print_data);
488 }
489}
490
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800491struct dwc2_qh_print_data {
492 struct dwc2_hsotg *hsotg;
493 struct dwc2_qh *qh;
494};
495
496/**
497 * dwc2_qh_print() - Helper function for dwc2_qh_schedule_print()
498 *
499 * @str: The string to print
500 * @data: A pointer to a struct dwc2_qh_print_data
501 */
502static void dwc2_qh_print(const char *str, void *data)
503{
504 struct dwc2_qh_print_data *print_data = data;
505
506 dwc2_sch_dbg(print_data->hsotg, "QH=%p ...%s\n", print_data->qh, str);
507}
508
509/**
510 * dwc2_qh_schedule_print() - Print the periodic schedule
511 *
512 * @hsotg: The HCD state structure for the DWC OTG controller.
513 * @qh: QH to print.
514 */
515static void dwc2_qh_schedule_print(struct dwc2_hsotg *hsotg,
516 struct dwc2_qh *qh)
517{
518 struct dwc2_qh_print_data print_data = { hsotg, qh };
519 int i;
520
521 /*
522 * The printing functions are quite slow and inefficient.
523 * If we don't have tracing turned on, don't run unless the special
524 * define is turned on.
525 */
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800526
527 if (qh->schedule_low_speed) {
528 unsigned long *map = dwc2_get_ls_map(hsotg, qh);
529
530 dwc2_sch_dbg(hsotg, "QH=%p LS/FS trans: %d=>%d us @ %d us",
531 qh, qh->device_us,
532 DWC2_ROUND_US_TO_SLICE(qh->device_us),
533 DWC2_US_PER_SLICE * qh->ls_start_schedule_slice);
534
535 if (map) {
536 dwc2_sch_dbg(hsotg,
537 "QH=%p Whole low/full speed map %p now:\n",
538 qh, map);
539 pmap_print(map, DWC2_LS_PERIODIC_SLICES_PER_FRAME,
540 DWC2_LS_SCHEDULE_FRAMES, "Frame ", "slices",
541 dwc2_qh_print, &print_data);
542 }
543 }
544
545 for (i = 0; i < qh->num_hs_transfers; i++) {
546 struct dwc2_hs_transfer_time *trans_time = qh->hs_transfers + i;
547 int uframe = trans_time->start_schedule_us /
548 DWC2_HS_PERIODIC_US_PER_UFRAME;
549 int rel_us = trans_time->start_schedule_us %
550 DWC2_HS_PERIODIC_US_PER_UFRAME;
551
552 dwc2_sch_dbg(hsotg,
553 "QH=%p HS trans #%d: %d us @ uFrame %d + %d us\n",
554 qh, i, trans_time->duration_us, uframe, rel_us);
555 }
556 if (qh->num_hs_transfers) {
557 dwc2_sch_dbg(hsotg, "QH=%p Whole high speed map now:\n", qh);
558 pmap_print(hsotg->hs_periodic_bitmap,
559 DWC2_HS_PERIODIC_US_PER_UFRAME,
560 DWC2_HS_SCHEDULE_UFRAMES, "uFrame", "us",
561 dwc2_qh_print, &print_data);
562 }
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800563}
Vardan Mikayelyan3c2203702016-11-10 17:38:21 -0800564#else
565static inline void dwc2_qh_schedule_print(struct dwc2_hsotg *hsotg,
566 struct dwc2_qh *qh) {};
567#endif
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800568
569/**
570 * dwc2_ls_pmap_schedule() - Schedule a low speed QH
571 *
572 * @hsotg: The HCD state structure for the DWC OTG controller.
573 * @qh: QH for the periodic transfer.
574 * @search_slice: We'll start trying to schedule at the passed slice.
575 * Remember that slices are the units of the low speed
576 * schedule (think 25us or so).
577 *
578 * Wraps pmap_schedule() with the right parameters for low speed scheduling.
579 *
580 * Normally we schedule low speed devices on the map associated with the TT.
581 *
582 * Returns: 0 for success or an error code.
583 */
584static int dwc2_ls_pmap_schedule(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
585 int search_slice)
586{
587 int slices = DIV_ROUND_UP(qh->device_us, DWC2_US_PER_SLICE);
588 unsigned long *map = dwc2_get_ls_map(hsotg, qh);
589 int slice;
590
John Youn9da51972017-01-17 20:30:27 -0800591 if (!map)
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800592 return -EINVAL;
593
594 /*
595 * Schedule on the proper low speed map with our low speed scheduling
596 * parameters. Note that we use the "device_interval" here since
597 * we want the low speed interval and the only way we'd be in this
598 * function is if the device is low speed.
599 *
600 * If we happen to be doing low speed and high speed scheduling for the
601 * same transaction (AKA we have a split) we always do low speed first.
602 * That means we can always pass "false" for only_one_period (that
603 * parameters is only useful when we're trying to get one schedule to
604 * match what we already planned in the other schedule).
605 */
606 slice = pmap_schedule(map, DWC2_LS_PERIODIC_SLICES_PER_FRAME,
607 DWC2_LS_SCHEDULE_FRAMES, slices,
608 qh->device_interval, search_slice, false);
609
610 if (slice < 0)
611 return slice;
612
613 qh->ls_start_schedule_slice = slice;
614 return 0;
615}
616
617/**
618 * dwc2_ls_pmap_unschedule() - Undo work done by dwc2_ls_pmap_schedule()
619 *
620 * @hsotg: The HCD state structure for the DWC OTG controller.
621 * @qh: QH for the periodic transfer.
622 */
623static void dwc2_ls_pmap_unschedule(struct dwc2_hsotg *hsotg,
624 struct dwc2_qh *qh)
625{
626 int slices = DIV_ROUND_UP(qh->device_us, DWC2_US_PER_SLICE);
627 unsigned long *map = dwc2_get_ls_map(hsotg, qh);
628
629 /* Schedule should have failed, so no worries about no error code */
John Youn9da51972017-01-17 20:30:27 -0800630 if (!map)
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800631 return;
632
633 pmap_unschedule(map, DWC2_LS_PERIODIC_SLICES_PER_FRAME,
634 DWC2_LS_SCHEDULE_FRAMES, slices, qh->device_interval,
635 qh->ls_start_schedule_slice);
636}
637
638/**
639 * dwc2_hs_pmap_schedule - Schedule in the main high speed schedule
640 *
641 * This will schedule something on the main dwc2 schedule.
642 *
643 * We'll start looking in qh->hs_transfers[index].start_schedule_us. We'll
644 * update this with the result upon success. We also use the duration from
645 * the same structure.
646 *
647 * @hsotg: The HCD state structure for the DWC OTG controller.
648 * @qh: QH for the periodic transfer.
649 * @only_one_period: If true we will limit ourselves to just looking at
650 * one period (aka one 100us chunk). This is used if we have
651 * already scheduled something on the low speed schedule and
652 * need to find something that matches on the high speed one.
653 * @index: The index into qh->hs_transfers that we're working with.
654 *
655 * Returns: 0 for success or an error code. Upon success the
656 * dwc2_hs_transfer_time specified by "index" will be updated.
657 */
658static int dwc2_hs_pmap_schedule(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
659 bool only_one_period, int index)
660{
661 struct dwc2_hs_transfer_time *trans_time = qh->hs_transfers + index;
662 int us;
663
664 us = pmap_schedule(hsotg->hs_periodic_bitmap,
665 DWC2_HS_PERIODIC_US_PER_UFRAME,
666 DWC2_HS_SCHEDULE_UFRAMES, trans_time->duration_us,
667 qh->host_interval, trans_time->start_schedule_us,
668 only_one_period);
669
670 if (us < 0)
671 return us;
672
673 trans_time->start_schedule_us = us;
674 return 0;
675}
676
677/**
678 * dwc2_ls_pmap_unschedule() - Undo work done by dwc2_hs_pmap_schedule()
679 *
680 * @hsotg: The HCD state structure for the DWC OTG controller.
681 * @qh: QH for the periodic transfer.
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400682 * @index: Transfer index
Douglas Anderson9f9f09b2016-01-28 18:20:12 -0800683 */
684static void dwc2_hs_pmap_unschedule(struct dwc2_hsotg *hsotg,
685 struct dwc2_qh *qh, int index)
686{
687 struct dwc2_hs_transfer_time *trans_time = qh->hs_transfers + index;
688
689 pmap_unschedule(hsotg->hs_periodic_bitmap,
690 DWC2_HS_PERIODIC_US_PER_UFRAME,
691 DWC2_HS_SCHEDULE_UFRAMES, trans_time->duration_us,
692 qh->host_interval, trans_time->start_schedule_us);
693}
694
695/**
696 * dwc2_uframe_schedule_split - Schedule a QH for a periodic split xfer.
697 *
698 * This is the most complicated thing in USB. We have to find matching time
699 * in both the global high speed schedule for the port and the low speed
700 * schedule for the TT associated with the given device.
701 *
702 * Being here means that the host must be running in high speed mode and the
703 * device is in low or full speed mode (and behind a hub).
704 *
705 * @hsotg: The HCD state structure for the DWC OTG controller.
706 * @qh: QH for the periodic transfer.
707 */
708static int dwc2_uframe_schedule_split(struct dwc2_hsotg *hsotg,
709 struct dwc2_qh *qh)
710{
711 int bytecount = dwc2_hb_mult(qh->maxp) * dwc2_max_packet(qh->maxp);
712 int ls_search_slice;
713 int err = 0;
714 int host_interval_in_sched;
715
716 /*
717 * The interval (how often to repeat) in the actual host schedule.
718 * See pmap_schedule() for gcd() explanation.
719 */
720 host_interval_in_sched = gcd(qh->host_interval,
721 DWC2_HS_SCHEDULE_UFRAMES);
722
723 /*
724 * We always try to find space in the low speed schedule first, then
725 * try to find high speed time that matches. If we don't, we'll bump
726 * up the place we start searching in the low speed schedule and try
727 * again. To start we'll look right at the beginning of the low speed
728 * schedule.
729 *
730 * Note that this will tend to front-load the high speed schedule.
731 * We may eventually want to try to avoid this by either considering
732 * both schedules together or doing some sort of round robin.
733 */
734 ls_search_slice = 0;
735
736 while (ls_search_slice < DWC2_LS_SCHEDULE_SLICES) {
737 int start_s_uframe;
738 int ssplit_s_uframe;
739 int second_s_uframe;
740 int rel_uframe;
741 int first_count;
742 int middle_count;
743 int end_count;
744 int first_data_bytes;
745 int other_data_bytes;
746 int i;
747
748 if (qh->schedule_low_speed) {
749 err = dwc2_ls_pmap_schedule(hsotg, qh, ls_search_slice);
750
751 /*
752 * If we got an error here there's no other magic we
753 * can do, so bail. All the looping above is only
754 * helpful to redo things if we got a low speed slot
755 * and then couldn't find a matching high speed slot.
756 */
757 if (err)
758 return err;
759 } else {
760 /* Must be missing the tt structure? Why? */
761 WARN_ON_ONCE(1);
762 }
763
764 /*
765 * This will give us a number 0 - 7 if
766 * DWC2_LS_SCHEDULE_FRAMES == 1, or 0 - 15 if == 2, or ...
767 */
768 start_s_uframe = qh->ls_start_schedule_slice /
769 DWC2_SLICES_PER_UFRAME;
770
771 /* Get a number that's always 0 - 7 */
772 rel_uframe = (start_s_uframe % 8);
773
774 /*
775 * If we were going to start in uframe 7 then we would need to
776 * issue a start split in uframe 6, which spec says is not OK.
777 * Move on to the next full frame (assuming there is one).
778 *
779 * See 11.18.4 Host Split Transaction Scheduling Requirements
780 * bullet 1.
781 */
782 if (rel_uframe == 7) {
783 if (qh->schedule_low_speed)
784 dwc2_ls_pmap_unschedule(hsotg, qh);
785 ls_search_slice =
786 (qh->ls_start_schedule_slice /
787 DWC2_LS_PERIODIC_SLICES_PER_FRAME + 1) *
788 DWC2_LS_PERIODIC_SLICES_PER_FRAME;
789 continue;
790 }
791
792 /*
793 * For ISOC in:
794 * - start split (frame -1)
795 * - complete split w/ data (frame +1)
796 * - complete split w/ data (frame +2)
797 * - ...
798 * - complete split w/ data (frame +num_data_packets)
799 * - complete split w/ data (frame +num_data_packets+1)
800 * - complete split w/ data (frame +num_data_packets+2, max 8)
801 * ...though if frame was "0" then max is 7...
802 *
803 * For ISOC out we might need to do:
804 * - start split w/ data (frame -1)
805 * - start split w/ data (frame +0)
806 * - ...
807 * - start split w/ data (frame +num_data_packets-2)
808 *
809 * For INTERRUPT in we might need to do:
810 * - start split (frame -1)
811 * - complete split w/ data (frame +1)
812 * - complete split w/ data (frame +2)
813 * - complete split w/ data (frame +3, max 8)
814 *
815 * For INTERRUPT out we might need to do:
816 * - start split w/ data (frame -1)
817 * - complete split (frame +1)
818 * - complete split (frame +2)
819 * - complete split (frame +3, max 8)
820 *
821 * Start adjusting!
822 */
823 ssplit_s_uframe = (start_s_uframe +
824 host_interval_in_sched - 1) %
825 host_interval_in_sched;
826 if (qh->ep_type == USB_ENDPOINT_XFER_ISOC && !qh->ep_is_in)
827 second_s_uframe = start_s_uframe;
828 else
829 second_s_uframe = start_s_uframe + 1;
830
831 /* First data transfer might not be all 188 bytes. */
832 first_data_bytes = 188 -
833 DIV_ROUND_UP(188 * (qh->ls_start_schedule_slice %
834 DWC2_SLICES_PER_UFRAME),
835 DWC2_SLICES_PER_UFRAME);
836 if (first_data_bytes > bytecount)
837 first_data_bytes = bytecount;
838 other_data_bytes = bytecount - first_data_bytes;
839
840 /*
841 * For now, skip OUT xfers where first xfer is partial
842 *
843 * Main dwc2 code assumes:
844 * - INT transfers never get split in two.
845 * - ISOC transfers can always transfer 188 bytes the first
846 * time.
847 *
848 * Until that code is fixed, try again if the first transfer
849 * couldn't transfer everything.
850 *
851 * This code can be removed if/when the rest of dwc2 handles
852 * the above cases. Until it's fixed we just won't be able
853 * to schedule quite as tightly.
854 */
855 if (!qh->ep_is_in &&
856 (first_data_bytes != min_t(int, 188, bytecount))) {
857 dwc2_sch_dbg(hsotg,
858 "QH=%p avoiding broken 1st xfer (%d, %d)\n",
859 qh, first_data_bytes, bytecount);
860 if (qh->schedule_low_speed)
861 dwc2_ls_pmap_unschedule(hsotg, qh);
862 ls_search_slice = (start_s_uframe + 1) *
863 DWC2_SLICES_PER_UFRAME;
864 continue;
865 }
866
867 /* Start by assuming transfers for the bytes */
868 qh->num_hs_transfers = 1 + DIV_ROUND_UP(other_data_bytes, 188);
869
870 /*
871 * Everything except ISOC OUT has extra transfers. Rules are
872 * complicated. See 11.18.4 Host Split Transaction Scheduling
873 * Requirements bullet 3.
874 */
875 if (qh->ep_type == USB_ENDPOINT_XFER_INT) {
876 if (rel_uframe == 6)
877 qh->num_hs_transfers += 2;
878 else
879 qh->num_hs_transfers += 3;
880
881 if (qh->ep_is_in) {
882 /*
883 * First is start split, middle/end is data.
884 * Allocate full data bytes for all data.
885 */
886 first_count = 4;
887 middle_count = bytecount;
888 end_count = bytecount;
889 } else {
890 /*
891 * First is data, middle/end is complete.
892 * First transfer and second can have data.
893 * Rest should just have complete split.
894 */
895 first_count = first_data_bytes;
896 middle_count = max_t(int, 4, other_data_bytes);
897 end_count = 4;
898 }
899 } else {
900 if (qh->ep_is_in) {
901 int last;
902
903 /* Account for the start split */
904 qh->num_hs_transfers++;
905
906 /* Calculate "L" value from spec */
907 last = rel_uframe + qh->num_hs_transfers + 1;
908
909 /* Start with basic case */
910 if (last <= 6)
911 qh->num_hs_transfers += 2;
912 else
913 qh->num_hs_transfers += 1;
914
915 /* Adjust downwards */
916 if (last >= 6 && rel_uframe == 0)
917 qh->num_hs_transfers--;
918
919 /* 1st = start; rest can contain data */
920 first_count = 4;
921 middle_count = min_t(int, 188, bytecount);
922 end_count = middle_count;
923 } else {
924 /* All contain data, last might be smaller */
925 first_count = first_data_bytes;
926 middle_count = min_t(int, 188,
927 other_data_bytes);
928 end_count = other_data_bytes % 188;
929 }
930 }
931
932 /* Assign durations per uFrame */
933 qh->hs_transfers[0].duration_us = HS_USECS_ISO(first_count);
934 for (i = 1; i < qh->num_hs_transfers - 1; i++)
935 qh->hs_transfers[i].duration_us =
936 HS_USECS_ISO(middle_count);
937 if (qh->num_hs_transfers > 1)
938 qh->hs_transfers[qh->num_hs_transfers - 1].duration_us =
939 HS_USECS_ISO(end_count);
940
941 /*
942 * Assign start us. The call below to dwc2_hs_pmap_schedule()
943 * will start with these numbers but may adjust within the same
944 * microframe.
945 */
946 qh->hs_transfers[0].start_schedule_us =
947 ssplit_s_uframe * DWC2_HS_PERIODIC_US_PER_UFRAME;
948 for (i = 1; i < qh->num_hs_transfers; i++)
949 qh->hs_transfers[i].start_schedule_us =
950 ((second_s_uframe + i - 1) %
951 DWC2_HS_SCHEDULE_UFRAMES) *
952 DWC2_HS_PERIODIC_US_PER_UFRAME;
953
954 /* Try to schedule with filled in hs_transfers above */
955 for (i = 0; i < qh->num_hs_transfers; i++) {
956 err = dwc2_hs_pmap_schedule(hsotg, qh, true, i);
957 if (err)
958 break;
959 }
960
961 /* If we scheduled all w/out breaking out then we're all good */
962 if (i == qh->num_hs_transfers)
963 break;
964
965 for (; i >= 0; i--)
966 dwc2_hs_pmap_unschedule(hsotg, qh, i);
967
968 if (qh->schedule_low_speed)
969 dwc2_ls_pmap_unschedule(hsotg, qh);
970
971 /* Try again starting in the next microframe */
972 ls_search_slice = (start_s_uframe + 1) * DWC2_SLICES_PER_UFRAME;
973 }
974
975 if (ls_search_slice >= DWC2_LS_SCHEDULE_SLICES)
976 return -ENOSPC;
977
978 return 0;
979}
980
981/**
982 * dwc2_uframe_schedule_hs - Schedule a QH for a periodic high speed xfer.
983 *
984 * Basically this just wraps dwc2_hs_pmap_schedule() to provide a clean
985 * interface.
986 *
987 * @hsotg: The HCD state structure for the DWC OTG controller.
988 * @qh: QH for the periodic transfer.
989 */
990static int dwc2_uframe_schedule_hs(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
991{
992 /* In non-split host and device time are the same */
993 WARN_ON(qh->host_us != qh->device_us);
994 WARN_ON(qh->host_interval != qh->device_interval);
995 WARN_ON(qh->num_hs_transfers != 1);
996
997 /* We'll have one transfer; init start to 0 before calling scheduler */
998 qh->hs_transfers[0].start_schedule_us = 0;
999 qh->hs_transfers[0].duration_us = qh->host_us;
1000
1001 return dwc2_hs_pmap_schedule(hsotg, qh, false, 0);
1002}
1003
1004/**
1005 * dwc2_uframe_schedule_ls - Schedule a QH for a periodic low/full speed xfer.
1006 *
1007 * Basically this just wraps dwc2_ls_pmap_schedule() to provide a clean
1008 * interface.
1009 *
1010 * @hsotg: The HCD state structure for the DWC OTG controller.
1011 * @qh: QH for the periodic transfer.
1012 */
1013static int dwc2_uframe_schedule_ls(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1014{
1015 /* In non-split host and device time are the same */
1016 WARN_ON(qh->host_us != qh->device_us);
1017 WARN_ON(qh->host_interval != qh->device_interval);
1018 WARN_ON(!qh->schedule_low_speed);
1019
1020 /* Run on the main low speed schedule (no split = no hub = no TT) */
1021 return dwc2_ls_pmap_schedule(hsotg, qh, 0);
1022}
1023
1024/**
1025 * dwc2_uframe_schedule - Schedule a QH for a periodic xfer.
1026 *
1027 * Calls one of the 3 sub-function depending on what type of transfer this QH
1028 * is for. Also adds some printing.
1029 *
1030 * @hsotg: The HCD state structure for the DWC OTG controller.
1031 * @qh: QH for the periodic transfer.
1032 */
1033static int dwc2_uframe_schedule(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001034{
1035 int ret;
1036
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001037 if (qh->dev_speed == USB_SPEED_HIGH)
1038 ret = dwc2_uframe_schedule_hs(hsotg, qh);
1039 else if (!qh->do_split)
1040 ret = dwc2_uframe_schedule_ls(hsotg, qh);
1041 else
1042 ret = dwc2_uframe_schedule_split(hsotg, qh);
1043
1044 if (ret)
1045 dwc2_sch_dbg(hsotg, "QH=%p Failed to schedule %d\n", qh, ret);
1046 else
1047 dwc2_qh_schedule_print(hsotg, qh);
1048
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001049 return ret;
1050}
1051
1052/**
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001053 * dwc2_uframe_unschedule - Undoes dwc2_uframe_schedule().
1054 *
1055 * @hsotg: The HCD state structure for the DWC OTG controller.
1056 * @qh: QH for the periodic transfer.
1057 */
1058static void dwc2_uframe_unschedule(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1059{
1060 int i;
1061
1062 for (i = 0; i < qh->num_hs_transfers; i++)
1063 dwc2_hs_pmap_unschedule(hsotg, qh, i);
1064
1065 if (qh->schedule_low_speed)
1066 dwc2_ls_pmap_unschedule(hsotg, qh);
1067
1068 dwc2_sch_dbg(hsotg, "QH=%p Unscheduled\n", qh);
1069}
1070
1071/**
Douglas Andersonfb616e32016-01-28 18:20:08 -08001072 * dwc2_pick_first_frame() - Choose 1st frame for qh that's already scheduled
1073 *
1074 * Takes a qh that has already been scheduled (which means we know we have the
1075 * bandwdith reserved for us) and set the next_active_frame and the
1076 * start_active_frame.
1077 *
1078 * This is expected to be called on qh's that weren't previously actively
1079 * running. It just picks the next frame that we can fit into without any
1080 * thought about the past.
1081 *
1082 * @hsotg: The HCD state structure for the DWC OTG controller
1083 * @qh: QH for a periodic endpoint
1084 *
1085 */
1086static void dwc2_pick_first_frame(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1087{
1088 u16 frame_number;
1089 u16 earliest_frame;
1090 u16 next_active_frame;
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001091 u16 relative_frame;
Douglas Andersonfb616e32016-01-28 18:20:08 -08001092 u16 interval;
1093
1094 /*
1095 * Use the real frame number rather than the cached value as of the
1096 * last SOF to give us a little extra slop.
1097 */
1098 frame_number = dwc2_hcd_get_frame_number(hsotg);
1099
1100 /*
1101 * We wouldn't want to start any earlier than the next frame just in
1102 * case the frame number ticks as we're doing this calculation.
1103 *
1104 * NOTE: if we could quantify how long till we actually get scheduled
1105 * we might be able to avoid the "+ 1" by looking at the upper part of
1106 * HFNUM (the FRREM field). For now we'll just use the + 1 though.
1107 */
1108 earliest_frame = dwc2_frame_num_inc(frame_number, 1);
1109 next_active_frame = earliest_frame;
1110
1111 /* Get the "no microframe schduler" out of the way... */
John Youn95832c02017-01-23 14:57:26 -08001112 if (!hsotg->params.uframe_sched) {
Douglas Andersonfb616e32016-01-28 18:20:08 -08001113 if (qh->do_split)
1114 /* Splits are active at microframe 0 minus 1 */
1115 next_active_frame |= 0x7;
1116 goto exit;
1117 }
1118
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001119 if (qh->dev_speed == USB_SPEED_HIGH || qh->do_split) {
1120 /*
1121 * We're either at high speed or we're doing a split (which
1122 * means we're talking high speed to a hub). In any case
1123 * the first frame should be based on when the first scheduled
1124 * event is.
1125 */
1126 WARN_ON(qh->num_hs_transfers < 1);
1127
1128 relative_frame = qh->hs_transfers[0].start_schedule_us /
1129 DWC2_HS_PERIODIC_US_PER_UFRAME;
1130
1131 /* Adjust interval as per high speed schedule */
1132 interval = gcd(qh->host_interval, DWC2_HS_SCHEDULE_UFRAMES);
1133
1134 } else {
1135 /*
1136 * Low or full speed directly on dwc2. Just about the same
1137 * as high speed but on a different schedule and with slightly
1138 * different adjustments. Note that this works because when
1139 * the host and device are both low speed then frames in the
1140 * controller tick at low speed.
1141 */
1142 relative_frame = qh->ls_start_schedule_slice /
1143 DWC2_LS_PERIODIC_SLICES_PER_FRAME;
1144 interval = gcd(qh->host_interval, DWC2_LS_SCHEDULE_FRAMES);
1145 }
1146
1147 /* Scheduler messed up if frame is past interval */
1148 WARN_ON(relative_frame >= interval);
Douglas Andersonfb616e32016-01-28 18:20:08 -08001149
1150 /*
1151 * We know interval must divide (HFNUM_MAX_FRNUM + 1) now that we've
1152 * done the gcd(), so it's safe to move to the beginning of the current
1153 * interval like this.
1154 *
1155 * After this we might be before earliest_frame, but don't worry,
1156 * we'll fix it...
1157 */
1158 next_active_frame = (next_active_frame / interval) * interval;
1159
1160 /*
1161 * Actually choose to start at the frame number we've been
1162 * scheduled for.
1163 */
1164 next_active_frame = dwc2_frame_num_inc(next_active_frame,
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001165 relative_frame);
Douglas Andersonfb616e32016-01-28 18:20:08 -08001166
1167 /*
1168 * We actually need 1 frame before since the next_active_frame is
1169 * the frame number we'll be put on the ready list and we won't be on
1170 * the bus until 1 frame later.
1171 */
1172 next_active_frame = dwc2_frame_num_dec(next_active_frame, 1);
1173
1174 /*
1175 * By now we might actually be before the earliest_frame. Let's move
1176 * up intervals until we're not.
1177 */
1178 while (dwc2_frame_num_gt(earliest_frame, next_active_frame))
1179 next_active_frame = dwc2_frame_num_inc(next_active_frame,
1180 interval);
1181
1182exit:
1183 qh->next_active_frame = next_active_frame;
1184 qh->start_active_frame = next_active_frame;
1185
1186 dwc2_sch_vdbg(hsotg, "QH=%p First fn=%04x nxt=%04x\n",
John Youn9da51972017-01-17 20:30:27 -08001187 qh, frame_number, qh->next_active_frame);
Douglas Andersonfb616e32016-01-28 18:20:08 -08001188}
1189
1190/**
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001191 * dwc2_do_reserve() - Make a periodic reservation
1192 *
1193 * Try to allocate space in the periodic schedule. Depending on parameters
1194 * this might use the microframe scheduler or the dumb scheduler.
1195 *
1196 * @hsotg: The HCD state structure for the DWC OTG controller
1197 * @qh: QH for the periodic transfer.
1198 *
1199 * Returns: 0 upon success; error upon failure.
1200 */
1201static int dwc2_do_reserve(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1202{
1203 int status;
1204
John Youn95832c02017-01-23 14:57:26 -08001205 if (hsotg->params.uframe_sched) {
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001206 status = dwc2_uframe_schedule(hsotg, qh);
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001207 } else {
1208 status = dwc2_periodic_channel_available(hsotg);
1209 if (status) {
1210 dev_info(hsotg->dev,
1211 "%s: No host channel available for periodic transfer\n",
1212 __func__);
1213 return status;
1214 }
1215
1216 status = dwc2_check_periodic_bandwidth(hsotg, qh);
1217 }
1218
1219 if (status) {
1220 dev_dbg(hsotg->dev,
1221 "%s: Insufficient periodic bandwidth for periodic transfer\n",
1222 __func__);
1223 return status;
1224 }
1225
John Youn95832c02017-01-23 14:57:26 -08001226 if (!hsotg->params.uframe_sched)
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001227 /* Reserve periodic channel */
1228 hsotg->periodic_channels++;
1229
1230 /* Update claimed usecs per (micro)frame */
1231 hsotg->periodic_usecs += qh->host_us;
1232
Douglas Andersonfb616e32016-01-28 18:20:08 -08001233 dwc2_pick_first_frame(hsotg, qh);
1234
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001235 return 0;
1236}
1237
1238/**
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001239 * dwc2_do_unreserve() - Actually release the periodic reservation
1240 *
1241 * This function actually releases the periodic bandwidth that was reserved
1242 * by the given qh.
1243 *
1244 * @hsotg: The HCD state structure for the DWC OTG controller
1245 * @qh: QH for the periodic transfer.
1246 */
1247static void dwc2_do_unreserve(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1248{
1249 assert_spin_locked(&hsotg->lock);
1250
1251 WARN_ON(!qh->unreserve_pending);
1252
1253 /* No more unreserve pending--we're doing it */
1254 qh->unreserve_pending = false;
1255
1256 if (WARN_ON(!list_empty(&qh->qh_list_entry)))
1257 list_del_init(&qh->qh_list_entry);
1258
1259 /* Update claimed usecs per (micro)frame */
Douglas Andersonced9eee2016-01-28 18:20:04 -08001260 hsotg->periodic_usecs -= qh->host_us;
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001261
John Youn95832c02017-01-23 14:57:26 -08001262 if (hsotg->params.uframe_sched) {
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001263 dwc2_uframe_unschedule(hsotg, qh);
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001264 } else {
1265 /* Release periodic channel reservation */
1266 hsotg->periodic_channels--;
1267 }
1268}
1269
1270/**
1271 * dwc2_unreserve_timer_fn() - Timer function to release periodic reservation
1272 *
1273 * According to the kernel doc for usb_submit_urb() (specifically the part about
1274 * "Reserved Bandwidth Transfers"), we need to keep a reservation active as
1275 * long as a device driver keeps submitting. Since we're using HCD_BH to give
1276 * back the URB we need to give the driver a little bit of time before we
1277 * release the reservation. This worker is called after the appropriate
1278 * delay.
1279 *
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04001280 * @t: Address to a qh unreserve_work.
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001281 */
Kees Cooke99e88a2017-10-16 14:43:17 -07001282static void dwc2_unreserve_timer_fn(struct timer_list *t)
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001283{
Kees Cooke99e88a2017-10-16 14:43:17 -07001284 struct dwc2_qh *qh = from_timer(qh, t, unreserve_timer);
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001285 struct dwc2_hsotg *hsotg = qh->hsotg;
1286 unsigned long flags;
1287
1288 /*
1289 * Wait for the lock, or for us to be scheduled again. We
1290 * could be scheduled again if:
1291 * - We started executing but didn't get the lock yet.
1292 * - A new reservation came in, but cancel didn't take effect
1293 * because we already started executing.
1294 * - The timer has been kicked again.
1295 * In that case cancel and wait for the next call.
1296 */
1297 while (!spin_trylock_irqsave(&hsotg->lock, flags)) {
1298 if (timer_pending(&qh->unreserve_timer))
1299 return;
1300 }
1301
1302 /*
1303 * Might be no more unreserve pending if:
1304 * - We started executing but didn't get the lock yet.
1305 * - A new reservation came in, but cancel didn't take effect
1306 * because we already started executing.
1307 *
1308 * We can't put this in the loop above because unreserve_pending needs
1309 * to be accessed under lock, so we can only check it once we got the
1310 * lock.
1311 */
1312 if (qh->unreserve_pending)
1313 dwc2_do_unreserve(hsotg, qh);
1314
1315 spin_unlock_irqrestore(&hsotg->lock, flags);
1316}
1317
Paul Zimmerman7359d482013-03-11 17:47:59 -07001318/**
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001319 * dwc2_check_max_xfer_size() - Checks that the max transfer size allowed in a
1320 * host channel is large enough to handle the maximum data transfer in a single
1321 * (micro)frame for a periodic transfer
1322 *
1323 * @hsotg: The HCD state structure for the DWC OTG controller
1324 * @qh: QH for a periodic endpoint
1325 *
1326 * Return: 0 if successful, negative error code otherwise
1327 */
1328static int dwc2_check_max_xfer_size(struct dwc2_hsotg *hsotg,
1329 struct dwc2_qh *qh)
1330{
1331 u32 max_xfer_size;
1332 u32 max_channel_xfer_size;
1333 int status = 0;
1334
1335 max_xfer_size = dwc2_max_packet(qh->maxp) * dwc2_hb_mult(qh->maxp);
John Younbea8e862016-11-03 17:55:53 -07001336 max_channel_xfer_size = hsotg->params.max_transfer_size;
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001337
1338 if (max_xfer_size > max_channel_xfer_size) {
1339 dev_err(hsotg->dev,
1340 "%s: Periodic xfer length %d > max xfer length for channel %d\n",
1341 __func__, max_xfer_size, max_channel_xfer_size);
1342 status = -ENOSPC;
1343 }
1344
1345 return status;
1346}
1347
1348/**
1349 * dwc2_schedule_periodic() - Schedules an interrupt or isochronous transfer in
1350 * the periodic schedule
1351 *
1352 * @hsotg: The HCD state structure for the DWC OTG controller
1353 * @qh: QH for the periodic transfer. The QH should already contain the
1354 * scheduling information.
1355 *
1356 * Return: 0 if successful, negative error code otherwise
1357 */
1358static int dwc2_schedule_periodic(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1359{
1360 int status;
1361
1362 status = dwc2_check_max_xfer_size(hsotg, qh);
1363 if (status) {
1364 dev_dbg(hsotg->dev,
1365 "%s: Channel max transfer size too small for periodic transfer\n",
1366 __func__);
1367 return status;
1368 }
1369
1370 /* Cancel pending unreserve; if canceled OK, unreserve was pending */
1371 if (del_timer(&qh->unreserve_timer))
1372 WARN_ON(!qh->unreserve_pending);
1373
1374 /*
1375 * Only need to reserve if there's not an unreserve pending, since if an
1376 * unreserve is pending then by definition our old reservation is still
1377 * valid. Unreserve might still be pending even if we didn't cancel if
1378 * dwc2_unreserve_timer_fn() already started. Code in the timer handles
1379 * that case.
1380 */
1381 if (!qh->unreserve_pending) {
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001382 status = dwc2_do_reserve(hsotg, qh);
1383 if (status)
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001384 return status;
Douglas Andersonfb616e32016-01-28 18:20:08 -08001385 } else {
1386 /*
1387 * It might have been a while, so make sure that frame_number
1388 * is still good. Note: we could also try to use the similar
1389 * dwc2_next_periodic_start() but that schedules much more
1390 * tightly and we might need to hurry and queue things up.
1391 */
1392 if (dwc2_frame_num_le(qh->next_active_frame,
1393 hsotg->frame_number))
1394 dwc2_pick_first_frame(hsotg, qh);
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001395 }
1396
1397 qh->unreserve_pending = 0;
1398
John Youn95832c02017-01-23 14:57:26 -08001399 if (hsotg->params.dma_desc_enable)
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001400 /* Don't rely on SOF and start in ready schedule */
1401 list_add_tail(&qh->qh_list_entry, &hsotg->periodic_sched_ready);
1402 else
1403 /* Always start in inactive schedule */
1404 list_add_tail(&qh->qh_list_entry,
1405 &hsotg->periodic_sched_inactive);
1406
Douglas Anderson2d3f1392016-01-28 18:20:06 -08001407 return 0;
Douglas Andersonb951c6c2016-01-28 18:20:05 -08001408}
1409
1410/**
1411 * dwc2_deschedule_periodic() - Removes an interrupt or isochronous transfer
1412 * from the periodic schedule
1413 *
1414 * @hsotg: The HCD state structure for the DWC OTG controller
1415 * @qh: QH for the periodic transfer
1416 */
1417static void dwc2_deschedule_periodic(struct dwc2_hsotg *hsotg,
1418 struct dwc2_qh *qh)
1419{
1420 bool did_modify;
1421
1422 assert_spin_locked(&hsotg->lock);
1423
1424 /*
1425 * Schedule the unreserve to happen in a little bit. Cases here:
1426 * - Unreserve worker might be sitting there waiting to grab the lock.
1427 * In this case it will notice it's been schedule again and will
1428 * quit.
1429 * - Unreserve worker might not be scheduled.
1430 *
1431 * We should never already be scheduled since dwc2_schedule_periodic()
1432 * should have canceled the scheduled unreserve timer (hence the
1433 * warning on did_modify).
1434 *
1435 * We add + 1 to the timer to guarantee that at least 1 jiffy has
1436 * passed (otherwise if the jiffy counter might tick right after we
1437 * read it and we'll get no delay).
1438 */
1439 did_modify = mod_timer(&qh->unreserve_timer,
1440 jiffies + DWC2_UNRESERVE_DELAY + 1);
1441 WARN_ON(did_modify);
1442 qh->unreserve_pending = 1;
1443
1444 list_del_init(&qh->qh_list_entry);
1445}
1446
1447/**
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001448 * dwc2_wait_timer_fn() - Timer function to re-queue after waiting
1449 *
1450 * As per the spec, a NAK indicates that "a function is temporarily unable to
1451 * transmit or receive data, but will eventually be able to do so without need
1452 * of host intervention".
1453 *
1454 * That means that when we encounter a NAK we're supposed to retry.
1455 *
1456 * ...but if we retry right away (from the interrupt handler that saw the NAK)
1457 * then we can end up with an interrupt storm (if the other side keeps NAKing
1458 * us) because on slow enough CPUs it could take us longer to get out of the
1459 * interrupt routine than it takes for the device to send another NAK. That
1460 * leads to a constant stream of NAK interrupts and the CPU locks.
1461 *
1462 * ...so instead of retrying right away in the case of a NAK we'll set a timer
1463 * to retry some time later. This function handles that timer and moves the
1464 * qh back to the "inactive" list, then queues transactions.
1465 *
1466 * @t: Pointer to wait_timer in a qh.
1467 */
1468static void dwc2_wait_timer_fn(struct timer_list *t)
1469{
1470 struct dwc2_qh *qh = from_timer(qh, t, wait_timer);
1471 struct dwc2_hsotg *hsotg = qh->hsotg;
1472 unsigned long flags;
1473
1474 spin_lock_irqsave(&hsotg->lock, flags);
1475
1476 /*
1477 * We'll set wait_timer_cancel to true if we want to cancel this
1478 * operation in dwc2_hcd_qh_unlink().
1479 */
1480 if (!qh->wait_timer_cancel) {
1481 enum dwc2_transaction_type tr_type;
1482
1483 qh->want_wait = false;
1484
1485 list_move(&qh->qh_list_entry,
1486 &hsotg->non_periodic_sched_inactive);
1487
1488 tr_type = dwc2_hcd_select_transactions(hsotg);
1489 if (tr_type != DWC2_TRANSACTION_NONE)
1490 dwc2_hcd_queue_transactions(hsotg, tr_type);
1491 }
1492
1493 spin_unlock_irqrestore(&hsotg->lock, flags);
1494}
1495
1496/**
Paul Zimmerman7359d482013-03-11 17:47:59 -07001497 * dwc2_qh_init() - Initializes a QH structure
1498 *
1499 * @hsotg: The HCD state structure for the DWC OTG controller
1500 * @qh: The QH to init
1501 * @urb: Holds the information about the device/endpoint needed to initialize
1502 * the QH
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001503 * @mem_flags: Flags for allocating memory.
Paul Zimmerman7359d482013-03-11 17:47:59 -07001504 */
Paul Zimmerman7359d482013-03-11 17:47:59 -07001505static void dwc2_qh_init(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001506 struct dwc2_hcd_urb *urb, gfp_t mem_flags)
Paul Zimmerman7359d482013-03-11 17:47:59 -07001507{
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001508 int dev_speed = dwc2_host_get_speed(hsotg, urb->priv);
1509 u8 ep_type = dwc2_hcd_get_pipe_type(&urb->pipe_info);
1510 bool ep_is_in = !!dwc2_hcd_is_pipe_in(&urb->pipe_info);
1511 bool ep_is_isoc = (ep_type == USB_ENDPOINT_XFER_ISOC);
1512 bool ep_is_int = (ep_type == USB_ENDPOINT_XFER_INT);
1513 u32 hprt = dwc2_readl(hsotg->regs + HPRT0);
1514 u32 prtspd = (hprt & HPRT0_SPD_MASK) >> HPRT0_SPD_SHIFT;
1515 bool do_split = (prtspd == HPRT0_SPD_HIGH_SPEED &&
1516 dev_speed != USB_SPEED_HIGH);
1517 int maxp = dwc2_hcd_get_mps(&urb->pipe_info);
1518 int bytecount = dwc2_hb_mult(maxp) * dwc2_max_packet(maxp);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001519 char *speed, *type;
1520
Paul Zimmerman7359d482013-03-11 17:47:59 -07001521 /* Initialize QH */
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001522 qh->hsotg = hsotg;
Kees Cooke99e88a2017-10-16 14:43:17 -07001523 timer_setup(&qh->unreserve_timer, dwc2_unreserve_timer_fn, 0);
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001524 timer_setup(&qh->wait_timer, dwc2_wait_timer_fn, 0);
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001525 qh->ep_type = ep_type;
1526 qh->ep_is_in = ep_is_in;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001527
1528 qh->data_toggle = DWC2_HC_PID_DATA0;
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001529 qh->maxp = maxp;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001530 INIT_LIST_HEAD(&qh->qtd_list);
1531 INIT_LIST_HEAD(&qh->qh_list_entry);
1532
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001533 qh->do_split = do_split;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001534 qh->dev_speed = dev_speed;
1535
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001536 if (ep_is_int || ep_is_isoc) {
1537 /* Compute scheduling parameters once and save them */
1538 int host_speed = do_split ? USB_SPEED_HIGH : dev_speed;
1539 struct dwc2_tt *dwc_tt = dwc2_host_get_tt_info(hsotg, urb->priv,
1540 mem_flags,
1541 &qh->ttport);
1542 int device_ns;
1543
1544 qh->dwc_tt = dwc_tt;
1545
1546 qh->host_us = NS_TO_US(usb_calc_bus_time(host_speed, ep_is_in,
1547 ep_is_isoc, bytecount));
1548 device_ns = usb_calc_bus_time(dev_speed, ep_is_in,
1549 ep_is_isoc, bytecount);
1550
1551 if (do_split && dwc_tt)
1552 device_ns += dwc_tt->usb_tt->think_time;
1553 qh->device_us = NS_TO_US(device_ns);
1554
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001555 qh->device_interval = urb->interval;
1556 qh->host_interval = urb->interval * (do_split ? 8 : 1);
1557
1558 /*
1559 * Schedule low speed if we're running the host in low or
1560 * full speed OR if we've got a "TT" to deal with to access this
1561 * device.
1562 */
1563 qh->schedule_low_speed = prtspd != HPRT0_SPD_HIGH_SPEED ||
1564 dwc_tt;
1565
1566 if (do_split) {
1567 /* We won't know num transfers until we schedule */
1568 qh->num_hs_transfers = -1;
1569 } else if (dev_speed == USB_SPEED_HIGH) {
1570 qh->num_hs_transfers = 1;
1571 } else {
1572 qh->num_hs_transfers = 0;
1573 }
1574
1575 /* We'll schedule later when we have something to do */
1576 }
1577
Paul Zimmerman7359d482013-03-11 17:47:59 -07001578 switch (dev_speed) {
1579 case USB_SPEED_LOW:
1580 speed = "low";
1581 break;
1582 case USB_SPEED_FULL:
1583 speed = "full";
1584 break;
1585 case USB_SPEED_HIGH:
1586 speed = "high";
1587 break;
1588 default:
1589 speed = "?";
1590 break;
1591 }
Paul Zimmerman7359d482013-03-11 17:47:59 -07001592
1593 switch (qh->ep_type) {
1594 case USB_ENDPOINT_XFER_ISOC:
1595 type = "isochronous";
1596 break;
1597 case USB_ENDPOINT_XFER_INT:
1598 type = "interrupt";
1599 break;
1600 case USB_ENDPOINT_XFER_CONTROL:
1601 type = "control";
1602 break;
1603 case USB_ENDPOINT_XFER_BULK:
1604 type = "bulk";
1605 break;
1606 default:
1607 type = "?";
1608 break;
1609 }
1610
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001611 dwc2_sch_dbg(hsotg, "QH=%p Init %s, %s speed, %d bytes:\n", qh, type,
1612 speed, bytecount);
1613 dwc2_sch_dbg(hsotg, "QH=%p ...addr=%d, ep=%d, %s\n", qh,
1614 dwc2_hcd_get_dev_addr(&urb->pipe_info),
1615 dwc2_hcd_get_ep_num(&urb->pipe_info),
1616 ep_is_in ? "IN" : "OUT");
1617 if (ep_is_int || ep_is_isoc) {
1618 dwc2_sch_dbg(hsotg,
1619 "QH=%p ...duration: host=%d us, device=%d us\n",
1620 qh, qh->host_us, qh->device_us);
1621 dwc2_sch_dbg(hsotg, "QH=%p ...interval: host=%d, device=%d\n",
1622 qh, qh->host_interval, qh->device_interval);
1623 if (qh->schedule_low_speed)
1624 dwc2_sch_dbg(hsotg, "QH=%p ...low speed schedule=%p\n",
1625 qh, dwc2_get_ls_map(hsotg, qh));
Paul Zimmerman7359d482013-03-11 17:47:59 -07001626 }
1627}
1628
1629/**
1630 * dwc2_hcd_qh_create() - Allocates and initializes a QH
1631 *
1632 * @hsotg: The HCD state structure for the DWC OTG controller
1633 * @urb: Holds the information about the device/endpoint needed
1634 * to initialize the QH
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04001635 * @mem_flags: Flags for allocating memory.
Paul Zimmerman7359d482013-03-11 17:47:59 -07001636 *
1637 * Return: Pointer to the newly allocated QH, or NULL on error
1638 */
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02001639struct dwc2_qh *dwc2_hcd_qh_create(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001640 struct dwc2_hcd_urb *urb,
Paul Zimmerman7359d482013-03-11 17:47:59 -07001641 gfp_t mem_flags)
1642{
1643 struct dwc2_qh *qh;
1644
Paul Zimmermanb2d6cb52013-07-13 14:53:51 -07001645 if (!urb->priv)
1646 return NULL;
1647
Paul Zimmerman7359d482013-03-11 17:47:59 -07001648 /* Allocate memory */
1649 qh = kzalloc(sizeof(*qh), mem_flags);
1650 if (!qh)
1651 return NULL;
1652
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001653 dwc2_qh_init(hsotg, qh, urb, mem_flags);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001654
John Youn95832c02017-01-23 14:57:26 -08001655 if (hsotg->params.dma_desc_enable &&
Paul Zimmerman7359d482013-03-11 17:47:59 -07001656 dwc2_hcd_qh_init_ddma(hsotg, qh, mem_flags) < 0) {
1657 dwc2_hcd_qh_free(hsotg, qh);
1658 return NULL;
1659 }
1660
1661 return qh;
1662}
1663
1664/**
1665 * dwc2_hcd_qh_free() - Frees the QH
1666 *
1667 * @hsotg: HCD instance
1668 * @qh: The QH to free
1669 *
1670 * QH should already be removed from the list. QTD list should already be empty
1671 * if called from URB Dequeue.
1672 *
1673 * Must NOT be called with interrupt disabled or spinlock held
1674 */
1675void dwc2_hcd_qh_free(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1676{
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001677 /* Make sure any unreserve work is finished. */
1678 if (del_timer_sync(&qh->unreserve_timer)) {
1679 unsigned long flags;
1680
1681 spin_lock_irqsave(&hsotg->lock, flags);
1682 dwc2_do_unreserve(hsotg, qh);
1683 spin_unlock_irqrestore(&hsotg->lock, flags);
1684 }
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001685
1686 /*
1687 * We don't have the lock so we can safely wait until the wait timer
1688 * finishes. Of course, at this point in time we'd better have set
1689 * wait_timer_active to false so if this timer was still pending it
1690 * won't do anything anyway, but we want it to finish before we free
1691 * memory.
1692 */
1693 del_timer_sync(&qh->wait_timer);
1694
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001695 dwc2_host_put_tt_info(hsotg, qh->dwc_tt);
Douglas Anderson17dd5b62016-01-28 18:19:59 -08001696
Douglas Anderson3bc04e22016-01-28 18:19:53 -08001697 if (qh->desc_list)
Paul Zimmerman7359d482013-03-11 17:47:59 -07001698 dwc2_hcd_qh_free_ddma(hsotg, qh);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001699 kfree(qh);
1700}
1701
1702/**
Paul Zimmerman7359d482013-03-11 17:47:59 -07001703 * dwc2_hcd_qh_add() - Adds a QH to either the non periodic or periodic
1704 * schedule if it is not already in the schedule. If the QH is already in
1705 * the schedule, no action is taken.
1706 *
1707 * @hsotg: The HCD state structure for the DWC OTG controller
1708 * @qh: The QH to add
1709 *
1710 * Return: 0 if successful, negative error code otherwise
1711 */
1712int dwc2_hcd_qh_add(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1713{
Dan Carpenterd31e6ca2013-11-25 17:11:29 +03001714 int status;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001715 u32 intr_mask;
1716
Matthijs Kooijmanb49977a2013-04-10 09:55:50 +02001717 if (dbg_qh(qh))
1718 dev_vdbg(hsotg->dev, "%s()\n", __func__);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001719
1720 if (!list_empty(&qh->qh_list_entry))
1721 /* QH already in a schedule */
Dan Carpenterd31e6ca2013-11-25 17:11:29 +03001722 return 0;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001723
1724 /* Add the new QH to the appropriate schedule */
1725 if (dwc2_qh_is_non_per(qh)) {
Douglas Andersonfb616e32016-01-28 18:20:08 -08001726 /* Schedule right away */
1727 qh->start_active_frame = hsotg->frame_number;
1728 qh->next_active_frame = qh->start_active_frame;
1729
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001730 if (qh->want_wait) {
1731 list_add_tail(&qh->qh_list_entry,
1732 &hsotg->non_periodic_sched_waiting);
1733 qh->wait_timer_cancel = false;
1734 mod_timer(&qh->wait_timer,
1735 jiffies + DWC2_RETRY_WAIT_DELAY + 1);
1736 } else {
1737 list_add_tail(&qh->qh_list_entry,
1738 &hsotg->non_periodic_sched_inactive);
1739 }
Dan Carpenter5e128472013-11-25 17:14:14 +03001740 return 0;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001741 }
1742
Dan Carpenter5e128472013-11-25 17:14:14 +03001743 status = dwc2_schedule_periodic(hsotg, qh);
1744 if (status)
1745 return status;
1746 if (!hsotg->periodic_qh_count) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001747 intr_mask = dwc2_readl(hsotg->regs + GINTMSK);
Dan Carpenter5e128472013-11-25 17:14:14 +03001748 intr_mask |= GINTSTS_SOF;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001749 dwc2_writel(intr_mask, hsotg->regs + GINTMSK);
Dan Carpenter5e128472013-11-25 17:14:14 +03001750 }
1751 hsotg->periodic_qh_count++;
1752
Dan Carpenterd31e6ca2013-11-25 17:11:29 +03001753 return 0;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001754}
1755
1756/**
1757 * dwc2_hcd_qh_unlink() - Removes a QH from either the non-periodic or periodic
1758 * schedule. Memory is not freed.
1759 *
1760 * @hsotg: The HCD state structure
1761 * @qh: QH to remove from schedule
1762 */
1763void dwc2_hcd_qh_unlink(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
1764{
1765 u32 intr_mask;
1766
1767 dev_vdbg(hsotg->dev, "%s()\n", __func__);
1768
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001769 /* If the wait_timer is pending, this will stop it from acting */
1770 qh->wait_timer_cancel = true;
1771
Paul Zimmerman7359d482013-03-11 17:47:59 -07001772 if (list_empty(&qh->qh_list_entry))
1773 /* QH is not in a schedule */
1774 return;
1775
1776 if (dwc2_qh_is_non_per(qh)) {
1777 if (hsotg->non_periodic_qh_ptr == &qh->qh_list_entry)
1778 hsotg->non_periodic_qh_ptr =
1779 hsotg->non_periodic_qh_ptr->next;
1780 list_del_init(&qh->qh_list_entry);
Dan Carpenter5e128472013-11-25 17:14:14 +03001781 return;
1782 }
1783
1784 dwc2_deschedule_periodic(hsotg, qh);
1785 hsotg->periodic_qh_count--;
Sevak Arakelyan907a4442016-04-27 20:20:53 -07001786 if (!hsotg->periodic_qh_count &&
John Youn95832c02017-01-23 14:57:26 -08001787 !hsotg->params.dma_desc_enable) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001788 intr_mask = dwc2_readl(hsotg->regs + GINTMSK);
Dan Carpenter5e128472013-11-25 17:14:14 +03001789 intr_mask &= ~GINTSTS_SOF;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001790 dwc2_writel(intr_mask, hsotg->regs + GINTMSK);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001791 }
1792}
1793
Douglas Andersonfb616e32016-01-28 18:20:08 -08001794/**
1795 * dwc2_next_for_periodic_split() - Set next_active_frame midway thru a split.
1796 *
1797 * This is called for setting next_active_frame for periodic splits for all but
1798 * the first packet of the split. Confusing? I thought so...
1799 *
1800 * Periodic splits are single low/full speed transfers that we end up splitting
1801 * up into several high speed transfers. They always fit into one full (1 ms)
1802 * frame but might be split over several microframes (125 us each). We to put
1803 * each of the parts on a very specific high speed frame.
1804 *
1805 * This function figures out where the next active uFrame needs to be.
1806 *
1807 * @hsotg: The HCD state structure
1808 * @qh: QH for the periodic transfer.
1809 * @frame_number: The current frame number.
1810 *
1811 * Return: number missed by (or 0 if we didn't miss).
Paul Zimmerman7359d482013-03-11 17:47:59 -07001812 */
Douglas Andersonfb616e32016-01-28 18:20:08 -08001813static int dwc2_next_for_periodic_split(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001814 struct dwc2_qh *qh, u16 frame_number)
Paul Zimmerman7359d482013-03-11 17:47:59 -07001815{
Douglas Andersonced9eee2016-01-28 18:20:04 -08001816 u16 old_frame = qh->next_active_frame;
Douglas Andersonfb616e32016-01-28 18:20:08 -08001817 u16 prev_frame_number = dwc2_frame_num_dec(frame_number, 1);
1818 int missed = 0;
1819 u16 incr;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001820
Douglas Andersonfb616e32016-01-28 18:20:08 -08001821 /*
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001822 * See dwc2_uframe_schedule_split() for split scheduling.
1823 *
Douglas Andersonfb616e32016-01-28 18:20:08 -08001824 * Basically: increment 1 normally, but 2 right after the start split
1825 * (except for ISOC out).
1826 */
1827 if (old_frame == qh->start_active_frame &&
1828 !(qh->ep_type == USB_ENDPOINT_XFER_ISOC && !qh->ep_is_in))
1829 incr = 2;
1830 else
1831 incr = 1;
1832
1833 qh->next_active_frame = dwc2_frame_num_inc(old_frame, incr);
1834
1835 /*
1836 * Note that it's OK for frame_number to be 1 frame past
1837 * next_active_frame. Remember that next_active_frame is supposed to
1838 * be 1 frame _before_ when we want to be scheduled. If we're 1 frame
1839 * past it just means schedule ASAP.
1840 *
1841 * It's _not_ OK, however, if we're more than one frame past.
1842 */
1843 if (dwc2_frame_num_gt(prev_frame_number, qh->next_active_frame)) {
1844 /*
1845 * OOPS, we missed. That's actually pretty bad since
1846 * the hub will be unhappy; try ASAP I guess.
1847 */
1848 missed = dwc2_frame_num_dec(prev_frame_number,
1849 qh->next_active_frame);
Douglas Andersonced9eee2016-01-28 18:20:04 -08001850 qh->next_active_frame = frame_number;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001851 }
Douglas Anderson74fc4a72016-01-28 18:19:58 -08001852
Douglas Andersonfb616e32016-01-28 18:20:08 -08001853 return missed;
1854}
1855
1856/**
1857 * dwc2_next_periodic_start() - Set next_active_frame for next transfer start
1858 *
1859 * This is called for setting next_active_frame for a periodic transfer for
1860 * all cases other than midway through a periodic split. This will also update
1861 * start_active_frame.
1862 *
1863 * Since we _always_ keep start_active_frame as the start of the previous
1864 * transfer this is normally pretty easy: we just add our interval to
1865 * start_active_frame and we've got our answer.
1866 *
1867 * The tricks come into play if we miss. In that case we'll look for the next
1868 * slot we can fit into.
1869 *
1870 * @hsotg: The HCD state structure
1871 * @qh: QH for the periodic transfer.
1872 * @frame_number: The current frame number.
1873 *
1874 * Return: number missed by (or 0 if we didn't miss).
1875 */
1876static int dwc2_next_periodic_start(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001877 struct dwc2_qh *qh, u16 frame_number)
Douglas Andersonfb616e32016-01-28 18:20:08 -08001878{
1879 int missed = 0;
1880 u16 interval = qh->host_interval;
1881 u16 prev_frame_number = dwc2_frame_num_dec(frame_number, 1);
1882
1883 qh->start_active_frame = dwc2_frame_num_inc(qh->start_active_frame,
1884 interval);
1885
1886 /*
1887 * The dwc2_frame_num_gt() function used below won't work terribly well
1888 * with if we just incremented by a really large intervals since the
1889 * frame counter only goes to 0x3fff. It's terribly unlikely that we
1890 * will have missed in this case anyway. Just go to exit. If we want
1891 * to try to do better we'll need to keep track of a bigger counter
1892 * somewhere in the driver and handle overflows.
1893 */
1894 if (interval >= 0x1000)
1895 goto exit;
1896
1897 /*
1898 * Test for misses, which is when it's too late to schedule.
1899 *
1900 * A few things to note:
1901 * - We compare against prev_frame_number since start_active_frame
1902 * and next_active_frame are always 1 frame before we want things
1903 * to be active and we assume we can still get scheduled in the
1904 * current frame number.
Douglas Anderson9cf1a602016-01-28 18:20:11 -08001905 * - It's possible for start_active_frame (now incremented) to be
1906 * next_active_frame if we got an EO MISS (even_odd miss) which
1907 * basically means that we detected there wasn't enough time for
1908 * the last packet and dwc2_hc_set_even_odd_frame() rescheduled us
1909 * at the last second. We want to make sure we don't schedule
1910 * another transfer for the same frame. My test webcam doesn't seem
1911 * terribly upset by missing a transfer but really doesn't like when
1912 * we do two transfers in the same frame.
Douglas Andersonfb616e32016-01-28 18:20:08 -08001913 * - Some misses are expected. Specifically, in order to work
1914 * perfectly dwc2 really needs quite spectacular interrupt latency
1915 * requirements. It needs to be able to handle its interrupts
1916 * completely within 125 us of them being asserted. That not only
1917 * means that the dwc2 interrupt handler needs to be fast but it
1918 * means that nothing else in the system has to block dwc2 for a long
1919 * time. We can help with the dwc2 parts of this, but it's hard to
1920 * guarantee that a system will have interrupt latency < 125 us, so
1921 * we have to be robust to some misses.
1922 */
Douglas Anderson9cf1a602016-01-28 18:20:11 -08001923 if (qh->start_active_frame == qh->next_active_frame ||
1924 dwc2_frame_num_gt(prev_frame_number, qh->start_active_frame)) {
Douglas Andersonfb616e32016-01-28 18:20:08 -08001925 u16 ideal_start = qh->start_active_frame;
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001926 int periods_in_map;
Douglas Andersonfb616e32016-01-28 18:20:08 -08001927
Douglas Anderson9f9f09b2016-01-28 18:20:12 -08001928 /*
1929 * Adjust interval as per gcd with map size.
1930 * See pmap_schedule() for more details here.
1931 */
1932 if (qh->do_split || qh->dev_speed == USB_SPEED_HIGH)
1933 periods_in_map = DWC2_HS_SCHEDULE_UFRAMES;
1934 else
1935 periods_in_map = DWC2_LS_SCHEDULE_FRAMES;
1936 interval = gcd(interval, periods_in_map);
Douglas Andersonfb616e32016-01-28 18:20:08 -08001937
1938 do {
1939 qh->start_active_frame = dwc2_frame_num_inc(
1940 qh->start_active_frame, interval);
1941 } while (dwc2_frame_num_gt(prev_frame_number,
1942 qh->start_active_frame));
1943
1944 missed = dwc2_frame_num_dec(qh->start_active_frame,
1945 ideal_start);
1946 }
1947
1948exit:
1949 qh->next_active_frame = qh->start_active_frame;
1950
1951 return missed;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001952}
1953
1954/*
1955 * Deactivates a QH. For non-periodic QHs, removes the QH from the active
1956 * non-periodic schedule. The QH is added to the inactive non-periodic
1957 * schedule if any QTDs are still attached to the QH.
1958 *
1959 * For periodic QHs, the QH is removed from the periodic queued schedule. If
1960 * there are any QTDs still attached to the QH, the QH is added to either the
1961 * periodic inactive schedule or the periodic ready schedule and its next
1962 * scheduled frame is calculated. The QH is placed in the ready schedule if
1963 * the scheduled frame has been reached already. Otherwise it's placed in the
1964 * inactive schedule. If there are no QTDs attached to the QH, the QH is
1965 * completely removed from the periodic schedule.
1966 */
1967void dwc2_hcd_qh_deactivate(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh,
1968 int sched_next_periodic_split)
1969{
Douglas Andersonfb616e32016-01-28 18:20:08 -08001970 u16 old_frame = qh->next_active_frame;
Dan Carpenter5e128472013-11-25 17:14:14 +03001971 u16 frame_number;
Douglas Andersonfb616e32016-01-28 18:20:08 -08001972 int missed;
Dan Carpenter5e128472013-11-25 17:14:14 +03001973
Matthijs Kooijmanb49977a2013-04-10 09:55:50 +02001974 if (dbg_qh(qh))
1975 dev_vdbg(hsotg->dev, "%s()\n", __func__);
Paul Zimmerman7359d482013-03-11 17:47:59 -07001976
1977 if (dwc2_qh_is_non_per(qh)) {
1978 dwc2_hcd_qh_unlink(hsotg, qh);
1979 if (!list_empty(&qh->qtd_list))
Douglas Anderson38d2b5f2017-12-12 10:30:31 -08001980 /* Add back to inactive/waiting non-periodic schedule */
Paul Zimmerman7359d482013-03-11 17:47:59 -07001981 dwc2_hcd_qh_add(hsotg, qh);
Dan Carpenter5e128472013-11-25 17:14:14 +03001982 return;
Paul Zimmerman7359d482013-03-11 17:47:59 -07001983 }
Dan Carpenter5e128472013-11-25 17:14:14 +03001984
Douglas Andersonfb616e32016-01-28 18:20:08 -08001985 /*
1986 * Use the real frame number rather than the cached value as of the
1987 * last SOF just to get us a little closer to reality. Note that
1988 * means we don't actually know if we've already handled the SOF
1989 * interrupt for this frame.
1990 */
Dan Carpenter5e128472013-11-25 17:14:14 +03001991 frame_number = dwc2_hcd_get_frame_number(hsotg);
1992
Douglas Andersonfb616e32016-01-28 18:20:08 -08001993 if (sched_next_periodic_split)
1994 missed = dwc2_next_for_periodic_split(hsotg, qh, frame_number);
1995 else
1996 missed = dwc2_next_periodic_start(hsotg, qh, frame_number);
1997
1998 dwc2_sch_vdbg(hsotg,
John Youn9da51972017-01-17 20:30:27 -08001999 "QH=%p next(%d) fn=%04x, sch=%04x=>%04x (%+d) miss=%d %s\n",
Douglas Andersonfb616e32016-01-28 18:20:08 -08002000 qh, sched_next_periodic_split, frame_number, old_frame,
2001 qh->next_active_frame,
2002 dwc2_frame_num_dec(qh->next_active_frame, old_frame),
2003 missed, missed ? "MISS" : "");
Dan Carpenter5e128472013-11-25 17:14:14 +03002004
2005 if (list_empty(&qh->qtd_list)) {
2006 dwc2_hcd_qh_unlink(hsotg, qh);
2007 return;
2008 }
Douglas Andersonfb616e32016-01-28 18:20:08 -08002009
Dan Carpenter5e128472013-11-25 17:14:14 +03002010 /*
2011 * Remove from periodic_sched_queued and move to
2012 * appropriate queue
Douglas Andersonfb616e32016-01-28 18:20:08 -08002013 *
2014 * Note: we purposely use the frame_number from the "hsotg" structure
2015 * since we know SOF interrupt will handle future frames.
Dan Carpenter5e128472013-11-25 17:14:14 +03002016 */
Douglas Andersonfb616e32016-01-28 18:20:08 -08002017 if (dwc2_frame_num_le(qh->next_active_frame, hsotg->frame_number))
Douglas Anderson94ef7ae2016-01-28 18:19:56 -08002018 list_move_tail(&qh->qh_list_entry,
2019 &hsotg->periodic_sched_ready);
Dan Carpenter5e128472013-11-25 17:14:14 +03002020 else
Douglas Anderson94ef7ae2016-01-28 18:19:56 -08002021 list_move_tail(&qh->qh_list_entry,
2022 &hsotg->periodic_sched_inactive);
Paul Zimmerman7359d482013-03-11 17:47:59 -07002023}
2024
2025/**
2026 * dwc2_hcd_qtd_init() - Initializes a QTD structure
2027 *
2028 * @qtd: The QTD to initialize
2029 * @urb: The associated URB
2030 */
2031void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb)
2032{
2033 qtd->urb = urb;
2034 if (dwc2_hcd_get_pipe_type(&urb->pipe_info) ==
2035 USB_ENDPOINT_XFER_CONTROL) {
2036 /*
2037 * The only time the QTD data toggle is used is on the data
2038 * phase of control transfers. This phase always starts with
2039 * DATA1.
2040 */
2041 qtd->data_toggle = DWC2_HC_PID_DATA1;
2042 qtd->control_phase = DWC2_CONTROL_SETUP;
2043 }
2044
2045 /* Start split */
2046 qtd->complete_split = 0;
2047 qtd->isoc_split_pos = DWC2_HCSPLT_XACTPOS_ALL;
2048 qtd->isoc_split_offset = 0;
2049 qtd->in_process = 0;
2050
2051 /* Store the qtd ptr in the urb to reference the QTD */
2052 urb->qtd = qtd;
2053}
2054
2055/**
2056 * dwc2_hcd_qtd_add() - Adds a QTD to the QTD-list of a QH
Gregory Herrero33ad2612015-04-29 22:09:15 +02002057 * Caller must hold driver lock.
Paul Zimmerman7359d482013-03-11 17:47:59 -07002058 *
2059 * @hsotg: The DWC HCD structure
2060 * @qtd: The QTD to add
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002061 * @qh: Queue head to add qtd to
Paul Zimmerman7359d482013-03-11 17:47:59 -07002062 *
2063 * Return: 0 if successful, negative error code otherwise
2064 *
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002065 * If the QH to which the QTD is added is not currently scheduled, it is placed
2066 * into the proper schedule based on its EP type.
Paul Zimmerman7359d482013-03-11 17:47:59 -07002067 */
2068int dwc2_hcd_qtd_add(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002069 struct dwc2_qh *qh)
Paul Zimmerman7359d482013-03-11 17:47:59 -07002070{
Paul Zimmermanb2d6cb52013-07-13 14:53:51 -07002071 int retval;
Paul Zimmerman7359d482013-03-11 17:47:59 -07002072
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002073 if (unlikely(!qh)) {
2074 dev_err(hsotg->dev, "%s: Invalid QH\n", __func__);
2075 retval = -EINVAL;
2076 goto fail;
Paul Zimmerman7359d482013-03-11 17:47:59 -07002077 }
2078
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002079 retval = dwc2_hcd_qh_add(hsotg, qh);
Paul Zimmermanb2d6cb52013-07-13 14:53:51 -07002080 if (retval)
2081 goto fail;
2082
Mian Yousaf Kaukabb58e6ce2015-06-29 11:05:28 +02002083 qtd->qh = qh;
2084 list_add_tail(&qtd->qtd_list_entry, &qh->qtd_list);
Paul Zimmermanb2d6cb52013-07-13 14:53:51 -07002085
2086 return 0;
Paul Zimmermanb2d6cb52013-07-13 14:53:51 -07002087fail:
Paul Zimmerman7359d482013-03-11 17:47:59 -07002088 return retval;
2089}