Linux Audio

Check our new training course

Loading...
v4.17
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * Copyright (c) 2001-2004 by David Brownell
   4 * Copyright (c) 2003 Michal Sojka, for high-speed iso transfers
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   5 */
   6
   7/* this file is part of ehci-hcd.c */
   8
   9/*-------------------------------------------------------------------------*/
  10
  11/*
  12 * EHCI scheduled transaction support:  interrupt, iso, split iso
  13 * These are called "periodic" transactions in the EHCI spec.
  14 *
  15 * Note that for interrupt transfers, the QH/QTD manipulation is shared
  16 * with the "asynchronous" transaction support (control/bulk transfers).
  17 * The only real difference is in how interrupt transfers are scheduled.
  18 *
  19 * For ISO, we make an "iso_stream" head to serve the same role as a QH.
  20 * It keeps track of every ITD (or SITD) that's linked, and holds enough
  21 * pre-calculated schedule data to make appending to the queue be quick.
  22 */
  23
  24static int ehci_get_frame(struct usb_hcd *hcd);
  25
  26/*
  27 * periodic_next_shadow - return "next" pointer on shadow list
  28 * @periodic: host pointer to qh/itd/sitd
  29 * @tag: hardware tag for type of this record
  30 */
  31static union ehci_shadow *
  32periodic_next_shadow(struct ehci_hcd *ehci, union ehci_shadow *periodic,
  33		__hc32 tag)
  34{
  35	switch (hc32_to_cpu(ehci, tag)) {
  36	case Q_TYPE_QH:
  37		return &periodic->qh->qh_next;
  38	case Q_TYPE_FSTN:
  39		return &periodic->fstn->fstn_next;
  40	case Q_TYPE_ITD:
  41		return &periodic->itd->itd_next;
  42	/* case Q_TYPE_SITD: */
  43	default:
  44		return &periodic->sitd->sitd_next;
  45	}
  46}
  47
  48static __hc32 *
  49shadow_next_periodic(struct ehci_hcd *ehci, union ehci_shadow *periodic,
  50		__hc32 tag)
  51{
  52	switch (hc32_to_cpu(ehci, tag)) {
  53	/* our ehci_shadow.qh is actually software part */
  54	case Q_TYPE_QH:
  55		return &periodic->qh->hw->hw_next;
  56	/* others are hw parts */
  57	default:
  58		return periodic->hw_next;
  59	}
  60}
  61
  62/* caller must hold ehci->lock */
  63static void periodic_unlink(struct ehci_hcd *ehci, unsigned frame, void *ptr)
  64{
  65	union ehci_shadow	*prev_p = &ehci->pshadow[frame];
  66	__hc32			*hw_p = &ehci->periodic[frame];
  67	union ehci_shadow	here = *prev_p;
  68
  69	/* find predecessor of "ptr"; hw and shadow lists are in sync */
  70	while (here.ptr && here.ptr != ptr) {
  71		prev_p = periodic_next_shadow(ehci, prev_p,
  72				Q_NEXT_TYPE(ehci, *hw_p));
  73		hw_p = shadow_next_periodic(ehci, &here,
  74				Q_NEXT_TYPE(ehci, *hw_p));
  75		here = *prev_p;
  76	}
  77	/* an interrupt entry (at list end) could have been shared */
  78	if (!here.ptr)
  79		return;
  80
  81	/* update shadow and hardware lists ... the old "next" pointers
  82	 * from ptr may still be in use, the caller updates them.
  83	 */
  84	*prev_p = *periodic_next_shadow(ehci, &here,
  85			Q_NEXT_TYPE(ehci, *hw_p));
  86
  87	if (!ehci->use_dummy_qh ||
  88	    *shadow_next_periodic(ehci, &here, Q_NEXT_TYPE(ehci, *hw_p))
  89			!= EHCI_LIST_END(ehci))
  90		*hw_p = *shadow_next_periodic(ehci, &here,
  91				Q_NEXT_TYPE(ehci, *hw_p));
  92	else
  93		*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
  94}
  95
  96/*-------------------------------------------------------------------------*/
  97
  98/* Bandwidth and TT management */
  99
 100/* Find the TT data structure for this device; create it if necessary */
 101static struct ehci_tt *find_tt(struct usb_device *udev)
 102{
 103	struct usb_tt		*utt = udev->tt;
 104	struct ehci_tt		*tt, **tt_index, **ptt;
 105	unsigned		port;
 106	bool			allocated_index = false;
 107
 108	if (!utt)
 109		return NULL;		/* Not below a TT */
 110
 111	/*
 112	 * Find/create our data structure.
 113	 * For hubs with a single TT, we get it directly.
 114	 * For hubs with multiple TTs, there's an extra level of pointers.
 115	 */
 116	tt_index = NULL;
 117	if (utt->multi) {
 118		tt_index = utt->hcpriv;
 119		if (!tt_index) {		/* Create the index array */
 120			tt_index = kzalloc(utt->hub->maxchild *
 121					sizeof(*tt_index), GFP_ATOMIC);
 122			if (!tt_index)
 123				return ERR_PTR(-ENOMEM);
 124			utt->hcpriv = tt_index;
 125			allocated_index = true;
 126		}
 127		port = udev->ttport - 1;
 128		ptt = &tt_index[port];
 129	} else {
 130		port = 0;
 131		ptt = (struct ehci_tt **) &utt->hcpriv;
 132	}
 133
 134	tt = *ptt;
 135	if (!tt) {				/* Create the ehci_tt */
 136		struct ehci_hcd		*ehci =
 137				hcd_to_ehci(bus_to_hcd(udev->bus));
 138
 139		tt = kzalloc(sizeof(*tt), GFP_ATOMIC);
 140		if (!tt) {
 141			if (allocated_index) {
 142				utt->hcpriv = NULL;
 143				kfree(tt_index);
 144			}
 145			return ERR_PTR(-ENOMEM);
 146		}
 147		list_add_tail(&tt->tt_list, &ehci->tt_list);
 148		INIT_LIST_HEAD(&tt->ps_list);
 149		tt->usb_tt = utt;
 150		tt->tt_port = port;
 151		*ptt = tt;
 152	}
 153
 154	return tt;
 155}
 156
 157/* Release the TT above udev, if it's not in use */
 158static void drop_tt(struct usb_device *udev)
 159{
 160	struct usb_tt		*utt = udev->tt;
 161	struct ehci_tt		*tt, **tt_index, **ptt;
 162	int			cnt, i;
 163
 164	if (!utt || !utt->hcpriv)
 165		return;		/* Not below a TT, or never allocated */
 166
 167	cnt = 0;
 168	if (utt->multi) {
 169		tt_index = utt->hcpriv;
 170		ptt = &tt_index[udev->ttport - 1];
 171
 172		/* How many entries are left in tt_index? */
 173		for (i = 0; i < utt->hub->maxchild; ++i)
 174			cnt += !!tt_index[i];
 175	} else {
 176		tt_index = NULL;
 177		ptt = (struct ehci_tt **) &utt->hcpriv;
 178	}
 179
 180	tt = *ptt;
 181	if (!tt || !list_empty(&tt->ps_list))
 182		return;		/* never allocated, or still in use */
 183
 184	list_del(&tt->tt_list);
 185	*ptt = NULL;
 186	kfree(tt);
 187	if (cnt == 1) {
 188		utt->hcpriv = NULL;
 189		kfree(tt_index);
 190	}
 191}
 192
 193static void bandwidth_dbg(struct ehci_hcd *ehci, int sign, char *type,
 194		struct ehci_per_sched *ps)
 195{
 196	dev_dbg(&ps->udev->dev,
 197			"ep %02x: %s %s @ %u+%u (%u.%u+%u) [%u/%u us] mask %04x\n",
 198			ps->ep->desc.bEndpointAddress,
 199			(sign >= 0 ? "reserve" : "release"), type,
 200			(ps->bw_phase << 3) + ps->phase_uf, ps->bw_uperiod,
 201			ps->phase, ps->phase_uf, ps->period,
 202			ps->usecs, ps->c_usecs, ps->cs_mask);
 203}
 204
 205static void reserve_release_intr_bandwidth(struct ehci_hcd *ehci,
 206		struct ehci_qh *qh, int sign)
 207{
 208	unsigned		start_uf;
 209	unsigned		i, j, m;
 210	int			usecs = qh->ps.usecs;
 211	int			c_usecs = qh->ps.c_usecs;
 212	int			tt_usecs = qh->ps.tt_usecs;
 213	struct ehci_tt		*tt;
 214
 215	if (qh->ps.phase == NO_FRAME)	/* Bandwidth wasn't reserved */
 216		return;
 217	start_uf = qh->ps.bw_phase << 3;
 218
 219	bandwidth_dbg(ehci, sign, "intr", &qh->ps);
 220
 221	if (sign < 0) {		/* Release bandwidth */
 222		usecs = -usecs;
 223		c_usecs = -c_usecs;
 224		tt_usecs = -tt_usecs;
 225	}
 226
 227	/* Entire transaction (high speed) or start-split (full/low speed) */
 228	for (i = start_uf + qh->ps.phase_uf; i < EHCI_BANDWIDTH_SIZE;
 229			i += qh->ps.bw_uperiod)
 230		ehci->bandwidth[i] += usecs;
 231
 232	/* Complete-split (full/low speed) */
 233	if (qh->ps.c_usecs) {
 234		/* NOTE: adjustments needed for FSTN */
 235		for (i = start_uf; i < EHCI_BANDWIDTH_SIZE;
 236				i += qh->ps.bw_uperiod) {
 237			for ((j = 2, m = 1 << (j+8)); j < 8; (++j, m <<= 1)) {
 238				if (qh->ps.cs_mask & m)
 239					ehci->bandwidth[i+j] += c_usecs;
 240			}
 241		}
 242	}
 243
 244	/* FS/LS bus bandwidth */
 245	if (tt_usecs) {
 246		tt = find_tt(qh->ps.udev);
 247		if (sign > 0)
 248			list_add_tail(&qh->ps.ps_list, &tt->ps_list);
 249		else
 250			list_del(&qh->ps.ps_list);
 251
 252		for (i = start_uf >> 3; i < EHCI_BANDWIDTH_FRAMES;
 253				i += qh->ps.bw_period)
 254			tt->bandwidth[i] += tt_usecs;
 255	}
 256}
 257
 258/*-------------------------------------------------------------------------*/
 259
 260static void compute_tt_budget(u8 budget_table[EHCI_BANDWIDTH_SIZE],
 261		struct ehci_tt *tt)
 262{
 263	struct ehci_per_sched	*ps;
 264	unsigned		uframe, uf, x;
 265	u8			*budget_line;
 266
 267	if (!tt)
 268		return;
 269	memset(budget_table, 0, EHCI_BANDWIDTH_SIZE);
 270
 271	/* Add up the contributions from all the endpoints using this TT */
 272	list_for_each_entry(ps, &tt->ps_list, ps_list) {
 273		for (uframe = ps->bw_phase << 3; uframe < EHCI_BANDWIDTH_SIZE;
 274				uframe += ps->bw_uperiod) {
 275			budget_line = &budget_table[uframe];
 276			x = ps->tt_usecs;
 277
 278			/* propagate the time forward */
 279			for (uf = ps->phase_uf; uf < 8; ++uf) {
 280				x += budget_line[uf];
 281
 282				/* Each microframe lasts 125 us */
 283				if (x <= 125) {
 284					budget_line[uf] = x;
 285					break;
 286				}
 287				budget_line[uf] = 125;
 288				x -= 125;
 289			}
 290		}
 291	}
 292}
 293
 294static int __maybe_unused same_tt(struct usb_device *dev1,
 295		struct usb_device *dev2)
 296{
 297	if (!dev1->tt || !dev2->tt)
 298		return 0;
 299	if (dev1->tt != dev2->tt)
 300		return 0;
 301	if (dev1->tt->multi)
 302		return dev1->ttport == dev2->ttport;
 303	else
 304		return 1;
 305}
 306
 307#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
 308
 309/* Which uframe does the low/fullspeed transfer start in?
 310 *
 311 * The parameter is the mask of ssplits in "H-frame" terms
 312 * and this returns the transfer start uframe in "B-frame" terms,
 313 * which allows both to match, e.g. a ssplit in "H-frame" uframe 0
 314 * will cause a transfer in "B-frame" uframe 0.  "B-frames" lag
 315 * "H-frames" by 1 uframe.  See the EHCI spec sec 4.5 and figure 4.7.
 316 */
 317static inline unsigned char tt_start_uframe(struct ehci_hcd *ehci, __hc32 mask)
 318{
 319	unsigned char smask = hc32_to_cpu(ehci, mask) & QH_SMASK;
 320
 321	if (!smask) {
 322		ehci_err(ehci, "invalid empty smask!\n");
 323		/* uframe 7 can't have bw so this will indicate failure */
 324		return 7;
 325	}
 326	return ffs(smask) - 1;
 327}
 328
 329static const unsigned char
 330max_tt_usecs[] = { 125, 125, 125, 125, 125, 125, 30, 0 };
 331
 332/* carryover low/fullspeed bandwidth that crosses uframe boundries */
 333static inline void carryover_tt_bandwidth(unsigned short tt_usecs[8])
 334{
 335	int i;
 336
 337	for (i = 0; i < 7; i++) {
 338		if (max_tt_usecs[i] < tt_usecs[i]) {
 339			tt_usecs[i+1] += tt_usecs[i] - max_tt_usecs[i];
 340			tt_usecs[i] = max_tt_usecs[i];
 341		}
 342	}
 343}
 344
 345/*
 346 * Return true if the device's tt's downstream bus is available for a
 347 * periodic transfer of the specified length (usecs), starting at the
 348 * specified frame/uframe.  Note that (as summarized in section 11.19
 349 * of the usb 2.0 spec) TTs can buffer multiple transactions for each
 350 * uframe.
 351 *
 352 * The uframe parameter is when the fullspeed/lowspeed transfer
 353 * should be executed in "B-frame" terms, which is the same as the
 354 * highspeed ssplit's uframe (which is in "H-frame" terms).  For example
 355 * a ssplit in "H-frame" 0 causes a transfer in "B-frame" 0.
 356 * See the EHCI spec sec 4.5 and fig 4.7.
 357 *
 358 * This checks if the full/lowspeed bus, at the specified starting uframe,
 359 * has the specified bandwidth available, according to rules listed
 360 * in USB 2.0 spec section 11.18.1 fig 11-60.
 361 *
 362 * This does not check if the transfer would exceed the max ssplit
 363 * limit of 16, specified in USB 2.0 spec section 11.18.4 requirement #4,
 364 * since proper scheduling limits ssplits to less than 16 per uframe.
 365 */
 366static int tt_available(
 367	struct ehci_hcd		*ehci,
 368	struct ehci_per_sched	*ps,
 369	struct ehci_tt		*tt,
 370	unsigned		frame,
 371	unsigned		uframe
 372)
 373{
 374	unsigned		period = ps->bw_period;
 375	unsigned		usecs = ps->tt_usecs;
 376
 377	if ((period == 0) || (uframe >= 7))	/* error */
 378		return 0;
 379
 380	for (frame &= period - 1; frame < EHCI_BANDWIDTH_FRAMES;
 381			frame += period) {
 382		unsigned	i, uf;
 383		unsigned short	tt_usecs[8];
 384
 385		if (tt->bandwidth[frame] + usecs > 900)
 386			return 0;
 387
 388		uf = frame << 3;
 389		for (i = 0; i < 8; (++i, ++uf))
 390			tt_usecs[i] = ehci->tt_budget[uf];
 391
 392		if (max_tt_usecs[uframe] <= tt_usecs[uframe])
 393			return 0;
 394
 395		/* special case for isoc transfers larger than 125us:
 396		 * the first and each subsequent fully used uframe
 397		 * must be empty, so as to not illegally delay
 398		 * already scheduled transactions
 399		 */
 400		if (usecs > 125) {
 401			int ufs = (usecs / 125);
 402
 403			for (i = uframe; i < (uframe + ufs) && i < 8; i++)
 404				if (tt_usecs[i] > 0)
 405					return 0;
 406		}
 407
 408		tt_usecs[uframe] += usecs;
 409
 410		carryover_tt_bandwidth(tt_usecs);
 411
 412		/* fail if the carryover pushed bw past the last uframe's limit */
 413		if (max_tt_usecs[7] < tt_usecs[7])
 414			return 0;
 415	}
 416
 417	return 1;
 418}
 419
 420#else
 421
 422/* return true iff the device's transaction translator is available
 423 * for a periodic transfer starting at the specified frame, using
 424 * all the uframes in the mask.
 425 */
 426static int tt_no_collision(
 427	struct ehci_hcd		*ehci,
 428	unsigned		period,
 429	struct usb_device	*dev,
 430	unsigned		frame,
 431	u32			uf_mask
 432)
 433{
 434	if (period == 0)	/* error */
 435		return 0;
 436
 437	/* note bandwidth wastage:  split never follows csplit
 438	 * (different dev or endpoint) until the next uframe.
 439	 * calling convention doesn't make that distinction.
 440	 */
 441	for (; frame < ehci->periodic_size; frame += period) {
 442		union ehci_shadow	here;
 443		__hc32			type;
 444		struct ehci_qh_hw	*hw;
 445
 446		here = ehci->pshadow[frame];
 447		type = Q_NEXT_TYPE(ehci, ehci->periodic[frame]);
 448		while (here.ptr) {
 449			switch (hc32_to_cpu(ehci, type)) {
 450			case Q_TYPE_ITD:
 451				type = Q_NEXT_TYPE(ehci, here.itd->hw_next);
 452				here = here.itd->itd_next;
 453				continue;
 454			case Q_TYPE_QH:
 455				hw = here.qh->hw;
 456				if (same_tt(dev, here.qh->ps.udev)) {
 457					u32		mask;
 458
 459					mask = hc32_to_cpu(ehci,
 460							hw->hw_info2);
 461					/* "knows" no gap is needed */
 462					mask |= mask >> 8;
 463					if (mask & uf_mask)
 464						break;
 465				}
 466				type = Q_NEXT_TYPE(ehci, hw->hw_next);
 467				here = here.qh->qh_next;
 468				continue;
 469			case Q_TYPE_SITD:
 470				if (same_tt(dev, here.sitd->urb->dev)) {
 471					u16		mask;
 472
 473					mask = hc32_to_cpu(ehci, here.sitd
 474								->hw_uframe);
 475					/* FIXME assumes no gap for IN! */
 476					mask |= mask >> 8;
 477					if (mask & uf_mask)
 478						break;
 479				}
 480				type = Q_NEXT_TYPE(ehci, here.sitd->hw_next);
 481				here = here.sitd->sitd_next;
 482				continue;
 483			/* case Q_TYPE_FSTN: */
 484			default:
 485				ehci_dbg(ehci,
 486					"periodic frame %d bogus type %d\n",
 487					frame, type);
 488			}
 489
 490			/* collision or error */
 491			return 0;
 492		}
 493	}
 494
 495	/* no collision */
 496	return 1;
 497}
 498
 499#endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
 500
 501/*-------------------------------------------------------------------------*/
 502
 503static void enable_periodic(struct ehci_hcd *ehci)
 504{
 505	if (ehci->periodic_count++)
 506		return;
 507
 508	/* Stop waiting to turn off the periodic schedule */
 509	ehci->enabled_hrtimer_events &= ~BIT(EHCI_HRTIMER_DISABLE_PERIODIC);
 510
 511	/* Don't start the schedule until PSS is 0 */
 512	ehci_poll_PSS(ehci);
 513	turn_on_io_watchdog(ehci);
 514}
 515
 516static void disable_periodic(struct ehci_hcd *ehci)
 517{
 518	if (--ehci->periodic_count)
 519		return;
 520
 521	/* Don't turn off the schedule until PSS is 1 */
 522	ehci_poll_PSS(ehci);
 523}
 524
 525/*-------------------------------------------------------------------------*/
 526
 527/* periodic schedule slots have iso tds (normal or split) first, then a
 528 * sparse tree for active interrupt transfers.
 529 *
 530 * this just links in a qh; caller guarantees uframe masks are set right.
 531 * no FSTN support (yet; ehci 0.96+)
 532 */
 533static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
 534{
 535	unsigned	i;
 536	unsigned	period = qh->ps.period;
 537
 538	dev_dbg(&qh->ps.udev->dev,
 539		"link qh%d-%04x/%p start %d [%d/%d us]\n",
 540		period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
 541			& (QH_CMASK | QH_SMASK),
 542		qh, qh->ps.phase, qh->ps.usecs, qh->ps.c_usecs);
 543
 544	/* high bandwidth, or otherwise every microframe */
 545	if (period == 0)
 546		period = 1;
 547
 548	for (i = qh->ps.phase; i < ehci->periodic_size; i += period) {
 549		union ehci_shadow	*prev = &ehci->pshadow[i];
 550		__hc32			*hw_p = &ehci->periodic[i];
 551		union ehci_shadow	here = *prev;
 552		__hc32			type = 0;
 553
 554		/* skip the iso nodes at list head */
 555		while (here.ptr) {
 556			type = Q_NEXT_TYPE(ehci, *hw_p);
 557			if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
 558				break;
 559			prev = periodic_next_shadow(ehci, prev, type);
 560			hw_p = shadow_next_periodic(ehci, &here, type);
 561			here = *prev;
 562		}
 563
 564		/* sorting each branch by period (slow-->fast)
 565		 * enables sharing interior tree nodes
 566		 */
 567		while (here.ptr && qh != here.qh) {
 568			if (qh->ps.period > here.qh->ps.period)
 569				break;
 570			prev = &here.qh->qh_next;
 571			hw_p = &here.qh->hw->hw_next;
 572			here = *prev;
 573		}
 574		/* link in this qh, unless some earlier pass did that */
 575		if (qh != here.qh) {
 576			qh->qh_next = here;
 577			if (here.qh)
 578				qh->hw->hw_next = *hw_p;
 579			wmb();
 580			prev->qh = qh;
 581			*hw_p = QH_NEXT(ehci, qh->qh_dma);
 582		}
 583	}
 584	qh->qh_state = QH_STATE_LINKED;
 585	qh->xacterrs = 0;
 586	qh->unlink_reason = 0;
 587
 588	/* update per-qh bandwidth for debugfs */
 589	ehci_to_hcd(ehci)->self.bandwidth_allocated += qh->ps.bw_period
 590		? ((qh->ps.usecs + qh->ps.c_usecs) / qh->ps.bw_period)
 591		: (qh->ps.usecs * 8);
 592
 593	list_add(&qh->intr_node, &ehci->intr_qh_list);
 594
 595	/* maybe enable periodic schedule processing */
 596	++ehci->intr_count;
 597	enable_periodic(ehci);
 598}
 599
 600static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
 601{
 602	unsigned	i;
 603	unsigned	period;
 604
 605	/*
 606	 * If qh is for a low/full-speed device, simply unlinking it
 607	 * could interfere with an ongoing split transaction.  To unlink
 608	 * it safely would require setting the QH_INACTIVATE bit and
 609	 * waiting at least one frame, as described in EHCI 4.12.2.5.
 610	 *
 611	 * We won't bother with any of this.  Instead, we assume that the
 612	 * only reason for unlinking an interrupt QH while the current URB
 613	 * is still active is to dequeue all the URBs (flush the whole
 614	 * endpoint queue).
 615	 *
 616	 * If rebalancing the periodic schedule is ever implemented, this
 617	 * approach will no longer be valid.
 618	 */
 619
 620	/* high bandwidth, or otherwise part of every microframe */
 621	period = qh->ps.period ? : 1;
 622
 623	for (i = qh->ps.phase; i < ehci->periodic_size; i += period)
 624		periodic_unlink(ehci, i, qh);
 625
 626	/* update per-qh bandwidth for debugfs */
 627	ehci_to_hcd(ehci)->self.bandwidth_allocated -= qh->ps.bw_period
 628		? ((qh->ps.usecs + qh->ps.c_usecs) / qh->ps.bw_period)
 629		: (qh->ps.usecs * 8);
 630
 631	dev_dbg(&qh->ps.udev->dev,
 632		"unlink qh%d-%04x/%p start %d [%d/%d us]\n",
 633		qh->ps.period,
 634		hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
 635		qh, qh->ps.phase, qh->ps.usecs, qh->ps.c_usecs);
 636
 637	/* qh->qh_next still "live" to HC */
 638	qh->qh_state = QH_STATE_UNLINK;
 639	qh->qh_next.ptr = NULL;
 640
 641	if (ehci->qh_scan_next == qh)
 642		ehci->qh_scan_next = list_entry(qh->intr_node.next,
 643				struct ehci_qh, intr_node);
 644	list_del(&qh->intr_node);
 645}
 646
 647static void cancel_unlink_wait_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 648{
 649	if (qh->qh_state != QH_STATE_LINKED ||
 650			list_empty(&qh->unlink_node))
 651		return;
 652
 653	list_del_init(&qh->unlink_node);
 654
 655	/*
 656	 * TODO: disable the event of EHCI_HRTIMER_START_UNLINK_INTR for
 657	 * avoiding unnecessary CPU wakeup
 658	 */
 659}
 660
 661static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 662{
 663	/* If the QH isn't linked then there's nothing we can do. */
 664	if (qh->qh_state != QH_STATE_LINKED)
 665		return;
 666
 667	/* if the qh is waiting for unlink, cancel it now */
 668	cancel_unlink_wait_intr(ehci, qh);
 669
 670	qh_unlink_periodic(ehci, qh);
 671
 672	/* Make sure the unlinks are visible before starting the timer */
 673	wmb();
 674
 675	/*
 676	 * The EHCI spec doesn't say how long it takes the controller to
 677	 * stop accessing an unlinked interrupt QH.  The timer delay is
 678	 * 9 uframes; presumably that will be long enough.
 679	 */
 680	qh->unlink_cycle = ehci->intr_unlink_cycle;
 681
 682	/* New entries go at the end of the intr_unlink list */
 683	list_add_tail(&qh->unlink_node, &ehci->intr_unlink);
 684
 685	if (ehci->intr_unlinking)
 686		;	/* Avoid recursive calls */
 687	else if (ehci->rh_state < EHCI_RH_RUNNING)
 688		ehci_handle_intr_unlinks(ehci);
 689	else if (ehci->intr_unlink.next == &qh->unlink_node) {
 690		ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
 691		++ehci->intr_unlink_cycle;
 692	}
 693}
 694
 695/*
 696 * It is common only one intr URB is scheduled on one qh, and
 697 * given complete() is run in tasklet context, introduce a bit
 698 * delay to avoid unlink qh too early.
 699 */
 700static void start_unlink_intr_wait(struct ehci_hcd *ehci,
 701				   struct ehci_qh *qh)
 702{
 703	qh->unlink_cycle = ehci->intr_unlink_wait_cycle;
 704
 705	/* New entries go at the end of the intr_unlink_wait list */
 706	list_add_tail(&qh->unlink_node, &ehci->intr_unlink_wait);
 707
 708	if (ehci->rh_state < EHCI_RH_RUNNING)
 709		ehci_handle_start_intr_unlinks(ehci);
 710	else if (ehci->intr_unlink_wait.next == &qh->unlink_node) {
 711		ehci_enable_event(ehci, EHCI_HRTIMER_START_UNLINK_INTR, true);
 712		++ehci->intr_unlink_wait_cycle;
 713	}
 714}
 715
 716static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 717{
 718	struct ehci_qh_hw	*hw = qh->hw;
 719	int			rc;
 720
 721	qh->qh_state = QH_STATE_IDLE;
 722	hw->hw_next = EHCI_LIST_END(ehci);
 723
 724	if (!list_empty(&qh->qtd_list))
 725		qh_completions(ehci, qh);
 726
 727	/* reschedule QH iff another request is queued */
 728	if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
 729		rc = qh_schedule(ehci, qh);
 730		if (rc == 0) {
 731			qh_refresh(ehci, qh);
 732			qh_link_periodic(ehci, qh);
 733		}
 734
 735		/* An error here likely indicates handshake failure
 736		 * or no space left in the schedule.  Neither fault
 737		 * should happen often ...
 738		 *
 739		 * FIXME kill the now-dysfunctional queued urbs
 740		 */
 741		else {
 742			ehci_err(ehci, "can't reschedule qh %p, err %d\n",
 743					qh, rc);
 744		}
 745	}
 746
 747	/* maybe turn off periodic schedule */
 748	--ehci->intr_count;
 749	disable_periodic(ehci);
 750}
 751
 752/*-------------------------------------------------------------------------*/
 753
 754static int check_period(
 755	struct ehci_hcd *ehci,
 756	unsigned	frame,
 757	unsigned	uframe,
 758	unsigned	uperiod,
 759	unsigned	usecs
 760) {
 761	/* complete split running into next frame?
 762	 * given FSTN support, we could sometimes check...
 763	 */
 764	if (uframe >= 8)
 765		return 0;
 766
 767	/* convert "usecs we need" to "max already claimed" */
 768	usecs = ehci->uframe_periodic_max - usecs;
 769
 770	for (uframe += frame << 3; uframe < EHCI_BANDWIDTH_SIZE;
 771			uframe += uperiod) {
 772		if (ehci->bandwidth[uframe] > usecs)
 773			return 0;
 774	}
 775
 776	/* success! */
 777	return 1;
 778}
 779
 780static int check_intr_schedule(
 781	struct ehci_hcd		*ehci,
 782	unsigned		frame,
 783	unsigned		uframe,
 784	struct ehci_qh		*qh,
 785	unsigned		*c_maskp,
 786	struct ehci_tt		*tt
 787)
 788{
 789	int		retval = -ENOSPC;
 790	u8		mask = 0;
 791
 792	if (qh->ps.c_usecs && uframe >= 6)	/* FSTN territory? */
 793		goto done;
 794
 795	if (!check_period(ehci, frame, uframe, qh->ps.bw_uperiod, qh->ps.usecs))
 796		goto done;
 797	if (!qh->ps.c_usecs) {
 798		retval = 0;
 799		*c_maskp = 0;
 800		goto done;
 801	}
 802
 803#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
 804	if (tt_available(ehci, &qh->ps, tt, frame, uframe)) {
 805		unsigned i;
 806
 807		/* TODO : this may need FSTN for SSPLIT in uframe 5. */
 808		for (i = uframe+2; i < 8 && i <= uframe+4; i++)
 809			if (!check_period(ehci, frame, i,
 810					qh->ps.bw_uperiod, qh->ps.c_usecs))
 811				goto done;
 812			else
 813				mask |= 1 << i;
 814
 815		retval = 0;
 816
 817		*c_maskp = mask;
 818	}
 819#else
 820	/* Make sure this tt's buffer is also available for CSPLITs.
 821	 * We pessimize a bit; probably the typical full speed case
 822	 * doesn't need the second CSPLIT.
 823	 *
 824	 * NOTE:  both SPLIT and CSPLIT could be checked in just
 825	 * one smart pass...
 826	 */
 827	mask = 0x03 << (uframe + qh->gap_uf);
 828	*c_maskp = mask;
 829
 830	mask |= 1 << uframe;
 831	if (tt_no_collision(ehci, qh->ps.bw_period, qh->ps.udev, frame, mask)) {
 832		if (!check_period(ehci, frame, uframe + qh->gap_uf + 1,
 833				qh->ps.bw_uperiod, qh->ps.c_usecs))
 834			goto done;
 835		if (!check_period(ehci, frame, uframe + qh->gap_uf,
 836				qh->ps.bw_uperiod, qh->ps.c_usecs))
 837			goto done;
 838		retval = 0;
 839	}
 840#endif
 841done:
 842	return retval;
 843}
 844
 845/* "first fit" scheduling policy used the first time through,
 846 * or when the previous schedule slot can't be re-used.
 847 */
 848static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
 849{
 850	int		status = 0;
 851	unsigned	uframe;
 852	unsigned	c_mask;
 853	struct ehci_qh_hw	*hw = qh->hw;
 854	struct ehci_tt		*tt;
 855
 856	hw->hw_next = EHCI_LIST_END(ehci);
 857
 858	/* reuse the previous schedule slots, if we can */
 859	if (qh->ps.phase != NO_FRAME) {
 860		ehci_dbg(ehci, "reused qh %p schedule\n", qh);
 861		return 0;
 862	}
 863
 864	uframe = 0;
 865	c_mask = 0;
 866	tt = find_tt(qh->ps.udev);
 867	if (IS_ERR(tt)) {
 868		status = PTR_ERR(tt);
 869		goto done;
 870	}
 871	compute_tt_budget(ehci->tt_budget, tt);
 872
 873	/* else scan the schedule to find a group of slots such that all
 874	 * uframes have enough periodic bandwidth available.
 875	 */
 876	/* "normal" case, uframing flexible except with splits */
 877	if (qh->ps.bw_period) {
 878		int		i;
 879		unsigned	frame;
 880
 881		for (i = qh->ps.bw_period; i > 0; --i) {
 882			frame = ++ehci->random_frame & (qh->ps.bw_period - 1);
 883			for (uframe = 0; uframe < 8; uframe++) {
 884				status = check_intr_schedule(ehci,
 885						frame, uframe, qh, &c_mask, tt);
 886				if (status == 0)
 887					goto got_it;
 888			}
 889		}
 890
 891	/* qh->ps.bw_period == 0 means every uframe */
 892	} else {
 893		status = check_intr_schedule(ehci, 0, 0, qh, &c_mask, tt);
 894	}
 895	if (status)
 896		goto done;
 897
 898 got_it:
 899	qh->ps.phase = (qh->ps.period ? ehci->random_frame &
 900			(qh->ps.period - 1) : 0);
 901	qh->ps.bw_phase = qh->ps.phase & (qh->ps.bw_period - 1);
 902	qh->ps.phase_uf = uframe;
 903	qh->ps.cs_mask = qh->ps.period ?
 904			(c_mask << 8) | (1 << uframe) :
 905			QH_SMASK;
 906
 907	/* reset S-frame and (maybe) C-frame masks */
 908	hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
 909	hw->hw_info2 |= cpu_to_hc32(ehci, qh->ps.cs_mask);
 910	reserve_release_intr_bandwidth(ehci, qh, 1);
 911
 912done:
 913	return status;
 914}
 915
 916static int intr_submit(
 917	struct ehci_hcd		*ehci,
 918	struct urb		*urb,
 919	struct list_head	*qtd_list,
 920	gfp_t			mem_flags
 921) {
 922	unsigned		epnum;
 923	unsigned long		flags;
 924	struct ehci_qh		*qh;
 925	int			status;
 926	struct list_head	empty;
 927
 928	/* get endpoint and transfer/schedule data */
 929	epnum = urb->ep->desc.bEndpointAddress;
 930
 931	spin_lock_irqsave(&ehci->lock, flags);
 932
 933	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
 934		status = -ESHUTDOWN;
 935		goto done_not_linked;
 936	}
 937	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
 938	if (unlikely(status))
 939		goto done_not_linked;
 940
 941	/* get qh and force any scheduling errors */
 942	INIT_LIST_HEAD(&empty);
 943	qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
 944	if (qh == NULL) {
 945		status = -ENOMEM;
 946		goto done;
 947	}
 948	if (qh->qh_state == QH_STATE_IDLE) {
 949		status = qh_schedule(ehci, qh);
 950		if (status)
 951			goto done;
 952	}
 953
 954	/* then queue the urb's tds to the qh */
 955	qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
 956	BUG_ON(qh == NULL);
 957
 958	/* stuff into the periodic schedule */
 959	if (qh->qh_state == QH_STATE_IDLE) {
 960		qh_refresh(ehci, qh);
 961		qh_link_periodic(ehci, qh);
 962	} else {
 963		/* cancel unlink wait for the qh */
 964		cancel_unlink_wait_intr(ehci, qh);
 965	}
 966
 967	/* ... update usbfs periodic stats */
 968	ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
 969
 970done:
 971	if (unlikely(status))
 972		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
 973done_not_linked:
 974	spin_unlock_irqrestore(&ehci->lock, flags);
 975	if (status)
 976		qtd_list_free(ehci, urb, qtd_list);
 977
 978	return status;
 979}
 980
 981static void scan_intr(struct ehci_hcd *ehci)
 982{
 983	struct ehci_qh		*qh;
 984
 985	list_for_each_entry_safe(qh, ehci->qh_scan_next, &ehci->intr_qh_list,
 986			intr_node) {
 987
 988		/* clean any finished work for this qh */
 989		if (!list_empty(&qh->qtd_list)) {
 990			int temp;
 991
 992			/*
 993			 * Unlinks could happen here; completion reporting
 994			 * drops the lock.  That's why ehci->qh_scan_next
 995			 * always holds the next qh to scan; if the next qh
 996			 * gets unlinked then ehci->qh_scan_next is adjusted
 997			 * in qh_unlink_periodic().
 998			 */
 999			temp = qh_completions(ehci, qh);
1000			if (unlikely(temp))
1001				start_unlink_intr(ehci, qh);
1002			else if (unlikely(list_empty(&qh->qtd_list) &&
1003					qh->qh_state == QH_STATE_LINKED))
1004				start_unlink_intr_wait(ehci, qh);
1005		}
1006	}
1007}
1008
1009/*-------------------------------------------------------------------------*/
1010
1011/* ehci_iso_stream ops work with both ITD and SITD */
1012
1013static struct ehci_iso_stream *
1014iso_stream_alloc(gfp_t mem_flags)
1015{
1016	struct ehci_iso_stream *stream;
1017
1018	stream = kzalloc(sizeof(*stream), mem_flags);
1019	if (likely(stream != NULL)) {
1020		INIT_LIST_HEAD(&stream->td_list);
1021		INIT_LIST_HEAD(&stream->free_list);
1022		stream->next_uframe = NO_FRAME;
1023		stream->ps.phase = NO_FRAME;
1024	}
1025	return stream;
1026}
1027
1028static void
1029iso_stream_init(
1030	struct ehci_hcd		*ehci,
1031	struct ehci_iso_stream	*stream,
1032	struct urb		*urb
1033)
1034{
1035	static const u8 smask_out[] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
1036
1037	struct usb_device	*dev = urb->dev;
1038	u32			buf1;
1039	unsigned		epnum, maxp;
1040	int			is_input;
1041	unsigned		tmp;
1042
1043	/*
1044	 * this might be a "high bandwidth" highspeed endpoint,
1045	 * as encoded in the ep descriptor's wMaxPacket field
1046	 */
1047	epnum = usb_pipeendpoint(urb->pipe);
1048	is_input = usb_pipein(urb->pipe) ? USB_DIR_IN : 0;
1049	maxp = usb_endpoint_maxp(&urb->ep->desc);
1050	buf1 = is_input ? 1 << 11 : 0;
1051
1052	/* knows about ITD vs SITD */
1053	if (dev->speed == USB_SPEED_HIGH) {
1054		unsigned multi = usb_endpoint_maxp_mult(&urb->ep->desc);
1055
1056		stream->highspeed = 1;
1057
1058		buf1 |= maxp;
1059		maxp *= multi;
1060
1061		stream->buf0 = cpu_to_hc32(ehci, (epnum << 8) | dev->devnum);
1062		stream->buf1 = cpu_to_hc32(ehci, buf1);
1063		stream->buf2 = cpu_to_hc32(ehci, multi);
1064
1065		/* usbfs wants to report the average usecs per frame tied up
1066		 * when transfers on this endpoint are scheduled ...
1067		 */
1068		stream->ps.usecs = HS_USECS_ISO(maxp);
1069
1070		/* period for bandwidth allocation */
1071		tmp = min_t(unsigned, EHCI_BANDWIDTH_SIZE,
1072				1 << (urb->ep->desc.bInterval - 1));
1073
1074		/* Allow urb->interval to override */
1075		stream->ps.bw_uperiod = min_t(unsigned, tmp, urb->interval);
1076
1077		stream->uperiod = urb->interval;
1078		stream->ps.period = urb->interval >> 3;
1079		stream->bandwidth = stream->ps.usecs * 8 /
1080				stream->ps.bw_uperiod;
1081
1082	} else {
1083		u32		addr;
1084		int		think_time;
1085		int		hs_transfers;
1086
1087		addr = dev->ttport << 24;
1088		if (!ehci_is_TDI(ehci)
1089				|| (dev->tt->hub !=
1090					ehci_to_hcd(ehci)->self.root_hub))
1091			addr |= dev->tt->hub->devnum << 16;
1092		addr |= epnum << 8;
1093		addr |= dev->devnum;
1094		stream->ps.usecs = HS_USECS_ISO(maxp);
1095		think_time = dev->tt->think_time;
1096		stream->ps.tt_usecs = NS_TO_US(think_time + usb_calc_bus_time(
1097				dev->speed, is_input, 1, maxp));
1098		hs_transfers = max(1u, (maxp + 187) / 188);
1099		if (is_input) {
1100			u32	tmp;
1101
1102			addr |= 1 << 31;
1103			stream->ps.c_usecs = stream->ps.usecs;
1104			stream->ps.usecs = HS_USECS_ISO(1);
1105			stream->ps.cs_mask = 1;
1106
1107			/* c-mask as specified in USB 2.0 11.18.4 3.c */
1108			tmp = (1 << (hs_transfers + 2)) - 1;
1109			stream->ps.cs_mask |= tmp << (8 + 2);
1110		} else
1111			stream->ps.cs_mask = smask_out[hs_transfers - 1];
1112
1113		/* period for bandwidth allocation */
1114		tmp = min_t(unsigned, EHCI_BANDWIDTH_FRAMES,
1115				1 << (urb->ep->desc.bInterval - 1));
1116
1117		/* Allow urb->interval to override */
1118		stream->ps.bw_period = min_t(unsigned, tmp, urb->interval);
1119		stream->ps.bw_uperiod = stream->ps.bw_period << 3;
1120
1121		stream->ps.period = urb->interval;
1122		stream->uperiod = urb->interval << 3;
1123		stream->bandwidth = (stream->ps.usecs + stream->ps.c_usecs) /
1124				stream->ps.bw_period;
1125
1126		/* stream->splits gets created from cs_mask later */
1127		stream->address = cpu_to_hc32(ehci, addr);
1128	}
1129
1130	stream->ps.udev = dev;
1131	stream->ps.ep = urb->ep;
1132
1133	stream->bEndpointAddress = is_input | epnum;
1134	stream->maxp = maxp;
1135}
1136
1137static struct ehci_iso_stream *
1138iso_stream_find(struct ehci_hcd *ehci, struct urb *urb)
1139{
1140	unsigned		epnum;
1141	struct ehci_iso_stream	*stream;
1142	struct usb_host_endpoint *ep;
1143	unsigned long		flags;
1144
1145	epnum = usb_pipeendpoint (urb->pipe);
1146	if (usb_pipein(urb->pipe))
1147		ep = urb->dev->ep_in[epnum];
1148	else
1149		ep = urb->dev->ep_out[epnum];
1150
1151	spin_lock_irqsave(&ehci->lock, flags);
1152	stream = ep->hcpriv;
1153
1154	if (unlikely(stream == NULL)) {
1155		stream = iso_stream_alloc(GFP_ATOMIC);
1156		if (likely(stream != NULL)) {
1157			ep->hcpriv = stream;
1158			iso_stream_init(ehci, stream, urb);
1159		}
1160
1161	/* if dev->ep [epnum] is a QH, hw is set */
1162	} else if (unlikely(stream->hw != NULL)) {
1163		ehci_dbg(ehci, "dev %s ep%d%s, not iso??\n",
1164			urb->dev->devpath, epnum,
1165			usb_pipein(urb->pipe) ? "in" : "out");
1166		stream = NULL;
1167	}
1168
1169	spin_unlock_irqrestore(&ehci->lock, flags);
1170	return stream;
1171}
1172
1173/*-------------------------------------------------------------------------*/
1174
1175/* ehci_iso_sched ops can be ITD-only or SITD-only */
1176
1177static struct ehci_iso_sched *
1178iso_sched_alloc(unsigned packets, gfp_t mem_flags)
1179{
1180	struct ehci_iso_sched	*iso_sched;
1181	int			size = sizeof(*iso_sched);
1182
1183	size += packets * sizeof(struct ehci_iso_packet);
1184	iso_sched = kzalloc(size, mem_flags);
1185	if (likely(iso_sched != NULL))
1186		INIT_LIST_HEAD(&iso_sched->td_list);
1187
1188	return iso_sched;
1189}
1190
1191static inline void
1192itd_sched_init(
1193	struct ehci_hcd		*ehci,
1194	struct ehci_iso_sched	*iso_sched,
1195	struct ehci_iso_stream	*stream,
1196	struct urb		*urb
1197)
1198{
1199	unsigned	i;
1200	dma_addr_t	dma = urb->transfer_dma;
1201
1202	/* how many uframes are needed for these transfers */
1203	iso_sched->span = urb->number_of_packets * stream->uperiod;
1204
1205	/* figure out per-uframe itd fields that we'll need later
1206	 * when we fit new itds into the schedule.
1207	 */
1208	for (i = 0; i < urb->number_of_packets; i++) {
1209		struct ehci_iso_packet	*uframe = &iso_sched->packet[i];
1210		unsigned		length;
1211		dma_addr_t		buf;
1212		u32			trans;
1213
1214		length = urb->iso_frame_desc[i].length;
1215		buf = dma + urb->iso_frame_desc[i].offset;
1216
1217		trans = EHCI_ISOC_ACTIVE;
1218		trans |= buf & 0x0fff;
1219		if (unlikely(((i + 1) == urb->number_of_packets))
1220				&& !(urb->transfer_flags & URB_NO_INTERRUPT))
1221			trans |= EHCI_ITD_IOC;
1222		trans |= length << 16;
1223		uframe->transaction = cpu_to_hc32(ehci, trans);
1224
1225		/* might need to cross a buffer page within a uframe */
1226		uframe->bufp = (buf & ~(u64)0x0fff);
1227		buf += length;
1228		if (unlikely((uframe->bufp != (buf & ~(u64)0x0fff))))
1229			uframe->cross = 1;
1230	}
1231}
1232
1233static void
1234iso_sched_free(
1235	struct ehci_iso_stream	*stream,
1236	struct ehci_iso_sched	*iso_sched
1237)
1238{
1239	if (!iso_sched)
1240		return;
1241	/* caller must hold ehci->lock! */
1242	list_splice(&iso_sched->td_list, &stream->free_list);
1243	kfree(iso_sched);
1244}
1245
1246static int
1247itd_urb_transaction(
1248	struct ehci_iso_stream	*stream,
1249	struct ehci_hcd		*ehci,
1250	struct urb		*urb,
1251	gfp_t			mem_flags
1252)
1253{
1254	struct ehci_itd		*itd;
1255	dma_addr_t		itd_dma;
1256	int			i;
1257	unsigned		num_itds;
1258	struct ehci_iso_sched	*sched;
1259	unsigned long		flags;
1260
1261	sched = iso_sched_alloc(urb->number_of_packets, mem_flags);
1262	if (unlikely(sched == NULL))
1263		return -ENOMEM;
1264
1265	itd_sched_init(ehci, sched, stream, urb);
1266
1267	if (urb->interval < 8)
1268		num_itds = 1 + (sched->span + 7) / 8;
1269	else
1270		num_itds = urb->number_of_packets;
1271
1272	/* allocate/init ITDs */
1273	spin_lock_irqsave(&ehci->lock, flags);
1274	for (i = 0; i < num_itds; i++) {
1275
1276		/*
1277		 * Use iTDs from the free list, but not iTDs that may
1278		 * still be in use by the hardware.
1279		 */
1280		if (likely(!list_empty(&stream->free_list))) {
1281			itd = list_first_entry(&stream->free_list,
1282					struct ehci_itd, itd_list);
1283			if (itd->frame == ehci->now_frame)
1284				goto alloc_itd;
1285			list_del(&itd->itd_list);
1286			itd_dma = itd->itd_dma;
1287		} else {
1288 alloc_itd:
1289			spin_unlock_irqrestore(&ehci->lock, flags);
1290			itd = dma_pool_alloc(ehci->itd_pool, mem_flags,
1291					&itd_dma);
1292			spin_lock_irqsave(&ehci->lock, flags);
1293			if (!itd) {
1294				iso_sched_free(stream, sched);
1295				spin_unlock_irqrestore(&ehci->lock, flags);
1296				return -ENOMEM;
1297			}
1298		}
1299
1300		memset(itd, 0, sizeof(*itd));
1301		itd->itd_dma = itd_dma;
1302		itd->frame = NO_FRAME;
1303		list_add(&itd->itd_list, &sched->td_list);
1304	}
1305	spin_unlock_irqrestore(&ehci->lock, flags);
1306
1307	/* temporarily store schedule info in hcpriv */
1308	urb->hcpriv = sched;
1309	urb->error_count = 0;
1310	return 0;
1311}
1312
1313/*-------------------------------------------------------------------------*/
1314
1315static void reserve_release_iso_bandwidth(struct ehci_hcd *ehci,
1316		struct ehci_iso_stream *stream, int sign)
1317{
1318	unsigned		uframe;
1319	unsigned		i, j;
1320	unsigned		s_mask, c_mask, m;
1321	int			usecs = stream->ps.usecs;
1322	int			c_usecs = stream->ps.c_usecs;
1323	int			tt_usecs = stream->ps.tt_usecs;
1324	struct ehci_tt		*tt;
1325
1326	if (stream->ps.phase == NO_FRAME)	/* Bandwidth wasn't reserved */
1327		return;
1328	uframe = stream->ps.bw_phase << 3;
1329
1330	bandwidth_dbg(ehci, sign, "iso", &stream->ps);
1331
1332	if (sign < 0) {		/* Release bandwidth */
1333		usecs = -usecs;
1334		c_usecs = -c_usecs;
1335		tt_usecs = -tt_usecs;
1336	}
1337
1338	if (!stream->splits) {		/* High speed */
1339		for (i = uframe + stream->ps.phase_uf; i < EHCI_BANDWIDTH_SIZE;
1340				i += stream->ps.bw_uperiod)
1341			ehci->bandwidth[i] += usecs;
1342
1343	} else {			/* Full speed */
1344		s_mask = stream->ps.cs_mask;
1345		c_mask = s_mask >> 8;
1346
1347		/* NOTE: adjustment needed for frame overflow */
1348		for (i = uframe; i < EHCI_BANDWIDTH_SIZE;
1349				i += stream->ps.bw_uperiod) {
1350			for ((j = stream->ps.phase_uf, m = 1 << j); j < 8;
1351					(++j, m <<= 1)) {
1352				if (s_mask & m)
1353					ehci->bandwidth[i+j] += usecs;
1354				else if (c_mask & m)
1355					ehci->bandwidth[i+j] += c_usecs;
1356			}
1357		}
1358
1359		tt = find_tt(stream->ps.udev);
1360		if (sign > 0)
1361			list_add_tail(&stream->ps.ps_list, &tt->ps_list);
1362		else
1363			list_del(&stream->ps.ps_list);
1364
1365		for (i = uframe >> 3; i < EHCI_BANDWIDTH_FRAMES;
1366				i += stream->ps.bw_period)
1367			tt->bandwidth[i] += tt_usecs;
1368	}
1369}
1370
1371static inline int
1372itd_slot_ok(
1373	struct ehci_hcd		*ehci,
1374	struct ehci_iso_stream	*stream,
1375	unsigned		uframe
1376)
1377{
1378	unsigned		usecs;
1379
1380	/* convert "usecs we need" to "max already claimed" */
1381	usecs = ehci->uframe_periodic_max - stream->ps.usecs;
1382
1383	for (uframe &= stream->ps.bw_uperiod - 1; uframe < EHCI_BANDWIDTH_SIZE;
1384			uframe += stream->ps.bw_uperiod) {
1385		if (ehci->bandwidth[uframe] > usecs)
1386			return 0;
1387	}
1388	return 1;
1389}
1390
1391static inline int
1392sitd_slot_ok(
1393	struct ehci_hcd		*ehci,
1394	struct ehci_iso_stream	*stream,
1395	unsigned		uframe,
1396	struct ehci_iso_sched	*sched,
1397	struct ehci_tt		*tt
1398)
1399{
1400	unsigned		mask, tmp;
1401	unsigned		frame, uf;
1402
1403	mask = stream->ps.cs_mask << (uframe & 7);
1404
1405	/* for OUT, don't wrap SSPLIT into H-microframe 7 */
1406	if (((stream->ps.cs_mask & 0xff) << (uframe & 7)) >= (1 << 7))
1407		return 0;
1408
1409	/* for IN, don't wrap CSPLIT into the next frame */
1410	if (mask & ~0xffff)
1411		return 0;
1412
1413	/* check bandwidth */
1414	uframe &= stream->ps.bw_uperiod - 1;
1415	frame = uframe >> 3;
1416
1417#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1418	/* The tt's fullspeed bus bandwidth must be available.
1419	 * tt_available scheduling guarantees 10+% for control/bulk.
1420	 */
1421	uf = uframe & 7;
1422	if (!tt_available(ehci, &stream->ps, tt, frame, uf))
1423		return 0;
1424#else
1425	/* tt must be idle for start(s), any gap, and csplit.
1426	 * assume scheduling slop leaves 10+% for control/bulk.
1427	 */
1428	if (!tt_no_collision(ehci, stream->ps.bw_period,
1429			stream->ps.udev, frame, mask))
1430		return 0;
1431#endif
1432
1433	do {
1434		unsigned	max_used;
1435		unsigned	i;
1436
1437		/* check starts (OUT uses more than one) */
1438		uf = uframe;
1439		max_used = ehci->uframe_periodic_max - stream->ps.usecs;
1440		for (tmp = stream->ps.cs_mask & 0xff; tmp; tmp >>= 1, uf++) {
1441			if (ehci->bandwidth[uf] > max_used)
1442				return 0;
1443		}
1444
1445		/* for IN, check CSPLIT */
1446		if (stream->ps.c_usecs) {
1447			max_used = ehci->uframe_periodic_max -
1448					stream->ps.c_usecs;
1449			uf = uframe & ~7;
1450			tmp = 1 << (2+8);
1451			for (i = (uframe & 7) + 2; i < 8; (++i, tmp <<= 1)) {
1452				if ((stream->ps.cs_mask & tmp) == 0)
1453					continue;
1454				if (ehci->bandwidth[uf+i] > max_used)
1455					return 0;
1456			}
1457		}
1458
1459		uframe += stream->ps.bw_uperiod;
1460	} while (uframe < EHCI_BANDWIDTH_SIZE);
1461
1462	stream->ps.cs_mask <<= uframe & 7;
1463	stream->splits = cpu_to_hc32(ehci, stream->ps.cs_mask);
1464	return 1;
1465}
1466
1467/*
1468 * This scheduler plans almost as far into the future as it has actual
1469 * periodic schedule slots.  (Affected by TUNE_FLS, which defaults to
1470 * "as small as possible" to be cache-friendlier.)  That limits the size
1471 * transfers you can stream reliably; avoid more than 64 msec per urb.
1472 * Also avoid queue depths of less than ehci's worst irq latency (affected
1473 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1474 * and other factors); or more than about 230 msec total (for portability,
1475 * given EHCI_TUNE_FLS and the slop).  Or, write a smarter scheduler!
1476 */
1477
1478static int
1479iso_stream_schedule(
1480	struct ehci_hcd		*ehci,
1481	struct urb		*urb,
1482	struct ehci_iso_stream	*stream
1483)
1484{
1485	u32			now, base, next, start, period, span, now2;
1486	u32			wrap = 0, skip = 0;
1487	int			status = 0;
1488	unsigned		mod = ehci->periodic_size << 3;
1489	struct ehci_iso_sched	*sched = urb->hcpriv;
1490	bool			empty = list_empty(&stream->td_list);
1491	bool			new_stream = false;
1492
1493	period = stream->uperiod;
1494	span = sched->span;
1495	if (!stream->highspeed)
1496		span <<= 3;
1497
1498	/* Start a new isochronous stream? */
1499	if (unlikely(empty && !hcd_periodic_completion_in_progress(
1500			ehci_to_hcd(ehci), urb->ep))) {
1501
1502		/* Schedule the endpoint */
1503		if (stream->ps.phase == NO_FRAME) {
1504			int		done = 0;
1505			struct ehci_tt	*tt = find_tt(stream->ps.udev);
1506
1507			if (IS_ERR(tt)) {
1508				status = PTR_ERR(tt);
1509				goto fail;
1510			}
1511			compute_tt_budget(ehci->tt_budget, tt);
1512
1513			start = ((-(++ehci->random_frame)) << 3) & (period - 1);
1514
1515			/* find a uframe slot with enough bandwidth.
1516			 * Early uframes are more precious because full-speed
1517			 * iso IN transfers can't use late uframes,
1518			 * and therefore they should be allocated last.
1519			 */
1520			next = start;
1521			start += period;
1522			do {
1523				start--;
1524				/* check schedule: enough space? */
1525				if (stream->highspeed) {
1526					if (itd_slot_ok(ehci, stream, start))
1527						done = 1;
1528				} else {
1529					if ((start % 8) >= 6)
1530						continue;
1531					if (sitd_slot_ok(ehci, stream, start,
1532							sched, tt))
1533						done = 1;
1534				}
1535			} while (start > next && !done);
1536
1537			/* no room in the schedule */
1538			if (!done) {
1539				ehci_dbg(ehci, "iso sched full %p", urb);
1540				status = -ENOSPC;
1541				goto fail;
1542			}
1543			stream->ps.phase = (start >> 3) &
1544					(stream->ps.period - 1);
1545			stream->ps.bw_phase = stream->ps.phase &
1546					(stream->ps.bw_period - 1);
1547			stream->ps.phase_uf = start & 7;
1548			reserve_release_iso_bandwidth(ehci, stream, 1);
1549		}
1550
1551		/* New stream is already scheduled; use the upcoming slot */
1552		else {
1553			start = (stream->ps.phase << 3) + stream->ps.phase_uf;
1554		}
1555
1556		stream->next_uframe = start;
1557		new_stream = true;
1558	}
1559
1560	now = ehci_read_frame_index(ehci) & (mod - 1);
1561
1562	/* Take the isochronous scheduling threshold into account */
1563	if (ehci->i_thresh)
1564		next = now + ehci->i_thresh;	/* uframe cache */
1565	else
1566		next = (now + 2 + 7) & ~0x07;	/* full frame cache */
1567
1568	/* If needed, initialize last_iso_frame so that this URB will be seen */
1569	if (ehci->isoc_count == 0)
1570		ehci->last_iso_frame = now >> 3;
1571
1572	/*
1573	 * Use ehci->last_iso_frame as the base.  There can't be any
1574	 * TDs scheduled for earlier than that.
1575	 */
1576	base = ehci->last_iso_frame << 3;
1577	next = (next - base) & (mod - 1);
1578	start = (stream->next_uframe - base) & (mod - 1);
1579
1580	if (unlikely(new_stream))
1581		goto do_ASAP;
1582
1583	/*
1584	 * Typical case: reuse current schedule, stream may still be active.
1585	 * Hopefully there are no gaps from the host falling behind
1586	 * (irq delays etc).  If there are, the behavior depends on
1587	 * whether URB_ISO_ASAP is set.
1588	 */
1589	now2 = (now - base) & (mod - 1);
1590
1591	/* Is the schedule about to wrap around? */
1592	if (unlikely(!empty && start < period)) {
1593		ehci_dbg(ehci, "request %p would overflow (%u-%u < %u mod %u)\n",
1594				urb, stream->next_uframe, base, period, mod);
1595		status = -EFBIG;
1596		goto fail;
1597	}
1598
1599	/* Is the next packet scheduled after the base time? */
1600	if (likely(!empty || start <= now2 + period)) {
1601
1602		/* URB_ISO_ASAP: make sure that start >= next */
1603		if (unlikely(start < next &&
1604				(urb->transfer_flags & URB_ISO_ASAP)))
1605			goto do_ASAP;
1606
1607		/* Otherwise use start, if it's not in the past */
1608		if (likely(start >= now2))
1609			goto use_start;
1610
1611	/* Otherwise we got an underrun while the queue was empty */
1612	} else {
1613		if (urb->transfer_flags & URB_ISO_ASAP)
1614			goto do_ASAP;
1615		wrap = mod;
1616		now2 += mod;
1617	}
1618
1619	/* How many uframes and packets do we need to skip? */
1620	skip = (now2 - start + period - 1) & -period;
1621	if (skip >= span) {		/* Entirely in the past? */
1622		ehci_dbg(ehci, "iso underrun %p (%u+%u < %u) [%u]\n",
1623				urb, start + base, span - period, now2 + base,
1624				base);
1625
1626		/* Try to keep the last TD intact for scanning later */
1627		skip = span - period;
1628
1629		/* Will it come before the current scan position? */
1630		if (empty) {
1631			skip = span;	/* Skip the entire URB */
1632			status = 1;	/* and give it back immediately */
1633			iso_sched_free(stream, sched);
1634			sched = NULL;
1635		}
1636	}
1637	urb->error_count = skip / period;
1638	if (sched)
1639		sched->first_packet = urb->error_count;
1640	goto use_start;
1641
1642 do_ASAP:
1643	/* Use the first slot after "next" */
1644	start = next + ((start - next) & (period - 1));
1645
1646 use_start:
1647	/* Tried to schedule too far into the future? */
1648	if (unlikely(start + span - period >= mod + wrap)) {
1649		ehci_dbg(ehci, "request %p would overflow (%u+%u >= %u)\n",
1650				urb, start, span - period, mod + wrap);
1651		status = -EFBIG;
1652		goto fail;
1653	}
1654
1655	start += base;
1656	stream->next_uframe = (start + skip) & (mod - 1);
1657
1658	/* report high speed start in uframes; full speed, in frames */
1659	urb->start_frame = start & (mod - 1);
1660	if (!stream->highspeed)
1661		urb->start_frame >>= 3;
1662	return status;
1663
1664 fail:
1665	iso_sched_free(stream, sched);
1666	urb->hcpriv = NULL;
1667	return status;
1668}
1669
1670/*-------------------------------------------------------------------------*/
1671
1672static inline void
1673itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1674		struct ehci_itd *itd)
1675{
1676	int i;
1677
1678	/* it's been recently zeroed */
1679	itd->hw_next = EHCI_LIST_END(ehci);
1680	itd->hw_bufp[0] = stream->buf0;
1681	itd->hw_bufp[1] = stream->buf1;
1682	itd->hw_bufp[2] = stream->buf2;
1683
1684	for (i = 0; i < 8; i++)
1685		itd->index[i] = -1;
1686
1687	/* All other fields are filled when scheduling */
1688}
1689
1690static inline void
1691itd_patch(
1692	struct ehci_hcd		*ehci,
1693	struct ehci_itd		*itd,
1694	struct ehci_iso_sched	*iso_sched,
1695	unsigned		index,
1696	u16			uframe
1697)
1698{
1699	struct ehci_iso_packet	*uf = &iso_sched->packet[index];
1700	unsigned		pg = itd->pg;
1701
1702	/* BUG_ON(pg == 6 && uf->cross); */
1703
1704	uframe &= 0x07;
1705	itd->index[uframe] = index;
1706
1707	itd->hw_transaction[uframe] = uf->transaction;
1708	itd->hw_transaction[uframe] |= cpu_to_hc32(ehci, pg << 12);
1709	itd->hw_bufp[pg] |= cpu_to_hc32(ehci, uf->bufp & ~(u32)0);
1710	itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(uf->bufp >> 32));
1711
1712	/* iso_frame_desc[].offset must be strictly increasing */
1713	if (unlikely(uf->cross)) {
1714		u64	bufp = uf->bufp + 4096;
1715
1716		itd->pg = ++pg;
1717		itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1718		itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
1719	}
1720}
1721
1722static inline void
1723itd_link(struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1724{
1725	union ehci_shadow	*prev = &ehci->pshadow[frame];
1726	__hc32			*hw_p = &ehci->periodic[frame];
1727	union ehci_shadow	here = *prev;
1728	__hc32			type = 0;
1729
1730	/* skip any iso nodes which might belong to previous microframes */
1731	while (here.ptr) {
1732		type = Q_NEXT_TYPE(ehci, *hw_p);
1733		if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1734			break;
1735		prev = periodic_next_shadow(ehci, prev, type);
1736		hw_p = shadow_next_periodic(ehci, &here, type);
1737		here = *prev;
1738	}
1739
1740	itd->itd_next = here;
1741	itd->hw_next = *hw_p;
1742	prev->itd = itd;
1743	itd->frame = frame;
1744	wmb();
1745	*hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
1746}
1747
1748/* fit urb's itds into the selected schedule slot; activate as needed */
1749static void itd_link_urb(
1750	struct ehci_hcd		*ehci,
1751	struct urb		*urb,
1752	unsigned		mod,
1753	struct ehci_iso_stream	*stream
1754)
1755{
1756	int			packet;
1757	unsigned		next_uframe, uframe, frame;
1758	struct ehci_iso_sched	*iso_sched = urb->hcpriv;
1759	struct ehci_itd		*itd;
1760
1761	next_uframe = stream->next_uframe & (mod - 1);
1762
1763	if (unlikely(list_empty(&stream->td_list)))
1764		ehci_to_hcd(ehci)->self.bandwidth_allocated
1765				+= stream->bandwidth;
1766
1767	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
1768		if (ehci->amd_pll_fix == 1)
1769			usb_amd_quirk_pll_disable();
1770	}
1771
1772	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
1773
1774	/* fill iTDs uframe by uframe */
1775	for (packet = iso_sched->first_packet, itd = NULL;
1776			packet < urb->number_of_packets;) {
1777		if (itd == NULL) {
1778			/* ASSERT:  we have all necessary itds */
1779			/* BUG_ON(list_empty(&iso_sched->td_list)); */
1780
1781			/* ASSERT:  no itds for this endpoint in this uframe */
1782
1783			itd = list_entry(iso_sched->td_list.next,
1784					struct ehci_itd, itd_list);
1785			list_move_tail(&itd->itd_list, &stream->td_list);
1786			itd->stream = stream;
1787			itd->urb = urb;
1788			itd_init(ehci, stream, itd);
1789		}
1790
1791		uframe = next_uframe & 0x07;
1792		frame = next_uframe >> 3;
1793
1794		itd_patch(ehci, itd, iso_sched, packet, uframe);
1795
1796		next_uframe += stream->uperiod;
1797		next_uframe &= mod - 1;
1798		packet++;
1799
1800		/* link completed itds into the schedule */
1801		if (((next_uframe >> 3) != frame)
1802				|| packet == urb->number_of_packets) {
1803			itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
1804			itd = NULL;
1805		}
1806	}
1807	stream->next_uframe = next_uframe;
1808
1809	/* don't need that schedule data any more */
1810	iso_sched_free(stream, iso_sched);
1811	urb->hcpriv = stream;
1812
1813	++ehci->isoc_count;
1814	enable_periodic(ehci);
1815}
1816
1817#define	ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1818
1819/* Process and recycle a completed ITD.  Return true iff its urb completed,
1820 * and hence its completion callback probably added things to the hardware
1821 * schedule.
1822 *
1823 * Note that we carefully avoid recycling this descriptor until after any
1824 * completion callback runs, so that it won't be reused quickly.  That is,
1825 * assuming (a) no more than two urbs per frame on this endpoint, and also
1826 * (b) only this endpoint's completions submit URBs.  It seems some silicon
1827 * corrupts things if you reuse completed descriptors very quickly...
1828 */
1829static bool itd_complete(struct ehci_hcd *ehci, struct ehci_itd *itd)
1830{
1831	struct urb				*urb = itd->urb;
1832	struct usb_iso_packet_descriptor	*desc;
1833	u32					t;
1834	unsigned				uframe;
1835	int					urb_index = -1;
1836	struct ehci_iso_stream			*stream = itd->stream;
1837	struct usb_device			*dev;
1838	bool					retval = false;
1839
1840	/* for each uframe with a packet */
1841	for (uframe = 0; uframe < 8; uframe++) {
1842		if (likely(itd->index[uframe] == -1))
1843			continue;
1844		urb_index = itd->index[uframe];
1845		desc = &urb->iso_frame_desc[urb_index];
1846
1847		t = hc32_to_cpup(ehci, &itd->hw_transaction[uframe]);
1848		itd->hw_transaction[uframe] = 0;
1849
1850		/* report transfer status */
1851		if (unlikely(t & ISO_ERRS)) {
1852			urb->error_count++;
1853			if (t & EHCI_ISOC_BUF_ERR)
1854				desc->status = usb_pipein(urb->pipe)
1855					? -ENOSR  /* hc couldn't read */
1856					: -ECOMM; /* hc couldn't write */
1857			else if (t & EHCI_ISOC_BABBLE)
1858				desc->status = -EOVERFLOW;
1859			else /* (t & EHCI_ISOC_XACTERR) */
1860				desc->status = -EPROTO;
1861
1862			/* HC need not update length with this error */
1863			if (!(t & EHCI_ISOC_BABBLE)) {
1864				desc->actual_length = EHCI_ITD_LENGTH(t);
1865				urb->actual_length += desc->actual_length;
1866			}
1867		} else if (likely((t & EHCI_ISOC_ACTIVE) == 0)) {
1868			desc->status = 0;
1869			desc->actual_length = EHCI_ITD_LENGTH(t);
1870			urb->actual_length += desc->actual_length;
1871		} else {
1872			/* URB was too late */
1873			urb->error_count++;
1874		}
1875	}
1876
1877	/* handle completion now? */
1878	if (likely((urb_index + 1) != urb->number_of_packets))
1879		goto done;
1880
1881	/*
1882	 * ASSERT: it's really the last itd for this urb
1883	 * list_for_each_entry (itd, &stream->td_list, itd_list)
1884	 *	 BUG_ON(itd->urb == urb);
1885	 */
1886
1887	/* give urb back to the driver; completion often (re)submits */
1888	dev = urb->dev;
1889	ehci_urb_done(ehci, urb, 0);
1890	retval = true;
1891	urb = NULL;
1892
1893	--ehci->isoc_count;
1894	disable_periodic(ehci);
1895
1896	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
1897	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
1898		if (ehci->amd_pll_fix == 1)
1899			usb_amd_quirk_pll_enable();
1900	}
1901
1902	if (unlikely(list_is_singular(&stream->td_list)))
1903		ehci_to_hcd(ehci)->self.bandwidth_allocated
1904				-= stream->bandwidth;
1905
1906done:
1907	itd->urb = NULL;
1908
1909	/* Add to the end of the free list for later reuse */
1910	list_move_tail(&itd->itd_list, &stream->free_list);
1911
1912	/* Recycle the iTDs when the pipeline is empty (ep no longer in use) */
1913	if (list_empty(&stream->td_list)) {
1914		list_splice_tail_init(&stream->free_list,
1915				&ehci->cached_itd_list);
1916		start_free_itds(ehci);
1917	}
1918
1919	return retval;
1920}
1921
1922/*-------------------------------------------------------------------------*/
1923
1924static int itd_submit(struct ehci_hcd *ehci, struct urb *urb,
1925	gfp_t mem_flags)
1926{
1927	int			status = -EINVAL;
1928	unsigned long		flags;
1929	struct ehci_iso_stream	*stream;
1930
1931	/* Get iso_stream head */
1932	stream = iso_stream_find(ehci, urb);
1933	if (unlikely(stream == NULL)) {
1934		ehci_dbg(ehci, "can't get iso stream\n");
1935		return -ENOMEM;
1936	}
1937	if (unlikely(urb->interval != stream->uperiod)) {
1938		ehci_dbg(ehci, "can't change iso interval %d --> %d\n",
1939			stream->uperiod, urb->interval);
1940		goto done;
1941	}
1942
1943#ifdef EHCI_URB_TRACE
1944	ehci_dbg(ehci,
1945		"%s %s urb %p ep%d%s len %d, %d pkts %d uframes [%p]\n",
1946		__func__, urb->dev->devpath, urb,
1947		usb_pipeendpoint(urb->pipe),
1948		usb_pipein(urb->pipe) ? "in" : "out",
1949		urb->transfer_buffer_length,
1950		urb->number_of_packets, urb->interval,
1951		stream);
1952#endif
1953
1954	/* allocate ITDs w/o locking anything */
1955	status = itd_urb_transaction(stream, ehci, urb, mem_flags);
1956	if (unlikely(status < 0)) {
1957		ehci_dbg(ehci, "can't init itds\n");
1958		goto done;
1959	}
1960
1961	/* schedule ... need to lock */
1962	spin_lock_irqsave(&ehci->lock, flags);
1963	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
1964		status = -ESHUTDOWN;
1965		goto done_not_linked;
1966	}
1967	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
1968	if (unlikely(status))
1969		goto done_not_linked;
1970	status = iso_stream_schedule(ehci, urb, stream);
1971	if (likely(status == 0)) {
1972		itd_link_urb(ehci, urb, ehci->periodic_size << 3, stream);
1973	} else if (status > 0) {
1974		status = 0;
1975		ehci_urb_done(ehci, urb, 0);
1976	} else {
1977		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
1978	}
1979 done_not_linked:
1980	spin_unlock_irqrestore(&ehci->lock, flags);
1981 done:
1982	return status;
1983}
1984
1985/*-------------------------------------------------------------------------*/
1986
1987/*
1988 * "Split ISO TDs" ... used for USB 1.1 devices going through the
1989 * TTs in USB 2.0 hubs.  These need microframe scheduling.
1990 */
1991
1992static inline void
1993sitd_sched_init(
1994	struct ehci_hcd		*ehci,
1995	struct ehci_iso_sched	*iso_sched,
1996	struct ehci_iso_stream	*stream,
1997	struct urb		*urb
1998)
1999{
2000	unsigned	i;
2001	dma_addr_t	dma = urb->transfer_dma;
2002
2003	/* how many frames are needed for these transfers */
2004	iso_sched->span = urb->number_of_packets * stream->ps.period;
2005
2006	/* figure out per-frame sitd fields that we'll need later
2007	 * when we fit new sitds into the schedule.
2008	 */
2009	for (i = 0; i < urb->number_of_packets; i++) {
2010		struct ehci_iso_packet	*packet = &iso_sched->packet[i];
2011		unsigned		length;
2012		dma_addr_t		buf;
2013		u32			trans;
2014
2015		length = urb->iso_frame_desc[i].length & 0x03ff;
2016		buf = dma + urb->iso_frame_desc[i].offset;
2017
2018		trans = SITD_STS_ACTIVE;
2019		if (((i + 1) == urb->number_of_packets)
2020				&& !(urb->transfer_flags & URB_NO_INTERRUPT))
2021			trans |= SITD_IOC;
2022		trans |= length << 16;
2023		packet->transaction = cpu_to_hc32(ehci, trans);
2024
2025		/* might need to cross a buffer page within a td */
2026		packet->bufp = buf;
2027		packet->buf1 = (buf + length) & ~0x0fff;
2028		if (packet->buf1 != (buf & ~(u64)0x0fff))
2029			packet->cross = 1;
2030
2031		/* OUT uses multiple start-splits */
2032		if (stream->bEndpointAddress & USB_DIR_IN)
2033			continue;
2034		length = (length + 187) / 188;
2035		if (length > 1) /* BEGIN vs ALL */
2036			length |= 1 << 3;
2037		packet->buf1 |= length;
2038	}
2039}
2040
2041static int
2042sitd_urb_transaction(
2043	struct ehci_iso_stream	*stream,
2044	struct ehci_hcd		*ehci,
2045	struct urb		*urb,
2046	gfp_t			mem_flags
2047)
2048{
2049	struct ehci_sitd	*sitd;
2050	dma_addr_t		sitd_dma;
2051	int			i;
2052	struct ehci_iso_sched	*iso_sched;
2053	unsigned long		flags;
2054
2055	iso_sched = iso_sched_alloc(urb->number_of_packets, mem_flags);
2056	if (iso_sched == NULL)
2057		return -ENOMEM;
2058
2059	sitd_sched_init(ehci, iso_sched, stream, urb);
2060
2061	/* allocate/init sITDs */
2062	spin_lock_irqsave(&ehci->lock, flags);
2063	for (i = 0; i < urb->number_of_packets; i++) {
2064
2065		/* NOTE:  for now, we don't try to handle wraparound cases
2066		 * for IN (using sitd->hw_backpointer, like a FSTN), which
2067		 * means we never need two sitds for full speed packets.
2068		 */
2069
2070		/*
2071		 * Use siTDs from the free list, but not siTDs that may
2072		 * still be in use by the hardware.
2073		 */
2074		if (likely(!list_empty(&stream->free_list))) {
2075			sitd = list_first_entry(&stream->free_list,
2076					 struct ehci_sitd, sitd_list);
2077			if (sitd->frame == ehci->now_frame)
2078				goto alloc_sitd;
2079			list_del(&sitd->sitd_list);
2080			sitd_dma = sitd->sitd_dma;
2081		} else {
2082 alloc_sitd:
2083			spin_unlock_irqrestore(&ehci->lock, flags);
2084			sitd = dma_pool_alloc(ehci->sitd_pool, mem_flags,
2085					&sitd_dma);
2086			spin_lock_irqsave(&ehci->lock, flags);
2087			if (!sitd) {
2088				iso_sched_free(stream, iso_sched);
2089				spin_unlock_irqrestore(&ehci->lock, flags);
2090				return -ENOMEM;
2091			}
2092		}
2093
2094		memset(sitd, 0, sizeof(*sitd));
2095		sitd->sitd_dma = sitd_dma;
2096		sitd->frame = NO_FRAME;
2097		list_add(&sitd->sitd_list, &iso_sched->td_list);
2098	}
2099
2100	/* temporarily store schedule info in hcpriv */
2101	urb->hcpriv = iso_sched;
2102	urb->error_count = 0;
2103
2104	spin_unlock_irqrestore(&ehci->lock, flags);
2105	return 0;
2106}
2107
2108/*-------------------------------------------------------------------------*/
2109
2110static inline void
2111sitd_patch(
2112	struct ehci_hcd		*ehci,
2113	struct ehci_iso_stream	*stream,
2114	struct ehci_sitd	*sitd,
2115	struct ehci_iso_sched	*iso_sched,
2116	unsigned		index
2117)
2118{
2119	struct ehci_iso_packet	*uf = &iso_sched->packet[index];
2120	u64			bufp;
2121
2122	sitd->hw_next = EHCI_LIST_END(ehci);
2123	sitd->hw_fullspeed_ep = stream->address;
2124	sitd->hw_uframe = stream->splits;
2125	sitd->hw_results = uf->transaction;
2126	sitd->hw_backpointer = EHCI_LIST_END(ehci);
2127
2128	bufp = uf->bufp;
2129	sitd->hw_buf[0] = cpu_to_hc32(ehci, bufp);
2130	sitd->hw_buf_hi[0] = cpu_to_hc32(ehci, bufp >> 32);
2131
2132	sitd->hw_buf[1] = cpu_to_hc32(ehci, uf->buf1);
2133	if (uf->cross)
2134		bufp += 4096;
2135	sitd->hw_buf_hi[1] = cpu_to_hc32(ehci, bufp >> 32);
2136	sitd->index = index;
2137}
2138
2139static inline void
2140sitd_link(struct ehci_hcd *ehci, unsigned frame, struct ehci_sitd *sitd)
2141{
2142	/* note: sitd ordering could matter (CSPLIT then SSPLIT) */
2143	sitd->sitd_next = ehci->pshadow[frame];
2144	sitd->hw_next = ehci->periodic[frame];
2145	ehci->pshadow[frame].sitd = sitd;
2146	sitd->frame = frame;
2147	wmb();
2148	ehci->periodic[frame] = cpu_to_hc32(ehci, sitd->sitd_dma | Q_TYPE_SITD);
2149}
2150
2151/* fit urb's sitds into the selected schedule slot; activate as needed */
2152static void sitd_link_urb(
2153	struct ehci_hcd		*ehci,
2154	struct urb		*urb,
2155	unsigned		mod,
2156	struct ehci_iso_stream	*stream
2157)
2158{
2159	int			packet;
2160	unsigned		next_uframe;
2161	struct ehci_iso_sched	*sched = urb->hcpriv;
2162	struct ehci_sitd	*sitd;
2163
2164	next_uframe = stream->next_uframe;
2165
2166	if (list_empty(&stream->td_list))
2167		/* usbfs ignores TT bandwidth */
2168		ehci_to_hcd(ehci)->self.bandwidth_allocated
2169				+= stream->bandwidth;
2170
2171	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
2172		if (ehci->amd_pll_fix == 1)
2173			usb_amd_quirk_pll_disable();
2174	}
2175
2176	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
2177
2178	/* fill sITDs frame by frame */
2179	for (packet = sched->first_packet, sitd = NULL;
2180			packet < urb->number_of_packets;
2181			packet++) {
2182
2183		/* ASSERT:  we have all necessary sitds */
2184		BUG_ON(list_empty(&sched->td_list));
2185
2186		/* ASSERT:  no itds for this endpoint in this frame */
2187
2188		sitd = list_entry(sched->td_list.next,
2189				struct ehci_sitd, sitd_list);
2190		list_move_tail(&sitd->sitd_list, &stream->td_list);
2191		sitd->stream = stream;
2192		sitd->urb = urb;
2193
2194		sitd_patch(ehci, stream, sitd, sched, packet);
2195		sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1),
2196				sitd);
2197
2198		next_uframe += stream->uperiod;
2199	}
2200	stream->next_uframe = next_uframe & (mod - 1);
2201
2202	/* don't need that schedule data any more */
2203	iso_sched_free(stream, sched);
2204	urb->hcpriv = stream;
2205
2206	++ehci->isoc_count;
2207	enable_periodic(ehci);
2208}
2209
2210/*-------------------------------------------------------------------------*/
2211
2212#define	SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
2213				| SITD_STS_XACT | SITD_STS_MMF)
2214
2215/* Process and recycle a completed SITD.  Return true iff its urb completed,
2216 * and hence its completion callback probably added things to the hardware
2217 * schedule.
2218 *
2219 * Note that we carefully avoid recycling this descriptor until after any
2220 * completion callback runs, so that it won't be reused quickly.  That is,
2221 * assuming (a) no more than two urbs per frame on this endpoint, and also
2222 * (b) only this endpoint's completions submit URBs.  It seems some silicon
2223 * corrupts things if you reuse completed descriptors very quickly...
2224 */
2225static bool sitd_complete(struct ehci_hcd *ehci, struct ehci_sitd *sitd)
2226{
2227	struct urb				*urb = sitd->urb;
2228	struct usb_iso_packet_descriptor	*desc;
2229	u32					t;
2230	int					urb_index;
2231	struct ehci_iso_stream			*stream = sitd->stream;
2232	struct usb_device			*dev;
2233	bool					retval = false;
2234
2235	urb_index = sitd->index;
2236	desc = &urb->iso_frame_desc[urb_index];
2237	t = hc32_to_cpup(ehci, &sitd->hw_results);
2238
2239	/* report transfer status */
2240	if (unlikely(t & SITD_ERRS)) {
2241		urb->error_count++;
2242		if (t & SITD_STS_DBE)
2243			desc->status = usb_pipein(urb->pipe)
2244				? -ENOSR  /* hc couldn't read */
2245				: -ECOMM; /* hc couldn't write */
2246		else if (t & SITD_STS_BABBLE)
2247			desc->status = -EOVERFLOW;
2248		else /* XACT, MMF, etc */
2249			desc->status = -EPROTO;
2250	} else if (unlikely(t & SITD_STS_ACTIVE)) {
2251		/* URB was too late */
2252		urb->error_count++;
2253	} else {
2254		desc->status = 0;
2255		desc->actual_length = desc->length - SITD_LENGTH(t);
2256		urb->actual_length += desc->actual_length;
2257	}
2258
2259	/* handle completion now? */
2260	if ((urb_index + 1) != urb->number_of_packets)
2261		goto done;
2262
2263	/*
2264	 * ASSERT: it's really the last sitd for this urb
2265	 * list_for_each_entry (sitd, &stream->td_list, sitd_list)
2266	 *	 BUG_ON(sitd->urb == urb);
2267	 */
2268
2269	/* give urb back to the driver; completion often (re)submits */
2270	dev = urb->dev;
2271	ehci_urb_done(ehci, urb, 0);
2272	retval = true;
2273	urb = NULL;
2274
2275	--ehci->isoc_count;
2276	disable_periodic(ehci);
2277
2278	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
2279	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
2280		if (ehci->amd_pll_fix == 1)
2281			usb_amd_quirk_pll_enable();
2282	}
2283
2284	if (list_is_singular(&stream->td_list))
2285		ehci_to_hcd(ehci)->self.bandwidth_allocated
2286				-= stream->bandwidth;
2287
2288done:
2289	sitd->urb = NULL;
2290
2291	/* Add to the end of the free list for later reuse */
2292	list_move_tail(&sitd->sitd_list, &stream->free_list);
2293
2294	/* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2295	if (list_empty(&stream->td_list)) {
2296		list_splice_tail_init(&stream->free_list,
2297				&ehci->cached_sitd_list);
2298		start_free_itds(ehci);
2299	}
2300
2301	return retval;
2302}
2303
2304
2305static int sitd_submit(struct ehci_hcd *ehci, struct urb *urb,
2306	gfp_t mem_flags)
2307{
2308	int			status = -EINVAL;
2309	unsigned long		flags;
2310	struct ehci_iso_stream	*stream;
2311
2312	/* Get iso_stream head */
2313	stream = iso_stream_find(ehci, urb);
2314	if (stream == NULL) {
2315		ehci_dbg(ehci, "can't get iso stream\n");
2316		return -ENOMEM;
2317	}
2318	if (urb->interval != stream->ps.period) {
2319		ehci_dbg(ehci, "can't change iso interval %d --> %d\n",
2320			stream->ps.period, urb->interval);
2321		goto done;
2322	}
2323
2324#ifdef EHCI_URB_TRACE
2325	ehci_dbg(ehci,
2326		"submit %p dev%s ep%d%s-iso len %d\n",
2327		urb, urb->dev->devpath,
2328		usb_pipeendpoint(urb->pipe),
2329		usb_pipein(urb->pipe) ? "in" : "out",
2330		urb->transfer_buffer_length);
2331#endif
2332
2333	/* allocate SITDs */
2334	status = sitd_urb_transaction(stream, ehci, urb, mem_flags);
2335	if (status < 0) {
2336		ehci_dbg(ehci, "can't init sitds\n");
2337		goto done;
2338	}
2339
2340	/* schedule ... need to lock */
2341	spin_lock_irqsave(&ehci->lock, flags);
2342	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
2343		status = -ESHUTDOWN;
2344		goto done_not_linked;
2345	}
2346	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
2347	if (unlikely(status))
2348		goto done_not_linked;
2349	status = iso_stream_schedule(ehci, urb, stream);
2350	if (likely(status == 0)) {
2351		sitd_link_urb(ehci, urb, ehci->periodic_size << 3, stream);
2352	} else if (status > 0) {
2353		status = 0;
2354		ehci_urb_done(ehci, urb, 0);
2355	} else {
2356		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
2357	}
2358 done_not_linked:
2359	spin_unlock_irqrestore(&ehci->lock, flags);
2360 done:
2361	return status;
2362}
2363
2364/*-------------------------------------------------------------------------*/
2365
2366static void scan_isoc(struct ehci_hcd *ehci)
2367{
2368	unsigned		uf, now_frame, frame;
2369	unsigned		fmask = ehci->periodic_size - 1;
2370	bool			modified, live;
2371	union ehci_shadow	q, *q_p;
2372	__hc32			type, *hw_p;
2373
2374	/*
2375	 * When running, scan from last scan point up to "now"
2376	 * else clean up by scanning everything that's left.
2377	 * Touches as few pages as possible:  cache-friendly.
2378	 */
2379	if (ehci->rh_state >= EHCI_RH_RUNNING) {
2380		uf = ehci_read_frame_index(ehci);
2381		now_frame = (uf >> 3) & fmask;
2382		live = true;
2383	} else  {
2384		now_frame = (ehci->last_iso_frame - 1) & fmask;
2385		live = false;
2386	}
2387	ehci->now_frame = now_frame;
2388
2389	frame = ehci->last_iso_frame;
2390
2391restart:
2392	/* Scan each element in frame's queue for completions */
2393	q_p = &ehci->pshadow[frame];
2394	hw_p = &ehci->periodic[frame];
2395	q.ptr = q_p->ptr;
2396	type = Q_NEXT_TYPE(ehci, *hw_p);
2397	modified = false;
2398
2399	while (q.ptr != NULL) {
2400		switch (hc32_to_cpu(ehci, type)) {
2401		case Q_TYPE_ITD:
2402			/*
2403			 * If this ITD is still active, leave it for
2404			 * later processing ... check the next entry.
2405			 * No need to check for activity unless the
2406			 * frame is current.
2407			 */
2408			if (frame == now_frame && live) {
2409				rmb();
2410				for (uf = 0; uf < 8; uf++) {
2411					if (q.itd->hw_transaction[uf] &
2412							ITD_ACTIVE(ehci))
2413						break;
2414				}
2415				if (uf < 8) {
2416					q_p = &q.itd->itd_next;
2417					hw_p = &q.itd->hw_next;
2418					type = Q_NEXT_TYPE(ehci,
2419							q.itd->hw_next);
2420					q = *q_p;
2421					break;
2422				}
2423			}
2424
2425			/*
2426			 * Take finished ITDs out of the schedule
2427			 * and process them:  recycle, maybe report
2428			 * URB completion.  HC won't cache the
2429			 * pointer for much longer, if at all.
2430			 */
2431			*q_p = q.itd->itd_next;
2432			if (!ehci->use_dummy_qh ||
2433					q.itd->hw_next != EHCI_LIST_END(ehci))
2434				*hw_p = q.itd->hw_next;
2435			else
2436				*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
2437			type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
2438			wmb();
2439			modified = itd_complete(ehci, q.itd);
2440			q = *q_p;
2441			break;
2442		case Q_TYPE_SITD:
2443			/*
2444			 * If this SITD is still active, leave it for
2445			 * later processing ... check the next entry.
2446			 * No need to check for activity unless the
2447			 * frame is current.
2448			 */
2449			if (((frame == now_frame) ||
2450					(((frame + 1) & fmask) == now_frame))
2451				&& live
2452				&& (q.sitd->hw_results & SITD_ACTIVE(ehci))) {
2453
2454				q_p = &q.sitd->sitd_next;
2455				hw_p = &q.sitd->hw_next;
2456				type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
2457				q = *q_p;
2458				break;
2459			}
2460
2461			/*
2462			 * Take finished SITDs out of the schedule
2463			 * and process them:  recycle, maybe report
2464			 * URB completion.
2465			 */
2466			*q_p = q.sitd->sitd_next;
2467			if (!ehci->use_dummy_qh ||
2468					q.sitd->hw_next != EHCI_LIST_END(ehci))
2469				*hw_p = q.sitd->hw_next;
2470			else
2471				*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
2472			type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
2473			wmb();
2474			modified = sitd_complete(ehci, q.sitd);
2475			q = *q_p;
2476			break;
2477		default:
2478			ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
2479					type, frame, q.ptr);
2480			/* BUG(); */
2481			/* FALL THROUGH */
2482		case Q_TYPE_QH:
2483		case Q_TYPE_FSTN:
2484			/* End of the iTDs and siTDs */
2485			q.ptr = NULL;
2486			break;
2487		}
2488
2489		/* Assume completion callbacks modify the queue */
2490		if (unlikely(modified && ehci->isoc_count > 0))
2491			goto restart;
2492	}
2493
2494	/* Stop when we have reached the current frame */
2495	if (frame == now_frame)
2496		return;
2497
2498	/* The last frame may still have active siTDs */
2499	ehci->last_iso_frame = frame;
2500	frame = (frame + 1) & fmask;
2501
2502	goto restart;
2503}
v4.10.11
 
   1/*
   2 * Copyright (c) 2001-2004 by David Brownell
   3 * Copyright (c) 2003 Michal Sojka, for high-speed iso transfers
   4 *
   5 * This program is free software; you can redistribute it and/or modify it
   6 * under the terms of the GNU General Public License as published by the
   7 * Free Software Foundation; either version 2 of the License, or (at your
   8 * option) any later version.
   9 *
  10 * This program is distributed in the hope that it will be useful, but
  11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13 * for more details.
  14 *
  15 * You should have received a copy of the GNU General Public License
  16 * along with this program; if not, write to the Free Software Foundation,
  17 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18 */
  19
  20/* this file is part of ehci-hcd.c */
  21
  22/*-------------------------------------------------------------------------*/
  23
  24/*
  25 * EHCI scheduled transaction support:  interrupt, iso, split iso
  26 * These are called "periodic" transactions in the EHCI spec.
  27 *
  28 * Note that for interrupt transfers, the QH/QTD manipulation is shared
  29 * with the "asynchronous" transaction support (control/bulk transfers).
  30 * The only real difference is in how interrupt transfers are scheduled.
  31 *
  32 * For ISO, we make an "iso_stream" head to serve the same role as a QH.
  33 * It keeps track of every ITD (or SITD) that's linked, and holds enough
  34 * pre-calculated schedule data to make appending to the queue be quick.
  35 */
  36
  37static int ehci_get_frame(struct usb_hcd *hcd);
  38
  39/*
  40 * periodic_next_shadow - return "next" pointer on shadow list
  41 * @periodic: host pointer to qh/itd/sitd
  42 * @tag: hardware tag for type of this record
  43 */
  44static union ehci_shadow *
  45periodic_next_shadow(struct ehci_hcd *ehci, union ehci_shadow *periodic,
  46		__hc32 tag)
  47{
  48	switch (hc32_to_cpu(ehci, tag)) {
  49	case Q_TYPE_QH:
  50		return &periodic->qh->qh_next;
  51	case Q_TYPE_FSTN:
  52		return &periodic->fstn->fstn_next;
  53	case Q_TYPE_ITD:
  54		return &periodic->itd->itd_next;
  55	/* case Q_TYPE_SITD: */
  56	default:
  57		return &periodic->sitd->sitd_next;
  58	}
  59}
  60
  61static __hc32 *
  62shadow_next_periodic(struct ehci_hcd *ehci, union ehci_shadow *periodic,
  63		__hc32 tag)
  64{
  65	switch (hc32_to_cpu(ehci, tag)) {
  66	/* our ehci_shadow.qh is actually software part */
  67	case Q_TYPE_QH:
  68		return &periodic->qh->hw->hw_next;
  69	/* others are hw parts */
  70	default:
  71		return periodic->hw_next;
  72	}
  73}
  74
  75/* caller must hold ehci->lock */
  76static void periodic_unlink(struct ehci_hcd *ehci, unsigned frame, void *ptr)
  77{
  78	union ehci_shadow	*prev_p = &ehci->pshadow[frame];
  79	__hc32			*hw_p = &ehci->periodic[frame];
  80	union ehci_shadow	here = *prev_p;
  81
  82	/* find predecessor of "ptr"; hw and shadow lists are in sync */
  83	while (here.ptr && here.ptr != ptr) {
  84		prev_p = periodic_next_shadow(ehci, prev_p,
  85				Q_NEXT_TYPE(ehci, *hw_p));
  86		hw_p = shadow_next_periodic(ehci, &here,
  87				Q_NEXT_TYPE(ehci, *hw_p));
  88		here = *prev_p;
  89	}
  90	/* an interrupt entry (at list end) could have been shared */
  91	if (!here.ptr)
  92		return;
  93
  94	/* update shadow and hardware lists ... the old "next" pointers
  95	 * from ptr may still be in use, the caller updates them.
  96	 */
  97	*prev_p = *periodic_next_shadow(ehci, &here,
  98			Q_NEXT_TYPE(ehci, *hw_p));
  99
 100	if (!ehci->use_dummy_qh ||
 101	    *shadow_next_periodic(ehci, &here, Q_NEXT_TYPE(ehci, *hw_p))
 102			!= EHCI_LIST_END(ehci))
 103		*hw_p = *shadow_next_periodic(ehci, &here,
 104				Q_NEXT_TYPE(ehci, *hw_p));
 105	else
 106		*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
 107}
 108
 109/*-------------------------------------------------------------------------*/
 110
 111/* Bandwidth and TT management */
 112
 113/* Find the TT data structure for this device; create it if necessary */
 114static struct ehci_tt *find_tt(struct usb_device *udev)
 115{
 116	struct usb_tt		*utt = udev->tt;
 117	struct ehci_tt		*tt, **tt_index, **ptt;
 118	unsigned		port;
 119	bool			allocated_index = false;
 120
 121	if (!utt)
 122		return NULL;		/* Not below a TT */
 123
 124	/*
 125	 * Find/create our data structure.
 126	 * For hubs with a single TT, we get it directly.
 127	 * For hubs with multiple TTs, there's an extra level of pointers.
 128	 */
 129	tt_index = NULL;
 130	if (utt->multi) {
 131		tt_index = utt->hcpriv;
 132		if (!tt_index) {		/* Create the index array */
 133			tt_index = kzalloc(utt->hub->maxchild *
 134					sizeof(*tt_index), GFP_ATOMIC);
 135			if (!tt_index)
 136				return ERR_PTR(-ENOMEM);
 137			utt->hcpriv = tt_index;
 138			allocated_index = true;
 139		}
 140		port = udev->ttport - 1;
 141		ptt = &tt_index[port];
 142	} else {
 143		port = 0;
 144		ptt = (struct ehci_tt **) &utt->hcpriv;
 145	}
 146
 147	tt = *ptt;
 148	if (!tt) {				/* Create the ehci_tt */
 149		struct ehci_hcd		*ehci =
 150				hcd_to_ehci(bus_to_hcd(udev->bus));
 151
 152		tt = kzalloc(sizeof(*tt), GFP_ATOMIC);
 153		if (!tt) {
 154			if (allocated_index) {
 155				utt->hcpriv = NULL;
 156				kfree(tt_index);
 157			}
 158			return ERR_PTR(-ENOMEM);
 159		}
 160		list_add_tail(&tt->tt_list, &ehci->tt_list);
 161		INIT_LIST_HEAD(&tt->ps_list);
 162		tt->usb_tt = utt;
 163		tt->tt_port = port;
 164		*ptt = tt;
 165	}
 166
 167	return tt;
 168}
 169
 170/* Release the TT above udev, if it's not in use */
 171static void drop_tt(struct usb_device *udev)
 172{
 173	struct usb_tt		*utt = udev->tt;
 174	struct ehci_tt		*tt, **tt_index, **ptt;
 175	int			cnt, i;
 176
 177	if (!utt || !utt->hcpriv)
 178		return;		/* Not below a TT, or never allocated */
 179
 180	cnt = 0;
 181	if (utt->multi) {
 182		tt_index = utt->hcpriv;
 183		ptt = &tt_index[udev->ttport - 1];
 184
 185		/* How many entries are left in tt_index? */
 186		for (i = 0; i < utt->hub->maxchild; ++i)
 187			cnt += !!tt_index[i];
 188	} else {
 189		tt_index = NULL;
 190		ptt = (struct ehci_tt **) &utt->hcpriv;
 191	}
 192
 193	tt = *ptt;
 194	if (!tt || !list_empty(&tt->ps_list))
 195		return;		/* never allocated, or still in use */
 196
 197	list_del(&tt->tt_list);
 198	*ptt = NULL;
 199	kfree(tt);
 200	if (cnt == 1) {
 201		utt->hcpriv = NULL;
 202		kfree(tt_index);
 203	}
 204}
 205
 206static void bandwidth_dbg(struct ehci_hcd *ehci, int sign, char *type,
 207		struct ehci_per_sched *ps)
 208{
 209	dev_dbg(&ps->udev->dev,
 210			"ep %02x: %s %s @ %u+%u (%u.%u+%u) [%u/%u us] mask %04x\n",
 211			ps->ep->desc.bEndpointAddress,
 212			(sign >= 0 ? "reserve" : "release"), type,
 213			(ps->bw_phase << 3) + ps->phase_uf, ps->bw_uperiod,
 214			ps->phase, ps->phase_uf, ps->period,
 215			ps->usecs, ps->c_usecs, ps->cs_mask);
 216}
 217
 218static void reserve_release_intr_bandwidth(struct ehci_hcd *ehci,
 219		struct ehci_qh *qh, int sign)
 220{
 221	unsigned		start_uf;
 222	unsigned		i, j, m;
 223	int			usecs = qh->ps.usecs;
 224	int			c_usecs = qh->ps.c_usecs;
 225	int			tt_usecs = qh->ps.tt_usecs;
 226	struct ehci_tt		*tt;
 227
 228	if (qh->ps.phase == NO_FRAME)	/* Bandwidth wasn't reserved */
 229		return;
 230	start_uf = qh->ps.bw_phase << 3;
 231
 232	bandwidth_dbg(ehci, sign, "intr", &qh->ps);
 233
 234	if (sign < 0) {		/* Release bandwidth */
 235		usecs = -usecs;
 236		c_usecs = -c_usecs;
 237		tt_usecs = -tt_usecs;
 238	}
 239
 240	/* Entire transaction (high speed) or start-split (full/low speed) */
 241	for (i = start_uf + qh->ps.phase_uf; i < EHCI_BANDWIDTH_SIZE;
 242			i += qh->ps.bw_uperiod)
 243		ehci->bandwidth[i] += usecs;
 244
 245	/* Complete-split (full/low speed) */
 246	if (qh->ps.c_usecs) {
 247		/* NOTE: adjustments needed for FSTN */
 248		for (i = start_uf; i < EHCI_BANDWIDTH_SIZE;
 249				i += qh->ps.bw_uperiod) {
 250			for ((j = 2, m = 1 << (j+8)); j < 8; (++j, m <<= 1)) {
 251				if (qh->ps.cs_mask & m)
 252					ehci->bandwidth[i+j] += c_usecs;
 253			}
 254		}
 255	}
 256
 257	/* FS/LS bus bandwidth */
 258	if (tt_usecs) {
 259		tt = find_tt(qh->ps.udev);
 260		if (sign > 0)
 261			list_add_tail(&qh->ps.ps_list, &tt->ps_list);
 262		else
 263			list_del(&qh->ps.ps_list);
 264
 265		for (i = start_uf >> 3; i < EHCI_BANDWIDTH_FRAMES;
 266				i += qh->ps.bw_period)
 267			tt->bandwidth[i] += tt_usecs;
 268	}
 269}
 270
 271/*-------------------------------------------------------------------------*/
 272
 273static void compute_tt_budget(u8 budget_table[EHCI_BANDWIDTH_SIZE],
 274		struct ehci_tt *tt)
 275{
 276	struct ehci_per_sched	*ps;
 277	unsigned		uframe, uf, x;
 278	u8			*budget_line;
 279
 280	if (!tt)
 281		return;
 282	memset(budget_table, 0, EHCI_BANDWIDTH_SIZE);
 283
 284	/* Add up the contributions from all the endpoints using this TT */
 285	list_for_each_entry(ps, &tt->ps_list, ps_list) {
 286		for (uframe = ps->bw_phase << 3; uframe < EHCI_BANDWIDTH_SIZE;
 287				uframe += ps->bw_uperiod) {
 288			budget_line = &budget_table[uframe];
 289			x = ps->tt_usecs;
 290
 291			/* propagate the time forward */
 292			for (uf = ps->phase_uf; uf < 8; ++uf) {
 293				x += budget_line[uf];
 294
 295				/* Each microframe lasts 125 us */
 296				if (x <= 125) {
 297					budget_line[uf] = x;
 298					break;
 299				}
 300				budget_line[uf] = 125;
 301				x -= 125;
 302			}
 303		}
 304	}
 305}
 306
 307static int __maybe_unused same_tt(struct usb_device *dev1,
 308		struct usb_device *dev2)
 309{
 310	if (!dev1->tt || !dev2->tt)
 311		return 0;
 312	if (dev1->tt != dev2->tt)
 313		return 0;
 314	if (dev1->tt->multi)
 315		return dev1->ttport == dev2->ttport;
 316	else
 317		return 1;
 318}
 319
 320#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
 321
 322/* Which uframe does the low/fullspeed transfer start in?
 323 *
 324 * The parameter is the mask of ssplits in "H-frame" terms
 325 * and this returns the transfer start uframe in "B-frame" terms,
 326 * which allows both to match, e.g. a ssplit in "H-frame" uframe 0
 327 * will cause a transfer in "B-frame" uframe 0.  "B-frames" lag
 328 * "H-frames" by 1 uframe.  See the EHCI spec sec 4.5 and figure 4.7.
 329 */
 330static inline unsigned char tt_start_uframe(struct ehci_hcd *ehci, __hc32 mask)
 331{
 332	unsigned char smask = hc32_to_cpu(ehci, mask) & QH_SMASK;
 333
 334	if (!smask) {
 335		ehci_err(ehci, "invalid empty smask!\n");
 336		/* uframe 7 can't have bw so this will indicate failure */
 337		return 7;
 338	}
 339	return ffs(smask) - 1;
 340}
 341
 342static const unsigned char
 343max_tt_usecs[] = { 125, 125, 125, 125, 125, 125, 30, 0 };
 344
 345/* carryover low/fullspeed bandwidth that crosses uframe boundries */
 346static inline void carryover_tt_bandwidth(unsigned short tt_usecs[8])
 347{
 348	int i;
 349
 350	for (i = 0; i < 7; i++) {
 351		if (max_tt_usecs[i] < tt_usecs[i]) {
 352			tt_usecs[i+1] += tt_usecs[i] - max_tt_usecs[i];
 353			tt_usecs[i] = max_tt_usecs[i];
 354		}
 355	}
 356}
 357
 358/*
 359 * Return true if the device's tt's downstream bus is available for a
 360 * periodic transfer of the specified length (usecs), starting at the
 361 * specified frame/uframe.  Note that (as summarized in section 11.19
 362 * of the usb 2.0 spec) TTs can buffer multiple transactions for each
 363 * uframe.
 364 *
 365 * The uframe parameter is when the fullspeed/lowspeed transfer
 366 * should be executed in "B-frame" terms, which is the same as the
 367 * highspeed ssplit's uframe (which is in "H-frame" terms).  For example
 368 * a ssplit in "H-frame" 0 causes a transfer in "B-frame" 0.
 369 * See the EHCI spec sec 4.5 and fig 4.7.
 370 *
 371 * This checks if the full/lowspeed bus, at the specified starting uframe,
 372 * has the specified bandwidth available, according to rules listed
 373 * in USB 2.0 spec section 11.18.1 fig 11-60.
 374 *
 375 * This does not check if the transfer would exceed the max ssplit
 376 * limit of 16, specified in USB 2.0 spec section 11.18.4 requirement #4,
 377 * since proper scheduling limits ssplits to less than 16 per uframe.
 378 */
 379static int tt_available(
 380	struct ehci_hcd		*ehci,
 381	struct ehci_per_sched	*ps,
 382	struct ehci_tt		*tt,
 383	unsigned		frame,
 384	unsigned		uframe
 385)
 386{
 387	unsigned		period = ps->bw_period;
 388	unsigned		usecs = ps->tt_usecs;
 389
 390	if ((period == 0) || (uframe >= 7))	/* error */
 391		return 0;
 392
 393	for (frame &= period - 1; frame < EHCI_BANDWIDTH_FRAMES;
 394			frame += period) {
 395		unsigned	i, uf;
 396		unsigned short	tt_usecs[8];
 397
 398		if (tt->bandwidth[frame] + usecs > 900)
 399			return 0;
 400
 401		uf = frame << 3;
 402		for (i = 0; i < 8; (++i, ++uf))
 403			tt_usecs[i] = ehci->tt_budget[uf];
 404
 405		if (max_tt_usecs[uframe] <= tt_usecs[uframe])
 406			return 0;
 407
 408		/* special case for isoc transfers larger than 125us:
 409		 * the first and each subsequent fully used uframe
 410		 * must be empty, so as to not illegally delay
 411		 * already scheduled transactions
 412		 */
 413		if (usecs > 125) {
 414			int ufs = (usecs / 125);
 415
 416			for (i = uframe; i < (uframe + ufs) && i < 8; i++)
 417				if (tt_usecs[i] > 0)
 418					return 0;
 419		}
 420
 421		tt_usecs[uframe] += usecs;
 422
 423		carryover_tt_bandwidth(tt_usecs);
 424
 425		/* fail if the carryover pushed bw past the last uframe's limit */
 426		if (max_tt_usecs[7] < tt_usecs[7])
 427			return 0;
 428	}
 429
 430	return 1;
 431}
 432
 433#else
 434
 435/* return true iff the device's transaction translator is available
 436 * for a periodic transfer starting at the specified frame, using
 437 * all the uframes in the mask.
 438 */
 439static int tt_no_collision(
 440	struct ehci_hcd		*ehci,
 441	unsigned		period,
 442	struct usb_device	*dev,
 443	unsigned		frame,
 444	u32			uf_mask
 445)
 446{
 447	if (period == 0)	/* error */
 448		return 0;
 449
 450	/* note bandwidth wastage:  split never follows csplit
 451	 * (different dev or endpoint) until the next uframe.
 452	 * calling convention doesn't make that distinction.
 453	 */
 454	for (; frame < ehci->periodic_size; frame += period) {
 455		union ehci_shadow	here;
 456		__hc32			type;
 457		struct ehci_qh_hw	*hw;
 458
 459		here = ehci->pshadow[frame];
 460		type = Q_NEXT_TYPE(ehci, ehci->periodic[frame]);
 461		while (here.ptr) {
 462			switch (hc32_to_cpu(ehci, type)) {
 463			case Q_TYPE_ITD:
 464				type = Q_NEXT_TYPE(ehci, here.itd->hw_next);
 465				here = here.itd->itd_next;
 466				continue;
 467			case Q_TYPE_QH:
 468				hw = here.qh->hw;
 469				if (same_tt(dev, here.qh->ps.udev)) {
 470					u32		mask;
 471
 472					mask = hc32_to_cpu(ehci,
 473							hw->hw_info2);
 474					/* "knows" no gap is needed */
 475					mask |= mask >> 8;
 476					if (mask & uf_mask)
 477						break;
 478				}
 479				type = Q_NEXT_TYPE(ehci, hw->hw_next);
 480				here = here.qh->qh_next;
 481				continue;
 482			case Q_TYPE_SITD:
 483				if (same_tt(dev, here.sitd->urb->dev)) {
 484					u16		mask;
 485
 486					mask = hc32_to_cpu(ehci, here.sitd
 487								->hw_uframe);
 488					/* FIXME assumes no gap for IN! */
 489					mask |= mask >> 8;
 490					if (mask & uf_mask)
 491						break;
 492				}
 493				type = Q_NEXT_TYPE(ehci, here.sitd->hw_next);
 494				here = here.sitd->sitd_next;
 495				continue;
 496			/* case Q_TYPE_FSTN: */
 497			default:
 498				ehci_dbg(ehci,
 499					"periodic frame %d bogus type %d\n",
 500					frame, type);
 501			}
 502
 503			/* collision or error */
 504			return 0;
 505		}
 506	}
 507
 508	/* no collision */
 509	return 1;
 510}
 511
 512#endif /* CONFIG_USB_EHCI_TT_NEWSCHED */
 513
 514/*-------------------------------------------------------------------------*/
 515
 516static void enable_periodic(struct ehci_hcd *ehci)
 517{
 518	if (ehci->periodic_count++)
 519		return;
 520
 521	/* Stop waiting to turn off the periodic schedule */
 522	ehci->enabled_hrtimer_events &= ~BIT(EHCI_HRTIMER_DISABLE_PERIODIC);
 523
 524	/* Don't start the schedule until PSS is 0 */
 525	ehci_poll_PSS(ehci);
 526	turn_on_io_watchdog(ehci);
 527}
 528
 529static void disable_periodic(struct ehci_hcd *ehci)
 530{
 531	if (--ehci->periodic_count)
 532		return;
 533
 534	/* Don't turn off the schedule until PSS is 1 */
 535	ehci_poll_PSS(ehci);
 536}
 537
 538/*-------------------------------------------------------------------------*/
 539
 540/* periodic schedule slots have iso tds (normal or split) first, then a
 541 * sparse tree for active interrupt transfers.
 542 *
 543 * this just links in a qh; caller guarantees uframe masks are set right.
 544 * no FSTN support (yet; ehci 0.96+)
 545 */
 546static void qh_link_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
 547{
 548	unsigned	i;
 549	unsigned	period = qh->ps.period;
 550
 551	dev_dbg(&qh->ps.udev->dev,
 552		"link qh%d-%04x/%p start %d [%d/%d us]\n",
 553		period, hc32_to_cpup(ehci, &qh->hw->hw_info2)
 554			& (QH_CMASK | QH_SMASK),
 555		qh, qh->ps.phase, qh->ps.usecs, qh->ps.c_usecs);
 556
 557	/* high bandwidth, or otherwise every microframe */
 558	if (period == 0)
 559		period = 1;
 560
 561	for (i = qh->ps.phase; i < ehci->periodic_size; i += period) {
 562		union ehci_shadow	*prev = &ehci->pshadow[i];
 563		__hc32			*hw_p = &ehci->periodic[i];
 564		union ehci_shadow	here = *prev;
 565		__hc32			type = 0;
 566
 567		/* skip the iso nodes at list head */
 568		while (here.ptr) {
 569			type = Q_NEXT_TYPE(ehci, *hw_p);
 570			if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
 571				break;
 572			prev = periodic_next_shadow(ehci, prev, type);
 573			hw_p = shadow_next_periodic(ehci, &here, type);
 574			here = *prev;
 575		}
 576
 577		/* sorting each branch by period (slow-->fast)
 578		 * enables sharing interior tree nodes
 579		 */
 580		while (here.ptr && qh != here.qh) {
 581			if (qh->ps.period > here.qh->ps.period)
 582				break;
 583			prev = &here.qh->qh_next;
 584			hw_p = &here.qh->hw->hw_next;
 585			here = *prev;
 586		}
 587		/* link in this qh, unless some earlier pass did that */
 588		if (qh != here.qh) {
 589			qh->qh_next = here;
 590			if (here.qh)
 591				qh->hw->hw_next = *hw_p;
 592			wmb();
 593			prev->qh = qh;
 594			*hw_p = QH_NEXT(ehci, qh->qh_dma);
 595		}
 596	}
 597	qh->qh_state = QH_STATE_LINKED;
 598	qh->xacterrs = 0;
 599	qh->unlink_reason = 0;
 600
 601	/* update per-qh bandwidth for debugfs */
 602	ehci_to_hcd(ehci)->self.bandwidth_allocated += qh->ps.bw_period
 603		? ((qh->ps.usecs + qh->ps.c_usecs) / qh->ps.bw_period)
 604		: (qh->ps.usecs * 8);
 605
 606	list_add(&qh->intr_node, &ehci->intr_qh_list);
 607
 608	/* maybe enable periodic schedule processing */
 609	++ehci->intr_count;
 610	enable_periodic(ehci);
 611}
 612
 613static void qh_unlink_periodic(struct ehci_hcd *ehci, struct ehci_qh *qh)
 614{
 615	unsigned	i;
 616	unsigned	period;
 617
 618	/*
 619	 * If qh is for a low/full-speed device, simply unlinking it
 620	 * could interfere with an ongoing split transaction.  To unlink
 621	 * it safely would require setting the QH_INACTIVATE bit and
 622	 * waiting at least one frame, as described in EHCI 4.12.2.5.
 623	 *
 624	 * We won't bother with any of this.  Instead, we assume that the
 625	 * only reason for unlinking an interrupt QH while the current URB
 626	 * is still active is to dequeue all the URBs (flush the whole
 627	 * endpoint queue).
 628	 *
 629	 * If rebalancing the periodic schedule is ever implemented, this
 630	 * approach will no longer be valid.
 631	 */
 632
 633	/* high bandwidth, or otherwise part of every microframe */
 634	period = qh->ps.period ? : 1;
 635
 636	for (i = qh->ps.phase; i < ehci->periodic_size; i += period)
 637		periodic_unlink(ehci, i, qh);
 638
 639	/* update per-qh bandwidth for debugfs */
 640	ehci_to_hcd(ehci)->self.bandwidth_allocated -= qh->ps.bw_period
 641		? ((qh->ps.usecs + qh->ps.c_usecs) / qh->ps.bw_period)
 642		: (qh->ps.usecs * 8);
 643
 644	dev_dbg(&qh->ps.udev->dev,
 645		"unlink qh%d-%04x/%p start %d [%d/%d us]\n",
 646		qh->ps.period,
 647		hc32_to_cpup(ehci, &qh->hw->hw_info2) & (QH_CMASK | QH_SMASK),
 648		qh, qh->ps.phase, qh->ps.usecs, qh->ps.c_usecs);
 649
 650	/* qh->qh_next still "live" to HC */
 651	qh->qh_state = QH_STATE_UNLINK;
 652	qh->qh_next.ptr = NULL;
 653
 654	if (ehci->qh_scan_next == qh)
 655		ehci->qh_scan_next = list_entry(qh->intr_node.next,
 656				struct ehci_qh, intr_node);
 657	list_del(&qh->intr_node);
 658}
 659
 660static void cancel_unlink_wait_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 661{
 662	if (qh->qh_state != QH_STATE_LINKED ||
 663			list_empty(&qh->unlink_node))
 664		return;
 665
 666	list_del_init(&qh->unlink_node);
 667
 668	/*
 669	 * TODO: disable the event of EHCI_HRTIMER_START_UNLINK_INTR for
 670	 * avoiding unnecessary CPU wakeup
 671	 */
 672}
 673
 674static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 675{
 676	/* If the QH isn't linked then there's nothing we can do. */
 677	if (qh->qh_state != QH_STATE_LINKED)
 678		return;
 679
 680	/* if the qh is waiting for unlink, cancel it now */
 681	cancel_unlink_wait_intr(ehci, qh);
 682
 683	qh_unlink_periodic(ehci, qh);
 684
 685	/* Make sure the unlinks are visible before starting the timer */
 686	wmb();
 687
 688	/*
 689	 * The EHCI spec doesn't say how long it takes the controller to
 690	 * stop accessing an unlinked interrupt QH.  The timer delay is
 691	 * 9 uframes; presumably that will be long enough.
 692	 */
 693	qh->unlink_cycle = ehci->intr_unlink_cycle;
 694
 695	/* New entries go at the end of the intr_unlink list */
 696	list_add_tail(&qh->unlink_node, &ehci->intr_unlink);
 697
 698	if (ehci->intr_unlinking)
 699		;	/* Avoid recursive calls */
 700	else if (ehci->rh_state < EHCI_RH_RUNNING)
 701		ehci_handle_intr_unlinks(ehci);
 702	else if (ehci->intr_unlink.next == &qh->unlink_node) {
 703		ehci_enable_event(ehci, EHCI_HRTIMER_UNLINK_INTR, true);
 704		++ehci->intr_unlink_cycle;
 705	}
 706}
 707
 708/*
 709 * It is common only one intr URB is scheduled on one qh, and
 710 * given complete() is run in tasklet context, introduce a bit
 711 * delay to avoid unlink qh too early.
 712 */
 713static void start_unlink_intr_wait(struct ehci_hcd *ehci,
 714				   struct ehci_qh *qh)
 715{
 716	qh->unlink_cycle = ehci->intr_unlink_wait_cycle;
 717
 718	/* New entries go at the end of the intr_unlink_wait list */
 719	list_add_tail(&qh->unlink_node, &ehci->intr_unlink_wait);
 720
 721	if (ehci->rh_state < EHCI_RH_RUNNING)
 722		ehci_handle_start_intr_unlinks(ehci);
 723	else if (ehci->intr_unlink_wait.next == &qh->unlink_node) {
 724		ehci_enable_event(ehci, EHCI_HRTIMER_START_UNLINK_INTR, true);
 725		++ehci->intr_unlink_wait_cycle;
 726	}
 727}
 728
 729static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh)
 730{
 731	struct ehci_qh_hw	*hw = qh->hw;
 732	int			rc;
 733
 734	qh->qh_state = QH_STATE_IDLE;
 735	hw->hw_next = EHCI_LIST_END(ehci);
 736
 737	if (!list_empty(&qh->qtd_list))
 738		qh_completions(ehci, qh);
 739
 740	/* reschedule QH iff another request is queued */
 741	if (!list_empty(&qh->qtd_list) && ehci->rh_state == EHCI_RH_RUNNING) {
 742		rc = qh_schedule(ehci, qh);
 743		if (rc == 0) {
 744			qh_refresh(ehci, qh);
 745			qh_link_periodic(ehci, qh);
 746		}
 747
 748		/* An error here likely indicates handshake failure
 749		 * or no space left in the schedule.  Neither fault
 750		 * should happen often ...
 751		 *
 752		 * FIXME kill the now-dysfunctional queued urbs
 753		 */
 754		else {
 755			ehci_err(ehci, "can't reschedule qh %p, err %d\n",
 756					qh, rc);
 757		}
 758	}
 759
 760	/* maybe turn off periodic schedule */
 761	--ehci->intr_count;
 762	disable_periodic(ehci);
 763}
 764
 765/*-------------------------------------------------------------------------*/
 766
 767static int check_period(
 768	struct ehci_hcd *ehci,
 769	unsigned	frame,
 770	unsigned	uframe,
 771	unsigned	uperiod,
 772	unsigned	usecs
 773) {
 774	/* complete split running into next frame?
 775	 * given FSTN support, we could sometimes check...
 776	 */
 777	if (uframe >= 8)
 778		return 0;
 779
 780	/* convert "usecs we need" to "max already claimed" */
 781	usecs = ehci->uframe_periodic_max - usecs;
 782
 783	for (uframe += frame << 3; uframe < EHCI_BANDWIDTH_SIZE;
 784			uframe += uperiod) {
 785		if (ehci->bandwidth[uframe] > usecs)
 786			return 0;
 787	}
 788
 789	/* success! */
 790	return 1;
 791}
 792
 793static int check_intr_schedule(
 794	struct ehci_hcd		*ehci,
 795	unsigned		frame,
 796	unsigned		uframe,
 797	struct ehci_qh		*qh,
 798	unsigned		*c_maskp,
 799	struct ehci_tt		*tt
 800)
 801{
 802	int		retval = -ENOSPC;
 803	u8		mask = 0;
 804
 805	if (qh->ps.c_usecs && uframe >= 6)	/* FSTN territory? */
 806		goto done;
 807
 808	if (!check_period(ehci, frame, uframe, qh->ps.bw_uperiod, qh->ps.usecs))
 809		goto done;
 810	if (!qh->ps.c_usecs) {
 811		retval = 0;
 812		*c_maskp = 0;
 813		goto done;
 814	}
 815
 816#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
 817	if (tt_available(ehci, &qh->ps, tt, frame, uframe)) {
 818		unsigned i;
 819
 820		/* TODO : this may need FSTN for SSPLIT in uframe 5. */
 821		for (i = uframe+2; i < 8 && i <= uframe+4; i++)
 822			if (!check_period(ehci, frame, i,
 823					qh->ps.bw_uperiod, qh->ps.c_usecs))
 824				goto done;
 825			else
 826				mask |= 1 << i;
 827
 828		retval = 0;
 829
 830		*c_maskp = mask;
 831	}
 832#else
 833	/* Make sure this tt's buffer is also available for CSPLITs.
 834	 * We pessimize a bit; probably the typical full speed case
 835	 * doesn't need the second CSPLIT.
 836	 *
 837	 * NOTE:  both SPLIT and CSPLIT could be checked in just
 838	 * one smart pass...
 839	 */
 840	mask = 0x03 << (uframe + qh->gap_uf);
 841	*c_maskp = mask;
 842
 843	mask |= 1 << uframe;
 844	if (tt_no_collision(ehci, qh->ps.bw_period, qh->ps.udev, frame, mask)) {
 845		if (!check_period(ehci, frame, uframe + qh->gap_uf + 1,
 846				qh->ps.bw_uperiod, qh->ps.c_usecs))
 847			goto done;
 848		if (!check_period(ehci, frame, uframe + qh->gap_uf,
 849				qh->ps.bw_uperiod, qh->ps.c_usecs))
 850			goto done;
 851		retval = 0;
 852	}
 853#endif
 854done:
 855	return retval;
 856}
 857
 858/* "first fit" scheduling policy used the first time through,
 859 * or when the previous schedule slot can't be re-used.
 860 */
 861static int qh_schedule(struct ehci_hcd *ehci, struct ehci_qh *qh)
 862{
 863	int		status = 0;
 864	unsigned	uframe;
 865	unsigned	c_mask;
 866	struct ehci_qh_hw	*hw = qh->hw;
 867	struct ehci_tt		*tt;
 868
 869	hw->hw_next = EHCI_LIST_END(ehci);
 870
 871	/* reuse the previous schedule slots, if we can */
 872	if (qh->ps.phase != NO_FRAME) {
 873		ehci_dbg(ehci, "reused qh %p schedule\n", qh);
 874		return 0;
 875	}
 876
 877	uframe = 0;
 878	c_mask = 0;
 879	tt = find_tt(qh->ps.udev);
 880	if (IS_ERR(tt)) {
 881		status = PTR_ERR(tt);
 882		goto done;
 883	}
 884	compute_tt_budget(ehci->tt_budget, tt);
 885
 886	/* else scan the schedule to find a group of slots such that all
 887	 * uframes have enough periodic bandwidth available.
 888	 */
 889	/* "normal" case, uframing flexible except with splits */
 890	if (qh->ps.bw_period) {
 891		int		i;
 892		unsigned	frame;
 893
 894		for (i = qh->ps.bw_period; i > 0; --i) {
 895			frame = ++ehci->random_frame & (qh->ps.bw_period - 1);
 896			for (uframe = 0; uframe < 8; uframe++) {
 897				status = check_intr_schedule(ehci,
 898						frame, uframe, qh, &c_mask, tt);
 899				if (status == 0)
 900					goto got_it;
 901			}
 902		}
 903
 904	/* qh->ps.bw_period == 0 means every uframe */
 905	} else {
 906		status = check_intr_schedule(ehci, 0, 0, qh, &c_mask, tt);
 907	}
 908	if (status)
 909		goto done;
 910
 911 got_it:
 912	qh->ps.phase = (qh->ps.period ? ehci->random_frame &
 913			(qh->ps.period - 1) : 0);
 914	qh->ps.bw_phase = qh->ps.phase & (qh->ps.bw_period - 1);
 915	qh->ps.phase_uf = uframe;
 916	qh->ps.cs_mask = qh->ps.period ?
 917			(c_mask << 8) | (1 << uframe) :
 918			QH_SMASK;
 919
 920	/* reset S-frame and (maybe) C-frame masks */
 921	hw->hw_info2 &= cpu_to_hc32(ehci, ~(QH_CMASK | QH_SMASK));
 922	hw->hw_info2 |= cpu_to_hc32(ehci, qh->ps.cs_mask);
 923	reserve_release_intr_bandwidth(ehci, qh, 1);
 924
 925done:
 926	return status;
 927}
 928
 929static int intr_submit(
 930	struct ehci_hcd		*ehci,
 931	struct urb		*urb,
 932	struct list_head	*qtd_list,
 933	gfp_t			mem_flags
 934) {
 935	unsigned		epnum;
 936	unsigned long		flags;
 937	struct ehci_qh		*qh;
 938	int			status;
 939	struct list_head	empty;
 940
 941	/* get endpoint and transfer/schedule data */
 942	epnum = urb->ep->desc.bEndpointAddress;
 943
 944	spin_lock_irqsave(&ehci->lock, flags);
 945
 946	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
 947		status = -ESHUTDOWN;
 948		goto done_not_linked;
 949	}
 950	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
 951	if (unlikely(status))
 952		goto done_not_linked;
 953
 954	/* get qh and force any scheduling errors */
 955	INIT_LIST_HEAD(&empty);
 956	qh = qh_append_tds(ehci, urb, &empty, epnum, &urb->ep->hcpriv);
 957	if (qh == NULL) {
 958		status = -ENOMEM;
 959		goto done;
 960	}
 961	if (qh->qh_state == QH_STATE_IDLE) {
 962		status = qh_schedule(ehci, qh);
 963		if (status)
 964			goto done;
 965	}
 966
 967	/* then queue the urb's tds to the qh */
 968	qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv);
 969	BUG_ON(qh == NULL);
 970
 971	/* stuff into the periodic schedule */
 972	if (qh->qh_state == QH_STATE_IDLE) {
 973		qh_refresh(ehci, qh);
 974		qh_link_periodic(ehci, qh);
 975	} else {
 976		/* cancel unlink wait for the qh */
 977		cancel_unlink_wait_intr(ehci, qh);
 978	}
 979
 980	/* ... update usbfs periodic stats */
 981	ehci_to_hcd(ehci)->self.bandwidth_int_reqs++;
 982
 983done:
 984	if (unlikely(status))
 985		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
 986done_not_linked:
 987	spin_unlock_irqrestore(&ehci->lock, flags);
 988	if (status)
 989		qtd_list_free(ehci, urb, qtd_list);
 990
 991	return status;
 992}
 993
 994static void scan_intr(struct ehci_hcd *ehci)
 995{
 996	struct ehci_qh		*qh;
 997
 998	list_for_each_entry_safe(qh, ehci->qh_scan_next, &ehci->intr_qh_list,
 999			intr_node) {
1000
1001		/* clean any finished work for this qh */
1002		if (!list_empty(&qh->qtd_list)) {
1003			int temp;
1004
1005			/*
1006			 * Unlinks could happen here; completion reporting
1007			 * drops the lock.  That's why ehci->qh_scan_next
1008			 * always holds the next qh to scan; if the next qh
1009			 * gets unlinked then ehci->qh_scan_next is adjusted
1010			 * in qh_unlink_periodic().
1011			 */
1012			temp = qh_completions(ehci, qh);
1013			if (unlikely(temp))
1014				start_unlink_intr(ehci, qh);
1015			else if (unlikely(list_empty(&qh->qtd_list) &&
1016					qh->qh_state == QH_STATE_LINKED))
1017				start_unlink_intr_wait(ehci, qh);
1018		}
1019	}
1020}
1021
1022/*-------------------------------------------------------------------------*/
1023
1024/* ehci_iso_stream ops work with both ITD and SITD */
1025
1026static struct ehci_iso_stream *
1027iso_stream_alloc(gfp_t mem_flags)
1028{
1029	struct ehci_iso_stream *stream;
1030
1031	stream = kzalloc(sizeof(*stream), mem_flags);
1032	if (likely(stream != NULL)) {
1033		INIT_LIST_HEAD(&stream->td_list);
1034		INIT_LIST_HEAD(&stream->free_list);
1035		stream->next_uframe = NO_FRAME;
1036		stream->ps.phase = NO_FRAME;
1037	}
1038	return stream;
1039}
1040
1041static void
1042iso_stream_init(
1043	struct ehci_hcd		*ehci,
1044	struct ehci_iso_stream	*stream,
1045	struct urb		*urb
1046)
1047{
1048	static const u8 smask_out[] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f };
1049
1050	struct usb_device	*dev = urb->dev;
1051	u32			buf1;
1052	unsigned		epnum, maxp;
1053	int			is_input;
1054	unsigned		tmp;
1055
1056	/*
1057	 * this might be a "high bandwidth" highspeed endpoint,
1058	 * as encoded in the ep descriptor's wMaxPacket field
1059	 */
1060	epnum = usb_pipeendpoint(urb->pipe);
1061	is_input = usb_pipein(urb->pipe) ? USB_DIR_IN : 0;
1062	maxp = usb_endpoint_maxp(&urb->ep->desc);
1063	buf1 = is_input ? 1 << 11 : 0;
1064
1065	/* knows about ITD vs SITD */
1066	if (dev->speed == USB_SPEED_HIGH) {
1067		unsigned multi = usb_endpoint_maxp_mult(&urb->ep->desc);
1068
1069		stream->highspeed = 1;
1070
1071		buf1 |= maxp;
1072		maxp *= multi;
1073
1074		stream->buf0 = cpu_to_hc32(ehci, (epnum << 8) | dev->devnum);
1075		stream->buf1 = cpu_to_hc32(ehci, buf1);
1076		stream->buf2 = cpu_to_hc32(ehci, multi);
1077
1078		/* usbfs wants to report the average usecs per frame tied up
1079		 * when transfers on this endpoint are scheduled ...
1080		 */
1081		stream->ps.usecs = HS_USECS_ISO(maxp);
1082
1083		/* period for bandwidth allocation */
1084		tmp = min_t(unsigned, EHCI_BANDWIDTH_SIZE,
1085				1 << (urb->ep->desc.bInterval - 1));
1086
1087		/* Allow urb->interval to override */
1088		stream->ps.bw_uperiod = min_t(unsigned, tmp, urb->interval);
1089
1090		stream->uperiod = urb->interval;
1091		stream->ps.period = urb->interval >> 3;
1092		stream->bandwidth = stream->ps.usecs * 8 /
1093				stream->ps.bw_uperiod;
1094
1095	} else {
1096		u32		addr;
1097		int		think_time;
1098		int		hs_transfers;
1099
1100		addr = dev->ttport << 24;
1101		if (!ehci_is_TDI(ehci)
1102				|| (dev->tt->hub !=
1103					ehci_to_hcd(ehci)->self.root_hub))
1104			addr |= dev->tt->hub->devnum << 16;
1105		addr |= epnum << 8;
1106		addr |= dev->devnum;
1107		stream->ps.usecs = HS_USECS_ISO(maxp);
1108		think_time = dev->tt ? dev->tt->think_time : 0;
1109		stream->ps.tt_usecs = NS_TO_US(think_time + usb_calc_bus_time(
1110				dev->speed, is_input, 1, maxp));
1111		hs_transfers = max(1u, (maxp + 187) / 188);
1112		if (is_input) {
1113			u32	tmp;
1114
1115			addr |= 1 << 31;
1116			stream->ps.c_usecs = stream->ps.usecs;
1117			stream->ps.usecs = HS_USECS_ISO(1);
1118			stream->ps.cs_mask = 1;
1119
1120			/* c-mask as specified in USB 2.0 11.18.4 3.c */
1121			tmp = (1 << (hs_transfers + 2)) - 1;
1122			stream->ps.cs_mask |= tmp << (8 + 2);
1123		} else
1124			stream->ps.cs_mask = smask_out[hs_transfers - 1];
1125
1126		/* period for bandwidth allocation */
1127		tmp = min_t(unsigned, EHCI_BANDWIDTH_FRAMES,
1128				1 << (urb->ep->desc.bInterval - 1));
1129
1130		/* Allow urb->interval to override */
1131		stream->ps.bw_period = min_t(unsigned, tmp, urb->interval);
1132		stream->ps.bw_uperiod = stream->ps.bw_period << 3;
1133
1134		stream->ps.period = urb->interval;
1135		stream->uperiod = urb->interval << 3;
1136		stream->bandwidth = (stream->ps.usecs + stream->ps.c_usecs) /
1137				stream->ps.bw_period;
1138
1139		/* stream->splits gets created from cs_mask later */
1140		stream->address = cpu_to_hc32(ehci, addr);
1141	}
1142
1143	stream->ps.udev = dev;
1144	stream->ps.ep = urb->ep;
1145
1146	stream->bEndpointAddress = is_input | epnum;
1147	stream->maxp = maxp;
1148}
1149
1150static struct ehci_iso_stream *
1151iso_stream_find(struct ehci_hcd *ehci, struct urb *urb)
1152{
1153	unsigned		epnum;
1154	struct ehci_iso_stream	*stream;
1155	struct usb_host_endpoint *ep;
1156	unsigned long		flags;
1157
1158	epnum = usb_pipeendpoint (urb->pipe);
1159	if (usb_pipein(urb->pipe))
1160		ep = urb->dev->ep_in[epnum];
1161	else
1162		ep = urb->dev->ep_out[epnum];
1163
1164	spin_lock_irqsave(&ehci->lock, flags);
1165	stream = ep->hcpriv;
1166
1167	if (unlikely(stream == NULL)) {
1168		stream = iso_stream_alloc(GFP_ATOMIC);
1169		if (likely(stream != NULL)) {
1170			ep->hcpriv = stream;
1171			iso_stream_init(ehci, stream, urb);
1172		}
1173
1174	/* if dev->ep [epnum] is a QH, hw is set */
1175	} else if (unlikely(stream->hw != NULL)) {
1176		ehci_dbg(ehci, "dev %s ep%d%s, not iso??\n",
1177			urb->dev->devpath, epnum,
1178			usb_pipein(urb->pipe) ? "in" : "out");
1179		stream = NULL;
1180	}
1181
1182	spin_unlock_irqrestore(&ehci->lock, flags);
1183	return stream;
1184}
1185
1186/*-------------------------------------------------------------------------*/
1187
1188/* ehci_iso_sched ops can be ITD-only or SITD-only */
1189
1190static struct ehci_iso_sched *
1191iso_sched_alloc(unsigned packets, gfp_t mem_flags)
1192{
1193	struct ehci_iso_sched	*iso_sched;
1194	int			size = sizeof(*iso_sched);
1195
1196	size += packets * sizeof(struct ehci_iso_packet);
1197	iso_sched = kzalloc(size, mem_flags);
1198	if (likely(iso_sched != NULL))
1199		INIT_LIST_HEAD(&iso_sched->td_list);
1200
1201	return iso_sched;
1202}
1203
1204static inline void
1205itd_sched_init(
1206	struct ehci_hcd		*ehci,
1207	struct ehci_iso_sched	*iso_sched,
1208	struct ehci_iso_stream	*stream,
1209	struct urb		*urb
1210)
1211{
1212	unsigned	i;
1213	dma_addr_t	dma = urb->transfer_dma;
1214
1215	/* how many uframes are needed for these transfers */
1216	iso_sched->span = urb->number_of_packets * stream->uperiod;
1217
1218	/* figure out per-uframe itd fields that we'll need later
1219	 * when we fit new itds into the schedule.
1220	 */
1221	for (i = 0; i < urb->number_of_packets; i++) {
1222		struct ehci_iso_packet	*uframe = &iso_sched->packet[i];
1223		unsigned		length;
1224		dma_addr_t		buf;
1225		u32			trans;
1226
1227		length = urb->iso_frame_desc[i].length;
1228		buf = dma + urb->iso_frame_desc[i].offset;
1229
1230		trans = EHCI_ISOC_ACTIVE;
1231		trans |= buf & 0x0fff;
1232		if (unlikely(((i + 1) == urb->number_of_packets))
1233				&& !(urb->transfer_flags & URB_NO_INTERRUPT))
1234			trans |= EHCI_ITD_IOC;
1235		trans |= length << 16;
1236		uframe->transaction = cpu_to_hc32(ehci, trans);
1237
1238		/* might need to cross a buffer page within a uframe */
1239		uframe->bufp = (buf & ~(u64)0x0fff);
1240		buf += length;
1241		if (unlikely((uframe->bufp != (buf & ~(u64)0x0fff))))
1242			uframe->cross = 1;
1243	}
1244}
1245
1246static void
1247iso_sched_free(
1248	struct ehci_iso_stream	*stream,
1249	struct ehci_iso_sched	*iso_sched
1250)
1251{
1252	if (!iso_sched)
1253		return;
1254	/* caller must hold ehci->lock! */
1255	list_splice(&iso_sched->td_list, &stream->free_list);
1256	kfree(iso_sched);
1257}
1258
1259static int
1260itd_urb_transaction(
1261	struct ehci_iso_stream	*stream,
1262	struct ehci_hcd		*ehci,
1263	struct urb		*urb,
1264	gfp_t			mem_flags
1265)
1266{
1267	struct ehci_itd		*itd;
1268	dma_addr_t		itd_dma;
1269	int			i;
1270	unsigned		num_itds;
1271	struct ehci_iso_sched	*sched;
1272	unsigned long		flags;
1273
1274	sched = iso_sched_alloc(urb->number_of_packets, mem_flags);
1275	if (unlikely(sched == NULL))
1276		return -ENOMEM;
1277
1278	itd_sched_init(ehci, sched, stream, urb);
1279
1280	if (urb->interval < 8)
1281		num_itds = 1 + (sched->span + 7) / 8;
1282	else
1283		num_itds = urb->number_of_packets;
1284
1285	/* allocate/init ITDs */
1286	spin_lock_irqsave(&ehci->lock, flags);
1287	for (i = 0; i < num_itds; i++) {
1288
1289		/*
1290		 * Use iTDs from the free list, but not iTDs that may
1291		 * still be in use by the hardware.
1292		 */
1293		if (likely(!list_empty(&stream->free_list))) {
1294			itd = list_first_entry(&stream->free_list,
1295					struct ehci_itd, itd_list);
1296			if (itd->frame == ehci->now_frame)
1297				goto alloc_itd;
1298			list_del(&itd->itd_list);
1299			itd_dma = itd->itd_dma;
1300		} else {
1301 alloc_itd:
1302			spin_unlock_irqrestore(&ehci->lock, flags);
1303			itd = dma_pool_alloc(ehci->itd_pool, mem_flags,
1304					&itd_dma);
1305			spin_lock_irqsave(&ehci->lock, flags);
1306			if (!itd) {
1307				iso_sched_free(stream, sched);
1308				spin_unlock_irqrestore(&ehci->lock, flags);
1309				return -ENOMEM;
1310			}
1311		}
1312
1313		memset(itd, 0, sizeof(*itd));
1314		itd->itd_dma = itd_dma;
1315		itd->frame = NO_FRAME;
1316		list_add(&itd->itd_list, &sched->td_list);
1317	}
1318	spin_unlock_irqrestore(&ehci->lock, flags);
1319
1320	/* temporarily store schedule info in hcpriv */
1321	urb->hcpriv = sched;
1322	urb->error_count = 0;
1323	return 0;
1324}
1325
1326/*-------------------------------------------------------------------------*/
1327
1328static void reserve_release_iso_bandwidth(struct ehci_hcd *ehci,
1329		struct ehci_iso_stream *stream, int sign)
1330{
1331	unsigned		uframe;
1332	unsigned		i, j;
1333	unsigned		s_mask, c_mask, m;
1334	int			usecs = stream->ps.usecs;
1335	int			c_usecs = stream->ps.c_usecs;
1336	int			tt_usecs = stream->ps.tt_usecs;
1337	struct ehci_tt		*tt;
1338
1339	if (stream->ps.phase == NO_FRAME)	/* Bandwidth wasn't reserved */
1340		return;
1341	uframe = stream->ps.bw_phase << 3;
1342
1343	bandwidth_dbg(ehci, sign, "iso", &stream->ps);
1344
1345	if (sign < 0) {		/* Release bandwidth */
1346		usecs = -usecs;
1347		c_usecs = -c_usecs;
1348		tt_usecs = -tt_usecs;
1349	}
1350
1351	if (!stream->splits) {		/* High speed */
1352		for (i = uframe + stream->ps.phase_uf; i < EHCI_BANDWIDTH_SIZE;
1353				i += stream->ps.bw_uperiod)
1354			ehci->bandwidth[i] += usecs;
1355
1356	} else {			/* Full speed */
1357		s_mask = stream->ps.cs_mask;
1358		c_mask = s_mask >> 8;
1359
1360		/* NOTE: adjustment needed for frame overflow */
1361		for (i = uframe; i < EHCI_BANDWIDTH_SIZE;
1362				i += stream->ps.bw_uperiod) {
1363			for ((j = stream->ps.phase_uf, m = 1 << j); j < 8;
1364					(++j, m <<= 1)) {
1365				if (s_mask & m)
1366					ehci->bandwidth[i+j] += usecs;
1367				else if (c_mask & m)
1368					ehci->bandwidth[i+j] += c_usecs;
1369			}
1370		}
1371
1372		tt = find_tt(stream->ps.udev);
1373		if (sign > 0)
1374			list_add_tail(&stream->ps.ps_list, &tt->ps_list);
1375		else
1376			list_del(&stream->ps.ps_list);
1377
1378		for (i = uframe >> 3; i < EHCI_BANDWIDTH_FRAMES;
1379				i += stream->ps.bw_period)
1380			tt->bandwidth[i] += tt_usecs;
1381	}
1382}
1383
1384static inline int
1385itd_slot_ok(
1386	struct ehci_hcd		*ehci,
1387	struct ehci_iso_stream	*stream,
1388	unsigned		uframe
1389)
1390{
1391	unsigned		usecs;
1392
1393	/* convert "usecs we need" to "max already claimed" */
1394	usecs = ehci->uframe_periodic_max - stream->ps.usecs;
1395
1396	for (uframe &= stream->ps.bw_uperiod - 1; uframe < EHCI_BANDWIDTH_SIZE;
1397			uframe += stream->ps.bw_uperiod) {
1398		if (ehci->bandwidth[uframe] > usecs)
1399			return 0;
1400	}
1401	return 1;
1402}
1403
1404static inline int
1405sitd_slot_ok(
1406	struct ehci_hcd		*ehci,
1407	struct ehci_iso_stream	*stream,
1408	unsigned		uframe,
1409	struct ehci_iso_sched	*sched,
1410	struct ehci_tt		*tt
1411)
1412{
1413	unsigned		mask, tmp;
1414	unsigned		frame, uf;
1415
1416	mask = stream->ps.cs_mask << (uframe & 7);
1417
1418	/* for OUT, don't wrap SSPLIT into H-microframe 7 */
1419	if (((stream->ps.cs_mask & 0xff) << (uframe & 7)) >= (1 << 7))
1420		return 0;
1421
1422	/* for IN, don't wrap CSPLIT into the next frame */
1423	if (mask & ~0xffff)
1424		return 0;
1425
1426	/* check bandwidth */
1427	uframe &= stream->ps.bw_uperiod - 1;
1428	frame = uframe >> 3;
1429
1430#ifdef CONFIG_USB_EHCI_TT_NEWSCHED
1431	/* The tt's fullspeed bus bandwidth must be available.
1432	 * tt_available scheduling guarantees 10+% for control/bulk.
1433	 */
1434	uf = uframe & 7;
1435	if (!tt_available(ehci, &stream->ps, tt, frame, uf))
1436		return 0;
1437#else
1438	/* tt must be idle for start(s), any gap, and csplit.
1439	 * assume scheduling slop leaves 10+% for control/bulk.
1440	 */
1441	if (!tt_no_collision(ehci, stream->ps.bw_period,
1442			stream->ps.udev, frame, mask))
1443		return 0;
1444#endif
1445
1446	do {
1447		unsigned	max_used;
1448		unsigned	i;
1449
1450		/* check starts (OUT uses more than one) */
1451		uf = uframe;
1452		max_used = ehci->uframe_periodic_max - stream->ps.usecs;
1453		for (tmp = stream->ps.cs_mask & 0xff; tmp; tmp >>= 1, uf++) {
1454			if (ehci->bandwidth[uf] > max_used)
1455				return 0;
1456		}
1457
1458		/* for IN, check CSPLIT */
1459		if (stream->ps.c_usecs) {
1460			max_used = ehci->uframe_periodic_max -
1461					stream->ps.c_usecs;
1462			uf = uframe & ~7;
1463			tmp = 1 << (2+8);
1464			for (i = (uframe & 7) + 2; i < 8; (++i, tmp <<= 1)) {
1465				if ((stream->ps.cs_mask & tmp) == 0)
1466					continue;
1467				if (ehci->bandwidth[uf+i] > max_used)
1468					return 0;
1469			}
1470		}
1471
1472		uframe += stream->ps.bw_uperiod;
1473	} while (uframe < EHCI_BANDWIDTH_SIZE);
1474
1475	stream->ps.cs_mask <<= uframe & 7;
1476	stream->splits = cpu_to_hc32(ehci, stream->ps.cs_mask);
1477	return 1;
1478}
1479
1480/*
1481 * This scheduler plans almost as far into the future as it has actual
1482 * periodic schedule slots.  (Affected by TUNE_FLS, which defaults to
1483 * "as small as possible" to be cache-friendlier.)  That limits the size
1484 * transfers you can stream reliably; avoid more than 64 msec per urb.
1485 * Also avoid queue depths of less than ehci's worst irq latency (affected
1486 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
1487 * and other factors); or more than about 230 msec total (for portability,
1488 * given EHCI_TUNE_FLS and the slop).  Or, write a smarter scheduler!
1489 */
1490
1491static int
1492iso_stream_schedule(
1493	struct ehci_hcd		*ehci,
1494	struct urb		*urb,
1495	struct ehci_iso_stream	*stream
1496)
1497{
1498	u32			now, base, next, start, period, span, now2;
1499	u32			wrap = 0, skip = 0;
1500	int			status = 0;
1501	unsigned		mod = ehci->periodic_size << 3;
1502	struct ehci_iso_sched	*sched = urb->hcpriv;
1503	bool			empty = list_empty(&stream->td_list);
1504	bool			new_stream = false;
1505
1506	period = stream->uperiod;
1507	span = sched->span;
1508	if (!stream->highspeed)
1509		span <<= 3;
1510
1511	/* Start a new isochronous stream? */
1512	if (unlikely(empty && !hcd_periodic_completion_in_progress(
1513			ehci_to_hcd(ehci), urb->ep))) {
1514
1515		/* Schedule the endpoint */
1516		if (stream->ps.phase == NO_FRAME) {
1517			int		done = 0;
1518			struct ehci_tt	*tt = find_tt(stream->ps.udev);
1519
1520			if (IS_ERR(tt)) {
1521				status = PTR_ERR(tt);
1522				goto fail;
1523			}
1524			compute_tt_budget(ehci->tt_budget, tt);
1525
1526			start = ((-(++ehci->random_frame)) << 3) & (period - 1);
1527
1528			/* find a uframe slot with enough bandwidth.
1529			 * Early uframes are more precious because full-speed
1530			 * iso IN transfers can't use late uframes,
1531			 * and therefore they should be allocated last.
1532			 */
1533			next = start;
1534			start += period;
1535			do {
1536				start--;
1537				/* check schedule: enough space? */
1538				if (stream->highspeed) {
1539					if (itd_slot_ok(ehci, stream, start))
1540						done = 1;
1541				} else {
1542					if ((start % 8) >= 6)
1543						continue;
1544					if (sitd_slot_ok(ehci, stream, start,
1545							sched, tt))
1546						done = 1;
1547				}
1548			} while (start > next && !done);
1549
1550			/* no room in the schedule */
1551			if (!done) {
1552				ehci_dbg(ehci, "iso sched full %p", urb);
1553				status = -ENOSPC;
1554				goto fail;
1555			}
1556			stream->ps.phase = (start >> 3) &
1557					(stream->ps.period - 1);
1558			stream->ps.bw_phase = stream->ps.phase &
1559					(stream->ps.bw_period - 1);
1560			stream->ps.phase_uf = start & 7;
1561			reserve_release_iso_bandwidth(ehci, stream, 1);
1562		}
1563
1564		/* New stream is already scheduled; use the upcoming slot */
1565		else {
1566			start = (stream->ps.phase << 3) + stream->ps.phase_uf;
1567		}
1568
1569		stream->next_uframe = start;
1570		new_stream = true;
1571	}
1572
1573	now = ehci_read_frame_index(ehci) & (mod - 1);
1574
1575	/* Take the isochronous scheduling threshold into account */
1576	if (ehci->i_thresh)
1577		next = now + ehci->i_thresh;	/* uframe cache */
1578	else
1579		next = (now + 2 + 7) & ~0x07;	/* full frame cache */
1580
1581	/* If needed, initialize last_iso_frame so that this URB will be seen */
1582	if (ehci->isoc_count == 0)
1583		ehci->last_iso_frame = now >> 3;
1584
1585	/*
1586	 * Use ehci->last_iso_frame as the base.  There can't be any
1587	 * TDs scheduled for earlier than that.
1588	 */
1589	base = ehci->last_iso_frame << 3;
1590	next = (next - base) & (mod - 1);
1591	start = (stream->next_uframe - base) & (mod - 1);
1592
1593	if (unlikely(new_stream))
1594		goto do_ASAP;
1595
1596	/*
1597	 * Typical case: reuse current schedule, stream may still be active.
1598	 * Hopefully there are no gaps from the host falling behind
1599	 * (irq delays etc).  If there are, the behavior depends on
1600	 * whether URB_ISO_ASAP is set.
1601	 */
1602	now2 = (now - base) & (mod - 1);
1603
1604	/* Is the schedule about to wrap around? */
1605	if (unlikely(!empty && start < period)) {
1606		ehci_dbg(ehci, "request %p would overflow (%u-%u < %u mod %u)\n",
1607				urb, stream->next_uframe, base, period, mod);
1608		status = -EFBIG;
1609		goto fail;
1610	}
1611
1612	/* Is the next packet scheduled after the base time? */
1613	if (likely(!empty || start <= now2 + period)) {
1614
1615		/* URB_ISO_ASAP: make sure that start >= next */
1616		if (unlikely(start < next &&
1617				(urb->transfer_flags & URB_ISO_ASAP)))
1618			goto do_ASAP;
1619
1620		/* Otherwise use start, if it's not in the past */
1621		if (likely(start >= now2))
1622			goto use_start;
1623
1624	/* Otherwise we got an underrun while the queue was empty */
1625	} else {
1626		if (urb->transfer_flags & URB_ISO_ASAP)
1627			goto do_ASAP;
1628		wrap = mod;
1629		now2 += mod;
1630	}
1631
1632	/* How many uframes and packets do we need to skip? */
1633	skip = (now2 - start + period - 1) & -period;
1634	if (skip >= span) {		/* Entirely in the past? */
1635		ehci_dbg(ehci, "iso underrun %p (%u+%u < %u) [%u]\n",
1636				urb, start + base, span - period, now2 + base,
1637				base);
1638
1639		/* Try to keep the last TD intact for scanning later */
1640		skip = span - period;
1641
1642		/* Will it come before the current scan position? */
1643		if (empty) {
1644			skip = span;	/* Skip the entire URB */
1645			status = 1;	/* and give it back immediately */
1646			iso_sched_free(stream, sched);
1647			sched = NULL;
1648		}
1649	}
1650	urb->error_count = skip / period;
1651	if (sched)
1652		sched->first_packet = urb->error_count;
1653	goto use_start;
1654
1655 do_ASAP:
1656	/* Use the first slot after "next" */
1657	start = next + ((start - next) & (period - 1));
1658
1659 use_start:
1660	/* Tried to schedule too far into the future? */
1661	if (unlikely(start + span - period >= mod + wrap)) {
1662		ehci_dbg(ehci, "request %p would overflow (%u+%u >= %u)\n",
1663				urb, start, span - period, mod + wrap);
1664		status = -EFBIG;
1665		goto fail;
1666	}
1667
1668	start += base;
1669	stream->next_uframe = (start + skip) & (mod - 1);
1670
1671	/* report high speed start in uframes; full speed, in frames */
1672	urb->start_frame = start & (mod - 1);
1673	if (!stream->highspeed)
1674		urb->start_frame >>= 3;
1675	return status;
1676
1677 fail:
1678	iso_sched_free(stream, sched);
1679	urb->hcpriv = NULL;
1680	return status;
1681}
1682
1683/*-------------------------------------------------------------------------*/
1684
1685static inline void
1686itd_init(struct ehci_hcd *ehci, struct ehci_iso_stream *stream,
1687		struct ehci_itd *itd)
1688{
1689	int i;
1690
1691	/* it's been recently zeroed */
1692	itd->hw_next = EHCI_LIST_END(ehci);
1693	itd->hw_bufp[0] = stream->buf0;
1694	itd->hw_bufp[1] = stream->buf1;
1695	itd->hw_bufp[2] = stream->buf2;
1696
1697	for (i = 0; i < 8; i++)
1698		itd->index[i] = -1;
1699
1700	/* All other fields are filled when scheduling */
1701}
1702
1703static inline void
1704itd_patch(
1705	struct ehci_hcd		*ehci,
1706	struct ehci_itd		*itd,
1707	struct ehci_iso_sched	*iso_sched,
1708	unsigned		index,
1709	u16			uframe
1710)
1711{
1712	struct ehci_iso_packet	*uf = &iso_sched->packet[index];
1713	unsigned		pg = itd->pg;
1714
1715	/* BUG_ON(pg == 6 && uf->cross); */
1716
1717	uframe &= 0x07;
1718	itd->index[uframe] = index;
1719
1720	itd->hw_transaction[uframe] = uf->transaction;
1721	itd->hw_transaction[uframe] |= cpu_to_hc32(ehci, pg << 12);
1722	itd->hw_bufp[pg] |= cpu_to_hc32(ehci, uf->bufp & ~(u32)0);
1723	itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(uf->bufp >> 32));
1724
1725	/* iso_frame_desc[].offset must be strictly increasing */
1726	if (unlikely(uf->cross)) {
1727		u64	bufp = uf->bufp + 4096;
1728
1729		itd->pg = ++pg;
1730		itd->hw_bufp[pg] |= cpu_to_hc32(ehci, bufp & ~(u32)0);
1731		itd->hw_bufp_hi[pg] |= cpu_to_hc32(ehci, (u32)(bufp >> 32));
1732	}
1733}
1734
1735static inline void
1736itd_link(struct ehci_hcd *ehci, unsigned frame, struct ehci_itd *itd)
1737{
1738	union ehci_shadow	*prev = &ehci->pshadow[frame];
1739	__hc32			*hw_p = &ehci->periodic[frame];
1740	union ehci_shadow	here = *prev;
1741	__hc32			type = 0;
1742
1743	/* skip any iso nodes which might belong to previous microframes */
1744	while (here.ptr) {
1745		type = Q_NEXT_TYPE(ehci, *hw_p);
1746		if (type == cpu_to_hc32(ehci, Q_TYPE_QH))
1747			break;
1748		prev = periodic_next_shadow(ehci, prev, type);
1749		hw_p = shadow_next_periodic(ehci, &here, type);
1750		here = *prev;
1751	}
1752
1753	itd->itd_next = here;
1754	itd->hw_next = *hw_p;
1755	prev->itd = itd;
1756	itd->frame = frame;
1757	wmb();
1758	*hw_p = cpu_to_hc32(ehci, itd->itd_dma | Q_TYPE_ITD);
1759}
1760
1761/* fit urb's itds into the selected schedule slot; activate as needed */
1762static void itd_link_urb(
1763	struct ehci_hcd		*ehci,
1764	struct urb		*urb,
1765	unsigned		mod,
1766	struct ehci_iso_stream	*stream
1767)
1768{
1769	int			packet;
1770	unsigned		next_uframe, uframe, frame;
1771	struct ehci_iso_sched	*iso_sched = urb->hcpriv;
1772	struct ehci_itd		*itd;
1773
1774	next_uframe = stream->next_uframe & (mod - 1);
1775
1776	if (unlikely(list_empty(&stream->td_list)))
1777		ehci_to_hcd(ehci)->self.bandwidth_allocated
1778				+= stream->bandwidth;
1779
1780	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
1781		if (ehci->amd_pll_fix == 1)
1782			usb_amd_quirk_pll_disable();
1783	}
1784
1785	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
1786
1787	/* fill iTDs uframe by uframe */
1788	for (packet = iso_sched->first_packet, itd = NULL;
1789			packet < urb->number_of_packets;) {
1790		if (itd == NULL) {
1791			/* ASSERT:  we have all necessary itds */
1792			/* BUG_ON(list_empty(&iso_sched->td_list)); */
1793
1794			/* ASSERT:  no itds for this endpoint in this uframe */
1795
1796			itd = list_entry(iso_sched->td_list.next,
1797					struct ehci_itd, itd_list);
1798			list_move_tail(&itd->itd_list, &stream->td_list);
1799			itd->stream = stream;
1800			itd->urb = urb;
1801			itd_init(ehci, stream, itd);
1802		}
1803
1804		uframe = next_uframe & 0x07;
1805		frame = next_uframe >> 3;
1806
1807		itd_patch(ehci, itd, iso_sched, packet, uframe);
1808
1809		next_uframe += stream->uperiod;
1810		next_uframe &= mod - 1;
1811		packet++;
1812
1813		/* link completed itds into the schedule */
1814		if (((next_uframe >> 3) != frame)
1815				|| packet == urb->number_of_packets) {
1816			itd_link(ehci, frame & (ehci->periodic_size - 1), itd);
1817			itd = NULL;
1818		}
1819	}
1820	stream->next_uframe = next_uframe;
1821
1822	/* don't need that schedule data any more */
1823	iso_sched_free(stream, iso_sched);
1824	urb->hcpriv = stream;
1825
1826	++ehci->isoc_count;
1827	enable_periodic(ehci);
1828}
1829
1830#define	ISO_ERRS (EHCI_ISOC_BUF_ERR | EHCI_ISOC_BABBLE | EHCI_ISOC_XACTERR)
1831
1832/* Process and recycle a completed ITD.  Return true iff its urb completed,
1833 * and hence its completion callback probably added things to the hardware
1834 * schedule.
1835 *
1836 * Note that we carefully avoid recycling this descriptor until after any
1837 * completion callback runs, so that it won't be reused quickly.  That is,
1838 * assuming (a) no more than two urbs per frame on this endpoint, and also
1839 * (b) only this endpoint's completions submit URBs.  It seems some silicon
1840 * corrupts things if you reuse completed descriptors very quickly...
1841 */
1842static bool itd_complete(struct ehci_hcd *ehci, struct ehci_itd *itd)
1843{
1844	struct urb				*urb = itd->urb;
1845	struct usb_iso_packet_descriptor	*desc;
1846	u32					t;
1847	unsigned				uframe;
1848	int					urb_index = -1;
1849	struct ehci_iso_stream			*stream = itd->stream;
1850	struct usb_device			*dev;
1851	bool					retval = false;
1852
1853	/* for each uframe with a packet */
1854	for (uframe = 0; uframe < 8; uframe++) {
1855		if (likely(itd->index[uframe] == -1))
1856			continue;
1857		urb_index = itd->index[uframe];
1858		desc = &urb->iso_frame_desc[urb_index];
1859
1860		t = hc32_to_cpup(ehci, &itd->hw_transaction[uframe]);
1861		itd->hw_transaction[uframe] = 0;
1862
1863		/* report transfer status */
1864		if (unlikely(t & ISO_ERRS)) {
1865			urb->error_count++;
1866			if (t & EHCI_ISOC_BUF_ERR)
1867				desc->status = usb_pipein(urb->pipe)
1868					? -ENOSR  /* hc couldn't read */
1869					: -ECOMM; /* hc couldn't write */
1870			else if (t & EHCI_ISOC_BABBLE)
1871				desc->status = -EOVERFLOW;
1872			else /* (t & EHCI_ISOC_XACTERR) */
1873				desc->status = -EPROTO;
1874
1875			/* HC need not update length with this error */
1876			if (!(t & EHCI_ISOC_BABBLE)) {
1877				desc->actual_length = EHCI_ITD_LENGTH(t);
1878				urb->actual_length += desc->actual_length;
1879			}
1880		} else if (likely((t & EHCI_ISOC_ACTIVE) == 0)) {
1881			desc->status = 0;
1882			desc->actual_length = EHCI_ITD_LENGTH(t);
1883			urb->actual_length += desc->actual_length;
1884		} else {
1885			/* URB was too late */
1886			urb->error_count++;
1887		}
1888	}
1889
1890	/* handle completion now? */
1891	if (likely((urb_index + 1) != urb->number_of_packets))
1892		goto done;
1893
1894	/*
1895	 * ASSERT: it's really the last itd for this urb
1896	 * list_for_each_entry (itd, &stream->td_list, itd_list)
1897	 *	 BUG_ON(itd->urb == urb);
1898	 */
1899
1900	/* give urb back to the driver; completion often (re)submits */
1901	dev = urb->dev;
1902	ehci_urb_done(ehci, urb, 0);
1903	retval = true;
1904	urb = NULL;
1905
1906	--ehci->isoc_count;
1907	disable_periodic(ehci);
1908
1909	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
1910	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
1911		if (ehci->amd_pll_fix == 1)
1912			usb_amd_quirk_pll_enable();
1913	}
1914
1915	if (unlikely(list_is_singular(&stream->td_list)))
1916		ehci_to_hcd(ehci)->self.bandwidth_allocated
1917				-= stream->bandwidth;
1918
1919done:
1920	itd->urb = NULL;
1921
1922	/* Add to the end of the free list for later reuse */
1923	list_move_tail(&itd->itd_list, &stream->free_list);
1924
1925	/* Recycle the iTDs when the pipeline is empty (ep no longer in use) */
1926	if (list_empty(&stream->td_list)) {
1927		list_splice_tail_init(&stream->free_list,
1928				&ehci->cached_itd_list);
1929		start_free_itds(ehci);
1930	}
1931
1932	return retval;
1933}
1934
1935/*-------------------------------------------------------------------------*/
1936
1937static int itd_submit(struct ehci_hcd *ehci, struct urb *urb,
1938	gfp_t mem_flags)
1939{
1940	int			status = -EINVAL;
1941	unsigned long		flags;
1942	struct ehci_iso_stream	*stream;
1943
1944	/* Get iso_stream head */
1945	stream = iso_stream_find(ehci, urb);
1946	if (unlikely(stream == NULL)) {
1947		ehci_dbg(ehci, "can't get iso stream\n");
1948		return -ENOMEM;
1949	}
1950	if (unlikely(urb->interval != stream->uperiod)) {
1951		ehci_dbg(ehci, "can't change iso interval %d --> %d\n",
1952			stream->uperiod, urb->interval);
1953		goto done;
1954	}
1955
1956#ifdef EHCI_URB_TRACE
1957	ehci_dbg(ehci,
1958		"%s %s urb %p ep%d%s len %d, %d pkts %d uframes [%p]\n",
1959		__func__, urb->dev->devpath, urb,
1960		usb_pipeendpoint(urb->pipe),
1961		usb_pipein(urb->pipe) ? "in" : "out",
1962		urb->transfer_buffer_length,
1963		urb->number_of_packets, urb->interval,
1964		stream);
1965#endif
1966
1967	/* allocate ITDs w/o locking anything */
1968	status = itd_urb_transaction(stream, ehci, urb, mem_flags);
1969	if (unlikely(status < 0)) {
1970		ehci_dbg(ehci, "can't init itds\n");
1971		goto done;
1972	}
1973
1974	/* schedule ... need to lock */
1975	spin_lock_irqsave(&ehci->lock, flags);
1976	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
1977		status = -ESHUTDOWN;
1978		goto done_not_linked;
1979	}
1980	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
1981	if (unlikely(status))
1982		goto done_not_linked;
1983	status = iso_stream_schedule(ehci, urb, stream);
1984	if (likely(status == 0)) {
1985		itd_link_urb(ehci, urb, ehci->periodic_size << 3, stream);
1986	} else if (status > 0) {
1987		status = 0;
1988		ehci_urb_done(ehci, urb, 0);
1989	} else {
1990		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
1991	}
1992 done_not_linked:
1993	spin_unlock_irqrestore(&ehci->lock, flags);
1994 done:
1995	return status;
1996}
1997
1998/*-------------------------------------------------------------------------*/
1999
2000/*
2001 * "Split ISO TDs" ... used for USB 1.1 devices going through the
2002 * TTs in USB 2.0 hubs.  These need microframe scheduling.
2003 */
2004
2005static inline void
2006sitd_sched_init(
2007	struct ehci_hcd		*ehci,
2008	struct ehci_iso_sched	*iso_sched,
2009	struct ehci_iso_stream	*stream,
2010	struct urb		*urb
2011)
2012{
2013	unsigned	i;
2014	dma_addr_t	dma = urb->transfer_dma;
2015
2016	/* how many frames are needed for these transfers */
2017	iso_sched->span = urb->number_of_packets * stream->ps.period;
2018
2019	/* figure out per-frame sitd fields that we'll need later
2020	 * when we fit new sitds into the schedule.
2021	 */
2022	for (i = 0; i < urb->number_of_packets; i++) {
2023		struct ehci_iso_packet	*packet = &iso_sched->packet[i];
2024		unsigned		length;
2025		dma_addr_t		buf;
2026		u32			trans;
2027
2028		length = urb->iso_frame_desc[i].length & 0x03ff;
2029		buf = dma + urb->iso_frame_desc[i].offset;
2030
2031		trans = SITD_STS_ACTIVE;
2032		if (((i + 1) == urb->number_of_packets)
2033				&& !(urb->transfer_flags & URB_NO_INTERRUPT))
2034			trans |= SITD_IOC;
2035		trans |= length << 16;
2036		packet->transaction = cpu_to_hc32(ehci, trans);
2037
2038		/* might need to cross a buffer page within a td */
2039		packet->bufp = buf;
2040		packet->buf1 = (buf + length) & ~0x0fff;
2041		if (packet->buf1 != (buf & ~(u64)0x0fff))
2042			packet->cross = 1;
2043
2044		/* OUT uses multiple start-splits */
2045		if (stream->bEndpointAddress & USB_DIR_IN)
2046			continue;
2047		length = (length + 187) / 188;
2048		if (length > 1) /* BEGIN vs ALL */
2049			length |= 1 << 3;
2050		packet->buf1 |= length;
2051	}
2052}
2053
2054static int
2055sitd_urb_transaction(
2056	struct ehci_iso_stream	*stream,
2057	struct ehci_hcd		*ehci,
2058	struct urb		*urb,
2059	gfp_t			mem_flags
2060)
2061{
2062	struct ehci_sitd	*sitd;
2063	dma_addr_t		sitd_dma;
2064	int			i;
2065	struct ehci_iso_sched	*iso_sched;
2066	unsigned long		flags;
2067
2068	iso_sched = iso_sched_alloc(urb->number_of_packets, mem_flags);
2069	if (iso_sched == NULL)
2070		return -ENOMEM;
2071
2072	sitd_sched_init(ehci, iso_sched, stream, urb);
2073
2074	/* allocate/init sITDs */
2075	spin_lock_irqsave(&ehci->lock, flags);
2076	for (i = 0; i < urb->number_of_packets; i++) {
2077
2078		/* NOTE:  for now, we don't try to handle wraparound cases
2079		 * for IN (using sitd->hw_backpointer, like a FSTN), which
2080		 * means we never need two sitds for full speed packets.
2081		 */
2082
2083		/*
2084		 * Use siTDs from the free list, but not siTDs that may
2085		 * still be in use by the hardware.
2086		 */
2087		if (likely(!list_empty(&stream->free_list))) {
2088			sitd = list_first_entry(&stream->free_list,
2089					 struct ehci_sitd, sitd_list);
2090			if (sitd->frame == ehci->now_frame)
2091				goto alloc_sitd;
2092			list_del(&sitd->sitd_list);
2093			sitd_dma = sitd->sitd_dma;
2094		} else {
2095 alloc_sitd:
2096			spin_unlock_irqrestore(&ehci->lock, flags);
2097			sitd = dma_pool_alloc(ehci->sitd_pool, mem_flags,
2098					&sitd_dma);
2099			spin_lock_irqsave(&ehci->lock, flags);
2100			if (!sitd) {
2101				iso_sched_free(stream, iso_sched);
2102				spin_unlock_irqrestore(&ehci->lock, flags);
2103				return -ENOMEM;
2104			}
2105		}
2106
2107		memset(sitd, 0, sizeof(*sitd));
2108		sitd->sitd_dma = sitd_dma;
2109		sitd->frame = NO_FRAME;
2110		list_add(&sitd->sitd_list, &iso_sched->td_list);
2111	}
2112
2113	/* temporarily store schedule info in hcpriv */
2114	urb->hcpriv = iso_sched;
2115	urb->error_count = 0;
2116
2117	spin_unlock_irqrestore(&ehci->lock, flags);
2118	return 0;
2119}
2120
2121/*-------------------------------------------------------------------------*/
2122
2123static inline void
2124sitd_patch(
2125	struct ehci_hcd		*ehci,
2126	struct ehci_iso_stream	*stream,
2127	struct ehci_sitd	*sitd,
2128	struct ehci_iso_sched	*iso_sched,
2129	unsigned		index
2130)
2131{
2132	struct ehci_iso_packet	*uf = &iso_sched->packet[index];
2133	u64			bufp;
2134
2135	sitd->hw_next = EHCI_LIST_END(ehci);
2136	sitd->hw_fullspeed_ep = stream->address;
2137	sitd->hw_uframe = stream->splits;
2138	sitd->hw_results = uf->transaction;
2139	sitd->hw_backpointer = EHCI_LIST_END(ehci);
2140
2141	bufp = uf->bufp;
2142	sitd->hw_buf[0] = cpu_to_hc32(ehci, bufp);
2143	sitd->hw_buf_hi[0] = cpu_to_hc32(ehci, bufp >> 32);
2144
2145	sitd->hw_buf[1] = cpu_to_hc32(ehci, uf->buf1);
2146	if (uf->cross)
2147		bufp += 4096;
2148	sitd->hw_buf_hi[1] = cpu_to_hc32(ehci, bufp >> 32);
2149	sitd->index = index;
2150}
2151
2152static inline void
2153sitd_link(struct ehci_hcd *ehci, unsigned frame, struct ehci_sitd *sitd)
2154{
2155	/* note: sitd ordering could matter (CSPLIT then SSPLIT) */
2156	sitd->sitd_next = ehci->pshadow[frame];
2157	sitd->hw_next = ehci->periodic[frame];
2158	ehci->pshadow[frame].sitd = sitd;
2159	sitd->frame = frame;
2160	wmb();
2161	ehci->periodic[frame] = cpu_to_hc32(ehci, sitd->sitd_dma | Q_TYPE_SITD);
2162}
2163
2164/* fit urb's sitds into the selected schedule slot; activate as needed */
2165static void sitd_link_urb(
2166	struct ehci_hcd		*ehci,
2167	struct urb		*urb,
2168	unsigned		mod,
2169	struct ehci_iso_stream	*stream
2170)
2171{
2172	int			packet;
2173	unsigned		next_uframe;
2174	struct ehci_iso_sched	*sched = urb->hcpriv;
2175	struct ehci_sitd	*sitd;
2176
2177	next_uframe = stream->next_uframe;
2178
2179	if (list_empty(&stream->td_list))
2180		/* usbfs ignores TT bandwidth */
2181		ehci_to_hcd(ehci)->self.bandwidth_allocated
2182				+= stream->bandwidth;
2183
2184	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
2185		if (ehci->amd_pll_fix == 1)
2186			usb_amd_quirk_pll_disable();
2187	}
2188
2189	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs++;
2190
2191	/* fill sITDs frame by frame */
2192	for (packet = sched->first_packet, sitd = NULL;
2193			packet < urb->number_of_packets;
2194			packet++) {
2195
2196		/* ASSERT:  we have all necessary sitds */
2197		BUG_ON(list_empty(&sched->td_list));
2198
2199		/* ASSERT:  no itds for this endpoint in this frame */
2200
2201		sitd = list_entry(sched->td_list.next,
2202				struct ehci_sitd, sitd_list);
2203		list_move_tail(&sitd->sitd_list, &stream->td_list);
2204		sitd->stream = stream;
2205		sitd->urb = urb;
2206
2207		sitd_patch(ehci, stream, sitd, sched, packet);
2208		sitd_link(ehci, (next_uframe >> 3) & (ehci->periodic_size - 1),
2209				sitd);
2210
2211		next_uframe += stream->uperiod;
2212	}
2213	stream->next_uframe = next_uframe & (mod - 1);
2214
2215	/* don't need that schedule data any more */
2216	iso_sched_free(stream, sched);
2217	urb->hcpriv = stream;
2218
2219	++ehci->isoc_count;
2220	enable_periodic(ehci);
2221}
2222
2223/*-------------------------------------------------------------------------*/
2224
2225#define	SITD_ERRS (SITD_STS_ERR | SITD_STS_DBE | SITD_STS_BABBLE \
2226				| SITD_STS_XACT | SITD_STS_MMF)
2227
2228/* Process and recycle a completed SITD.  Return true iff its urb completed,
2229 * and hence its completion callback probably added things to the hardware
2230 * schedule.
2231 *
2232 * Note that we carefully avoid recycling this descriptor until after any
2233 * completion callback runs, so that it won't be reused quickly.  That is,
2234 * assuming (a) no more than two urbs per frame on this endpoint, and also
2235 * (b) only this endpoint's completions submit URBs.  It seems some silicon
2236 * corrupts things if you reuse completed descriptors very quickly...
2237 */
2238static bool sitd_complete(struct ehci_hcd *ehci, struct ehci_sitd *sitd)
2239{
2240	struct urb				*urb = sitd->urb;
2241	struct usb_iso_packet_descriptor	*desc;
2242	u32					t;
2243	int					urb_index;
2244	struct ehci_iso_stream			*stream = sitd->stream;
2245	struct usb_device			*dev;
2246	bool					retval = false;
2247
2248	urb_index = sitd->index;
2249	desc = &urb->iso_frame_desc[urb_index];
2250	t = hc32_to_cpup(ehci, &sitd->hw_results);
2251
2252	/* report transfer status */
2253	if (unlikely(t & SITD_ERRS)) {
2254		urb->error_count++;
2255		if (t & SITD_STS_DBE)
2256			desc->status = usb_pipein(urb->pipe)
2257				? -ENOSR  /* hc couldn't read */
2258				: -ECOMM; /* hc couldn't write */
2259		else if (t & SITD_STS_BABBLE)
2260			desc->status = -EOVERFLOW;
2261		else /* XACT, MMF, etc */
2262			desc->status = -EPROTO;
2263	} else if (unlikely(t & SITD_STS_ACTIVE)) {
2264		/* URB was too late */
2265		urb->error_count++;
2266	} else {
2267		desc->status = 0;
2268		desc->actual_length = desc->length - SITD_LENGTH(t);
2269		urb->actual_length += desc->actual_length;
2270	}
2271
2272	/* handle completion now? */
2273	if ((urb_index + 1) != urb->number_of_packets)
2274		goto done;
2275
2276	/*
2277	 * ASSERT: it's really the last sitd for this urb
2278	 * list_for_each_entry (sitd, &stream->td_list, sitd_list)
2279	 *	 BUG_ON(sitd->urb == urb);
2280	 */
2281
2282	/* give urb back to the driver; completion often (re)submits */
2283	dev = urb->dev;
2284	ehci_urb_done(ehci, urb, 0);
2285	retval = true;
2286	urb = NULL;
2287
2288	--ehci->isoc_count;
2289	disable_periodic(ehci);
2290
2291	ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs--;
2292	if (ehci_to_hcd(ehci)->self.bandwidth_isoc_reqs == 0) {
2293		if (ehci->amd_pll_fix == 1)
2294			usb_amd_quirk_pll_enable();
2295	}
2296
2297	if (list_is_singular(&stream->td_list))
2298		ehci_to_hcd(ehci)->self.bandwidth_allocated
2299				-= stream->bandwidth;
2300
2301done:
2302	sitd->urb = NULL;
2303
2304	/* Add to the end of the free list for later reuse */
2305	list_move_tail(&sitd->sitd_list, &stream->free_list);
2306
2307	/* Recycle the siTDs when the pipeline is empty (ep no longer in use) */
2308	if (list_empty(&stream->td_list)) {
2309		list_splice_tail_init(&stream->free_list,
2310				&ehci->cached_sitd_list);
2311		start_free_itds(ehci);
2312	}
2313
2314	return retval;
2315}
2316
2317
2318static int sitd_submit(struct ehci_hcd *ehci, struct urb *urb,
2319	gfp_t mem_flags)
2320{
2321	int			status = -EINVAL;
2322	unsigned long		flags;
2323	struct ehci_iso_stream	*stream;
2324
2325	/* Get iso_stream head */
2326	stream = iso_stream_find(ehci, urb);
2327	if (stream == NULL) {
2328		ehci_dbg(ehci, "can't get iso stream\n");
2329		return -ENOMEM;
2330	}
2331	if (urb->interval != stream->ps.period) {
2332		ehci_dbg(ehci, "can't change iso interval %d --> %d\n",
2333			stream->ps.period, urb->interval);
2334		goto done;
2335	}
2336
2337#ifdef EHCI_URB_TRACE
2338	ehci_dbg(ehci,
2339		"submit %p dev%s ep%d%s-iso len %d\n",
2340		urb, urb->dev->devpath,
2341		usb_pipeendpoint(urb->pipe),
2342		usb_pipein(urb->pipe) ? "in" : "out",
2343		urb->transfer_buffer_length);
2344#endif
2345
2346	/* allocate SITDs */
2347	status = sitd_urb_transaction(stream, ehci, urb, mem_flags);
2348	if (status < 0) {
2349		ehci_dbg(ehci, "can't init sitds\n");
2350		goto done;
2351	}
2352
2353	/* schedule ... need to lock */
2354	spin_lock_irqsave(&ehci->lock, flags);
2355	if (unlikely(!HCD_HW_ACCESSIBLE(ehci_to_hcd(ehci)))) {
2356		status = -ESHUTDOWN;
2357		goto done_not_linked;
2358	}
2359	status = usb_hcd_link_urb_to_ep(ehci_to_hcd(ehci), urb);
2360	if (unlikely(status))
2361		goto done_not_linked;
2362	status = iso_stream_schedule(ehci, urb, stream);
2363	if (likely(status == 0)) {
2364		sitd_link_urb(ehci, urb, ehci->periodic_size << 3, stream);
2365	} else if (status > 0) {
2366		status = 0;
2367		ehci_urb_done(ehci, urb, 0);
2368	} else {
2369		usb_hcd_unlink_urb_from_ep(ehci_to_hcd(ehci), urb);
2370	}
2371 done_not_linked:
2372	spin_unlock_irqrestore(&ehci->lock, flags);
2373 done:
2374	return status;
2375}
2376
2377/*-------------------------------------------------------------------------*/
2378
2379static void scan_isoc(struct ehci_hcd *ehci)
2380{
2381	unsigned		uf, now_frame, frame;
2382	unsigned		fmask = ehci->periodic_size - 1;
2383	bool			modified, live;
2384	union ehci_shadow	q, *q_p;
2385	__hc32			type, *hw_p;
2386
2387	/*
2388	 * When running, scan from last scan point up to "now"
2389	 * else clean up by scanning everything that's left.
2390	 * Touches as few pages as possible:  cache-friendly.
2391	 */
2392	if (ehci->rh_state >= EHCI_RH_RUNNING) {
2393		uf = ehci_read_frame_index(ehci);
2394		now_frame = (uf >> 3) & fmask;
2395		live = true;
2396	} else  {
2397		now_frame = (ehci->last_iso_frame - 1) & fmask;
2398		live = false;
2399	}
2400	ehci->now_frame = now_frame;
2401
2402	frame = ehci->last_iso_frame;
2403
2404restart:
2405	/* Scan each element in frame's queue for completions */
2406	q_p = &ehci->pshadow[frame];
2407	hw_p = &ehci->periodic[frame];
2408	q.ptr = q_p->ptr;
2409	type = Q_NEXT_TYPE(ehci, *hw_p);
2410	modified = false;
2411
2412	while (q.ptr != NULL) {
2413		switch (hc32_to_cpu(ehci, type)) {
2414		case Q_TYPE_ITD:
2415			/*
2416			 * If this ITD is still active, leave it for
2417			 * later processing ... check the next entry.
2418			 * No need to check for activity unless the
2419			 * frame is current.
2420			 */
2421			if (frame == now_frame && live) {
2422				rmb();
2423				for (uf = 0; uf < 8; uf++) {
2424					if (q.itd->hw_transaction[uf] &
2425							ITD_ACTIVE(ehci))
2426						break;
2427				}
2428				if (uf < 8) {
2429					q_p = &q.itd->itd_next;
2430					hw_p = &q.itd->hw_next;
2431					type = Q_NEXT_TYPE(ehci,
2432							q.itd->hw_next);
2433					q = *q_p;
2434					break;
2435				}
2436			}
2437
2438			/*
2439			 * Take finished ITDs out of the schedule
2440			 * and process them:  recycle, maybe report
2441			 * URB completion.  HC won't cache the
2442			 * pointer for much longer, if at all.
2443			 */
2444			*q_p = q.itd->itd_next;
2445			if (!ehci->use_dummy_qh ||
2446					q.itd->hw_next != EHCI_LIST_END(ehci))
2447				*hw_p = q.itd->hw_next;
2448			else
2449				*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
2450			type = Q_NEXT_TYPE(ehci, q.itd->hw_next);
2451			wmb();
2452			modified = itd_complete(ehci, q.itd);
2453			q = *q_p;
2454			break;
2455		case Q_TYPE_SITD:
2456			/*
2457			 * If this SITD is still active, leave it for
2458			 * later processing ... check the next entry.
2459			 * No need to check for activity unless the
2460			 * frame is current.
2461			 */
2462			if (((frame == now_frame) ||
2463					(((frame + 1) & fmask) == now_frame))
2464				&& live
2465				&& (q.sitd->hw_results & SITD_ACTIVE(ehci))) {
2466
2467				q_p = &q.sitd->sitd_next;
2468				hw_p = &q.sitd->hw_next;
2469				type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
2470				q = *q_p;
2471				break;
2472			}
2473
2474			/*
2475			 * Take finished SITDs out of the schedule
2476			 * and process them:  recycle, maybe report
2477			 * URB completion.
2478			 */
2479			*q_p = q.sitd->sitd_next;
2480			if (!ehci->use_dummy_qh ||
2481					q.sitd->hw_next != EHCI_LIST_END(ehci))
2482				*hw_p = q.sitd->hw_next;
2483			else
2484				*hw_p = cpu_to_hc32(ehci, ehci->dummy->qh_dma);
2485			type = Q_NEXT_TYPE(ehci, q.sitd->hw_next);
2486			wmb();
2487			modified = sitd_complete(ehci, q.sitd);
2488			q = *q_p;
2489			break;
2490		default:
2491			ehci_dbg(ehci, "corrupt type %d frame %d shadow %p\n",
2492					type, frame, q.ptr);
2493			/* BUG(); */
2494			/* FALL THROUGH */
2495		case Q_TYPE_QH:
2496		case Q_TYPE_FSTN:
2497			/* End of the iTDs and siTDs */
2498			q.ptr = NULL;
2499			break;
2500		}
2501
2502		/* Assume completion callbacks modify the queue */
2503		if (unlikely(modified && ehci->isoc_count > 0))
2504			goto restart;
2505	}
2506
2507	/* Stop when we have reached the current frame */
2508	if (frame == now_frame)
2509		return;
2510
2511	/* The last frame may still have active siTDs */
2512	ehci->last_iso_frame = frame;
2513	frame = (frame + 1) & fmask;
2514
2515	goto restart;
2516}