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 spin_unlock_irq(&ehci
->lock
);
200 msleep(5);/* 5ms for HCD enter low pwr mode */
201 spin_lock_irq(&ehci
->lock
);
202 t3
= ehci_readl(ehci
, hostpc_reg
);
203 ehci_writel(ehci
, t3
| HOSTPC_PHCD
, hostpc_reg
);
204 t3
= ehci_readl(ehci
, hostpc_reg
);
205 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
206 port
, (t3
& HOSTPC_PHCD
) ?
207 "succeeded" : "failed");
212 /* Apparently some devices need a >= 1-uframe delay here */
213 if (ehci
->bus_suspended
)
216 /* turn off now-idle HC */
218 hcd
->state
= HC_STATE_SUSPENDED
;
221 end_unlink_async(ehci
);
223 /* allow remote wakeup */
225 if (!hcd
->self
.root_hub
->do_remote_wakeup
)
227 ehci_writel(ehci
, mask
, &ehci
->regs
->intr_enable
);
228 ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
230 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(10);
231 spin_unlock_irq (&ehci
->lock
);
233 /* ehci_work() may have re-enabled the watchdog timer, which we do not
234 * want, and so we must delete any pending watchdog timer events.
236 del_timer_sync(&ehci
->watchdog
);
241 /* caller has locked the root hub, and should reset/reinit on error */
242 static int ehci_bus_resume (struct usb_hcd
*hcd
)
244 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
248 u8 resume_needed
= 0;
250 if (time_before (jiffies
, ehci
->next_statechange
))
252 spin_lock_irq (&ehci
->lock
);
253 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
254 spin_unlock_irq(&ehci
->lock
);
258 if (unlikely(ehci
->debug
)) {
259 if (!dbgp_reset_prep())
262 dbgp_external_startup();
265 /* Ideally and we've got a real resume here, and no port's power
266 * was lost. (For PCI, that means Vaux was maintained.) But we
267 * could instead be restoring a swsusp snapshot -- so that BIOS was
268 * the last user of the controller, not reset/pm hardware keeping
269 * state we gave to it.
271 power_okay
= ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
272 ehci_dbg(ehci
, "resume root hub%s\n",
273 power_okay
? "" : " after power loss");
275 /* at least some APM implementations will try to deliver
276 * IRQs right away, so delay them until we're ready.
278 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
280 /* re-init operational registers */
281 ehci_writel(ehci
, 0, &ehci
->regs
->segment
);
282 ehci_writel(ehci
, ehci
->periodic_dma
, &ehci
->regs
->frame_list
);
283 ehci_writel(ehci
, (u32
) ehci
->async
->qh_dma
, &ehci
->regs
->async_next
);
285 /* restore CMD_RUN, framelist size, and irq threshold */
286 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
288 /* Some controller/firmware combinations need a delay during which
289 * they set up the port statuses. See Bugzilla #8190. */
290 spin_unlock_irq(&ehci
->lock
);
292 spin_lock_irq(&ehci
->lock
);
294 /* manually resume the ports we suspended during bus_suspend() */
295 i
= HCS_N_PORTS (ehci
->hcs_params
);
297 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
298 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
299 if (test_bit(i
, &ehci
->bus_suspended
) &&
300 (temp
& PORT_SUSPEND
)) {
304 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
307 /* msleep for 20ms only if code is trying to resume port */
309 spin_unlock_irq(&ehci
->lock
);
311 spin_lock_irq(&ehci
->lock
);
314 i
= HCS_N_PORTS (ehci
->hcs_params
);
316 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
317 if (test_bit(i
, &ehci
->bus_suspended
) &&
318 (temp
& PORT_SUSPEND
)) {
319 temp
&= ~(PORT_RWC_BITS
| PORT_RESUME
);
320 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
321 ehci_vdbg (ehci
, "resumed port %d\n", i
+ 1);
324 (void) ehci_readl(ehci
, &ehci
->regs
->command
);
326 /* maybe re-activate the schedule(s) */
328 if (ehci
->async
->qh_next
.qh
)
330 if (ehci
->periodic_sched
)
333 ehci
->command
|= temp
;
334 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
337 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(5);
338 hcd
->state
= HC_STATE_RUNNING
;
340 /* Now we can safely re-enable irqs */
341 ehci_writel(ehci
, INTR_MASK
, &ehci
->regs
->intr_enable
);
343 spin_unlock_irq (&ehci
->lock
);
344 ehci_handover_companion_ports(ehci
);
350 #define ehci_bus_suspend NULL
351 #define ehci_bus_resume NULL
353 #endif /* CONFIG_PM */
355 /*-------------------------------------------------------------------------*/
357 /* Display the ports dedicated to the companion controller */
358 static ssize_t
show_companion(struct device
*dev
,
359 struct device_attribute
*attr
,
362 struct ehci_hcd
*ehci
;
363 int nports
, index
, n
;
364 int count
= PAGE_SIZE
;
367 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
368 nports
= HCS_N_PORTS(ehci
->hcs_params
);
370 for (index
= 0; index
< nports
; ++index
) {
371 if (test_bit(index
, &ehci
->companion_ports
)) {
372 n
= scnprintf(ptr
, count
, "%d\n", index
+ 1);
381 * Sets the owner of a port
383 static void set_owner(struct ehci_hcd
*ehci
, int portnum
, int new_owner
)
385 u32 __iomem
*status_reg
;
389 status_reg
= &ehci
->regs
->port_status
[portnum
];
392 * The controller won't set the OWNER bit if the port is
393 * enabled, so this loop will sometimes require at least two
394 * iterations: one to disable the port and one to set OWNER.
396 for (try = 4; try > 0; --try) {
397 spin_lock_irq(&ehci
->lock
);
398 port_status
= ehci_readl(ehci
, status_reg
);
399 if ((port_status
& PORT_OWNER
) == new_owner
400 || (port_status
& (PORT_OWNER
| PORT_CONNECT
))
404 port_status
^= PORT_OWNER
;
405 port_status
&= ~(PORT_PE
| PORT_RWC_BITS
);
406 ehci_writel(ehci
, port_status
, status_reg
);
408 spin_unlock_irq(&ehci
->lock
);
415 * Dedicate or undedicate a port to the companion controller.
416 * Syntax is "[-]portnum", where a leading '-' sign means
417 * return control of the port to the EHCI controller.
419 static ssize_t
store_companion(struct device
*dev
,
420 struct device_attribute
*attr
,
421 const char *buf
, size_t count
)
423 struct ehci_hcd
*ehci
;
424 int portnum
, new_owner
;
426 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
427 new_owner
= PORT_OWNER
; /* Owned by companion */
428 if (sscanf(buf
, "%d", &portnum
) != 1)
432 new_owner
= 0; /* Owned by EHCI */
434 if (portnum
<= 0 || portnum
> HCS_N_PORTS(ehci
->hcs_params
))
438 set_bit(portnum
, &ehci
->companion_ports
);
440 clear_bit(portnum
, &ehci
->companion_ports
);
441 set_owner(ehci
, portnum
, new_owner
);
444 static DEVICE_ATTR(companion
, 0644, show_companion
, store_companion
);
446 static inline void create_companion_file(struct ehci_hcd
*ehci
)
450 /* with integrated TT there is no companion! */
451 if (!ehci_is_TDI(ehci
))
452 i
= device_create_file(ehci_to_hcd(ehci
)->self
.controller
,
453 &dev_attr_companion
);
456 static inline void remove_companion_file(struct ehci_hcd
*ehci
)
458 /* with integrated TT there is no companion! */
459 if (!ehci_is_TDI(ehci
))
460 device_remove_file(ehci_to_hcd(ehci
)->self
.controller
,
461 &dev_attr_companion
);
465 /*-------------------------------------------------------------------------*/
467 static int check_reset_complete (
468 struct ehci_hcd
*ehci
,
470 u32 __iomem
*status_reg
,
473 if (!(port_status
& PORT_CONNECT
))
476 /* if reset finished and it's still not enabled -- handoff */
477 if (!(port_status
& PORT_PE
)) {
479 /* with integrated TT, there's nobody to hand it to! */
480 if (ehci_is_TDI(ehci
)) {
482 "Failed to enable port %d on root hub TT\n",
487 ehci_dbg (ehci
, "port %d full speed --> companion\n",
490 // what happens if HCS_N_CC(params) == 0 ?
491 port_status
|= PORT_OWNER
;
492 port_status
&= ~PORT_RWC_BITS
;
493 ehci_writel(ehci
, port_status
, status_reg
);
495 /* ensure 440EPX ohci controller state is operational */
496 if (ehci
->has_amcc_usb23
)
497 set_ohci_hcfs(ehci
, 1);
499 ehci_dbg (ehci
, "port %d high speed\n", index
+ 1);
500 /* ensure 440EPx ohci controller state is suspended */
501 if (ehci
->has_amcc_usb23
)
502 set_ohci_hcfs(ehci
, 0);
508 /*-------------------------------------------------------------------------*/
511 /* build "status change" packet (one or two bytes) from HC registers */
514 ehci_hub_status_data (struct usb_hcd
*hcd
, char *buf
)
516 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
517 u32 temp
, status
= 0;
519 int ports
, i
, retval
= 1;
522 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
523 if (!HC_IS_RUNNING(hcd
->state
))
526 /* init status to no-changes */
528 ports
= HCS_N_PORTS (ehci
->hcs_params
);
534 /* Some boards (mostly VIA?) report bogus overcurrent indications,
535 * causing massive log spam unless we completely ignore them. It
536 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
537 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
538 * PORT_POWER; that's surprising, but maybe within-spec.
541 mask
= PORT_CSC
| PORT_PEC
| PORT_OCC
;
543 mask
= PORT_CSC
| PORT_PEC
;
544 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
546 /* no hub change reports (bit 0) for now (power, ...) */
548 /* port N changes (bit N)? */
549 spin_lock_irqsave (&ehci
->lock
, flags
);
550 for (i
= 0; i
< ports
; i
++) {
551 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
554 * Return status information even for ports with OWNER set.
555 * Otherwise khubd wouldn't see the disconnect event when a
556 * high-speed device is switched over to the companion
557 * controller by the user.
560 if ((temp
& mask
) != 0 || test_bit(i
, &ehci
->port_c_suspend
)
561 || (ehci
->reset_done
[i
] && time_after_eq(
562 jiffies
, ehci
->reset_done
[i
]))) {
564 buf
[0] |= 1 << (i
+ 1);
566 buf
[1] |= 1 << (i
- 7);
570 /* FIXME autosuspend idle root hubs */
571 spin_unlock_irqrestore (&ehci
->lock
, flags
);
572 return status
? retval
: 0;
575 /*-------------------------------------------------------------------------*/
578 ehci_hub_descriptor (
579 struct ehci_hcd
*ehci
,
580 struct usb_hub_descriptor
*desc
582 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
585 desc
->bDescriptorType
= 0x29;
586 desc
->bPwrOn2PwrGood
= 10; /* ehci 1.0, 2.3.9 says 20ms max */
587 desc
->bHubContrCurrent
= 0;
589 desc
->bNbrPorts
= ports
;
590 temp
= 1 + (ports
/ 8);
591 desc
->bDescLength
= 7 + 2 * temp
;
593 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
594 memset (&desc
->bitmap
[0], 0, temp
);
595 memset (&desc
->bitmap
[temp
], 0xff, temp
);
597 temp
= 0x0008; /* per-port overcurrent reporting */
598 if (HCS_PPC (ehci
->hcs_params
))
599 temp
|= 0x0001; /* per-port power control */
601 temp
|= 0x0002; /* no power switching */
603 // re-enable when we support USB_PORT_FEAT_INDICATOR below.
604 if (HCS_INDICATOR (ehci
->hcs_params
))
605 temp
|= 0x0080; /* per-port indicators (LEDs) */
607 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
610 /*-------------------------------------------------------------------------*/
612 static int ehci_hub_control (
620 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
621 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
622 u32 __iomem
*status_reg
= &ehci
->regs
->port_status
[
623 (wIndex
& 0xff) - 1];
624 u32 __iomem
*hostpc_reg
= NULL
;
625 u32 temp
, temp1
, status
;
631 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
632 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
633 * (track current state ourselves) ... blink for diagnostics,
634 * power, "this is the one", etc. EHCI spec supports this.
637 if (ehci
->has_hostpc
)
638 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
639 + HOSTPC0
+ 4 * ((wIndex
& 0xff) - 1));
640 spin_lock_irqsave (&ehci
->lock
, flags
);
642 case ClearHubFeature
:
644 case C_HUB_LOCAL_POWER
:
645 case C_HUB_OVER_CURRENT
:
646 /* no hub-wide feature/status flags */
652 case ClearPortFeature
:
653 if (!wIndex
|| wIndex
> ports
)
656 temp
= ehci_readl(ehci
, status_reg
);
659 * Even if OWNER is set, so the port is owned by the
660 * companion controller, khubd needs to be able to clear
661 * the port-change status bits (especially
662 * USB_PORT_FEAT_C_CONNECTION).
666 case USB_PORT_FEAT_ENABLE
:
667 ehci_writel(ehci
, temp
& ~PORT_PE
, status_reg
);
669 case USB_PORT_FEAT_C_ENABLE
:
670 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_PEC
,
673 case USB_PORT_FEAT_SUSPEND
:
674 if (temp
& PORT_RESET
)
676 if (ehci
->no_selective_suspend
)
678 if (temp
& PORT_SUSPEND
) {
679 if ((temp
& PORT_PE
) == 0)
681 /* resume signaling for 20 msec */
682 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
683 ehci_writel(ehci
, temp
| PORT_RESUME
,
685 ehci
->reset_done
[wIndex
] = jiffies
686 + msecs_to_jiffies (20);
689 case USB_PORT_FEAT_C_SUSPEND
:
690 clear_bit(wIndex
, &ehci
->port_c_suspend
);
692 case USB_PORT_FEAT_POWER
:
693 if (HCS_PPC (ehci
->hcs_params
))
695 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
698 case USB_PORT_FEAT_C_CONNECTION
:
699 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_CSC
,
702 case USB_PORT_FEAT_C_OVER_CURRENT
:
703 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_OCC
,
706 case USB_PORT_FEAT_C_RESET
:
707 /* GetPortStatus clears reset */
712 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted write */
714 case GetHubDescriptor
:
715 ehci_hub_descriptor (ehci
, (struct usb_hub_descriptor
*)
719 /* no hub-wide feature/status flags */
721 //cpu_to_le32s ((u32 *) buf);
724 if (!wIndex
|| wIndex
> ports
)
728 temp
= ehci_readl(ehci
, status_reg
);
732 status
|= 1 << USB_PORT_FEAT_C_CONNECTION
;
734 status
|= 1 << USB_PORT_FEAT_C_ENABLE
;
736 if ((temp
& PORT_OCC
) && !ignore_oc
){
737 status
|= 1 << USB_PORT_FEAT_C_OVER_CURRENT
;
740 * Hubs should disable port power on over-current.
741 * However, not all EHCI implementations do this
742 * automatically, even if they _do_ support per-port
743 * power switching; they're allowed to just limit the
744 * current. khubd will turn the power back on.
746 if (HCS_PPC (ehci
->hcs_params
)){
748 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
753 /* whoever resumes must GetPortStatus to complete it!! */
754 if (temp
& PORT_RESUME
) {
756 /* Remote Wakeup received? */
757 if (!ehci
->reset_done
[wIndex
]) {
758 /* resume signaling for 20 msec */
759 ehci
->reset_done
[wIndex
] = jiffies
760 + msecs_to_jiffies(20);
761 /* check the port again */
762 mod_timer(&ehci_to_hcd(ehci
)->rh_timer
,
763 ehci
->reset_done
[wIndex
]);
766 /* resume completed? */
767 else if (time_after_eq(jiffies
,
768 ehci
->reset_done
[wIndex
])) {
769 clear_bit(wIndex
, &ehci
->suspended_ports
);
770 set_bit(wIndex
, &ehci
->port_c_suspend
);
771 ehci
->reset_done
[wIndex
] = 0;
773 /* stop resume signaling */
774 temp
= ehci_readl(ehci
, status_reg
);
776 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
),
778 retval
= handshake(ehci
, status_reg
,
779 PORT_RESUME
, 0, 2000 /* 2msec */);
782 "port %d resume error %d\n",
786 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
790 /* whoever resets must GetPortStatus to complete it!! */
791 if ((temp
& PORT_RESET
)
792 && time_after_eq(jiffies
,
793 ehci
->reset_done
[wIndex
])) {
794 status
|= 1 << USB_PORT_FEAT_C_RESET
;
795 ehci
->reset_done
[wIndex
] = 0;
797 /* force reset to complete */
798 ehci_writel(ehci
, temp
& ~(PORT_RWC_BITS
| PORT_RESET
),
800 /* REVISIT: some hardware needs 550+ usec to clear
801 * this bit; seems too long to spin routinely...
803 retval
= handshake(ehci
, status_reg
,
804 PORT_RESET
, 0, 1000);
806 ehci_err (ehci
, "port %d reset error %d\n",
811 /* see what we found out */
812 temp
= check_reset_complete (ehci
, wIndex
, status_reg
,
813 ehci_readl(ehci
, status_reg
));
816 if (!(temp
& (PORT_RESUME
|PORT_RESET
)))
817 ehci
->reset_done
[wIndex
] = 0;
819 /* transfer dedicated ports to the companion hc */
820 if ((temp
& PORT_CONNECT
) &&
821 test_bit(wIndex
, &ehci
->companion_ports
)) {
822 temp
&= ~PORT_RWC_BITS
;
824 ehci_writel(ehci
, temp
, status_reg
);
825 ehci_dbg(ehci
, "port %d --> companion\n", wIndex
+ 1);
826 temp
= ehci_readl(ehci
, status_reg
);
830 * Even if OWNER is set, there's no harm letting khubd
831 * see the wPortStatus values (they should all be 0 except
832 * for PORT_POWER anyway).
835 if (temp
& PORT_CONNECT
) {
836 status
|= 1 << USB_PORT_FEAT_CONNECTION
;
837 // status may be from integrated TT
838 if (ehci
->has_hostpc
) {
839 temp1
= ehci_readl(ehci
, hostpc_reg
);
840 status
|= ehci_port_speed(ehci
, temp1
);
842 status
|= ehci_port_speed(ehci
, temp
);
845 status
|= 1 << USB_PORT_FEAT_ENABLE
;
847 /* maybe the port was unsuspended without our knowledge */
848 if (temp
& (PORT_SUSPEND
|PORT_RESUME
)) {
849 status
|= 1 << USB_PORT_FEAT_SUSPEND
;
850 } else if (test_bit(wIndex
, &ehci
->suspended_ports
)) {
851 clear_bit(wIndex
, &ehci
->suspended_ports
);
852 ehci
->reset_done
[wIndex
] = 0;
854 set_bit(wIndex
, &ehci
->port_c_suspend
);
858 status
|= 1 << USB_PORT_FEAT_OVER_CURRENT
;
859 if (temp
& PORT_RESET
)
860 status
|= 1 << USB_PORT_FEAT_RESET
;
861 if (temp
& PORT_POWER
)
862 status
|= 1 << USB_PORT_FEAT_POWER
;
863 if (test_bit(wIndex
, &ehci
->port_c_suspend
))
864 status
|= 1 << USB_PORT_FEAT_C_SUSPEND
;
866 #ifndef VERBOSE_DEBUG
867 if (status
& ~0xffff) /* only if wPortChange is interesting */
869 dbg_port (ehci
, "GetStatus", wIndex
+ 1, temp
);
870 put_unaligned_le32(status
, buf
);
874 case C_HUB_LOCAL_POWER
:
875 case C_HUB_OVER_CURRENT
:
876 /* no hub-wide feature/status flags */
883 selector
= wIndex
>> 8;
885 if (unlikely(ehci
->debug
)) {
886 /* If the debug port is active any port
887 * feature requests should get denied */
888 if (wIndex
== HCS_DEBUG_PORT(ehci
->hcs_params
) &&
889 (readl(&ehci
->debug
->control
) & DBGP_ENABLED
)) {
894 if (!wIndex
|| wIndex
> ports
)
897 temp
= ehci_readl(ehci
, status_reg
);
898 if (temp
& PORT_OWNER
)
901 temp
&= ~PORT_RWC_BITS
;
903 case USB_PORT_FEAT_SUSPEND
:
904 if (ehci
->no_selective_suspend
)
906 if ((temp
& PORT_PE
) == 0
907 || (temp
& PORT_RESET
) != 0)
910 /* After above check the port must be connected.
911 * Set appropriate bit thus could put phy into low power
912 * mode if we have hostpc feature
914 temp
&= ~PORT_WKCONN_E
;
915 temp
|= PORT_WKDISC_E
| PORT_WKOC_E
;
916 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
918 spin_unlock_irqrestore(&ehci
->lock
, flags
);
919 msleep(5);/* 5ms for HCD enter low pwr mode */
920 spin_lock_irqsave(&ehci
->lock
, flags
);
921 temp1
= ehci_readl(ehci
, hostpc_reg
);
922 ehci_writel(ehci
, temp1
| HOSTPC_PHCD
,
924 temp1
= ehci_readl(ehci
, hostpc_reg
);
925 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
926 wIndex
, (temp1
& HOSTPC_PHCD
) ?
927 "succeeded" : "failed");
929 set_bit(wIndex
, &ehci
->suspended_ports
);
931 case USB_PORT_FEAT_POWER
:
932 if (HCS_PPC (ehci
->hcs_params
))
933 ehci_writel(ehci
, temp
| PORT_POWER
,
936 case USB_PORT_FEAT_RESET
:
937 if (temp
& PORT_RESUME
)
939 /* line status bits may report this as low speed,
940 * which can be fine if this root hub has a
941 * transaction translator built in.
943 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
944 && !ehci_is_TDI(ehci
)
945 && PORT_USB11 (temp
)) {
947 "port %d low speed --> companion\n",
951 ehci_vdbg (ehci
, "port %d reset\n", wIndex
+ 1);
956 * caller must wait, then call GetPortStatus
957 * usb 2.0 spec says 50 ms resets on root
959 ehci
->reset_done
[wIndex
] = jiffies
960 + msecs_to_jiffies (50);
962 ehci_writel(ehci
, temp
, status_reg
);
965 /* For downstream facing ports (these): one hub port is put
966 * into test mode according to USB2 11.24.2.13, then the hub
967 * must be reset (which for root hub now means rmmod+modprobe,
968 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
969 * about the EHCI-specific stuff.
971 case USB_PORT_FEAT_TEST
:
972 if (!selector
|| selector
> 5)
976 temp
|= selector
<< 16;
977 ehci_writel(ehci
, temp
, status_reg
);
983 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted writes */
988 /* "stall" on error */
992 spin_unlock_irqrestore (&ehci
->lock
, flags
);
996 static void ehci_relinquish_port(struct usb_hcd
*hcd
, int portnum
)
998 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1000 if (ehci_is_TDI(ehci
))
1002 set_owner(ehci
, --portnum
, PORT_OWNER
);
1005 static int ehci_port_handed_over(struct usb_hcd
*hcd
, int portnum
)
1007 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1010 if (ehci_is_TDI(ehci
))
1012 reg
= &ehci
->regs
->port_status
[portnum
- 1];
1013 return ehci_readl(ehci
, reg
) & PORT_OWNER
;