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 port
= HCS_N_PORTS (ehci
->hcs_params
);
124 spin_lock_irq (&ehci
->lock
);
126 /* stop schedules, clean any completed work */
127 if (HC_IS_RUNNING(hcd
->state
)) {
129 hcd
->state
= HC_STATE_QUIESCING
;
131 ehci
->command
= ehci_readl(ehci
, &ehci
->regs
->command
);
134 /* Unlike other USB host controller types, EHCI doesn't have
135 * any notion of "global" or bus-wide suspend. The driver has
136 * to manually suspend all the active unsuspended ports, and
137 * then manually resume them in the bus_resume() routine.
139 ehci
->bus_suspended
= 0;
140 ehci
->owned_ports
= 0;
142 u32 __iomem
*reg
= &ehci
->regs
->port_status
[port
];
143 u32 t1
= ehci_readl(ehci
, reg
) & ~PORT_RWC_BITS
;
146 if (ehci
->has_hostpc
)
147 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
148 + HOSTPC0
+ 4 * (port
& 0xff));
149 /* keep track of which ports we suspend */
151 set_bit(port
, &ehci
->owned_ports
);
152 else if ((t1
& PORT_PE
) && !(t1
& PORT_SUSPEND
)) {
154 set_bit(port
, &ehci
->bus_suspended
);
157 /* enable remote wakeup on all ports */
158 if (hcd
->self
.root_hub
->do_remote_wakeup
) {
159 /* only enable appropriate wake bits, otherwise the
160 * hardware can not go phy low power mode. If a race
161 * condition happens here(connection change during bits
162 * set), the port change detection will finally fix it.
164 if (t1
& PORT_CONNECT
) {
165 t2
|= PORT_WKOC_E
| PORT_WKDISC_E
;
166 t2
&= ~PORT_WKCONN_E
;
168 t2
|= PORT_WKOC_E
| PORT_WKCONN_E
;
169 t2
&= ~PORT_WKDISC_E
;
172 t2
&= ~PORT_WAKE_BITS
;
175 ehci_vdbg (ehci
, "port %d, %08x -> %08x\n",
177 ehci_writel(ehci
, t2
, reg
);
181 msleep(5);/* 5ms for HCD enter low pwr mode */
182 t3
= ehci_readl(ehci
, hostpc_reg
);
183 ehci_writel(ehci
, t3
| HOSTPC_PHCD
, hostpc_reg
);
184 t3
= ehci_readl(ehci
, hostpc_reg
);
185 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
186 port
, (t3
& HOSTPC_PHCD
) ?
187 "succeeded" : "failed");
192 /* Apparently some devices need a >= 1-uframe delay here */
193 if (ehci
->bus_suspended
)
196 /* turn off now-idle HC */
198 hcd
->state
= HC_STATE_SUSPENDED
;
201 end_unlink_async(ehci
);
203 /* allow remote wakeup */
205 if (!hcd
->self
.root_hub
->do_remote_wakeup
)
207 ehci_writel(ehci
, mask
, &ehci
->regs
->intr_enable
);
208 ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
210 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(10);
211 spin_unlock_irq (&ehci
->lock
);
213 /* ehci_work() may have re-enabled the watchdog timer, which we do not
214 * want, and so we must delete any pending watchdog timer events.
216 del_timer_sync(&ehci
->watchdog
);
221 /* caller has locked the root hub, and should reset/reinit on error */
222 static int ehci_bus_resume (struct usb_hcd
*hcd
)
224 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
228 u8 resume_needed
= 0;
230 if (time_before (jiffies
, ehci
->next_statechange
))
232 spin_lock_irq (&ehci
->lock
);
233 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
234 spin_unlock_irq(&ehci
->lock
);
238 if (unlikely(ehci
->debug
)) {
239 if (ehci
->debug
&& !dbgp_reset_prep())
242 dbgp_external_startup();
245 /* Ideally and we've got a real resume here, and no port's power
246 * was lost. (For PCI, that means Vaux was maintained.) But we
247 * could instead be restoring a swsusp snapshot -- so that BIOS was
248 * the last user of the controller, not reset/pm hardware keeping
249 * state we gave to it.
251 power_okay
= ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
252 ehci_dbg(ehci
, "resume root hub%s\n",
253 power_okay
? "" : " after power loss");
255 /* at least some APM implementations will try to deliver
256 * IRQs right away, so delay them until we're ready.
258 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
260 /* re-init operational registers */
261 ehci_writel(ehci
, 0, &ehci
->regs
->segment
);
262 ehci_writel(ehci
, ehci
->periodic_dma
, &ehci
->regs
->frame_list
);
263 ehci_writel(ehci
, (u32
) ehci
->async
->qh_dma
, &ehci
->regs
->async_next
);
265 /* restore CMD_RUN, framelist size, and irq threshold */
266 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
268 /* Some controller/firmware combinations need a delay during which
269 * they set up the port statuses. See Bugzilla #8190. */
270 spin_unlock_irq(&ehci
->lock
);
272 spin_lock_irq(&ehci
->lock
);
274 /* manually resume the ports we suspended during bus_suspend() */
275 i
= HCS_N_PORTS (ehci
->hcs_params
);
277 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
278 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
279 if (test_bit(i
, &ehci
->bus_suspended
) &&
280 (temp
& PORT_SUSPEND
)) {
284 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
287 /* msleep for 20ms only if code is trying to resume port */
289 spin_unlock_irq(&ehci
->lock
);
291 spin_lock_irq(&ehci
->lock
);
294 i
= HCS_N_PORTS (ehci
->hcs_params
);
296 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
297 if (test_bit(i
, &ehci
->bus_suspended
) &&
298 (temp
& PORT_SUSPEND
)) {
299 temp
&= ~(PORT_RWC_BITS
| PORT_RESUME
);
300 ehci_writel(ehci
, temp
, &ehci
->regs
->port_status
[i
]);
301 ehci_vdbg (ehci
, "resumed port %d\n", i
+ 1);
304 (void) ehci_readl(ehci
, &ehci
->regs
->command
);
306 /* maybe re-activate the schedule(s) */
308 if (ehci
->async
->qh_next
.qh
)
310 if (ehci
->periodic_sched
)
313 ehci
->command
|= temp
;
314 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
317 ehci
->next_statechange
= jiffies
+ msecs_to_jiffies(5);
318 hcd
->state
= HC_STATE_RUNNING
;
320 /* Now we can safely re-enable irqs */
321 ehci_writel(ehci
, INTR_MASK
, &ehci
->regs
->intr_enable
);
323 spin_unlock_irq (&ehci
->lock
);
324 ehci_handover_companion_ports(ehci
);
330 #define ehci_bus_suspend NULL
331 #define ehci_bus_resume NULL
333 #endif /* CONFIG_PM */
335 /*-------------------------------------------------------------------------*/
337 /* Display the ports dedicated to the companion controller */
338 static ssize_t
show_companion(struct device
*dev
,
339 struct device_attribute
*attr
,
342 struct ehci_hcd
*ehci
;
343 int nports
, index
, n
;
344 int count
= PAGE_SIZE
;
347 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
348 nports
= HCS_N_PORTS(ehci
->hcs_params
);
350 for (index
= 0; index
< nports
; ++index
) {
351 if (test_bit(index
, &ehci
->companion_ports
)) {
352 n
= scnprintf(ptr
, count
, "%d\n", index
+ 1);
361 * Sets the owner of a port
363 static void set_owner(struct ehci_hcd
*ehci
, int portnum
, int new_owner
)
365 u32 __iomem
*status_reg
;
369 status_reg
= &ehci
->regs
->port_status
[portnum
];
372 * The controller won't set the OWNER bit if the port is
373 * enabled, so this loop will sometimes require at least two
374 * iterations: one to disable the port and one to set OWNER.
376 for (try = 4; try > 0; --try) {
377 spin_lock_irq(&ehci
->lock
);
378 port_status
= ehci_readl(ehci
, status_reg
);
379 if ((port_status
& PORT_OWNER
) == new_owner
380 || (port_status
& (PORT_OWNER
| PORT_CONNECT
))
384 port_status
^= PORT_OWNER
;
385 port_status
&= ~(PORT_PE
| PORT_RWC_BITS
);
386 ehci_writel(ehci
, port_status
, status_reg
);
388 spin_unlock_irq(&ehci
->lock
);
395 * Dedicate or undedicate a port to the companion controller.
396 * Syntax is "[-]portnum", where a leading '-' sign means
397 * return control of the port to the EHCI controller.
399 static ssize_t
store_companion(struct device
*dev
,
400 struct device_attribute
*attr
,
401 const char *buf
, size_t count
)
403 struct ehci_hcd
*ehci
;
404 int portnum
, new_owner
;
406 ehci
= hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev
)));
407 new_owner
= PORT_OWNER
; /* Owned by companion */
408 if (sscanf(buf
, "%d", &portnum
) != 1)
412 new_owner
= 0; /* Owned by EHCI */
414 if (portnum
<= 0 || portnum
> HCS_N_PORTS(ehci
->hcs_params
))
418 set_bit(portnum
, &ehci
->companion_ports
);
420 clear_bit(portnum
, &ehci
->companion_ports
);
421 set_owner(ehci
, portnum
, new_owner
);
424 static DEVICE_ATTR(companion
, 0644, show_companion
, store_companion
);
426 static inline void create_companion_file(struct ehci_hcd
*ehci
)
430 /* with integrated TT there is no companion! */
431 if (!ehci_is_TDI(ehci
))
432 i
= device_create_file(ehci_to_hcd(ehci
)->self
.controller
,
433 &dev_attr_companion
);
436 static inline void remove_companion_file(struct ehci_hcd
*ehci
)
438 /* with integrated TT there is no companion! */
439 if (!ehci_is_TDI(ehci
))
440 device_remove_file(ehci_to_hcd(ehci
)->self
.controller
,
441 &dev_attr_companion
);
445 /*-------------------------------------------------------------------------*/
447 static int check_reset_complete (
448 struct ehci_hcd
*ehci
,
450 u32 __iomem
*status_reg
,
453 if (!(port_status
& PORT_CONNECT
))
456 /* if reset finished and it's still not enabled -- handoff */
457 if (!(port_status
& PORT_PE
)) {
459 /* with integrated TT, there's nobody to hand it to! */
460 if (ehci_is_TDI(ehci
)) {
462 "Failed to enable port %d on root hub TT\n",
467 ehci_dbg (ehci
, "port %d full speed --> companion\n",
470 // what happens if HCS_N_CC(params) == 0 ?
471 #if !defined(CONFIG_MACH_OMAP3EVM) && !defined(CONFIG_MACH_OMAP3517EVM)
472 port_status
|= PORT_OWNER
;
474 port_status
&= ~PORT_RWC_BITS
;
475 ehci_writel(ehci
, port_status
, status_reg
);
477 /* ensure 440EPX ohci controller state is operational */
478 if (ehci
->has_amcc_usb23
)
479 set_ohci_hcfs(ehci
, 1);
481 ehci_dbg (ehci
, "port %d high speed\n", index
+ 1);
482 /* ensure 440EPx ohci controller state is suspended */
483 if (ehci
->has_amcc_usb23
)
484 set_ohci_hcfs(ehci
, 0);
490 /*-------------------------------------------------------------------------*/
493 /* build "status change" packet (one or two bytes) from HC registers */
496 ehci_hub_status_data (struct usb_hcd
*hcd
, char *buf
)
498 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
499 u32 temp
, status
= 0;
501 int ports
, i
, retval
= 1;
504 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
505 if (!HC_IS_RUNNING(hcd
->state
))
508 /* init status to no-changes */
510 ports
= HCS_N_PORTS (ehci
->hcs_params
);
516 /* Some boards (mostly VIA?) report bogus overcurrent indications,
517 * causing massive log spam unless we completely ignore them. It
518 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
519 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
520 * PORT_POWER; that's surprising, but maybe within-spec.
523 mask
= PORT_CSC
| PORT_PEC
| PORT_OCC
;
525 mask
= PORT_CSC
| PORT_PEC
;
526 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
528 /* no hub change reports (bit 0) for now (power, ...) */
530 /* port N changes (bit N)? */
531 spin_lock_irqsave (&ehci
->lock
, flags
);
532 for (i
= 0; i
< ports
; i
++) {
533 temp
= ehci_readl(ehci
, &ehci
->regs
->port_status
[i
]);
536 * Return status information even for ports with OWNER set.
537 * Otherwise khubd wouldn't see the disconnect event when a
538 * high-speed device is switched over to the companion
539 * controller by the user.
542 if ((temp
& mask
) != 0 || test_bit(i
, &ehci
->port_c_suspend
)
543 || (ehci
->reset_done
[i
] && time_after_eq(
544 jiffies
, ehci
->reset_done
[i
]))) {
546 buf
[0] |= 1 << (i
+ 1);
548 buf
[1] |= 1 << (i
- 7);
552 /* FIXME autosuspend idle root hubs */
553 spin_unlock_irqrestore (&ehci
->lock
, flags
);
554 return status
? retval
: 0;
557 /*-------------------------------------------------------------------------*/
560 ehci_hub_descriptor (
561 struct ehci_hcd
*ehci
,
562 struct usb_hub_descriptor
*desc
564 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
567 desc
->bDescriptorType
= 0x29;
568 desc
->bPwrOn2PwrGood
= 10; /* ehci 1.0, 2.3.9 says 20ms max */
569 desc
->bHubContrCurrent
= 0;
571 desc
->bNbrPorts
= ports
;
572 temp
= 1 + (ports
/ 8);
573 desc
->bDescLength
= 7 + 2 * temp
;
575 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
576 memset (&desc
->bitmap
[0], 0, temp
);
577 memset (&desc
->bitmap
[temp
], 0xff, temp
);
579 temp
= 0x0008; /* per-port overcurrent reporting */
580 if (HCS_PPC (ehci
->hcs_params
))
581 temp
|= 0x0001; /* per-port power control */
583 temp
|= 0x0002; /* no power switching */
585 // re-enable when we support USB_PORT_FEAT_INDICATOR below.
586 if (HCS_INDICATOR (ehci
->hcs_params
))
587 temp
|= 0x0080; /* per-port indicators (LEDs) */
589 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
592 /*-------------------------------------------------------------------------*/
594 static int ehci_hub_control (
602 struct ehci_hcd
*ehci
= hcd_to_ehci (hcd
);
603 int ports
= HCS_N_PORTS (ehci
->hcs_params
);
604 u32 __iomem
*status_reg
= &ehci
->regs
->port_status
[
605 (wIndex
& 0xff) - 1];
606 u32 __iomem
*hostpc_reg
= NULL
;
607 u32 temp
, temp1
, status
;
613 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
614 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
615 * (track current state ourselves) ... blink for diagnostics,
616 * power, "this is the one", etc. EHCI spec supports this.
619 if (ehci
->has_hostpc
)
620 hostpc_reg
= (u32 __iomem
*)((u8
*)ehci
->regs
621 + HOSTPC0
+ 4 * ((wIndex
& 0xff) - 1));
622 spin_lock_irqsave (&ehci
->lock
, flags
);
624 case ClearHubFeature
:
626 case C_HUB_LOCAL_POWER
:
627 case C_HUB_OVER_CURRENT
:
628 /* no hub-wide feature/status flags */
634 case ClearPortFeature
:
635 if (!wIndex
|| wIndex
> ports
)
638 temp
= ehci_readl(ehci
, status_reg
);
641 * Even if OWNER is set, so the port is owned by the
642 * companion controller, khubd needs to be able to clear
643 * the port-change status bits (especially
644 * USB_PORT_FEAT_C_CONNECTION).
648 case USB_PORT_FEAT_ENABLE
:
649 ehci_writel(ehci
, temp
& ~PORT_PE
, status_reg
);
651 case USB_PORT_FEAT_C_ENABLE
:
652 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_PEC
,
655 case USB_PORT_FEAT_SUSPEND
:
656 if (temp
& PORT_RESET
)
658 if (ehci
->no_selective_suspend
)
660 if (temp
& PORT_SUSPEND
) {
661 if ((temp
& PORT_PE
) == 0)
663 /* resume signaling for 20 msec */
664 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
665 ehci_writel(ehci
, temp
| PORT_RESUME
,
667 ehci
->reset_done
[wIndex
] = jiffies
668 + msecs_to_jiffies (20);
671 case USB_PORT_FEAT_C_SUSPEND
:
672 clear_bit(wIndex
, &ehci
->port_c_suspend
);
674 case USB_PORT_FEAT_POWER
:
675 if (HCS_PPC (ehci
->hcs_params
))
677 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
680 case USB_PORT_FEAT_C_CONNECTION
:
681 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_CSC
,
684 case USB_PORT_FEAT_C_OVER_CURRENT
:
685 ehci_writel(ehci
, (temp
& ~PORT_RWC_BITS
) | PORT_OCC
,
688 case USB_PORT_FEAT_C_RESET
:
689 /* GetPortStatus clears reset */
694 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted write */
696 case GetHubDescriptor
:
697 ehci_hub_descriptor (ehci
, (struct usb_hub_descriptor
*)
701 /* no hub-wide feature/status flags */
703 //cpu_to_le32s ((u32 *) buf);
706 if (!wIndex
|| wIndex
> ports
)
710 temp
= ehci_readl(ehci
, status_reg
);
714 status
|= 1 << USB_PORT_FEAT_C_CONNECTION
;
716 status
|= 1 << USB_PORT_FEAT_C_ENABLE
;
718 if ((temp
& PORT_OCC
) && !ignore_oc
){
719 status
|= 1 << USB_PORT_FEAT_C_OVER_CURRENT
;
722 * Hubs should disable port power on over-current.
723 * However, not all EHCI implementations do this
724 * automatically, even if they _do_ support per-port
725 * power switching; they're allowed to just limit the
726 * current. khubd will turn the power back on.
728 if (HCS_PPC (ehci
->hcs_params
)){
730 temp
& ~(PORT_RWC_BITS
| PORT_POWER
),
735 /* whoever resumes must GetPortStatus to complete it!! */
736 if (temp
& PORT_RESUME
) {
738 /* Remote Wakeup received? */
739 if (!ehci
->reset_done
[wIndex
]) {
740 /* resume signaling for 20 msec */
741 ehci
->reset_done
[wIndex
] = jiffies
742 + msecs_to_jiffies(20);
743 /* check the port again */
744 mod_timer(&ehci_to_hcd(ehci
)->rh_timer
,
745 ehci
->reset_done
[wIndex
]);
748 /* resume completed? */
749 else if (time_after_eq(jiffies
,
750 ehci
->reset_done
[wIndex
])) {
751 clear_bit(wIndex
, &ehci
->suspended_ports
);
752 set_bit(wIndex
, &ehci
->port_c_suspend
);
753 ehci
->reset_done
[wIndex
] = 0;
755 /* stop resume signaling */
756 temp
= ehci_readl(ehci
, status_reg
);
758 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
),
760 retval
= handshake(ehci
, status_reg
,
761 PORT_RESUME
, 0, 2000 /* 2msec */);
764 "port %d resume error %d\n",
768 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
772 /* whoever resets must GetPortStatus to complete it!! */
773 if ((temp
& PORT_RESET
)
774 && time_after_eq(jiffies
,
775 ehci
->reset_done
[wIndex
])) {
776 status
|= 1 << USB_PORT_FEAT_C_RESET
;
777 ehci
->reset_done
[wIndex
] = 0;
779 /* force reset to complete */
780 ehci_writel(ehci
, temp
& ~(PORT_RWC_BITS
| PORT_RESET
),
782 /* REVISIT: some hardware needs 550+ usec to clear
783 * this bit; seems too long to spin routinely...
785 retval
= handshake(ehci
, status_reg
,
788 ehci_err (ehci
, "port %d reset error %d\n",
793 /* see what we found out */
794 temp
= check_reset_complete (ehci
, wIndex
, status_reg
,
795 ehci_readl(ehci
, status_reg
));
798 if (!(temp
& (PORT_RESUME
|PORT_RESET
)))
799 ehci
->reset_done
[wIndex
] = 0;
801 /* transfer dedicated ports to the companion hc */
802 if ((temp
& PORT_CONNECT
) &&
803 test_bit(wIndex
, &ehci
->companion_ports
)) {
804 temp
&= ~PORT_RWC_BITS
;
806 ehci_writel(ehci
, temp
, status_reg
);
807 ehci_dbg(ehci
, "port %d --> companion\n", wIndex
+ 1);
808 temp
= ehci_readl(ehci
, status_reg
);
812 * Even if OWNER is set, there's no harm letting khubd
813 * see the wPortStatus values (they should all be 0 except
814 * for PORT_POWER anyway).
817 if (temp
& PORT_CONNECT
) {
818 status
|= 1 << USB_PORT_FEAT_CONNECTION
;
819 // status may be from integrated TT
820 if (ehci
->has_hostpc
) {
821 temp1
= ehci_readl(ehci
, hostpc_reg
);
822 status
|= ehci_port_speed(ehci
, temp1
);
824 status
|= ehci_port_speed(ehci
, temp
);
827 status
|= 1 << USB_PORT_FEAT_ENABLE
;
829 /* maybe the port was unsuspended without our knowledge */
830 if (temp
& (PORT_SUSPEND
|PORT_RESUME
)) {
831 status
|= 1 << USB_PORT_FEAT_SUSPEND
;
832 } else if (test_bit(wIndex
, &ehci
->suspended_ports
)) {
833 clear_bit(wIndex
, &ehci
->suspended_ports
);
834 ehci
->reset_done
[wIndex
] = 0;
836 set_bit(wIndex
, &ehci
->port_c_suspend
);
840 status
|= 1 << USB_PORT_FEAT_OVER_CURRENT
;
841 if (temp
& PORT_RESET
)
842 status
|= 1 << USB_PORT_FEAT_RESET
;
843 if (temp
& PORT_POWER
)
844 status
|= 1 << USB_PORT_FEAT_POWER
;
845 if (test_bit(wIndex
, &ehci
->port_c_suspend
))
846 status
|= 1 << USB_PORT_FEAT_C_SUSPEND
;
848 #ifndef VERBOSE_DEBUG
849 if (status
& ~0xffff) /* only if wPortChange is interesting */
851 dbg_port (ehci
, "GetStatus", wIndex
+ 1, temp
);
852 put_unaligned_le32(status
, buf
);
856 case C_HUB_LOCAL_POWER
:
857 case C_HUB_OVER_CURRENT
:
858 /* no hub-wide feature/status flags */
865 selector
= wIndex
>> 8;
867 if (unlikely(ehci
->debug
)) {
868 /* If the debug port is active any port
869 * feature requests should get denied */
870 if (wIndex
== HCS_DEBUG_PORT(ehci
->hcs_params
) &&
871 (readl(&ehci
->debug
->control
) & DBGP_ENABLED
)) {
876 if (!wIndex
|| wIndex
> ports
)
879 temp
= ehci_readl(ehci
, status_reg
);
880 if (temp
& PORT_OWNER
)
883 temp
&= ~PORT_RWC_BITS
;
885 case USB_PORT_FEAT_SUSPEND
:
886 if (ehci
->no_selective_suspend
)
888 if ((temp
& PORT_PE
) == 0
889 || (temp
& PORT_RESET
) != 0)
891 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
892 /* After above check the port must be connected.
893 * Set appropriate bit thus could put phy into low power
894 * mode if we have hostpc feature
897 temp
&= ~PORT_WKCONN_E
;
898 temp
|= (PORT_WKDISC_E
| PORT_WKOC_E
);
899 ehci_writel(ehci
, temp
| PORT_SUSPEND
,
901 msleep(5);/* 5ms for HCD enter low pwr mode */
902 temp1
= ehci_readl(ehci
, hostpc_reg
);
903 ehci_writel(ehci
, temp1
| HOSTPC_PHCD
,
905 temp1
= ehci_readl(ehci
, hostpc_reg
);
906 ehci_dbg(ehci
, "Port%d phy low pwr mode %s\n",
907 wIndex
, (temp1
& HOSTPC_PHCD
) ?
908 "succeeded" : "failed");
910 set_bit(wIndex
, &ehci
->suspended_ports
);
912 case USB_PORT_FEAT_POWER
:
913 if (HCS_PPC (ehci
->hcs_params
))
914 ehci_writel(ehci
, temp
| PORT_POWER
,
917 case USB_PORT_FEAT_RESET
:
918 if (temp
& PORT_RESUME
)
920 /* line status bits may report this as low speed,
921 * which can be fine if this root hub has a
922 * transaction translator built in.
924 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
925 && !ehci_is_TDI(ehci
)
926 && PORT_USB11 (temp
)) {
928 "port %d low speed --> companion\n",
930 #if !defined(CONFIG_MACH_OMAP3EVM) && !defined(CONFIG_MACH_OMAP3517EVM)
934 ehci_vdbg (ehci
, "port %d reset\n", wIndex
+ 1);
939 * caller must wait, then call GetPortStatus
940 * usb 2.0 spec says 50 ms resets on root
942 ehci
->reset_done
[wIndex
] = jiffies
943 + msecs_to_jiffies (50);
945 ehci_writel(ehci
, temp
, status_reg
);
948 /* For downstream facing ports (these): one hub port is put
949 * into test mode according to USB2 11.24.2.13, then the hub
950 * must be reset (which for root hub now means rmmod+modprobe,
951 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
952 * about the EHCI-specific stuff.
954 case USB_PORT_FEAT_TEST
:
955 if (!selector
|| selector
> 5)
959 temp
|= selector
<< 16;
960 ehci_writel(ehci
, temp
, status_reg
);
966 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted writes */
971 /* "stall" on error */
975 spin_unlock_irqrestore (&ehci
->lock
, flags
);
979 static void ehci_relinquish_port(struct usb_hcd
*hcd
, int portnum
)
981 #if !defined(CONFIG_MACH_OMAP3EVM) && !defined(CONFIG_MACH_OMAP3517EVM)
982 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
984 if (ehci_is_TDI(ehci
))
986 set_owner(ehci
, --portnum
, PORT_OWNER
);
990 static int ehci_port_handed_over(struct usb_hcd
*hcd
, int portnum
)
992 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
995 if (ehci_is_TDI(ehci
))
997 reg
= &ehci
->regs
->port_status
[portnum
- 1];
998 return ehci_readl(ehci
, reg
) & PORT_OWNER
;