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 void ehci_adjust_port_wakeup_flags(struct ehci_hcd
*ehci
,
110 bool suspending
, bool do_wakeup
)
115 /* If remote wakeup is enabled for the root hub but disabled
116 * for the controller, we must adjust all the port wakeup flags
117 * when the controller is suspended or resumed. In all other
118 * cases they don't need to be changed.
120 if (!ehci_to_hcd(ehci
)->self
.root_hub
->do_remote_wakeup
|| do_wakeup
)
123 /* clear phy low-power mode before changing wakeup flags */
124 if (ehci
->has_hostpc
) {
125 port
= HCS_N_PORTS(ehci
->hcs_params
);
127 u32 __iomem
*hostpc_reg
;
129 hostpc_reg
= (u32 __iomem
*)((u8
*) ehci
->regs
130 + HOSTPC0
+ 4 * port
);
131 temp
= ehci_readl(ehci
, hostpc_reg
);
132 ehci_writel(ehci
, temp
& ~HOSTPC_PHCD
, hostpc_reg
);
137 port
= HCS_N_PORTS(ehci
->hcs_params
);
139 u32 __iomem
*reg
= &ehci
->regs
->port_status
[port
];
140 u32 t1
= ehci_readl(ehci
, reg
) & ~PORT_RWC_BITS
;
141 u32 t2
= t1
& ~PORT_WAKE_BITS
;
143 /* If we are suspending the controller, clear the flags.
144 * If we are resuming the controller, set the wakeup flags.
147 if (t1
& PORT_CONNECT
)
148 t2
|= PORT_WKOC_E
| PORT_WKDISC_E
;
150 t2
|= PORT_WKOC_E
| PORT_WKCONN_E
;
152 ehci_vdbg(ehci
, "port %d, %08x -> %08x\n",
154 ehci_writel(ehci
, t2
, reg
);
157 /* enter phy low-power mode again */
158 if (ehci
->has_hostpc
) {
159 port
= HCS_N_PORTS(ehci
->hcs_params
);
161 u32 __iomem
*hostpc_reg
;
163 hostpc_reg
= (u32 __iomem
*)((u8
*) ehci
->regs
164 + HOSTPC0
+ 4 * port
);
165 temp
= ehci_readl(ehci
, hostpc_reg
);
166 ehci_writel(ehci
, temp
| HOSTPC_PHCD
, hostpc_reg
);
170 /* Does the root hub have a port wakeup pending? */
171 if (!suspending
&& (ehci_readl(ehci
, &ehci
->regs
->status
) & STS_PCD
))
172 usb_hcd_resume_root_hub(ehci_to_hcd(ehci
));
175 static int ehci_bus_suspend (struct usb_hcd
*hcd
)
177 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
182 ehci_dbg(ehci
, "suspend root hub\n");
184 if (time_before (jiffies
, ehci
->next_statechange
))
186 del_timer_sync(&ehci
->watchdog
);
187 del_timer_sync(&ehci
->iaa_watchdog
);
189 spin_lock_irq (&ehci
->lock
);
191 /* Once the controller is stopped, port resumes that are already
192 * in progress won't complete. Hence if remote wakeup is enabled
193 * for the root hub and any ports are in the middle of a resume or
194 * remote wakeup, we must fail the suspend.
196 if (hcd
->self
.root_hub
->do_remote_wakeup
) {
197 port
= HCS_N_PORTS(ehci
->hcs_params
);
199 if (ehci
->reset_done
[port
] != 0) {
200 spin_unlock_irq(&ehci
->lock
);
201 ehci_dbg(ehci
, "suspend failed because "
202 "port %d is resuming\n",
209 /* stop schedules, clean any completed work */
210 if (HC_IS_RUNNING(hcd
->state
)) {
212 hcd
->state
= HC_STATE_QUIESCING
;
214 ehci
->command
= ehci_readl(ehci
, &ehci
->regs
->command
);
217 /* Unlike other USB host controller types, EHCI doesn't have
218 * any notion of "global" or bus-wide suspend. The driver has
219 * to manually suspend all the active unsuspended ports, and
220 * then manually resume them in the bus_resume() routine.
222 ehci
->bus_suspended
= 0;
223 ehci
->owned_ports
= 0;
225 port
= HCS_N_PORTS(ehci
->hcs_params
);
227 u32 __iomem
*reg
= &ehci
->regs
->port_status
[port
];
228 u32 t1
= ehci_readl(ehci
, reg
) & ~PORT_RWC_BITS
;
229 u32 t2
= t1
& ~PORT_WAKE_BITS
;
231 /* keep track of which ports we suspend */
233 set_bit(port
, &ehci
->owned_ports
);
234 else if ((t1
& PORT_PE
) && !(t1
& PORT_SUSPEND
)) {
236 set_bit(port
, &ehci
->bus_suspended
);
239 /* enable remote wakeup on all ports, if told to do so */
240 if (hcd
->self
.root_hub
->do_remote_wakeup
) {
241 /* only enable appropriate wake bits, otherwise the
242 * hardware can not go phy low power mode. If a race
243 * condition happens here(connection change during bits
244 * set), the port change detection will finally fix it.
246 if (t1
& PORT_CONNECT
)
247 t2
|= PORT_WKOC_E
| PORT_WKDISC_E
;
249 t2
|= PORT_WKOC_E
| PORT_WKCONN_E
;
253 ehci_vdbg (ehci
, "port %d, %08x -> %08x\n",
255 ehci_writel(ehci
, t2
, reg
);
260 if (changed
&& ehci
->has_hostpc
) {
261 spin_unlock_irq(&ehci
->lock
);
262 msleep(5); /* 5 ms for HCD to enter low-power mode */
263 spin_lock_irq(&ehci
->lock
);
265 port
= HCS_N_PORTS(ehci
->hcs_params
);
267 u32 __iomem
*hostpc_reg
;
270 hostpc_reg
= (u32 __iomem
*)((u8
*) ehci
->regs
271 + HOSTPC0
+ 4 * port
);
272 t3
= ehci_readl(ehci
, hostpc_reg
);
273 ehci_writel(ehci
, t3
| HOSTPC_PHCD
, hostpc_reg
);
274 t3
= ehci_readl(ehci
, hostpc_reg
);
275 ehci_dbg(ehci
, "Port %d phy low-power mode %s\n",
276 port
, (t3
& HOSTPC_PHCD
) ?
277 "succeeded" : "failed");
281 /* Apparently some devices need a >= 1-uframe delay here */
282 if (ehci
->bus_suspended
)
285 /* turn off now-idle HC */
287 hcd
->state
= HC_STATE_SUSPENDED
;
290 end_unlink_async(ehci
);
292 /* allow remote wakeup */
294 if (!hcd
->self
.root_hub
->do_remote_wakeup
)
296 ehci_writel(ehci
, mask
, &ehci
->regs
->intr_enable
);
297 ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
299 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(10);
300 spin_unlock_irq (&ehci
->lock
);
302 /* ehci_work() may have re-enabled the watchdog timer, which we do not
303 * want, and so we must delete any pending watchdog timer events.
305 del_timer_sync(&ehci
->watchdog
);
310 /* caller has locked the root hub, and should reset/reinit on error */
311 static int ehci_bus_resume (struct usb_hcd
*hcd
)
313 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
317 u8 resume_needed
= 0;
319 if (time_before (jiffies
, ehci
->next_statechange
))
321 spin_lock_irq (&ehci
->lock
);
322 if (!HCD_HW_ACCESSIBLE(hcd
)) {
323 spin_unlock_irq(&ehci
->lock
);
327 if (unlikely(ehci
->debug
)) {
328 if (!dbgp_reset_prep())
331 dbgp_external_startup();
334 /* Ideally and we've got a real resume here, and no port's power
335 * was lost. (For PCI, that means Vaux was maintained.) But we
336 * could instead be restoring a swsusp snapshot -- so that BIOS was
337 * the last user of the controller, not reset/pm hardware keeping
338 * state we gave to it.
340 power_okay
= ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
341 ehci_dbg(ehci
, "resume root hub%s\n",
342 power_okay
? "" : " after power loss");
344 /* at least some APM implementations will try to deliver
345 * IRQs right away, so delay them until we're ready.
347 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
349 /* re-init operational registers */
350 ehci_writel(ehci
, 0, &ehci
->regs
->segment
);
351 ehci_writel(ehci
, ehci
->periodic_dma
, &ehci
->regs
->frame_list
);
352 ehci_writel(ehci
, (u32
) ehci
->async
->qh_dma
, &ehci
->regs
->async_next
);
354 /* restore CMD_RUN, framelist size, and irq threshold */
355 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
357 /* Some controller/firmware combinations need a delay during which
358 * they set up the port statuses. See Bugzilla #8190. */
359 spin_unlock_irq(&ehci
->lock
);
361 spin_lock_irq(&ehci
->lock
);
363 /* clear phy low-power mode before resume */
364 if (ehci
->bus_suspended
&& ehci
->has_hostpc
) {
365 i
= HCS_N_PORTS(ehci
->hcs_params
);
367 if (test_bit(i
, &ehci
->bus_suspended
)) {
368 u32 __iomem
*hostpc_reg
;
370 hostpc_reg
= (u32 __iomem
*)((u8
*) ehci
->regs
372 temp
= ehci_readl(ehci
, hostpc_reg
);
373 ehci_writel(ehci
, temp
& ~HOSTPC_PHCD
,
377 spin_unlock_irq(&ehci
->lock
);
379 spin_lock_irq(&ehci
->lock
);
382 /* manually resume the ports we suspended during bus_suspend() */
383 i
= HCS_N_PORTS (ehci
->hcs_params
);
385 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
386 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
387 if (test_bit(i
, &ehci
->bus_suspended
) &&
388 (temp
& PORT_SUSPEND
)) {
392 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
395 /* msleep for 20ms only if code is trying to resume port */
397 spin_unlock_irq(&ehci
->lock
);
399 spin_lock_irq(&ehci
->lock
);
402 i
= HCS_N_PORTS (ehci
->hcs_params
);
404 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
405 if (test_bit(i
, &ehci
->bus_suspended
) &&
406 (temp
& PORT_SUSPEND
)) {
407 temp
&= ~(PORT_RWC_BITS
| PORT_RESUME
);
408 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
409 ehci_vdbg (ehci
, "resumed port %d\n", i
+ 1);
412 (void) ehci_readl(ehci
, &ehci
->regs
->command
);
414 /* maybe re-activate the schedule(s) */
416 if (ehci
->async
->qh_next
.qh
)
418 if (ehci
->periodic_sched
)
421 ehci
->command
|= temp
;
422 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
425 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(5);
426 hcd
->state
= HC_STATE_RUNNING
;
428 /* Now we can safely re-enable irqs */
429 ehci_writel(ehci
, INTR_MASK
, &ehci
->regs
->intr_enable
);
431 spin_unlock_irq (&ehci
->lock
);
432 ehci_handover_companion_ports(ehci
);
438 #define ehci_bus_suspend NULL
439 #define ehci_bus_resume NULL
441 #endif /* CONFIG_PM */
443 /*-------------------------------------------------------------------------*/
445 /* Display the ports dedicated to the companion controller */
446 static ssize_t
show_companion(struct device
*dev
,
447 struct device_attribute
*attr
,
450 struct ehci_hcd
*ehci
;
451 int nports
, index
, n
;
452 int count
= PAGE_SIZE
;
455 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
456 nports
= HCS_N_PORTS(ehci
->hcs_params
);
458 for (index
= 0; index
< nports
; ++index
) {
459 if (test_bit(index
, &ehci
->companion_ports
)) {
460 n
= scnprintf(ptr
, count
, "%d\n", index
+ 1);
469 * Sets the owner of a port
471 static void set_owner(struct ehci_hcd
*ehci
, int portnum
, int new_owner
)
473 u32 __iomem
*status_reg
;
477 status_reg
= &ehci
->regs
->port_status
[portnum
];
480 * The controller won't set the OWNER bit if the port is
481 * enabled, so this loop will sometimes require at least two
482 * iterations: one to disable the port and one to set OWNER.
484 for (try = 4; try > 0; --try) {
485 spin_lock_irq(&ehci
->lock
);
486 port_status
= ehci_readl(ehci
, status_reg
);
487 if ((port_status
& PORT_OWNER
) == new_owner
488 || (port_status
& (PORT_OWNER
| PORT_CONNECT
))
492 port_status
^= PORT_OWNER
;
493 port_status
&= ~(PORT_PE
| PORT_RWC_BITS
);
494 ehci_writel(ehci
, port_status
, status_reg
);
496 spin_unlock_irq(&ehci
->lock
);
503 * Dedicate or undedicate a port to the companion controller.
504 * Syntax is "[-]portnum", where a leading '-' sign means
505 * return control of the port to the EHCI controller.
507 static ssize_t
store_companion(struct device
*dev
,
508 struct device_attribute
*attr
,
509 const char *buf
, size_t count
)
511 struct ehci_hcd
*ehci
;
512 int portnum
, new_owner
;
514 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
515 new_owner
= PORT_OWNER
; /* Owned by companion */
516 if (sscanf(buf
, "%d", &portnum
) != 1)
520 new_owner
= 0; /* Owned by EHCI */
522 if (portnum
<= 0 || portnum
> HCS_N_PORTS(ehci
->hcs_params
))
526 set_bit(portnum
, &ehci
->companion_ports
);
528 clear_bit(portnum
, &ehci
->companion_ports
);
529 set_owner(ehci
, portnum
, new_owner
);
532 static DEVICE_ATTR(companion
, 0644, show_companion
, store_companion
);
534 static inline void create_companion_file(struct ehci_hcd
*ehci
)
538 /* with integrated TT there is no companion! */
539 if (!ehci_is_TDI(ehci
))
540 i
= device_create_file(ehci_to_hcd(ehci
)->self
.controller
,
541 &dev_attr_companion
);
544 static inline void remove_companion_file(struct ehci_hcd
*ehci
)
546 /* with integrated TT there is no companion! */
547 if (!ehci_is_TDI(ehci
))
548 device_remove_file(ehci_to_hcd(ehci
)->self
.controller
,
549 &dev_attr_companion
);
553 /*-------------------------------------------------------------------------*/
555 static int check_reset_complete (
556 struct ehci_hcd
*ehci
,
558 u32 __iomem
*status_reg
,
561 if (!(port_status
& PORT_CONNECT
))
564 /* if reset finished and it's still not enabled -- handoff */
565 if (!(port_status
& PORT_PE
)) {
567 /* with integrated TT, there's nobody to hand it to! */
568 if (ehci_is_TDI(ehci
)) {
570 "Failed to enable port %d on root hub TT\n",
575 ehci_dbg (ehci
, "port %d full speed --> companion\n",
578 // what happens if HCS_N_CC(params) == 0 ?
579 port_status
|= PORT_OWNER
;
580 port_status
&= ~PORT_RWC_BITS
;
581 ehci_writel(ehci
, port_status
, status_reg
);
583 /* ensure 440EPX ohci controller state is operational */
584 if (ehci
->has_amcc_usb23
)
585 set_ohci_hcfs(ehci
, 1);
587 ehci_dbg (ehci
, "port %d high speed\n", index
+ 1);
588 /* ensure 440EPx ohci controller state is suspended */
589 if (ehci
->has_amcc_usb23
)
590 set_ohci_hcfs(ehci
, 0);
596 /*-------------------------------------------------------------------------*/
599 /* build "status change" packet (one or two bytes) from HC registers */
602 ehci_hub_status_data (struct usb_hcd
*hcd
, char *buf
)
604 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
605 u32 temp
, status
= 0;
607 int ports
, i
, retval
= 1;
611 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
612 if (!HC_IS_RUNNING(hcd
->state
))
615 /* init status to no-changes */
617 ports
= HCS_N_PORTS (ehci
->hcs_params
);
623 /* Some boards (mostly VIA?) report bogus overcurrent indications,
624 * causing massive log spam unless we completely ignore them. It
625 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
626 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
627 * PORT_POWER; that's surprising, but maybe within-spec.
630 mask
= PORT_CSC
| PORT_PEC
| PORT_OCC
;
632 mask
= PORT_CSC
| PORT_PEC
;
633 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
635 /* no hub change reports (bit 0) for now (power, ...) */
637 /* port N changes (bit N)? */
638 spin_lock_irqsave (&ehci
->lock
, flags
);
640 /* get per-port change detect bits */
642 ppcd
= ehci_readl(ehci
, &ehci
->regs
->status
) >> 16;
644 for (i
= 0; i
< ports
; i
++) {
645 /* leverage per-port change bits feature */
646 if (ehci
->has_ppcd
&& !(ppcd
& (1 << i
)))
648 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
651 * Return status information even for ports with OWNER set.
652 * Otherwise khubd wouldn't see the disconnect event when a
653 * high-speed device is switched over to the companion
654 * controller by the user.
657 if ((temp
& mask
) != 0 || test_bit(i
, &ehci
->port_c_suspend
)
658 || (ehci
->reset_done
[i
] && time_after_eq(
659 jiffies
, ehci
->reset_done
[i
]))) {
661 buf
[0] |= 1 << (i
+ 1);
663 buf
[1] |= 1 << (i
- 7);
667 /* FIXME autosuspend idle root hubs */
668 spin_unlock_irqrestore (&ehci
->lock
, flags
);
669 return status
? retval
: 0;
672 /*-------------------------------------------------------------------------*/
675 ehci_hub_descriptor (
676 struct ehci_hcd
*ehci
,
677 struct usb_hub_descriptor
*desc
679 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
682 desc
->bDescriptorType
= 0x29;
683 desc
->bPwrOn2PwrGood
= 10; /* ehci 1.0, 2.3.9 says 20ms max */
684 desc
->bHubContrCurrent
= 0;
686 desc
->bNbrPorts
= ports
;
687 temp
= 1 + (ports
/ 8);
688 desc
->bDescLength
= 7 + 2 * temp
;
690 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
691 memset (&desc
->bitmap
[0], 0, temp
);
692 memset (&desc
->bitmap
[temp
], 0xff, temp
);
694 temp
= 0x0008; /* per-port overcurrent reporting */
695 if (HCS_PPC (ehci
->hcs_params
))
696 temp
|= 0x0001; /* per-port power control */
698 temp
|= 0x0002; /* no power switching */
700 // re-enable when we support USB_PORT_FEAT_INDICATOR below.
701 if (HCS_INDICATOR (ehci
->hcs_params
))
702 temp
|= 0x0080; /* per-port indicators (LEDs) */
704 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
707 /*-------------------------------------------------------------------------*/
709 static int ehci_hub_control (
717 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
718 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
719 u32 __iomem
*status_reg
= &ehci
->regs
->port_status
[
720 (wIndex
& 0xff) - 1];
721 u32 __iomem
*hostpc_reg
= NULL
;
722 u32 temp
, temp1
, status
;
728 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
729 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
730 * (track current state ourselves) ... blink for diagnostics,
731 * power, "this is the one", etc. EHCI spec supports this.
734 if (ehci
->has_hostpc
)
735 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
736 + HOSTPC0
+ 4 * ((wIndex
& 0xff) - 1));
737 spin_lock_irqsave (&ehci
->lock
, flags
);
739 case ClearHubFeature
:
741 case C_HUB_LOCAL_POWER
:
742 case C_HUB_OVER_CURRENT
:
743 /* no hub-wide feature/status flags */
749 case ClearPortFeature
:
750 if (!wIndex
|| wIndex
> ports
)
753 temp
= ehci_readl(ehci
, status_reg
);
756 * Even if OWNER is set, so the port is owned by the
757 * companion controller, khubd needs to be able to clear
758 * the port-change status bits (especially
759 * USB_PORT_STAT_C_CONNECTION).
763 case USB_PORT_FEAT_ENABLE
:
764 ehci_writel(ehci
, temp
& ~PORT_PE
, status_reg
);
766 case USB_PORT_FEAT_C_ENABLE
:
767 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_PEC
,
770 case USB_PORT_FEAT_SUSPEND
:
771 if (temp
& PORT_RESET
)
773 if (ehci
->no_selective_suspend
)
775 if (!(temp
& PORT_SUSPEND
))
777 if ((temp
& PORT_PE
) == 0)
780 /* clear phy low-power mode before resume */
782 temp1
= ehci_readl(ehci
, hostpc_reg
);
783 ehci_writel(ehci
, temp1
& ~HOSTPC_PHCD
,
785 spin_unlock_irqrestore(&ehci
->lock
, flags
);
786 msleep(5);/* wait to leave low-power mode */
787 spin_lock_irqsave(&ehci
->lock
, flags
);
789 /* resume signaling for 20 msec */
790 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
791 ehci_writel(ehci
, temp
| PORT_RESUME
, status_reg
);
792 ehci
->reset_done
[wIndex
] = jiffies
793 + msecs_to_jiffies(20);
795 case USB_PORT_FEAT_C_SUSPEND
:
796 clear_bit(wIndex
, &ehci
->port_c_suspend
);
798 case USB_PORT_FEAT_POWER
:
799 if (HCS_PPC (ehci
->hcs_params
))
801 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
804 case USB_PORT_FEAT_C_CONNECTION
:
806 /* clear PORTSC bits on disconnect */
808 temp
&= ~PORT_DEV_ADDR
;
810 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_CSC
,
813 case USB_PORT_FEAT_C_OVER_CURRENT
:
814 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_OCC
,
817 case USB_PORT_FEAT_C_RESET
:
818 /* GetPortStatus clears reset */
823 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted write */
825 case GetHubDescriptor
:
826 ehci_hub_descriptor (ehci
, (struct usb_hub_descriptor
*)
830 /* no hub-wide feature/status flags */
832 //cpu_to_le32s ((u32 *) buf);
835 if (!wIndex
|| wIndex
> ports
)
839 temp
= ehci_readl(ehci
, status_reg
);
843 status
|= USB_PORT_STAT_C_CONNECTION
<< 16;
845 status
|= USB_PORT_STAT_C_ENABLE
<< 16;
847 if ((temp
& PORT_OCC
) && !ignore_oc
){
848 status
|= USB_PORT_STAT_C_OVERCURRENT
<< 16;
851 * Hubs should disable port power on over-current.
852 * However, not all EHCI implementations do this
853 * automatically, even if they _do_ support per-port
854 * power switching; they're allowed to just limit the
855 * current. khubd will turn the power back on.
857 if (HCS_PPC (ehci
->hcs_params
)){
859 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
864 /* whoever resumes must GetPortStatus to complete it!! */
865 if (temp
& PORT_RESUME
) {
867 /* Remote Wakeup received? */
868 if (!ehci
->reset_done
[wIndex
]) {
869 /* resume signaling for 20 msec */
870 ehci
->reset_done
[wIndex
] = jiffies
871 + msecs_to_jiffies(20);
872 /* check the port again */
873 mod_timer(&ehci_to_hcd(ehci
)->rh_timer
,
874 ehci
->reset_done
[wIndex
]);
877 /* resume completed? */
878 else if (time_after_eq(jiffies
,
879 ehci
->reset_done
[wIndex
])) {
880 clear_bit(wIndex
, &ehci
->suspended_ports
);
881 set_bit(wIndex
, &ehci
->port_c_suspend
);
882 ehci
->reset_done
[wIndex
] = 0;
884 /* stop resume signaling */
885 temp
= ehci_readl(ehci
, status_reg
);
887 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
),
889 retval
= handshake(ehci
, status_reg
,
890 PORT_RESUME
, 0, 2000 /* 2msec */);
893 "port %d resume error %d\n",
897 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
901 /* whoever resets must GetPortStatus to complete it!! */
902 if ((temp
& PORT_RESET
)
903 && time_after_eq(jiffies
,
904 ehci
->reset_done
[wIndex
])) {
905 status
|= USB_PORT_STAT_C_RESET
<< 16;
906 ehci
->reset_done
[wIndex
] = 0;
908 /* force reset to complete */
909 ehci_writel(ehci
, temp
& ~(PORT_RWC_BITS
| PORT_RESET
),
911 /* REVISIT: some hardware needs 550+ usec to clear
912 * this bit; seems too long to spin routinely...
914 retval
= handshake(ehci
, status_reg
,
915 PORT_RESET
, 0, 1000);
917 ehci_err (ehci
, "port %d reset error %d\n",
922 /* see what we found out */
923 temp
= check_reset_complete (ehci
, wIndex
, status_reg
,
924 ehci_readl(ehci
, status_reg
));
927 if (!(temp
& (PORT_RESUME
|PORT_RESET
)))
928 ehci
->reset_done
[wIndex
] = 0;
930 /* transfer dedicated ports to the companion hc */
931 if ((temp
& PORT_CONNECT
) &&
932 test_bit(wIndex
, &ehci
->companion_ports
)) {
933 temp
&= ~PORT_RWC_BITS
;
935 ehci_writel(ehci
, temp
, status_reg
);
936 ehci_dbg(ehci
, "port %d --> companion\n", wIndex
+ 1);
937 temp
= ehci_readl(ehci
, status_reg
);
941 * Even if OWNER is set, there's no harm letting khubd
942 * see the wPortStatus values (they should all be 0 except
943 * for PORT_POWER anyway).
946 if (temp
& PORT_CONNECT
) {
947 status
|= USB_PORT_STAT_CONNECTION
;
948 // status may be from integrated TT
949 if (ehci
->has_hostpc
) {
950 temp1
= ehci_readl(ehci
, hostpc_reg
);
951 status
|= ehci_port_speed(ehci
, temp1
);
953 status
|= ehci_port_speed(ehci
, temp
);
956 status
|= USB_PORT_STAT_ENABLE
;
958 /* maybe the port was unsuspended without our knowledge */
959 if (temp
& (PORT_SUSPEND
|PORT_RESUME
)) {
960 status
|= USB_PORT_STAT_SUSPEND
;
961 } else if (test_bit(wIndex
, &ehci
->suspended_ports
)) {
962 clear_bit(wIndex
, &ehci
->suspended_ports
);
963 ehci
->reset_done
[wIndex
] = 0;
965 set_bit(wIndex
, &ehci
->port_c_suspend
);
969 status
|= USB_PORT_STAT_OVERCURRENT
;
970 if (temp
& PORT_RESET
)
971 status
|= USB_PORT_STAT_RESET
;
972 if (temp
& PORT_POWER
)
973 status
|= USB_PORT_STAT_POWER
;
974 if (test_bit(wIndex
, &ehci
->port_c_suspend
))
975 status
|= USB_PORT_STAT_C_SUSPEND
<< 16;
977 #ifndef VERBOSE_DEBUG
978 if (status
& ~0xffff) /* only if wPortChange is interesting */
980 dbg_port (ehci
, "GetStatus", wIndex
+ 1, temp
);
981 put_unaligned_le32(status
, buf
);
985 case C_HUB_LOCAL_POWER
:
986 case C_HUB_OVER_CURRENT
:
987 /* no hub-wide feature/status flags */
994 selector
= wIndex
>> 8;
996 if (unlikely(ehci
->debug
)) {
997 /* If the debug port is active any port
998 * feature requests should get denied */
999 if (wIndex
== HCS_DEBUG_PORT(ehci
->hcs_params
) &&
1000 (readl(&ehci
->debug
->control
) & DBGP_ENABLED
)) {
1005 if (!wIndex
|| wIndex
> ports
)
1008 temp
= ehci_readl(ehci
, status_reg
);
1009 if (temp
& PORT_OWNER
)
1012 temp
&= ~PORT_RWC_BITS
;
1014 case USB_PORT_FEAT_SUSPEND
:
1015 if (ehci
->no_selective_suspend
)
1017 if ((temp
& PORT_PE
) == 0
1018 || (temp
& PORT_RESET
) != 0)
1021 /* After above check the port must be connected.
1022 * Set appropriate bit thus could put phy into low power
1023 * mode if we have hostpc feature
1025 temp
&= ~PORT_WKCONN_E
;
1026 temp
|= PORT_WKDISC_E
| PORT_WKOC_E
;
1027 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
1029 spin_unlock_irqrestore(&ehci
->lock
, flags
);
1030 msleep(5);/* 5ms for HCD enter low pwr mode */
1031 spin_lock_irqsave(&ehci
->lock
, flags
);
1032 temp1
= ehci_readl(ehci
, hostpc_reg
);
1033 ehci_writel(ehci
, temp1
| HOSTPC_PHCD
,
1035 temp1
= ehci_readl(ehci
, hostpc_reg
);
1036 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
1037 wIndex
, (temp1
& HOSTPC_PHCD
) ?
1038 "succeeded" : "failed");
1040 set_bit(wIndex
, &ehci
->suspended_ports
);
1042 case USB_PORT_FEAT_POWER
:
1043 if (HCS_PPC (ehci
->hcs_params
))
1044 ehci_writel(ehci
, temp
| PORT_POWER
,
1047 case USB_PORT_FEAT_RESET
:
1048 if (temp
& PORT_RESUME
)
1050 /* line status bits may report this as low speed,
1051 * which can be fine if this root hub has a
1052 * transaction translator built in.
1054 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
1055 && !ehci_is_TDI(ehci
)
1056 && PORT_USB11 (temp
)) {
1058 "port %d low speed --> companion\n",
1062 ehci_vdbg (ehci
, "port %d reset\n", wIndex
+ 1);
1067 * caller must wait, then call GetPortStatus
1068 * usb 2.0 spec says 50 ms resets on root
1070 ehci
->reset_done
[wIndex
] = jiffies
1071 + msecs_to_jiffies (50);
1073 ehci_writel(ehci
, temp
, status_reg
);
1076 /* For downstream facing ports (these): one hub port is put
1077 * into test mode according to USB2 11.24.2.13, then the hub
1078 * must be reset (which for root hub now means rmmod+modprobe,
1079 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
1080 * about the EHCI-specific stuff.
1082 case USB_PORT_FEAT_TEST
:
1083 if (!selector
|| selector
> 5)
1087 temp
|= selector
<< 16;
1088 ehci_writel(ehci
, temp
, status_reg
);
1094 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted writes */
1099 /* "stall" on error */
1103 spin_unlock_irqrestore (&ehci
->lock
, flags
);
1107 static void ehci_relinquish_port(struct usb_hcd
*hcd
, int portnum
)
1109 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1111 if (ehci_is_TDI(ehci
))
1113 set_owner(ehci
, --portnum
, PORT_OWNER
);
1116 static int ehci_port_handed_over(struct usb_hcd
*hcd
, int portnum
)
1118 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
1121 if (ehci_is_TDI(ehci
))
1123 reg
= &ehci
->regs
->port_status
[portnum
- 1];
1124 return ehci_readl(ehci
, reg
) & PORT_OWNER
;