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
);
114 u32 __iomem
*hostpc_reg
= NULL
;
116 ehci_dbg(ehci
, "suspend root hub\n");
118 if (time_before (jiffies
, ehci
->next_statechange
))
120 del_timer_sync(&ehci
->watchdog
);
121 del_timer_sync(&ehci
->iaa_watchdog
);
123 spin_lock_irq (&ehci
->lock
);
125 /* Once the controller is stopped, port resumes that are already
126 * in progress won't complete. Hence if remote wakeup is enabled
127 * for the root hub and any ports are in the middle of a resume or
128 * remote wakeup, we must fail the suspend.
130 if (hcd
->self
.root_hub
->do_remote_wakeup
) {
131 port
= HCS_N_PORTS(ehci
->hcs_params
);
133 if (ehci
->reset_done
[port
] != 0) {
134 spin_unlock_irq(&ehci
->lock
);
135 ehci_dbg(ehci
, "suspend failed because "
136 "port %d is resuming\n",
143 /* stop schedules, clean any completed work */
144 if (HC_IS_RUNNING(hcd
->state
)) {
146 hcd
->state
= HC_STATE_QUIESCING
;
148 ehci
->command
= ehci_readl(ehci
, &ehci
->regs
->command
);
151 /* Unlike other USB host controller types, EHCI doesn't have
152 * any notion of "global" or bus-wide suspend. The driver has
153 * to manually suspend all the active unsuspended ports, and
154 * then manually resume them in the bus_resume() routine.
156 ehci
->bus_suspended
= 0;
157 ehci
->owned_ports
= 0;
158 port
= HCS_N_PORTS(ehci
->hcs_params
);
160 u32 __iomem
*reg
= &ehci
->regs
->port_status
[port
];
161 u32 t1
= ehci_readl(ehci
, reg
) & ~PORT_RWC_BITS
;
164 if (ehci
->has_hostpc
)
165 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
166 + HOSTPC0
+ 4 * (port
& 0xff));
167 /* keep track of which ports we suspend */
169 set_bit(port
, &ehci
->owned_ports
);
170 else if ((t1
& PORT_PE
) && !(t1
& PORT_SUSPEND
)) {
172 set_bit(port
, &ehci
->bus_suspended
);
175 /* enable remote wakeup on all ports */
176 if (hcd
->self
.root_hub
->do_remote_wakeup
) {
177 /* only enable appropriate wake bits, otherwise the
178 * hardware can not go phy low power mode. If a race
179 * condition happens here(connection change during bits
180 * set), the port change detection will finally fix it.
182 if (t1
& PORT_CONNECT
) {
183 t2
|= PORT_WKOC_E
| PORT_WKDISC_E
;
184 t2
&= ~PORT_WKCONN_E
;
186 t2
|= PORT_WKOC_E
| PORT_WKCONN_E
;
187 t2
&= ~PORT_WKDISC_E
;
190 t2
&= ~PORT_WAKE_BITS
;
193 ehci_vdbg (ehci
, "port %d, %08x -> %08x\n",
195 ehci_writel(ehci
, t2
, reg
);
199 msleep(5);/* 5ms for HCD enter low pwr mode */
200 t3
= ehci_readl(ehci
, hostpc_reg
);
201 ehci_writel(ehci
, t3
| HOSTPC_PHCD
, hostpc_reg
);
202 t3
= ehci_readl(ehci
, hostpc_reg
);
203 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
204 port
, (t3
& HOSTPC_PHCD
) ?
205 "succeeded" : "failed");
210 /* Apparently some devices need a >= 1-uframe delay here */
211 if (ehci
->bus_suspended
)
214 /* turn off now-idle HC */
216 hcd
->state
= HC_STATE_SUSPENDED
;
219 end_unlink_async(ehci
);
221 /* allow remote wakeup */
223 if (!hcd
->self
.root_hub
->do_remote_wakeup
)
225 ehci_writel(ehci
, mask
, &ehci
->regs
->intr_enable
);
226 ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
228 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(10);
229 spin_unlock_irq (&ehci
->lock
);
231 /* ehci_work() may have re-enabled the watchdog timer, which we do not
232 * want, and so we must delete any pending watchdog timer events.
234 del_timer_sync(&ehci
->watchdog
);
239 /* caller has locked the root hub, and should reset/reinit on error */
240 static int ehci_bus_resume (struct usb_hcd
*hcd
)
242 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
246 unsigned long resume_needed
= 0;
248 if (time_before (jiffies
, ehci
->next_statechange
))
250 spin_lock_irq (&ehci
->lock
);
251 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
252 spin_unlock_irq(&ehci
->lock
);
256 if (unlikely(ehci
->debug
)) {
257 if (ehci
->debug
&& !dbgp_reset_prep())
260 dbgp_external_startup();
263 /* Ideally and we've got a real resume here, and no port's power
264 * was lost. (For PCI, that means Vaux was maintained.) But we
265 * could instead be restoring a swsusp snapshot -- so that BIOS was
266 * the last user of the controller, not reset/pm hardware keeping
267 * state we gave to it.
269 power_okay
= ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
270 ehci_dbg(ehci
, "resume root hub%s\n",
271 power_okay
? "" : " after power loss");
273 /* at least some APM implementations will try to deliver
274 * IRQs right away, so delay them until we're ready.
276 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
278 /* re-init operational registers */
279 ehci_writel(ehci
, 0, &ehci
->regs
->segment
);
280 ehci_writel(ehci
, ehci
->periodic_dma
, &ehci
->regs
->frame_list
);
281 ehci_writel(ehci
, (u32
) ehci
->async
->qh_dma
, &ehci
->regs
->async_next
);
283 /* restore CMD_RUN, framelist size, and irq threshold */
284 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
286 /* Some controller/firmware combinations need a delay during which
287 * they set up the port statuses. See Bugzilla #8190. */
288 spin_unlock_irq(&ehci
->lock
);
290 spin_lock_irq(&ehci
->lock
);
292 /* manually resume the ports we suspended during bus_suspend() */
293 i
= HCS_N_PORTS (ehci
->hcs_params
);
295 /* clear phy low power mode before resume */
296 if (ehci
->has_hostpc
) {
297 u32 __iomem
*hostpc_reg
=
298 (u32 __iomem
*)((u8
*)ehci
->regs
299 + HOSTPC0
+ 4 * (i
& 0xff));
300 temp
= ehci_readl(ehci
, hostpc_reg
);
301 ehci_writel(ehci
, temp
& ~HOSTPC_PHCD
,
305 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
306 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
307 if (test_bit(i
, &ehci
->bus_suspended
) &&
308 (temp
& PORT_SUSPEND
)) {
310 set_bit(i
, &resume_needed
);
312 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
315 /* msleep for 20ms only if code is trying to resume port */
317 spin_unlock_irq(&ehci
->lock
);
319 spin_lock_irq(&ehci
->lock
);
322 i
= HCS_N_PORTS (ehci
->hcs_params
);
324 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
325 if (test_bit(i
, &resume_needed
)) {
326 temp
&= ~(PORT_RWC_BITS
| PORT_RESUME
);
327 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
328 ehci_vdbg (ehci
, "resumed port %d\n", i
+ 1);
331 (void) ehci_readl(ehci
, &ehci
->regs
->command
);
333 /* maybe re-activate the schedule(s) */
335 if (ehci
->async
->qh_next
.qh
)
337 if (ehci
->periodic_sched
)
340 ehci
->command
|= temp
;
341 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
344 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(5);
345 hcd
->state
= HC_STATE_RUNNING
;
347 /* Now we can safely re-enable irqs */
348 ehci_writel(ehci
, INTR_MASK
, &ehci
->regs
->intr_enable
);
350 spin_unlock_irq (&ehci
->lock
);
351 ehci_handover_companion_ports(ehci
);
357 #define ehci_bus_suspend NULL
358 #define ehci_bus_resume NULL
360 #endif /* CONFIG_PM */
362 /*-------------------------------------------------------------------------*/
364 /* Display the ports dedicated to the companion controller */
365 static ssize_t
show_companion(struct device
*dev
,
366 struct device_attribute
*attr
,
369 struct ehci_hcd
*ehci
;
370 int nports
, index
, n
;
371 int count
= PAGE_SIZE
;
374 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
375 nports
= HCS_N_PORTS(ehci
->hcs_params
);
377 for (index
= 0; index
< nports
; ++index
) {
378 if (test_bit(index
, &ehci
->companion_ports
)) {
379 n
= scnprintf(ptr
, count
, "%d\n", index
+ 1);
388 * Sets the owner of a port
390 static void set_owner(struct ehci_hcd
*ehci
, int portnum
, int new_owner
)
392 u32 __iomem
*status_reg
;
396 status_reg
= &ehci
->regs
->port_status
[portnum
];
399 * The controller won't set the OWNER bit if the port is
400 * enabled, so this loop will sometimes require at least two
401 * iterations: one to disable the port and one to set OWNER.
403 for (try = 4; try > 0; --try) {
404 spin_lock_irq(&ehci
->lock
);
405 port_status
= ehci_readl(ehci
, status_reg
);
406 if ((port_status
& PORT_OWNER
) == new_owner
407 || (port_status
& (PORT_OWNER
| PORT_CONNECT
))
411 port_status
^= PORT_OWNER
;
412 port_status
&= ~(PORT_PE
| PORT_RWC_BITS
);
413 ehci_writel(ehci
, port_status
, status_reg
);
415 spin_unlock_irq(&ehci
->lock
);
422 * Dedicate or undedicate a port to the companion controller.
423 * Syntax is "[-]portnum", where a leading '-' sign means
424 * return control of the port to the EHCI controller.
426 static ssize_t
store_companion(struct device
*dev
,
427 struct device_attribute
*attr
,
428 const char *buf
, size_t count
)
430 struct ehci_hcd
*ehci
;
431 int portnum
, new_owner
;
433 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
434 new_owner
= PORT_OWNER
; /* Owned by companion */
435 if (sscanf(buf
, "%d", &portnum
) != 1)
439 new_owner
= 0; /* Owned by EHCI */
441 if (portnum
<= 0 || portnum
> HCS_N_PORTS(ehci
->hcs_params
))
445 set_bit(portnum
, &ehci
->companion_ports
);
447 clear_bit(portnum
, &ehci
->companion_ports
);
448 set_owner(ehci
, portnum
, new_owner
);
451 static DEVICE_ATTR(companion
, 0644, show_companion
, store_companion
);
453 static inline void create_companion_file(struct ehci_hcd
*ehci
)
457 /* with integrated TT there is no companion! */
458 if (!ehci_is_TDI(ehci
))
459 i
= device_create_file(ehci_to_hcd(ehci
)->self
.controller
,
460 &dev_attr_companion
);
463 static inline void remove_companion_file(struct ehci_hcd
*ehci
)
465 /* with integrated TT there is no companion! */
466 if (!ehci_is_TDI(ehci
))
467 device_remove_file(ehci_to_hcd(ehci
)->self
.controller
,
468 &dev_attr_companion
);
472 /*-------------------------------------------------------------------------*/
474 static int check_reset_complete (
475 struct ehci_hcd
*ehci
,
477 u32 __iomem
*status_reg
,
480 if (!(port_status
& PORT_CONNECT
))
483 /* if reset finished and it's still not enabled -- handoff */
484 if (!(port_status
& PORT_PE
)) {
486 /* with integrated TT, there's nobody to hand it to! */
487 if (ehci_is_TDI(ehci
)) {
489 "Failed to enable port %d on root hub TT\n",
494 ehci_dbg (ehci
, "port %d full speed --> companion\n",
497 // what happens if HCS_N_CC(params) == 0 ?
498 port_status
|= PORT_OWNER
;
499 port_status
&= ~PORT_RWC_BITS
;
500 ehci_writel(ehci
, port_status
, status_reg
);
502 /* ensure 440EPX ohci controller state is operational */
503 if (ehci
->has_amcc_usb23
)
504 set_ohci_hcfs(ehci
, 1);
506 ehci_dbg (ehci
, "port %d high speed\n", index
+ 1);
507 /* ensure 440EPx ohci controller state is suspended */
508 if (ehci
->has_amcc_usb23
)
509 set_ohci_hcfs(ehci
, 0);
515 /*-------------------------------------------------------------------------*/
518 /* build "status change" packet (one or two bytes) from HC registers */
521 ehci_hub_status_data (struct usb_hcd
*hcd
, char *buf
)
523 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
524 u32 temp
, status
= 0;
526 int ports
, i
, retval
= 1;
529 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
530 if (!HC_IS_RUNNING(hcd
->state
))
533 /* init status to no-changes */
535 ports
= HCS_N_PORTS (ehci
->hcs_params
);
541 /* Some boards (mostly VIA?) report bogus overcurrent indications,
542 * causing massive log spam unless we completely ignore them. It
543 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
544 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
545 * PORT_POWER; that's surprising, but maybe within-spec.
548 mask
= PORT_CSC
| PORT_PEC
| PORT_OCC
;
550 mask
= PORT_CSC
| PORT_PEC
;
551 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
553 /* no hub change reports (bit 0) for now (power, ...) */
555 /* port N changes (bit N)? */
556 spin_lock_irqsave (&ehci
->lock
, flags
);
557 for (i
= 0; i
< ports
; i
++) {
558 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
561 * Return status information even for ports with OWNER set.
562 * Otherwise khubd wouldn't see the disconnect event when a
563 * high-speed device is switched over to the companion
564 * controller by the user.
567 if ((temp
& mask
) != 0 || test_bit(i
, &ehci
->port_c_suspend
)
568 || (ehci
->reset_done
[i
] && time_after_eq(
569 jiffies
, ehci
->reset_done
[i
]))) {
571 buf
[0] |= 1 << (i
+ 1);
573 buf
[1] |= 1 << (i
- 7);
577 /* FIXME autosuspend idle root hubs */
578 spin_unlock_irqrestore (&ehci
->lock
, flags
);
579 return status
? retval
: 0;
582 /*-------------------------------------------------------------------------*/
585 ehci_hub_descriptor (
586 struct ehci_hcd
*ehci
,
587 struct usb_hub_descriptor
*desc
589 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
592 desc
->bDescriptorType
= 0x29;
593 desc
->bPwrOn2PwrGood
= 10; /* ehci 1.0, 2.3.9 says 20ms max */
594 desc
->bHubContrCurrent
= 0;
596 desc
->bNbrPorts
= ports
;
597 temp
= 1 + (ports
/ 8);
598 desc
->bDescLength
= 7 + 2 * temp
;
600 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
601 memset (&desc
->bitmap
[0], 0, temp
);
602 memset (&desc
->bitmap
[temp
], 0xff, temp
);
604 temp
= 0x0008; /* per-port overcurrent reporting */
605 if (HCS_PPC (ehci
->hcs_params
))
606 temp
|= 0x0001; /* per-port power control */
608 temp
|= 0x0002; /* no power switching */
610 // re-enable when we support USB_PORT_FEAT_INDICATOR below.
611 if (HCS_INDICATOR (ehci
->hcs_params
))
612 temp
|= 0x0080; /* per-port indicators (LEDs) */
614 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
617 /*-------------------------------------------------------------------------*/
619 static int ehci_hub_control (
627 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
628 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
629 u32 __iomem
*status_reg
= &ehci
->regs
->port_status
[
630 (wIndex
& 0xff) - 1];
631 u32 __iomem
*hostpc_reg
= NULL
;
632 u32 temp
, temp1
, status
;
638 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
639 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
640 * (track current state ourselves) ... blink for diagnostics,
641 * power, "this is the one", etc. EHCI spec supports this.
644 if (ehci
->has_hostpc
)
645 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
646 + HOSTPC0
+ 4 * ((wIndex
& 0xff) - 1));
647 spin_lock_irqsave (&ehci
->lock
, flags
);
649 case ClearHubFeature
:
651 case C_HUB_LOCAL_POWER
:
652 case C_HUB_OVER_CURRENT
:
653 /* no hub-wide feature/status flags */
659 case ClearPortFeature
:
660 if (!wIndex
|| wIndex
> ports
)
663 temp
= ehci_readl(ehci
, status_reg
);
666 * Even if OWNER is set, so the port is owned by the
667 * companion controller, khubd needs to be able to clear
668 * the port-change status bits (especially
669 * USB_PORT_FEAT_C_CONNECTION).
673 case USB_PORT_FEAT_ENABLE
:
674 ehci_writel(ehci
, temp
& ~PORT_PE
, status_reg
);
676 case USB_PORT_FEAT_C_ENABLE
:
677 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_PEC
,
680 case USB_PORT_FEAT_SUSPEND
:
681 if (temp
& PORT_RESET
)
683 if (ehci
->no_selective_suspend
)
685 if (temp
& PORT_SUSPEND
) {
686 if ((temp
& PORT_PE
) == 0)
688 /* clear phy low power mode before resume */
690 temp1
= ehci_readl(ehci
, hostpc_reg
);
691 ehci_writel(ehci
, temp1
& ~HOSTPC_PHCD
,
695 /* resume signaling for 20 msec */
696 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
697 ehci_writel(ehci
, temp
| PORT_RESUME
,
699 ehci
->reset_done
[wIndex
] = jiffies
700 + msecs_to_jiffies (20);
703 case USB_PORT_FEAT_C_SUSPEND
:
704 clear_bit(wIndex
, &ehci
->port_c_suspend
);
706 case USB_PORT_FEAT_POWER
:
707 if (HCS_PPC (ehci
->hcs_params
))
709 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
712 case USB_PORT_FEAT_C_CONNECTION
:
713 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_CSC
,
716 case USB_PORT_FEAT_C_OVER_CURRENT
:
717 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_OCC
,
720 case USB_PORT_FEAT_C_RESET
:
721 /* GetPortStatus clears reset */
726 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted write */
728 case GetHubDescriptor
:
729 ehci_hub_descriptor (ehci
, (struct usb_hub_descriptor
*)
733 /* no hub-wide feature/status flags */
735 //cpu_to_le32s ((u32 *) buf);
738 if (!wIndex
|| wIndex
> ports
)
742 temp
= ehci_readl(ehci
, status_reg
);
746 status
|= 1 << USB_PORT_FEAT_C_CONNECTION
;
748 status
|= 1 << USB_PORT_FEAT_C_ENABLE
;
750 if ((temp
& PORT_OCC
) && !ignore_oc
){
751 status
|= 1 << USB_PORT_FEAT_C_OVER_CURRENT
;
754 * Hubs should disable port power on over-current.
755 * However, not all EHCI implementations do this
756 * automatically, even if they _do_ support per-port
757 * power switching; they're allowed to just limit the
758 * current. khubd will turn the power back on.
760 if ((temp
& PORT_OC
) && HCS_PPC(ehci
->hcs_params
)) {
762 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
764 temp
= ehci_readl(ehci
, status_reg
);
768 /* whoever resumes must GetPortStatus to complete it!! */
769 if (temp
& PORT_RESUME
) {
771 /* Remote Wakeup received? */
772 if (!ehci
->reset_done
[wIndex
]) {
773 /* resume signaling for 20 msec */
774 ehci
->reset_done
[wIndex
] = jiffies
775 + msecs_to_jiffies(20);
776 /* check the port again */
777 mod_timer(&ehci_to_hcd(ehci
)->rh_timer
,
778 ehci
->reset_done
[wIndex
]);
781 /* resume completed? */
782 else if (time_after_eq(jiffies
,
783 ehci
->reset_done
[wIndex
])) {
784 clear_bit(wIndex
, &ehci
->suspended_ports
);
785 set_bit(wIndex
, &ehci
->port_c_suspend
);
786 ehci
->reset_done
[wIndex
] = 0;
788 /* stop resume signaling */
789 temp
= ehci_readl(ehci
, status_reg
);
791 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
),
793 retval
= handshake(ehci
, status_reg
,
794 PORT_RESUME
, 0, 2000 /* 2msec */);
797 "port %d resume error %d\n",
801 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
805 /* whoever resets must GetPortStatus to complete it!! */
806 if ((temp
& PORT_RESET
)
807 && time_after_eq(jiffies
,
808 ehci
->reset_done
[wIndex
])) {
809 status
|= 1 << USB_PORT_FEAT_C_RESET
;
810 ehci
->reset_done
[wIndex
] = 0;
812 /* force reset to complete */
813 ehci_writel(ehci
, temp
& ~(PORT_RWC_BITS
| PORT_RESET
),
815 /* REVISIT: some hardware needs 550+ usec to clear
816 * this bit; seems too long to spin routinely...
818 retval
= handshake(ehci
, status_reg
,
821 ehci_err (ehci
, "port %d reset error %d\n",
826 /* see what we found out */
827 temp
= check_reset_complete (ehci
, wIndex
, status_reg
,
828 ehci_readl(ehci
, status_reg
));
831 if (!(temp
& (PORT_RESUME
|PORT_RESET
)))
832 ehci
->reset_done
[wIndex
] = 0;
834 /* transfer dedicated ports to the companion hc */
835 if ((temp
& PORT_CONNECT
) &&
836 test_bit(wIndex
, &ehci
->companion_ports
)) {
837 temp
&= ~PORT_RWC_BITS
;
839 ehci_writel(ehci
, temp
, status_reg
);
840 ehci_dbg(ehci
, "port %d --> companion\n", wIndex
+ 1);
841 temp
= ehci_readl(ehci
, status_reg
);
845 * Even if OWNER is set, there's no harm letting khubd
846 * see the wPortStatus values (they should all be 0 except
847 * for PORT_POWER anyway).
850 if (temp
& PORT_CONNECT
) {
851 status
|= 1 << USB_PORT_FEAT_CONNECTION
;
852 // status may be from integrated TT
853 if (ehci
->has_hostpc
) {
854 temp1
= ehci_readl(ehci
, hostpc_reg
);
855 status
|= ehci_port_speed(ehci
, temp1
);
857 status
|= ehci_port_speed(ehci
, temp
);
860 status
|= 1 << USB_PORT_FEAT_ENABLE
;
862 /* maybe the port was unsuspended without our knowledge */
863 if (temp
& (PORT_SUSPEND
|PORT_RESUME
)) {
864 status
|= 1 << USB_PORT_FEAT_SUSPEND
;
865 } else if (test_bit(wIndex
, &ehci
->suspended_ports
)) {
866 clear_bit(wIndex
, &ehci
->suspended_ports
);
867 ehci
->reset_done
[wIndex
] = 0;
869 set_bit(wIndex
, &ehci
->port_c_suspend
);
873 status
|= 1 << USB_PORT_FEAT_OVER_CURRENT
;
874 if (temp
& PORT_RESET
)
875 status
|= 1 << USB_PORT_FEAT_RESET
;
876 if (temp
& PORT_POWER
)
877 status
|= 1 << USB_PORT_FEAT_POWER
;
878 if (test_bit(wIndex
, &ehci
->port_c_suspend
))
879 status
|= 1 << USB_PORT_FEAT_C_SUSPEND
;
881 #ifndef VERBOSE_DEBUG
882 if (status
& ~0xffff) /* only if wPortChange is interesting */
884 dbg_port (ehci
, "GetStatus", wIndex
+ 1, temp
);
885 put_unaligned_le32(status
, buf
);
889 case C_HUB_LOCAL_POWER
:
890 case C_HUB_OVER_CURRENT
:
891 /* no hub-wide feature/status flags */
898 selector
= wIndex
>> 8;
900 if (unlikely(ehci
->debug
)) {
901 /* If the debug port is active any port
902 * feature requests should get denied */
903 if (wIndex
== HCS_DEBUG_PORT(ehci
->hcs_params
) &&
904 (readl(&ehci
->debug
->control
) & DBGP_ENABLED
)) {
909 if (!wIndex
|| wIndex
> ports
)
912 temp
= ehci_readl(ehci
, status_reg
);
913 if (temp
& PORT_OWNER
)
916 temp
&= ~PORT_RWC_BITS
;
918 case USB_PORT_FEAT_SUSPEND
:
919 if (ehci
->no_selective_suspend
)
921 if ((temp
& PORT_PE
) == 0
922 || (temp
& PORT_RESET
) != 0)
924 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
925 /* After above check the port must be connected.
926 * Set appropriate bit thus could put phy into low power
927 * mode if we have hostpc feature
930 temp
&= ~PORT_WKCONN_E
;
931 temp
|= (PORT_WKDISC_E
| PORT_WKOC_E
);
932 ehci_writel(ehci
, temp
| PORT_SUSPEND
,
934 msleep(5);/* 5ms for HCD enter low pwr mode */
935 temp1
= ehci_readl(ehci
, hostpc_reg
);
936 ehci_writel(ehci
, temp1
| HOSTPC_PHCD
,
938 temp1
= ehci_readl(ehci
, hostpc_reg
);
939 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
940 wIndex
, (temp1
& HOSTPC_PHCD
) ?
941 "succeeded" : "failed");
943 set_bit(wIndex
, &ehci
->suspended_ports
);
945 case USB_PORT_FEAT_POWER
:
946 if (HCS_PPC (ehci
->hcs_params
))
947 ehci_writel(ehci
, temp
| PORT_POWER
,
950 case USB_PORT_FEAT_RESET
:
951 if (temp
& PORT_RESUME
)
953 /* line status bits may report this as low speed,
954 * which can be fine if this root hub has a
955 * transaction translator built in.
957 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
958 && !ehci_is_TDI(ehci
)
959 && PORT_USB11 (temp
)) {
961 "port %d low speed --> companion\n",
965 ehci_vdbg (ehci
, "port %d reset\n", wIndex
+ 1);
970 * caller must wait, then call GetPortStatus
971 * usb 2.0 spec says 50 ms resets on root
973 ehci
->reset_done
[wIndex
] = jiffies
974 + msecs_to_jiffies (50);
976 ehci_writel(ehci
, temp
, status_reg
);
979 /* For downstream facing ports (these): one hub port is put
980 * into test mode according to USB2 11.24.2.13, then the hub
981 * must be reset (which for root hub now means rmmod+modprobe,
982 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
983 * about the EHCI-specific stuff.
985 case USB_PORT_FEAT_TEST
:
986 if (!selector
|| selector
> 5)
990 temp
|= selector
<< 16;
991 ehci_writel(ehci
, temp
, status_reg
);
997 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted writes */
1002 /* "stall" on error */
1006 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1010 static void ehci_relinquish_port(struct usb_hcd
*hcd
, int portnum
)
1012 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1014 if (ehci_is_TDI(ehci
))
1016 set_owner(ehci
, --portnum
, PORT_OWNER
);
1019 static int ehci_port_handed_over(struct usb_hcd
*hcd
, int portnum
)
1021 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1024 if (ehci_is_TDI(ehci
))
1026 reg
= &ehci
->regs
->port_status
[portnum
- 1];
1027 return ehci_readl(ehci
, reg
) & PORT_OWNER
;