blob: 5aa6c4947325b6cb485127e967866cc1e4d49e84 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Brownelld49d4312005-05-07 13:21:50 -07002 * Copyright (C) 2001-2004 by David Brownell
David Brownell53bd6a62006-08-30 14:50:06 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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.
8 *
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
12 * for more details.
13 *
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.
17 */
18
19/* this file is part of ehci-hcd.c */
20
21/*-------------------------------------------------------------------------*/
22
23/*
24 * EHCI Root Hub ... the nonsharable stuff
25 *
26 * Registers don't need cpu_to_le32, that happens transparently
27 */
28
29/*-------------------------------------------------------------------------*/
30
Alan Stern58a97ff2008-04-14 12:17:10 -040031#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
32
Alan Sternaff6d182008-04-18 11:11:26 -040033#ifdef CONFIG_PM
34
Alan Stern383975d2007-05-04 11:52:40 -040035static int ehci_hub_control(
36 struct usb_hcd *hcd,
37 u16 typeReq,
38 u16 wValue,
39 u16 wIndex,
40 char *buf,
41 u16 wLength
42);
43
44/* After a power loss, ports that were owned by the companion must be
45 * reset so that the companion can still own them.
46 */
47static void ehci_handover_companion_ports(struct ehci_hcd *ehci)
48{
49 u32 __iomem *reg;
50 u32 status;
51 int port;
52 __le32 buf;
53 struct usb_hcd *hcd = ehci_to_hcd(ehci);
54
55 if (!ehci->owned_ports)
56 return;
57
58 /* Give the connections some time to appear */
59 msleep(20);
60
61 port = HCS_N_PORTS(ehci->hcs_params);
62 while (port--) {
63 if (test_bit(port, &ehci->owned_ports)) {
64 reg = &ehci->regs->port_status[port];
Alan Stern3c519b82007-05-04 11:55:31 -040065 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Alan Stern383975d2007-05-04 11:52:40 -040066
67 /* Port already owned by companion? */
68 if (status & PORT_OWNER)
69 clear_bit(port, &ehci->owned_ports);
Alan Stern3c519b82007-05-04 11:55:31 -040070 else if (test_bit(port, &ehci->companion_ports))
71 ehci_writel(ehci, status & ~PORT_PE, reg);
Alan Stern383975d2007-05-04 11:52:40 -040072 else
73 ehci_hub_control(hcd, SetPortFeature,
74 USB_PORT_FEAT_RESET, port + 1,
75 NULL, 0);
76 }
77 }
78
79 if (!ehci->owned_ports)
80 return;
81 msleep(90); /* Wait for resets to complete */
82
83 port = HCS_N_PORTS(ehci->hcs_params);
84 while (port--) {
85 if (test_bit(port, &ehci->owned_ports)) {
86 ehci_hub_control(hcd, GetPortStatus,
87 0, port + 1,
88 (char *) &buf, sizeof(buf));
89
90 /* The companion should now own the port,
91 * but if something went wrong the port must not
92 * remain enabled.
93 */
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);
98 else {
99 ehci_dbg(ehci, "failed handover port %d: %x\n",
100 port + 1, status);
101 ehci_writel(ehci, status & ~PORT_PE, reg);
102 }
103 }
104 }
105
106 ehci->owned_ports = 0;
107}
108
Alan Stern16032c42010-05-12 18:21:35 -0400109static void ehci_adjust_port_wakeup_flags(struct ehci_hcd *ehci,
Alan Stern41472002010-06-25 14:02:14 -0400110 bool suspending, bool do_wakeup)
Alan Stern16032c42010-05-12 18:21:35 -0400111{
112 int port;
113 u32 temp;
114
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.
119 */
Alan Stern41472002010-06-25 14:02:14 -0400120 if (!ehci_to_hcd(ehci)->self.root_hub->do_remote_wakeup || do_wakeup)
Alan Stern16032c42010-05-12 18:21:35 -0400121 return;
122
123 /* clear phy low-power mode before changing wakeup flags */
124 if (ehci->has_hostpc) {
125 port = HCS_N_PORTS(ehci->hcs_params);
126 while (port--) {
127 u32 __iomem *hostpc_reg;
128
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);
133 }
134 msleep(5);
135 }
136
137 port = HCS_N_PORTS(ehci->hcs_params);
138 while (port--) {
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;
142
143 /* If we are suspending the controller, clear the flags.
144 * If we are resuming the controller, set the wakeup flags.
145 */
146 if (!suspending) {
147 if (t1 & PORT_CONNECT)
148 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
149 else
150 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
151 }
152 ehci_vdbg(ehci, "port %d, %08x -> %08x\n",
153 port + 1, t1, t2);
154 ehci_writel(ehci, t2, reg);
155 }
156
157 /* enter phy low-power mode again */
158 if (ehci->has_hostpc) {
159 port = HCS_N_PORTS(ehci->hcs_params);
160 while (port--) {
161 u32 __iomem *hostpc_reg;
162
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);
167 }
168 }
Alan Sternee0b9be2010-06-25 14:02:24 -0400169
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));
Alan Stern16032c42010-05-12 18:21:35 -0400173}
174
Alan Stern0c0382e2005-10-13 17:08:02 -0400175static int ehci_bus_suspend (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
178 int port;
Alan Stern8c033562006-11-09 14:42:16 -0500179 int mask;
Alan Stern16032c42010-05-12 18:21:35 -0400180 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Alan Stern8c774fe2007-02-01 16:09:59 -0500182 ehci_dbg(ehci, "suspend root hub\n");
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (time_before (jiffies, ehci->next_statechange))
185 msleep(5);
Alan Sternf8fa7572008-01-10 16:43:15 -0500186 del_timer_sync(&ehci->watchdog);
187 del_timer_sync(&ehci->iaa_watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 spin_lock_irq (&ehci->lock);
190
Alan Sterncec3a532010-01-08 11:18:20 -0500191 /* 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.
195 */
196 if (hcd->self.root_hub->do_remote_wakeup) {
197 port = HCS_N_PORTS(ehci->hcs_params);
198 while (port--) {
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",
203 port + 1);
204 return -EBUSY;
205 }
206 }
207 }
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* stop schedules, clean any completed work */
210 if (HC_IS_RUNNING(hcd->state)) {
211 ehci_quiesce (ehci);
212 hcd->state = HC_STATE_QUIESCING;
213 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100214 ehci->command = ehci_readl(ehci, &ehci->regs->command);
David Howells7d12e782006-10-05 14:55:46 +0100215 ehci_work(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Alan Stern8c033562006-11-09 14:42:16 -0500217 /* 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.
221 */
222 ehci->bus_suspended = 0;
Alan Stern383975d2007-05-04 11:52:40 -0400223 ehci->owned_ports = 0;
Alan Stern16032c42010-05-12 18:21:35 -0400224 changed = 0;
Alan Sterncec3a532010-01-08 11:18:20 -0500225 port = HCS_N_PORTS(ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 while (port--) {
227 u32 __iomem *reg = &ehci->regs->port_status [port];
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100228 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Alan Stern16032c42010-05-12 18:21:35 -0400229 u32 t2 = t1 & ~PORT_WAKE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Alan Stern8c033562006-11-09 14:42:16 -0500231 /* keep track of which ports we suspend */
Alan Stern383975d2007-05-04 11:52:40 -0400232 if (t1 & PORT_OWNER)
233 set_bit(port, &ehci->owned_ports);
234 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 t2 |= PORT_SUSPEND;
Alan Stern8c033562006-11-09 14:42:16 -0500236 set_bit(port, &ehci->bus_suspended);
237 }
238
Alan Stern16032c42010-05-12 18:21:35 -0400239 /* enable remote wakeup on all ports, if told to do so */
Alek Du331ac6b2009-07-13 12:41:20 +0800240 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.
245 */
Alan Stern16032c42010-05-12 18:21:35 -0400246 if (t1 & PORT_CONNECT)
Alek Du331ac6b2009-07-13 12:41:20 +0800247 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
Alan Stern16032c42010-05-12 18:21:35 -0400248 else
Alek Du331ac6b2009-07-13 12:41:20 +0800249 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
Alan Stern16032c42010-05-12 18:21:35 -0400250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (t1 != t2) {
253 ehci_vdbg (ehci, "port %d, %08x -> %08x\n",
254 port + 1, t1, t2);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100255 ehci_writel(ehci, t2, reg);
Alan Stern16032c42010-05-12 18:21:35 -0400256 changed = 1;
257 }
258 }
Alek Du331ac6b2009-07-13 12:41:20 +0800259
Alan Stern16032c42010-05-12 18:21:35 -0400260 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);
264
265 port = HCS_N_PORTS(ehci->hcs_params);
266 while (port--) {
267 u32 __iomem *hostpc_reg;
268 u32 t3;
269
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",
Alek Du331ac6b2009-07-13 12:41:20 +0800276 port, (t3 & HOSTPC_PHCD) ?
277 "succeeded" : "failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 }
280
Alan Sterncd930c92008-01-10 11:14:53 -0500281 /* Apparently some devices need a >= 1-uframe delay here */
282 if (ehci->bus_suspended)
283 udelay(150);
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* turn off now-idle HC */
286 ehci_halt (ehci);
287 hcd->state = HC_STATE_SUSPENDED;
288
David Brownellcdc647a2008-04-02 13:40:20 -0700289 if (ehci->reclaim)
290 end_unlink_async(ehci);
291
Alan Stern8c033562006-11-09 14:42:16 -0500292 /* allow remote wakeup */
293 mask = INTR_MASK;
Alan Stern58a97ff2008-04-14 12:17:10 -0400294 if (!hcd->self.root_hub->do_remote_wakeup)
Alan Stern8c033562006-11-09 14:42:16 -0500295 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100296 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
297 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
300 spin_unlock_irq (&ehci->lock);
Jon Hunter015798b2009-08-12 11:57:59 -0400301
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.
304 */
305 del_timer_sync(&ehci->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309
310/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400311static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
314 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400315 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 int i;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530317 u8 resume_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (time_before (jiffies, ehci->next_statechange))
320 msleep(5);
321 spin_lock_irq (&ehci->lock);
Alan Stern541c7d42010-06-22 16:39:10 -0400322 if (!HCD_HW_ACCESSIBLE(hcd)) {
Alan Sterncfa59da2007-06-21 16:25:35 -0400323 spin_unlock_irq(&ehci->lock);
324 return -ESHUTDOWN;
325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Jason Wesselad45f1d2009-08-20 15:39:58 -0500327 if (unlikely(ehci->debug)) {
Jason Wessel872d3592009-09-23 18:32:44 -0500328 if (!dbgp_reset_prep())
Jason Wesselad45f1d2009-08-20 15:39:58 -0500329 ehci->debug = NULL;
330 else
331 dbgp_external_startup();
332 }
333
David Brownellf03c17f2005-11-23 15:45:28 -0800334 /* 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.
339 */
Alan Stern383975d2007-05-04 11:52:40 -0400340 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
341 ehci_dbg(ehci, "resume root hub%s\n",
342 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800343
Alan Stern8c033562006-11-09 14:42:16 -0500344 /* at least some APM implementations will try to deliver
345 * IRQs right away, so delay them until we're ready.
346 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100347 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500348
349 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100350 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* restore CMD_RUN, framelist size, and irq threshold */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100355 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alan Sterne198a312007-03-15 15:54:30 -0400357 /* Some controller/firmware combinations need a delay during which
358 * they set up the port statuses. See Bugzilla #8190. */
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530359 spin_unlock_irq(&ehci->lock);
360 msleep(8);
361 spin_lock_irq(&ehci->lock);
Alan Sterne198a312007-03-15 15:54:30 -0400362
Alan Stern16032c42010-05-12 18:21:35 -0400363 /* clear phy low-power mode before resume */
364 if (ehci->bus_suspended && ehci->has_hostpc) {
365 i = HCS_N_PORTS(ehci->hcs_params);
366 while (i--) {
367 if (test_bit(i, &ehci->bus_suspended)) {
368 u32 __iomem *hostpc_reg;
369
370 hostpc_reg = (u32 __iomem *)((u8 *) ehci->regs
371 + HOSTPC0 + 4 * i);
372 temp = ehci_readl(ehci, hostpc_reg);
373 ehci_writel(ehci, temp & ~HOSTPC_PHCD,
374 hostpc_reg);
375 }
376 }
377 spin_unlock_irq(&ehci->lock);
378 msleep(5);
379 spin_lock_irq(&ehci->lock);
380 }
381
Alan Stern8c033562006-11-09 14:42:16 -0500382 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 i = HCS_N_PORTS (ehci->hcs_params);
384 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100385 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern58a97ff2008-04-14 12:17:10 -0400386 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Alan Stern8c033562006-11-09 14:42:16 -0500387 if (test_bit(i, &ehci->bus_suspended) &&
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530388 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 temp |= PORT_RESUME;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530390 resume_needed = 1;
391 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100392 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530394
395 /* msleep for 20ms only if code is trying to resume port */
396 if (resume_needed) {
397 spin_unlock_irq(&ehci->lock);
398 msleep(20);
399 spin_lock_irq(&ehci->lock);
400 }
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 i = HCS_N_PORTS (ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100404 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500405 if (test_bit(i, &ehci->bus_suspended) &&
406 (temp & PORT_SUSPEND)) {
407 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100408 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500409 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100412 (void) ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* maybe re-activate the schedule(s) */
415 temp = 0;
416 if (ehci->async->qh_next.qh)
417 temp |= CMD_ASE;
418 if (ehci->periodic_sched)
419 temp |= CMD_PSE;
420 if (temp) {
421 ehci->command |= temp;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100422 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
425 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
426 hcd->state = HC_STATE_RUNNING;
427
428 /* Now we can safely re-enable irqs */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100429 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 spin_unlock_irq (&ehci->lock);
Alan Stern3bb1af52008-03-03 15:15:36 -0500432 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
436#else
437
Alan Stern0c0382e2005-10-13 17:08:02 -0400438#define ehci_bus_suspend NULL
439#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441#endif /* CONFIG_PM */
442
443/*-------------------------------------------------------------------------*/
444
Alan Stern57e06c12007-01-16 11:59:45 -0500445/* Display the ports dedicated to the companion controller */
Tony Jones5a3201b2007-09-11 14:07:31 -0700446static ssize_t show_companion(struct device *dev,
447 struct device_attribute *attr,
448 char *buf)
Alan Stern57e06c12007-01-16 11:59:45 -0500449{
450 struct ehci_hcd *ehci;
451 int nports, index, n;
452 int count = PAGE_SIZE;
453 char *ptr = buf;
454
Tony Jones5a3201b2007-09-11 14:07:31 -0700455 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
Alan Stern57e06c12007-01-16 11:59:45 -0500456 nports = HCS_N_PORTS(ehci->hcs_params);
457
458 for (index = 0; index < nports; ++index) {
459 if (test_bit(index, &ehci->companion_ports)) {
460 n = scnprintf(ptr, count, "%d\n", index + 1);
461 ptr += n;
462 count -= n;
463 }
464 }
465 return ptr - buf;
466}
467
468/*
Balaji Rao90da0962007-11-22 01:58:14 +0530469 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500470 */
Balaji Rao90da0962007-11-22 01:58:14 +0530471static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500472{
Alan Stern57e06c12007-01-16 11:59:45 -0500473 u32 __iomem *status_reg;
474 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530475 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500476
Balaji Rao90da0962007-11-22 01:58:14 +0530477 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500478
479 /*
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.
483 */
Alan Stern57e06c12007-01-16 11:59:45 -0500484 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))
489 == 0)
490 try = 0;
491 else {
492 port_status ^= PORT_OWNER;
493 port_status &= ~(PORT_PE | PORT_RWC_BITS);
494 ehci_writel(ehci, port_status, status_reg);
495 }
496 spin_unlock_irq(&ehci->lock);
497 if (try > 1)
498 msleep(5);
499 }
Balaji Rao90da0962007-11-22 01:58:14 +0530500}
501
502/*
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.
506 */
507static ssize_t store_companion(struct device *dev,
508 struct device_attribute *attr,
509 const char *buf, size_t count)
510{
511 struct ehci_hcd *ehci;
512 int portnum, new_owner;
513
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)
517 return -EINVAL;
518 if (portnum < 0) {
519 portnum = - portnum;
520 new_owner = 0; /* Owned by EHCI */
521 }
522 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
523 return -ENOENT;
524 portnum--;
525 if (new_owner)
526 set_bit(portnum, &ehci->companion_ports);
527 else
528 clear_bit(portnum, &ehci->companion_ports);
529 set_owner(ehci, portnum, new_owner);
Alan Stern57e06c12007-01-16 11:59:45 -0500530 return count;
531}
Tony Jones5a3201b2007-09-11 14:07:31 -0700532static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500533
David Daneyac8d6742011-01-25 09:59:37 -0800534static inline int create_companion_file(struct ehci_hcd *ehci)
Alan Stern57e06c12007-01-16 11:59:45 -0500535{
David Daneyac8d6742011-01-25 09:59:37 -0800536 int i = 0;
Alan Stern57e06c12007-01-16 11:59:45 -0500537
538 /* with integrated TT there is no companion! */
539 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700540 i = device_create_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700541 &dev_attr_companion);
David Daneyac8d6742011-01-25 09:59:37 -0800542 return i;
Alan Stern57e06c12007-01-16 11:59:45 -0500543}
544
545static inline void remove_companion_file(struct ehci_hcd *ehci)
546{
547 /* with integrated TT there is no companion! */
548 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700549 device_remove_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700550 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500551}
552
553
554/*-------------------------------------------------------------------------*/
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static int check_reset_complete (
557 struct ehci_hcd *ehci,
558 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500559 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int port_status
561) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800562 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* if reset finished and it's still not enabled -- handoff */
566 if (!(port_status & PORT_PE)) {
567
568 /* with integrated TT, there's nobody to hand it to! */
569 if (ehci_is_TDI(ehci)) {
570 ehci_dbg (ehci,
571 "Failed to enable port %d on root hub TT\n",
572 index+1);
573 return port_status;
574 }
575
576 ehci_dbg (ehci, "port %d full speed --> companion\n",
577 index + 1);
578
579 // what happens if HCS_N_CC(params) == 0 ?
580 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700581 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500582 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100584 /* ensure 440EPX ohci controller state is operational */
585 if (ehci->has_amcc_usb23)
586 set_ohci_hcfs(ehci, 1);
587 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 ehci_dbg (ehci, "port %d high speed\n", index + 1);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100589 /* ensure 440EPx ohci controller state is suspended */
590 if (ehci->has_amcc_usb23)
591 set_ohci_hcfs(ehci, 0);
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 return port_status;
595}
596
597/*-------------------------------------------------------------------------*/
598
599
600/* build "status change" packet (one or two bytes) from HC registers */
601
602static int
603ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
604{
605 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
606 u32 temp, status = 0;
David Brownell93f1a472006-11-16 23:34:58 -0800607 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int ports, i, retval = 1;
609 unsigned long flags;
Alek Du5a9cdf32010-06-04 15:47:56 +0800610 u32 ppcd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
613 if (!HC_IS_RUNNING(hcd->state))
614 return 0;
615
616 /* init status to no-changes */
617 buf [0] = 0;
618 ports = HCS_N_PORTS (ehci->hcs_params);
619 if (ports > 7) {
620 buf [1] = 0;
621 retval++;
622 }
David Brownell53bd6a62006-08-30 14:50:06 -0700623
David Brownell93f1a472006-11-16 23:34:58 -0800624 /* Some boards (mostly VIA?) report bogus overcurrent indications,
625 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200626 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800627 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
628 * PORT_POWER; that's surprising, but maybe within-spec.
629 */
630 if (!ignore_oc)
631 mask = PORT_CSC | PORT_PEC | PORT_OCC;
632 else
633 mask = PORT_CSC | PORT_PEC;
634 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* no hub change reports (bit 0) for now (power, ...) */
637
638 /* port N changes (bit N)? */
639 spin_lock_irqsave (&ehci->lock, flags);
Alek Du5a9cdf32010-06-04 15:47:56 +0800640
641 /* get per-port change detect bits */
642 if (ehci->has_ppcd)
643 ppcd = ehci_readl(ehci, &ehci->regs->status) >> 16;
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 for (i = 0; i < ports; i++) {
Alek Du5a9cdf32010-06-04 15:47:56 +0800646 /* leverage per-port change bits feature */
647 if (ehci->has_ppcd && !(ppcd & (1 << i)))
648 continue;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100649 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern625b5c92007-01-16 11:58:47 -0500650
651 /*
652 * Return status information even for ports with OWNER set.
653 * Otherwise khubd wouldn't see the disconnect event when a
654 * high-speed device is switched over to the companion
655 * controller by the user.
656 */
657
Alan Sterneafe5b92008-10-06 11:25:53 -0400658 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
659 || (ehci->reset_done[i] && time_after_eq(
660 jiffies, ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (i < 7)
662 buf [0] |= 1 << (i + 1);
663 else
664 buf [1] |= 1 << (i - 7);
665 status = STS_PCD;
666 }
667 }
668 /* FIXME autosuspend idle root hubs */
669 spin_unlock_irqrestore (&ehci->lock, flags);
670 return status ? retval : 0;
671}
672
673/*-------------------------------------------------------------------------*/
674
675static void
676ehci_hub_descriptor (
677 struct ehci_hcd *ehci,
678 struct usb_hub_descriptor *desc
679) {
680 int ports = HCS_N_PORTS (ehci->hcs_params);
681 u16 temp;
682
683 desc->bDescriptorType = 0x29;
684 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
685 desc->bHubContrCurrent = 0;
686
687 desc->bNbrPorts = ports;
688 temp = 1 + (ports / 8);
689 desc->bDescLength = 7 + 2 * temp;
690
691 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
692 memset (&desc->bitmap [0], 0, temp);
693 memset (&desc->bitmap [temp], 0xff, temp);
694
695 temp = 0x0008; /* per-port overcurrent reporting */
696 if (HCS_PPC (ehci->hcs_params))
697 temp |= 0x0001; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700698 else
699 temp |= 0x0002; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#if 0
701// re-enable when we support USB_PORT_FEAT_INDICATOR below.
702 if (HCS_INDICATOR (ehci->hcs_params))
703 temp |= 0x0080; /* per-port indicators (LEDs) */
704#endif
Al Virofd05e722008-04-28 07:00:16 +0100705 desc->wHubCharacteristics = cpu_to_le16(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708/*-------------------------------------------------------------------------*/
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710static int ehci_hub_control (
711 struct usb_hcd *hcd,
712 u16 typeReq,
713 u16 wValue,
714 u16 wIndex,
715 char *buf,
716 u16 wLength
717) {
718 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
719 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern383975d2007-05-04 11:52:40 -0400720 u32 __iomem *status_reg = &ehci->regs->port_status[
721 (wIndex & 0xff) - 1];
Alek Du331ac6b2009-07-13 12:41:20 +0800722 u32 __iomem *hostpc_reg = NULL;
723 u32 temp, temp1, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 unsigned long flags;
725 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800726 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /*
729 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
730 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
731 * (track current state ourselves) ... blink for diagnostics,
732 * power, "this is the one", etc. EHCI spec supports this.
733 */
734
Alek Du331ac6b2009-07-13 12:41:20 +0800735 if (ehci->has_hostpc)
736 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
737 + HOSTPC0 + 4 * ((wIndex & 0xff) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_lock_irqsave (&ehci->lock, flags);
739 switch (typeReq) {
740 case ClearHubFeature:
741 switch (wValue) {
742 case C_HUB_LOCAL_POWER:
743 case C_HUB_OVER_CURRENT:
744 /* no hub-wide feature/status flags */
745 break;
746 default:
747 goto error;
748 }
749 break;
750 case ClearPortFeature:
751 if (!wIndex || wIndex > ports)
752 goto error;
753 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500754 temp = ehci_readl(ehci, status_reg);
Alan Stern625b5c92007-01-16 11:58:47 -0500755
756 /*
757 * Even if OWNER is set, so the port is owned by the
758 * companion controller, khubd needs to be able to clear
759 * the port-change status bits (especially
Alan Stern749da5f2010-03-04 17:05:08 -0500760 * USB_PORT_STAT_C_CONNECTION).
Alan Stern625b5c92007-01-16 11:58:47 -0500761 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 switch (wValue) {
764 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500765 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
767 case USB_PORT_FEAT_C_ENABLE:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100768 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
Alan Sterne6316562007-01-16 11:58:00 -0500769 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 break;
771 case USB_PORT_FEAT_SUSPEND:
772 if (temp & PORT_RESET)
773 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800774 if (ehci->no_selective_suspend)
775 break;
Alan Stern16032c42010-05-12 18:21:35 -0400776 if (!(temp & PORT_SUSPEND))
777 break;
778 if ((temp & PORT_PE) == 0)
779 goto error;
780
781 /* clear phy low-power mode before resume */
782 if (hostpc_reg) {
783 temp1 = ehci_readl(ehci, hostpc_reg);
784 ehci_writel(ehci, temp1 & ~HOSTPC_PHCD,
Alek Dueab80de2010-05-10 11:17:49 +0800785 hostpc_reg);
Alan Stern16032c42010-05-12 18:21:35 -0400786 spin_unlock_irqrestore(&ehci->lock, flags);
787 msleep(5);/* wait to leave low-power mode */
788 spin_lock_irqsave(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Alan Stern16032c42010-05-12 18:21:35 -0400790 /* resume signaling for 20 msec */
791 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
792 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
793 ehci->reset_done[wIndex] = jiffies
794 + msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
796 case USB_PORT_FEAT_C_SUSPEND:
Alan Sternd1f114d2008-05-20 16:58:58 -0400797 clear_bit(wIndex, &ehci->port_c_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
799 case USB_PORT_FEAT_POWER:
800 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100801 ehci_writel(ehci,
802 temp & ~(PORT_RWC_BITS | PORT_POWER),
Alan Sterne6316562007-01-16 11:58:00 -0500803 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805 case USB_PORT_FEAT_C_CONNECTION:
Alek Du48f24972010-06-04 15:47:55 +0800806 if (ehci->has_lpm) {
807 /* clear PORTSC bits on disconnect */
808 temp &= ~PORT_LPM;
809 temp &= ~PORT_DEV_ADDR;
810 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100811 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
Alan Sterne6316562007-01-16 11:58:00 -0500812 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
814 case USB_PORT_FEAT_C_OVER_CURRENT:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100815 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
Alan Sterne6316562007-01-16 11:58:00 -0500816 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818 case USB_PORT_FEAT_C_RESET:
819 /* GetPortStatus clears reset */
820 break;
821 default:
822 goto error;
823 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100824 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 break;
826 case GetHubDescriptor:
827 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
828 buf);
829 break;
830 case GetHubStatus:
831 /* no hub-wide feature/status flags */
832 memset (buf, 0, 4);
833 //cpu_to_le32s ((u32 *) buf);
834 break;
835 case GetPortStatus:
836 if (!wIndex || wIndex > ports)
837 goto error;
838 wIndex--;
839 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500840 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 // wPortChange bits
843 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -0500844 status |= USB_PORT_STAT_C_CONNECTION << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -0500846 status |= USB_PORT_STAT_C_ENABLE << 16;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700847
848 if ((temp & PORT_OCC) && !ignore_oc){
Alan Stern749da5f2010-03-04 17:05:08 -0500849 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700851 /*
852 * Hubs should disable port power on over-current.
853 * However, not all EHCI implementations do this
854 * automatically, even if they _do_ support per-port
855 * power switching; they're allowed to just limit the
856 * current. khubd will turn the power back on.
857 */
858 if (HCS_PPC (ehci->hcs_params)){
859 ehci_writel(ehci,
860 temp & ~(PORT_RWC_BITS | PORT_POWER),
861 status_reg);
862 }
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* whoever resumes must GetPortStatus to complete it!! */
Alan Stern629e4422007-01-22 16:08:53 -0500866 if (temp & PORT_RESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Alan Stern629e4422007-01-22 16:08:53 -0500868 /* Remote Wakeup received? */
869 if (!ehci->reset_done[wIndex]) {
870 /* resume signaling for 20 msec */
871 ehci->reset_done[wIndex] = jiffies
872 + msecs_to_jiffies(20);
873 /* check the port again */
874 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
875 ehci->reset_done[wIndex]);
876 }
877
878 /* resume completed? */
879 else if (time_after_eq(jiffies,
880 ehci->reset_done[wIndex])) {
Alan Sterneafe5b92008-10-06 11:25:53 -0400881 clear_bit(wIndex, &ehci->suspended_ports);
Alan Sternd1f114d2008-05-20 16:58:58 -0400882 set_bit(wIndex, &ehci->port_c_suspend);
Alan Stern629e4422007-01-22 16:08:53 -0500883 ehci->reset_done[wIndex] = 0;
884
885 /* stop resume signaling */
886 temp = ehci_readl(ehci, status_reg);
887 ehci_writel(ehci,
Alan Sterne6316562007-01-16 11:58:00 -0500888 temp & ~(PORT_RWC_BITS | PORT_RESUME),
889 status_reg);
Alan Stern629e4422007-01-22 16:08:53 -0500890 retval = handshake(ehci, status_reg,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100891 PORT_RESUME, 0, 2000 /* 2msec */);
Alan Stern629e4422007-01-22 16:08:53 -0500892 if (retval != 0) {
893 ehci_err(ehci,
894 "port %d resume error %d\n",
895 wIndex + 1, retval);
896 goto error;
897 }
898 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
902 /* whoever resets must GetPortStatus to complete it!! */
903 if ((temp & PORT_RESET)
Alan Stern629e4422007-01-22 16:08:53 -0500904 && time_after_eq(jiffies,
905 ehci->reset_done[wIndex])) {
Alan Stern749da5f2010-03-04 17:05:08 -0500906 status |= USB_PORT_STAT_C_RESET << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 ehci->reset_done [wIndex] = 0;
908
909 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100910 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -0500911 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -0700912 /* REVISIT: some hardware needs 550+ usec to clear
913 * this bit; seems too long to spin routinely...
914 */
Alan Sterne6316562007-01-16 11:58:00 -0500915 retval = handshake(ehci, status_reg,
Dinh Nguyen6307e092010-04-13 11:13:15 -0500916 PORT_RESET, 0, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (retval != 0) {
918 ehci_err (ehci, "port %d reset error %d\n",
919 wIndex + 1, retval);
920 goto error;
921 }
922
923 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -0500924 temp = check_reset_complete (ehci, wIndex, status_reg,
925 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Alan Sterneafe5b92008-10-06 11:25:53 -0400928 if (!(temp & (PORT_RESUME|PORT_RESET)))
929 ehci->reset_done[wIndex] = 0;
930
Alan Stern57e06c12007-01-16 11:59:45 -0500931 /* transfer dedicated ports to the companion hc */
932 if ((temp & PORT_CONNECT) &&
933 test_bit(wIndex, &ehci->companion_ports)) {
934 temp &= ~PORT_RWC_BITS;
935 temp |= PORT_OWNER;
936 ehci_writel(ehci, temp, status_reg);
937 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
938 temp = ehci_readl(ehci, status_reg);
939 }
940
Alan Stern625b5c92007-01-16 11:58:47 -0500941 /*
942 * Even if OWNER is set, there's no harm letting khubd
943 * see the wPortStatus values (they should all be 0 except
944 * for PORT_POWER anyway).
945 */
946
947 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -0500948 status |= USB_PORT_STAT_CONNECTION;
Alan Stern625b5c92007-01-16 11:58:47 -0500949 // status may be from integrated TT
Alek Du331ac6b2009-07-13 12:41:20 +0800950 if (ehci->has_hostpc) {
951 temp1 = ehci_readl(ehci, hostpc_reg);
952 status |= ehci_port_speed(ehci, temp1);
953 } else
954 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
Alan Stern625b5c92007-01-16 11:58:47 -0500956 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -0500957 status |= USB_PORT_STAT_ENABLE;
Alan Sterneafe5b92008-10-06 11:25:53 -0400958
959 /* maybe the port was unsuspended without our knowledge */
960 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
Alan Stern749da5f2010-03-04 17:05:08 -0500961 status |= USB_PORT_STAT_SUSPEND;
Alan Sterneafe5b92008-10-06 11:25:53 -0400962 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
963 clear_bit(wIndex, &ehci->suspended_ports);
964 ehci->reset_done[wIndex] = 0;
965 if (temp & PORT_PE)
966 set_bit(wIndex, &ehci->port_c_suspend);
967 }
968
Alan Stern625b5c92007-01-16 11:58:47 -0500969 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -0500970 status |= USB_PORT_STAT_OVERCURRENT;
Alan Stern625b5c92007-01-16 11:58:47 -0500971 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -0500972 status |= USB_PORT_STAT_RESET;
Alan Stern625b5c92007-01-16 11:58:47 -0500973 if (temp & PORT_POWER)
Alan Stern749da5f2010-03-04 17:05:08 -0500974 status |= USB_PORT_STAT_POWER;
Alan Sternd1f114d2008-05-20 16:58:58 -0400975 if (test_bit(wIndex, &ehci->port_c_suspend))
Alan Stern749da5f2010-03-04 17:05:08 -0500976 status |= USB_PORT_STAT_C_SUSPEND << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
David Brownell9776afc2008-02-01 11:42:05 -0800978#ifndef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (status & ~0xffff) /* only if wPortChange is interesting */
980#endif
981 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700982 put_unaligned_le32(status, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984 case SetHubFeature:
985 switch (wValue) {
986 case C_HUB_LOCAL_POWER:
987 case C_HUB_OVER_CURRENT:
988 /* no hub-wide feature/status flags */
989 break;
990 default:
991 goto error;
992 }
993 break;
994 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -0800995 selector = wIndex >> 8;
996 wIndex &= 0xff;
Jason Wessel8d053c72009-08-20 15:39:54 -0500997 if (unlikely(ehci->debug)) {
998 /* If the debug port is active any port
999 * feature requests should get denied */
1000 if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) &&
1001 (readl(&ehci->debug->control) & DBGP_ENABLED)) {
1002 retval = -ENODEV;
1003 goto error_exit;
1004 }
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (!wIndex || wIndex > ports)
1007 goto error;
1008 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -05001009 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (temp & PORT_OWNER)
1011 break;
1012
David Brownell10f65242005-08-31 10:55:38 -07001013 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 switch (wValue) {
1015 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -08001016 if (ehci->no_selective_suspend)
1017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if ((temp & PORT_PE) == 0
1019 || (temp & PORT_RESET) != 0)
1020 goto error;
Alek Dub9df79422010-01-19 16:31:31 +08001021
Alek Du331ac6b2009-07-13 12:41:20 +08001022 /* After above check the port must be connected.
1023 * Set appropriate bit thus could put phy into low power
1024 * mode if we have hostpc feature
1025 */
Alek Dub9df79422010-01-19 16:31:31 +08001026 temp &= ~PORT_WKCONN_E;
1027 temp |= PORT_WKDISC_E | PORT_WKOC_E;
1028 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Alek Du331ac6b2009-07-13 12:41:20 +08001029 if (hostpc_reg) {
Alek Dub9df79422010-01-19 16:31:31 +08001030 spin_unlock_irqrestore(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +08001031 msleep(5);/* 5ms for HCD enter low pwr mode */
Alek Dub9df79422010-01-19 16:31:31 +08001032 spin_lock_irqsave(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +08001033 temp1 = ehci_readl(ehci, hostpc_reg);
1034 ehci_writel(ehci, temp1 | HOSTPC_PHCD,
1035 hostpc_reg);
1036 temp1 = ehci_readl(ehci, hostpc_reg);
1037 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
1038 wIndex, (temp1 & HOSTPC_PHCD) ?
1039 "succeeded" : "failed");
1040 }
Alan Sterneafe5b92008-10-06 11:25:53 -04001041 set_bit(wIndex, &ehci->suspended_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
1043 case USB_PORT_FEAT_POWER:
1044 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001045 ehci_writel(ehci, temp | PORT_POWER,
Alan Sterne6316562007-01-16 11:58:00 -05001046 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 break;
1048 case USB_PORT_FEAT_RESET:
1049 if (temp & PORT_RESUME)
1050 goto error;
1051 /* line status bits may report this as low speed,
1052 * which can be fine if this root hub has a
1053 * transaction translator built in.
1054 */
1055 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
1056 && !ehci_is_TDI(ehci)
1057 && PORT_USB11 (temp)) {
1058 ehci_dbg (ehci,
1059 "port %d low speed --> companion\n",
1060 wIndex + 1);
1061 temp |= PORT_OWNER;
1062 } else {
1063 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
1064 temp |= PORT_RESET;
1065 temp &= ~PORT_PE;
1066
1067 /*
1068 * caller must wait, then call GetPortStatus
1069 * usb 2.0 spec says 50 ms resets on root
1070 */
1071 ehci->reset_done [wIndex] = jiffies
1072 + msecs_to_jiffies (50);
1073 }
Alan Sterne6316562007-01-16 11:58:00 -05001074 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 break;
David Brownellf0d7f272006-11-16 23:56:15 -08001076
1077 /* For downstream facing ports (these): one hub port is put
1078 * into test mode according to USB2 11.24.2.13, then the hub
1079 * must be reset (which for root hub now means rmmod+modprobe,
1080 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
1081 * about the EHCI-specific stuff.
1082 */
1083 case USB_PORT_FEAT_TEST:
1084 if (!selector || selector > 5)
1085 goto error;
1086 ehci_quiesce(ehci);
1087 ehci_halt(ehci);
1088 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -05001089 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -08001090 break;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 default:
1093 goto error;
1094 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001095 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
1097
1098 default:
1099error:
1100 /* "stall" on error */
1101 retval = -EPIPE;
1102 }
Jason Wessel8d053c72009-08-20 15:39:54 -05001103error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 spin_unlock_irqrestore (&ehci->lock, flags);
1105 return retval;
1106}
Balaji Rao90da0962007-11-22 01:58:14 +05301107
1108static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
1109{
1110 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1111
1112 if (ehci_is_TDI(ehci))
1113 return;
1114 set_owner(ehci, --portnum, PORT_OWNER);
1115}
1116
Alan Stern3a311552008-05-20 16:58:29 -04001117static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
1118{
1119 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1120 u32 __iomem *reg;
1121
1122 if (ehci_is_TDI(ehci))
1123 return 0;
1124 reg = &ehci->regs->port_status[portnum - 1];
1125 return ehci_readl(ehci, reg) & PORT_OWNER;
1126}