2 * Copyright (C) 2001-2004 by David Brownell
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 /* this file is part of ehci-hcd.c */
21 /*-------------------------------------------------------------------------*/
24 * EHCI Root Hub ... the nonsharable stuff
26 * Registers don't need cpu_to_le32, that happens transparently
29 /*-------------------------------------------------------------------------*/
31 #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
35 static int ehci_hub_control(
44 /* After a power loss, ports that were owned by the companion must be
45 * reset so that the companion can still own them.
47 static void ehci_handover_companion_ports(struct ehci_hcd *ehci)
53 struct usb_hcd *hcd = ehci_to_hcd(ehci);
55 if (!ehci->owned_ports)
58 /* Give the connections some time to appear */
61 port = HCS_N_PORTS(ehci->hcs_params);
63 if (test_bit(port, &ehci->owned_ports)) {
64 reg = &ehci->regs->port_status[port];
65 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
67 /* Port already owned by companion? */
68 if (status & PORT_OWNER)
69 clear_bit(port, &ehci->owned_ports);
70 else if (test_bit(port, &ehci->companion_ports))
71 ehci_writel(ehci, status & ~PORT_PE, reg);
73 ehci_hub_control(hcd, SetPortFeature,
74 USB_PORT_FEAT_RESET, port + 1,
79 if (!ehci->owned_ports)
81 msleep(90); /* Wait for resets to complete */
83 port = HCS_N_PORTS(ehci->hcs_params);
85 if (test_bit(port, &ehci->owned_ports)) {
86 ehci_hub_control(hcd, GetPortStatus,
88 (char *) &buf, sizeof(buf));
90 /* The companion should now own the port,
91 * but if something went wrong the port must not
94 reg = &ehci->regs->port_status[port];
95 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
96 if (status & PORT_OWNER)
97 ehci_writel(ehci, status | PORT_CSC, reg);
99 ehci_dbg(ehci, "failed handover port %d: %x\n",
101 ehci_writel(ehci, status & ~PORT_PE, reg);
106 ehci->owned_ports = 0;
109 static int ehci_bus_suspend (struct usb_hcd *hcd)
111 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
115 ehci_dbg(ehci, "suspend root hub\n");
117 if (time_before (jiffies, ehci->next_statechange))
119 del_timer_sync(&ehci->watchdog);
120 del_timer_sync(&ehci->iaa_watchdog);
122 port = HCS_N_PORTS (ehci->hcs_params);
123 spin_lock_irq (&ehci->lock);
125 /* stop schedules, clean any completed work */
126 if (HC_IS_RUNNING(hcd->state)) {
128 hcd->state = HC_STATE_QUIESCING;
130 ehci->command = ehci_readl(ehci, &ehci->regs->command);
133 /* Unlike other USB host controller types, EHCI doesn't have
134 * any notion of "global" or bus-wide suspend. The driver has
135 * to manually suspend all the active unsuspended ports, and
136 * then manually resume them in the bus_resume() routine.
138 ehci->bus_suspended = 0;
139 ehci->owned_ports = 0;
141 u32 __iomem *reg = &ehci->regs->port_status [port];
142 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
145 /* keep track of which ports we suspend */
147 set_bit(port, &ehci->owned_ports);
148 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
150 set_bit(port, &ehci->bus_suspended);
153 /* enable remote wakeup on all ports */
154 if (hcd->self.root_hub->do_remote_wakeup)
155 t2 |= PORT_WAKE_BITS;
157 t2 &= ~PORT_WAKE_BITS;
160 ehci_vdbg (ehci, "port %d, %08x -> %08x\n",
162 ehci_writel(ehci, t2, reg);
166 /* Apparently some devices need a >= 1-uframe delay here */
167 if (ehci->bus_suspended)
170 /* turn off now-idle HC */
172 hcd->state = HC_STATE_SUSPENDED;
175 end_unlink_async(ehci);
177 /* allow remote wakeup */
179 if (!hcd->self.root_hub->do_remote_wakeup)
181 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
182 ehci_readl(ehci, &ehci->regs->intr_enable);
184 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
185 spin_unlock_irq (&ehci->lock);
190 /* caller has locked the root hub, and should reset/reinit on error */
191 static int ehci_bus_resume (struct usb_hcd *hcd)
193 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
198 if (time_before (jiffies, ehci->next_statechange))
200 spin_lock_irq (&ehci->lock);
201 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
202 spin_unlock_irq(&ehci->lock);
206 /* Ideally and we've got a real resume here, and no port's power
207 * was lost. (For PCI, that means Vaux was maintained.) But we
208 * could instead be restoring a swsusp snapshot -- so that BIOS was
209 * the last user of the controller, not reset/pm hardware keeping
210 * state we gave to it.
212 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
213 ehci_dbg(ehci, "resume root hub%s\n",
214 power_okay ? "" : " after power loss");
216 /* at least some APM implementations will try to deliver
217 * IRQs right away, so delay them until we're ready.
219 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
221 /* re-init operational registers */
222 ehci_writel(ehci, 0, &ehci->regs->segment);
223 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
224 ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next);
226 /* restore CMD_RUN, framelist size, and irq threshold */
227 ehci_writel(ehci, ehci->command, &ehci->regs->command);
229 /* Some controller/firmware combinations need a delay during which
230 * they set up the port statuses. See Bugzilla #8190. */
233 /* manually resume the ports we suspended during bus_suspend() */
234 i = HCS_N_PORTS (ehci->hcs_params);
236 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
237 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
238 if (test_bit(i, &ehci->bus_suspended) &&
239 (temp & PORT_SUSPEND))
241 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
243 i = HCS_N_PORTS (ehci->hcs_params);
246 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
247 if (test_bit(i, &ehci->bus_suspended) &&
248 (temp & PORT_SUSPEND)) {
249 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
250 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
251 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
254 (void) ehci_readl(ehci, &ehci->regs->command);
256 /* maybe re-activate the schedule(s) */
258 if (ehci->async->qh_next.qh)
260 if (ehci->periodic_sched)
263 ehci->command |= temp;
264 ehci_writel(ehci, ehci->command, &ehci->regs->command);
267 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
268 hcd->state = HC_STATE_RUNNING;
270 /* Now we can safely re-enable irqs */
271 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
273 spin_unlock_irq (&ehci->lock);
274 ehci_handover_companion_ports(ehci);
280 #define ehci_bus_suspend NULL
281 #define ehci_bus_resume NULL
283 #endif /* CONFIG_PM */
285 /*-------------------------------------------------------------------------*/
287 /* Display the ports dedicated to the companion controller */
288 static ssize_t show_companion(struct device *dev,
289 struct device_attribute *attr,
292 struct ehci_hcd *ehci;
293 int nports, index, n;
294 int count = PAGE_SIZE;
297 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
298 nports = HCS_N_PORTS(ehci->hcs_params);
300 for (index = 0; index < nports; ++index) {
301 if (test_bit(index, &ehci->companion_ports)) {
302 n = scnprintf(ptr, count, "%d\n", index + 1);
311 * Sets the owner of a port
313 static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
315 u32 __iomem *status_reg;
319 status_reg = &ehci->regs->port_status[portnum];
322 * The controller won't set the OWNER bit if the port is
323 * enabled, so this loop will sometimes require at least two
324 * iterations: one to disable the port and one to set OWNER.
326 for (try = 4; try > 0; --try) {
327 spin_lock_irq(&ehci->lock);
328 port_status = ehci_readl(ehci, status_reg);
329 if ((port_status & PORT_OWNER) == new_owner
330 || (port_status & (PORT_OWNER | PORT_CONNECT))
334 port_status ^= PORT_OWNER;
335 port_status &= ~(PORT_PE | PORT_RWC_BITS);
336 ehci_writel(ehci, port_status, status_reg);
338 spin_unlock_irq(&ehci->lock);
345 * Dedicate or undedicate a port to the companion controller.
346 * Syntax is "[-]portnum", where a leading '-' sign means
347 * return control of the port to the EHCI controller.
349 static ssize_t store_companion(struct device *dev,
350 struct device_attribute *attr,
351 const char *buf, size_t count)
353 struct ehci_hcd *ehci;
354 int portnum, new_owner;
356 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
357 new_owner = PORT_OWNER; /* Owned by companion */
358 if (sscanf(buf, "%d", &portnum) != 1)
362 new_owner = 0; /* Owned by EHCI */
364 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
368 set_bit(portnum, &ehci->companion_ports);
370 clear_bit(portnum, &ehci->companion_ports);
371 set_owner(ehci, portnum, new_owner);
374 static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
376 static inline void create_companion_file(struct ehci_hcd *ehci)
380 /* with integrated TT there is no companion! */
381 if (!ehci_is_TDI(ehci))
382 i = device_create_file(ehci_to_hcd(ehci)->self.dev,
383 &dev_attr_companion);
386 static inline void remove_companion_file(struct ehci_hcd *ehci)
388 /* with integrated TT there is no companion! */
389 if (!ehci_is_TDI(ehci))
390 device_remove_file(ehci_to_hcd(ehci)->self.dev,
391 &dev_attr_companion);
395 /*-------------------------------------------------------------------------*/
397 static int check_reset_complete (
398 struct ehci_hcd *ehci,
400 u32 __iomem *status_reg,
403 if (!(port_status & PORT_CONNECT))
406 /* if reset finished and it's still not enabled -- handoff */
407 if (!(port_status & PORT_PE)) {
409 /* with integrated TT, there's nobody to hand it to! */
410 if (ehci_is_TDI(ehci)) {
412 "Failed to enable port %d on root hub TT\n",
417 ehci_dbg (ehci, "port %d full speed --> companion\n",
420 // what happens if HCS_N_CC(params) == 0 ?
421 port_status |= PORT_OWNER;
422 port_status &= ~PORT_RWC_BITS;
423 ehci_writel(ehci, port_status, status_reg);
426 ehci_dbg (ehci, "port %d high speed\n", index + 1);
431 /*-------------------------------------------------------------------------*/
434 /* build "status change" packet (one or two bytes) from HC registers */
437 ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
439 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
440 u32 temp, status = 0;
442 int ports, i, retval = 1;
445 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
446 if (!HC_IS_RUNNING(hcd->state))
449 /* init status to no-changes */
451 ports = HCS_N_PORTS (ehci->hcs_params);
457 /* Some boards (mostly VIA?) report bogus overcurrent indications,
458 * causing massive log spam unless we completely ignore them. It
459 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
460 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
461 * PORT_POWER; that's surprising, but maybe within-spec.
464 mask = PORT_CSC | PORT_PEC | PORT_OCC;
466 mask = PORT_CSC | PORT_PEC;
467 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
469 /* no hub change reports (bit 0) for now (power, ...) */
471 /* port N changes (bit N)? */
472 spin_lock_irqsave (&ehci->lock, flags);
473 for (i = 0; i < ports; i++) {
474 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
477 * Return status information even for ports with OWNER set.
478 * Otherwise khubd wouldn't see the disconnect event when a
479 * high-speed device is switched over to the companion
480 * controller by the user.
483 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
484 || (ehci->reset_done[i] && time_after_eq(
485 jiffies, ehci->reset_done[i]))) {
487 buf [0] |= 1 << (i + 1);
489 buf [1] |= 1 << (i - 7);
493 /* FIXME autosuspend idle root hubs */
494 spin_unlock_irqrestore (&ehci->lock, flags);
495 return status ? retval : 0;
498 /*-------------------------------------------------------------------------*/
501 ehci_hub_descriptor (
502 struct ehci_hcd *ehci,
503 struct usb_hub_descriptor *desc
505 int ports = HCS_N_PORTS (ehci->hcs_params);
508 desc->bDescriptorType = 0x29;
509 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
510 desc->bHubContrCurrent = 0;
512 desc->bNbrPorts = ports;
513 temp = 1 + (ports / 8);
514 desc->bDescLength = 7 + 2 * temp;
516 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
517 memset (&desc->bitmap [0], 0, temp);
518 memset (&desc->bitmap [temp], 0xff, temp);
520 temp = 0x0008; /* per-port overcurrent reporting */
521 if (HCS_PPC (ehci->hcs_params))
522 temp |= 0x0001; /* per-port power control */
524 temp |= 0x0002; /* no power switching */
526 // re-enable when we support USB_PORT_FEAT_INDICATOR below.
527 if (HCS_INDICATOR (ehci->hcs_params))
528 temp |= 0x0080; /* per-port indicators (LEDs) */
530 desc->wHubCharacteristics = cpu_to_le16(temp);
533 /*-------------------------------------------------------------------------*/
535 static int ehci_hub_control (
543 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
544 int ports = HCS_N_PORTS (ehci->hcs_params);
545 u32 __iomem *status_reg = &ehci->regs->port_status[
546 (wIndex & 0xff) - 1];
553 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
554 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
555 * (track current state ourselves) ... blink for diagnostics,
556 * power, "this is the one", etc. EHCI spec supports this.
559 spin_lock_irqsave (&ehci->lock, flags);
561 case ClearHubFeature:
563 case C_HUB_LOCAL_POWER:
564 case C_HUB_OVER_CURRENT:
565 /* no hub-wide feature/status flags */
571 case ClearPortFeature:
572 if (!wIndex || wIndex > ports)
575 temp = ehci_readl(ehci, status_reg);
578 * Even if OWNER is set, so the port is owned by the
579 * companion controller, khubd needs to be able to clear
580 * the port-change status bits (especially
581 * USB_PORT_FEAT_C_CONNECTION).
585 case USB_PORT_FEAT_ENABLE:
586 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
588 case USB_PORT_FEAT_C_ENABLE:
589 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
592 case USB_PORT_FEAT_SUSPEND:
593 if (temp & PORT_RESET)
595 if (ehci->no_selective_suspend)
597 if (temp & PORT_SUSPEND) {
598 if ((temp & PORT_PE) == 0)
600 /* resume signaling for 20 msec */
601 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
602 ehci_writel(ehci, temp | PORT_RESUME,
604 ehci->reset_done [wIndex] = jiffies
605 + msecs_to_jiffies (20);
608 case USB_PORT_FEAT_C_SUSPEND:
609 clear_bit(wIndex, &ehci->port_c_suspend);
611 case USB_PORT_FEAT_POWER:
612 if (HCS_PPC (ehci->hcs_params))
614 temp & ~(PORT_RWC_BITS | PORT_POWER),
617 case USB_PORT_FEAT_C_CONNECTION:
618 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
621 case USB_PORT_FEAT_C_OVER_CURRENT:
622 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
625 case USB_PORT_FEAT_C_RESET:
626 /* GetPortStatus clears reset */
631 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
633 case GetHubDescriptor:
634 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
638 /* no hub-wide feature/status flags */
640 //cpu_to_le32s ((u32 *) buf);
643 if (!wIndex || wIndex > ports)
647 temp = ehci_readl(ehci, status_reg);
651 status |= 1 << USB_PORT_FEAT_C_CONNECTION;
653 status |= 1 << USB_PORT_FEAT_C_ENABLE;
655 if ((temp & PORT_OCC) && !ignore_oc){
656 status |= 1 << USB_PORT_FEAT_C_OVER_CURRENT;
659 * Hubs should disable port power on over-current.
660 * However, not all EHCI implementations do this
661 * automatically, even if they _do_ support per-port
662 * power switching; they're allowed to just limit the
663 * current. khubd will turn the power back on.
665 if (HCS_PPC (ehci->hcs_params)){
667 temp & ~(PORT_RWC_BITS | PORT_POWER),
672 /* whoever resumes must GetPortStatus to complete it!! */
673 if (temp & PORT_RESUME) {
675 /* Remote Wakeup received? */
676 if (!ehci->reset_done[wIndex]) {
677 /* resume signaling for 20 msec */
678 ehci->reset_done[wIndex] = jiffies
679 + msecs_to_jiffies(20);
680 /* check the port again */
681 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
682 ehci->reset_done[wIndex]);
685 /* resume completed? */
686 else if (time_after_eq(jiffies,
687 ehci->reset_done[wIndex])) {
688 clear_bit(wIndex, &ehci->suspended_ports);
689 set_bit(wIndex, &ehci->port_c_suspend);
690 ehci->reset_done[wIndex] = 0;
692 /* stop resume signaling */
693 temp = ehci_readl(ehci, status_reg);
695 temp & ~(PORT_RWC_BITS | PORT_RESUME),
697 retval = handshake(ehci, status_reg,
698 PORT_RESUME, 0, 2000 /* 2msec */);
701 "port %d resume error %d\n",
705 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
709 /* whoever resets must GetPortStatus to complete it!! */
710 if ((temp & PORT_RESET)
711 && time_after_eq(jiffies,
712 ehci->reset_done[wIndex])) {
713 status |= 1 << USB_PORT_FEAT_C_RESET;
714 ehci->reset_done [wIndex] = 0;
716 /* force reset to complete */
717 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
719 /* REVISIT: some hardware needs 550+ usec to clear
720 * this bit; seems too long to spin routinely...
722 retval = handshake(ehci, status_reg,
725 ehci_err (ehci, "port %d reset error %d\n",
730 /* see what we found out */
731 temp = check_reset_complete (ehci, wIndex, status_reg,
732 ehci_readl(ehci, status_reg));
735 if (!(temp & (PORT_RESUME|PORT_RESET)))
736 ehci->reset_done[wIndex] = 0;
738 /* transfer dedicated ports to the companion hc */
739 if ((temp & PORT_CONNECT) &&
740 test_bit(wIndex, &ehci->companion_ports)) {
741 temp &= ~PORT_RWC_BITS;
743 ehci_writel(ehci, temp, status_reg);
744 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
745 temp = ehci_readl(ehci, status_reg);
749 * Even if OWNER is set, there's no harm letting khubd
750 * see the wPortStatus values (they should all be 0 except
751 * for PORT_POWER anyway).
754 if (temp & PORT_CONNECT) {
755 status |= 1 << USB_PORT_FEAT_CONNECTION;
756 // status may be from integrated TT
757 status |= ehci_port_speed(ehci, temp);
760 status |= 1 << USB_PORT_FEAT_ENABLE;
762 /* maybe the port was unsuspended without our knowledge */
763 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
764 status |= 1 << USB_PORT_FEAT_SUSPEND;
765 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
766 clear_bit(wIndex, &ehci->suspended_ports);
767 ehci->reset_done[wIndex] = 0;
769 set_bit(wIndex, &ehci->port_c_suspend);
773 status |= 1 << USB_PORT_FEAT_OVER_CURRENT;
774 if (temp & PORT_RESET)
775 status |= 1 << USB_PORT_FEAT_RESET;
776 if (temp & PORT_POWER)
777 status |= 1 << USB_PORT_FEAT_POWER;
778 if (test_bit(wIndex, &ehci->port_c_suspend))
779 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
781 #ifndef VERBOSE_DEBUG
782 if (status & ~0xffff) /* only if wPortChange is interesting */
784 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
785 put_unaligned_le32(status, buf);
789 case C_HUB_LOCAL_POWER:
790 case C_HUB_OVER_CURRENT:
791 /* no hub-wide feature/status flags */
798 selector = wIndex >> 8;
800 if (!wIndex || wIndex > ports)
803 temp = ehci_readl(ehci, status_reg);
804 if (temp & PORT_OWNER)
807 temp &= ~PORT_RWC_BITS;
809 case USB_PORT_FEAT_SUSPEND:
810 if (ehci->no_selective_suspend)
812 if ((temp & PORT_PE) == 0
813 || (temp & PORT_RESET) != 0)
815 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
816 set_bit(wIndex, &ehci->suspended_ports);
818 case USB_PORT_FEAT_POWER:
819 if (HCS_PPC (ehci->hcs_params))
820 ehci_writel(ehci, temp | PORT_POWER,
823 case USB_PORT_FEAT_RESET:
824 if (temp & PORT_RESUME)
826 /* line status bits may report this as low speed,
827 * which can be fine if this root hub has a
828 * transaction translator built in.
830 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
831 && !ehci_is_TDI(ehci)
832 && PORT_USB11 (temp)) {
834 "port %d low speed --> companion\n",
838 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
843 * caller must wait, then call GetPortStatus
844 * usb 2.0 spec says 50 ms resets on root
846 ehci->reset_done [wIndex] = jiffies
847 + msecs_to_jiffies (50);
849 ehci_writel(ehci, temp, status_reg);
852 /* For downstream facing ports (these): one hub port is put
853 * into test mode according to USB2 11.24.2.13, then the hub
854 * must be reset (which for root hub now means rmmod+modprobe,
855 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
856 * about the EHCI-specific stuff.
858 case USB_PORT_FEAT_TEST:
859 if (!selector || selector > 5)
863 temp |= selector << 16;
864 ehci_writel(ehci, temp, status_reg);
870 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
875 /* "stall" on error */
878 spin_unlock_irqrestore (&ehci->lock, flags);
882 static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
884 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
886 if (ehci_is_TDI(ehci))
888 set_owner(ehci, --portnum, PORT_OWNER);
891 static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
893 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
896 if (ehci_is_TDI(ehci))
898 reg = &ehci->regs->port_status[portnum - 1];
899 return ehci_readl(ehci, reg) & PORT_OWNER;