blob: 1b6f1c0e5cee23c6c62f406c204a655d9b13fe67 [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 Stern0c0382e2005-10-13 17:08:02 -0400109static int ehci_bus_suspend (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
112 int port;
Alan Stern8c033562006-11-09 14:42:16 -0500113 int mask;
Alek Du331ac6b2009-07-13 12:41:20 +0800114 u32 __iomem *hostpc_reg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Alan Stern8c774fe2007-02-01 16:09:59 -0500116 ehci_dbg(ehci, "suspend root hub\n");
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (time_before (jiffies, ehci->next_statechange))
119 msleep(5);
Alan Sternf8fa7572008-01-10 16:43:15 -0500120 del_timer_sync(&ehci->watchdog);
121 del_timer_sync(&ehci->iaa_watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 port = HCS_N_PORTS (ehci->hcs_params);
124 spin_lock_irq (&ehci->lock);
125
126 /* stop schedules, clean any completed work */
127 if (HC_IS_RUNNING(hcd->state)) {
128 ehci_quiesce (ehci);
129 hcd->state = HC_STATE_QUIESCING;
130 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100131 ehci->command = ehci_readl(ehci, &ehci->regs->command);
David Howells7d12e782006-10-05 14:55:46 +0100132 ehci_work(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Alan Stern8c033562006-11-09 14:42:16 -0500134 /* 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.
138 */
139 ehci->bus_suspended = 0;
Alan Stern383975d2007-05-04 11:52:40 -0400140 ehci->owned_ports = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 while (port--) {
142 u32 __iomem *reg = &ehci->regs->port_status [port];
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100143 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 u32 t2 = t1;
145
Alek Du331ac6b2009-07-13 12:41:20 +0800146 if (ehci->has_hostpc)
147 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
148 + HOSTPC0 + 4 * (port & 0xff));
Alan Stern8c033562006-11-09 14:42:16 -0500149 /* keep track of which ports we suspend */
Alan Stern383975d2007-05-04 11:52:40 -0400150 if (t1 & PORT_OWNER)
151 set_bit(port, &ehci->owned_ports);
152 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 t2 |= PORT_SUSPEND;
Alan Stern8c033562006-11-09 14:42:16 -0500154 set_bit(port, &ehci->bus_suspended);
155 }
156
157 /* enable remote wakeup on all ports */
Alek Du331ac6b2009-07-13 12:41:20 +0800158 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.
163 */
164 if (t1 & PORT_CONNECT) {
165 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
166 t2 &= ~PORT_WKCONN_E;
167 } else {
168 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
169 t2 &= ~PORT_WKDISC_E;
170 }
171 } else
Alan Stern58a97ff2008-04-14 12:17:10 -0400172 t2 &= ~PORT_WAKE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 if (t1 != t2) {
175 ehci_vdbg (ehci, "port %d, %08x -> %08x\n",
176 port + 1, t1, t2);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100177 ehci_writel(ehci, t2, reg);
Alek Du331ac6b2009-07-13 12:41:20 +0800178 if (hostpc_reg) {
179 u32 t3;
180
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");
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 }
191
Alan Sterncd930c92008-01-10 11:14:53 -0500192 /* Apparently some devices need a >= 1-uframe delay here */
193 if (ehci->bus_suspended)
194 udelay(150);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /* turn off now-idle HC */
197 ehci_halt (ehci);
198 hcd->state = HC_STATE_SUSPENDED;
199
David Brownellcdc647a2008-04-02 13:40:20 -0700200 if (ehci->reclaim)
201 end_unlink_async(ehci);
202
Alan Stern8c033562006-11-09 14:42:16 -0500203 /* allow remote wakeup */
204 mask = INTR_MASK;
Alan Stern58a97ff2008-04-14 12:17:10 -0400205 if (!hcd->self.root_hub->do_remote_wakeup)
Alan Stern8c033562006-11-09 14:42:16 -0500206 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100207 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
208 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
211 spin_unlock_irq (&ehci->lock);
Jon Hunter015798b2009-08-12 11:57:59 -0400212
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.
215 */
216 del_timer_sync(&ehci->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return 0;
218}
219
220
221/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400222static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
225 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400226 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int i;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530228 u8 resume_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (time_before (jiffies, ehci->next_statechange))
231 msleep(5);
232 spin_lock_irq (&ehci->lock);
Alan Sterncfa59da2007-06-21 16:25:35 -0400233 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
234 spin_unlock_irq(&ehci->lock);
235 return -ESHUTDOWN;
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jason Wesselad45f1d2009-08-20 15:39:58 -0500238 if (unlikely(ehci->debug)) {
239 if (ehci->debug && !dbgp_reset_prep())
240 ehci->debug = NULL;
241 else
242 dbgp_external_startup();
243 }
244
David Brownellf03c17f2005-11-23 15:45:28 -0800245 /* 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.
250 */
Alan Stern383975d2007-05-04 11:52:40 -0400251 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
252 ehci_dbg(ehci, "resume root hub%s\n",
253 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800254
Alan Stern8c033562006-11-09 14:42:16 -0500255 /* at least some APM implementations will try to deliver
256 * IRQs right away, so delay them until we're ready.
257 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100258 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500259
260 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100261 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* restore CMD_RUN, framelist size, and irq threshold */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100266 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Alan Sterne198a312007-03-15 15:54:30 -0400268 /* Some controller/firmware combinations need a delay during which
269 * they set up the port statuses. See Bugzilla #8190. */
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530270 spin_unlock_irq(&ehci->lock);
271 msleep(8);
272 spin_lock_irq(&ehci->lock);
Alan Sterne198a312007-03-15 15:54:30 -0400273
Alan Stern8c033562006-11-09 14:42:16 -0500274 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 i = HCS_N_PORTS (ehci->hcs_params);
276 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100277 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern58a97ff2008-04-14 12:17:10 -0400278 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Alan Stern8c033562006-11-09 14:42:16 -0500279 if (test_bit(i, &ehci->bus_suspended) &&
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530280 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 temp |= PORT_RESUME;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530282 resume_needed = 1;
283 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100284 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530286
287 /* msleep for 20ms only if code is trying to resume port */
288 if (resume_needed) {
289 spin_unlock_irq(&ehci->lock);
290 msleep(20);
291 spin_lock_irq(&ehci->lock);
292 }
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 i = HCS_N_PORTS (ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100296 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500297 if (test_bit(i, &ehci->bus_suspended) &&
298 (temp & PORT_SUSPEND)) {
299 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100300 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500301 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100304 (void) ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* maybe re-activate the schedule(s) */
307 temp = 0;
308 if (ehci->async->qh_next.qh)
309 temp |= CMD_ASE;
310 if (ehci->periodic_sched)
311 temp |= CMD_PSE;
312 if (temp) {
313 ehci->command |= temp;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100314 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
318 hcd->state = HC_STATE_RUNNING;
319
320 /* Now we can safely re-enable irqs */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100321 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 spin_unlock_irq (&ehci->lock);
Alan Stern3bb1af52008-03-03 15:15:36 -0500324 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0;
326}
327
328#else
329
Alan Stern0c0382e2005-10-13 17:08:02 -0400330#define ehci_bus_suspend NULL
331#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333#endif /* CONFIG_PM */
334
335/*-------------------------------------------------------------------------*/
336
Alan Stern57e06c12007-01-16 11:59:45 -0500337/* Display the ports dedicated to the companion controller */
Tony Jones5a3201b2007-09-11 14:07:31 -0700338static ssize_t show_companion(struct device *dev,
339 struct device_attribute *attr,
340 char *buf)
Alan Stern57e06c12007-01-16 11:59:45 -0500341{
342 struct ehci_hcd *ehci;
343 int nports, index, n;
344 int count = PAGE_SIZE;
345 char *ptr = buf;
346
Tony Jones5a3201b2007-09-11 14:07:31 -0700347 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
Alan Stern57e06c12007-01-16 11:59:45 -0500348 nports = HCS_N_PORTS(ehci->hcs_params);
349
350 for (index = 0; index < nports; ++index) {
351 if (test_bit(index, &ehci->companion_ports)) {
352 n = scnprintf(ptr, count, "%d\n", index + 1);
353 ptr += n;
354 count -= n;
355 }
356 }
357 return ptr - buf;
358}
359
360/*
Balaji Rao90da0962007-11-22 01:58:14 +0530361 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500362 */
Balaji Rao90da0962007-11-22 01:58:14 +0530363static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500364{
Alan Stern57e06c12007-01-16 11:59:45 -0500365 u32 __iomem *status_reg;
366 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530367 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500368
Balaji Rao90da0962007-11-22 01:58:14 +0530369 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500370
371 /*
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.
375 */
Alan Stern57e06c12007-01-16 11:59:45 -0500376 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))
381 == 0)
382 try = 0;
383 else {
384 port_status ^= PORT_OWNER;
385 port_status &= ~(PORT_PE | PORT_RWC_BITS);
386 ehci_writel(ehci, port_status, status_reg);
387 }
388 spin_unlock_irq(&ehci->lock);
389 if (try > 1)
390 msleep(5);
391 }
Balaji Rao90da0962007-11-22 01:58:14 +0530392}
393
394/*
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.
398 */
399static ssize_t store_companion(struct device *dev,
400 struct device_attribute *attr,
401 const char *buf, size_t count)
402{
403 struct ehci_hcd *ehci;
404 int portnum, new_owner;
405
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)
409 return -EINVAL;
410 if (portnum < 0) {
411 portnum = - portnum;
412 new_owner = 0; /* Owned by EHCI */
413 }
414 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
415 return -ENOENT;
416 portnum--;
417 if (new_owner)
418 set_bit(portnum, &ehci->companion_ports);
419 else
420 clear_bit(portnum, &ehci->companion_ports);
421 set_owner(ehci, portnum, new_owner);
Alan Stern57e06c12007-01-16 11:59:45 -0500422 return count;
423}
Tony Jones5a3201b2007-09-11 14:07:31 -0700424static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500425
426static inline void create_companion_file(struct ehci_hcd *ehci)
427{
428 int i;
429
430 /* with integrated TT there is no companion! */
431 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700432 i = device_create_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700433 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500434}
435
436static inline void remove_companion_file(struct ehci_hcd *ehci)
437{
438 /* with integrated TT there is no companion! */
439 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700440 device_remove_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700441 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500442}
443
444
445/*-------------------------------------------------------------------------*/
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447static int check_reset_complete (
448 struct ehci_hcd *ehci,
449 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500450 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 int port_status
452) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800453 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* if reset finished and it's still not enabled -- handoff */
457 if (!(port_status & PORT_PE)) {
458
459 /* with integrated TT, there's nobody to hand it to! */
460 if (ehci_is_TDI(ehci)) {
461 ehci_dbg (ehci,
462 "Failed to enable port %d on root hub TT\n",
463 index+1);
464 return port_status;
465 }
466
467 ehci_dbg (ehci, "port %d full speed --> companion\n",
468 index + 1);
469
470 // what happens if HCS_N_CC(params) == 0 ?
471 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700472 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500473 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100475 /* ensure 440EPX ohci controller state is operational */
476 if (ehci->has_amcc_usb23)
477 set_ohci_hcfs(ehci, 1);
478 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ehci_dbg (ehci, "port %d high speed\n", index + 1);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100480 /* ensure 440EPx ohci controller state is suspended */
481 if (ehci->has_amcc_usb23)
482 set_ohci_hcfs(ehci, 0);
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 return port_status;
486}
487
488/*-------------------------------------------------------------------------*/
489
490
491/* build "status change" packet (one or two bytes) from HC registers */
492
493static int
494ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
495{
496 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
497 u32 temp, status = 0;
David Brownell93f1a472006-11-16 23:34:58 -0800498 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int ports, i, retval = 1;
500 unsigned long flags;
501
502 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
503 if (!HC_IS_RUNNING(hcd->state))
504 return 0;
505
506 /* init status to no-changes */
507 buf [0] = 0;
508 ports = HCS_N_PORTS (ehci->hcs_params);
509 if (ports > 7) {
510 buf [1] = 0;
511 retval++;
512 }
David Brownell53bd6a62006-08-30 14:50:06 -0700513
David Brownell93f1a472006-11-16 23:34:58 -0800514 /* Some boards (mostly VIA?) report bogus overcurrent indications,
515 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200516 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800517 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
518 * PORT_POWER; that's surprising, but maybe within-spec.
519 */
520 if (!ignore_oc)
521 mask = PORT_CSC | PORT_PEC | PORT_OCC;
522 else
523 mask = PORT_CSC | PORT_PEC;
524 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* no hub change reports (bit 0) for now (power, ...) */
527
528 /* port N changes (bit N)? */
529 spin_lock_irqsave (&ehci->lock, flags);
530 for (i = 0; i < ports; i++) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100531 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern625b5c92007-01-16 11:58:47 -0500532
533 /*
534 * Return status information even for ports with OWNER set.
535 * Otherwise khubd wouldn't see the disconnect event when a
536 * high-speed device is switched over to the companion
537 * controller by the user.
538 */
539
Alan Sterneafe5b92008-10-06 11:25:53 -0400540 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
541 || (ehci->reset_done[i] && time_after_eq(
542 jiffies, ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (i < 7)
544 buf [0] |= 1 << (i + 1);
545 else
546 buf [1] |= 1 << (i - 7);
547 status = STS_PCD;
548 }
549 }
550 /* FIXME autosuspend idle root hubs */
551 spin_unlock_irqrestore (&ehci->lock, flags);
552 return status ? retval : 0;
553}
554
555/*-------------------------------------------------------------------------*/
556
557static void
558ehci_hub_descriptor (
559 struct ehci_hcd *ehci,
560 struct usb_hub_descriptor *desc
561) {
562 int ports = HCS_N_PORTS (ehci->hcs_params);
563 u16 temp;
564
565 desc->bDescriptorType = 0x29;
566 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
567 desc->bHubContrCurrent = 0;
568
569 desc->bNbrPorts = ports;
570 temp = 1 + (ports / 8);
571 desc->bDescLength = 7 + 2 * temp;
572
573 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
574 memset (&desc->bitmap [0], 0, temp);
575 memset (&desc->bitmap [temp], 0xff, temp);
576
577 temp = 0x0008; /* per-port overcurrent reporting */
578 if (HCS_PPC (ehci->hcs_params))
579 temp |= 0x0001; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700580 else
581 temp |= 0x0002; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#if 0
583// re-enable when we support USB_PORT_FEAT_INDICATOR below.
584 if (HCS_INDICATOR (ehci->hcs_params))
585 temp |= 0x0080; /* per-port indicators (LEDs) */
586#endif
Al Virofd05e722008-04-28 07:00:16 +0100587 desc->wHubCharacteristics = cpu_to_le16(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590/*-------------------------------------------------------------------------*/
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592static int ehci_hub_control (
593 struct usb_hcd *hcd,
594 u16 typeReq,
595 u16 wValue,
596 u16 wIndex,
597 char *buf,
598 u16 wLength
599) {
600 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
601 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern383975d2007-05-04 11:52:40 -0400602 u32 __iomem *status_reg = &ehci->regs->port_status[
603 (wIndex & 0xff) - 1];
Alek Du331ac6b2009-07-13 12:41:20 +0800604 u32 __iomem *hostpc_reg = NULL;
605 u32 temp, temp1, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 unsigned long flags;
607 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800608 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /*
611 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
612 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
613 * (track current state ourselves) ... blink for diagnostics,
614 * power, "this is the one", etc. EHCI spec supports this.
615 */
616
Alek Du331ac6b2009-07-13 12:41:20 +0800617 if (ehci->has_hostpc)
618 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
619 + HOSTPC0 + 4 * ((wIndex & 0xff) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 spin_lock_irqsave (&ehci->lock, flags);
621 switch (typeReq) {
622 case ClearHubFeature:
623 switch (wValue) {
624 case C_HUB_LOCAL_POWER:
625 case C_HUB_OVER_CURRENT:
626 /* no hub-wide feature/status flags */
627 break;
628 default:
629 goto error;
630 }
631 break;
632 case ClearPortFeature:
633 if (!wIndex || wIndex > ports)
634 goto error;
635 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500636 temp = ehci_readl(ehci, status_reg);
Alan Stern625b5c92007-01-16 11:58:47 -0500637
638 /*
639 * Even if OWNER is set, so the port is owned by the
640 * companion controller, khubd needs to be able to clear
641 * the port-change status bits (especially
642 * USB_PORT_FEAT_C_CONNECTION).
643 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 switch (wValue) {
646 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500647 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
649 case USB_PORT_FEAT_C_ENABLE:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100650 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
Alan Sterne6316562007-01-16 11:58:00 -0500651 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653 case USB_PORT_FEAT_SUSPEND:
654 if (temp & PORT_RESET)
655 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800656 if (ehci->no_selective_suspend)
657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (temp & PORT_SUSPEND) {
659 if ((temp & PORT_PE) == 0)
660 goto error;
661 /* resume signaling for 20 msec */
David Brownell10f65242005-08-31 10:55:38 -0700662 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100663 ehci_writel(ehci, temp | PORT_RESUME,
Alan Sterne6316562007-01-16 11:58:00 -0500664 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 ehci->reset_done [wIndex] = jiffies
666 + msecs_to_jiffies (20);
667 }
668 break;
669 case USB_PORT_FEAT_C_SUSPEND:
Alan Sternd1f114d2008-05-20 16:58:58 -0400670 clear_bit(wIndex, &ehci->port_c_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
672 case USB_PORT_FEAT_POWER:
673 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100674 ehci_writel(ehci,
675 temp & ~(PORT_RWC_BITS | PORT_POWER),
Alan Sterne6316562007-01-16 11:58:00 -0500676 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
678 case USB_PORT_FEAT_C_CONNECTION:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100679 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
Alan Sterne6316562007-01-16 11:58:00 -0500680 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 break;
682 case USB_PORT_FEAT_C_OVER_CURRENT:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100683 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
Alan Sterne6316562007-01-16 11:58:00 -0500684 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 break;
686 case USB_PORT_FEAT_C_RESET:
687 /* GetPortStatus clears reset */
688 break;
689 default:
690 goto error;
691 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100692 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 break;
694 case GetHubDescriptor:
695 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
696 buf);
697 break;
698 case GetHubStatus:
699 /* no hub-wide feature/status flags */
700 memset (buf, 0, 4);
701 //cpu_to_le32s ((u32 *) buf);
702 break;
703 case GetPortStatus:
704 if (!wIndex || wIndex > ports)
705 goto error;
706 wIndex--;
707 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500708 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 // wPortChange bits
711 if (temp & PORT_CSC)
712 status |= 1 << USB_PORT_FEAT_C_CONNECTION;
713 if (temp & PORT_PEC)
714 status |= 1 << USB_PORT_FEAT_C_ENABLE;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700715
716 if ((temp & PORT_OCC) && !ignore_oc){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 status |= 1 << USB_PORT_FEAT_C_OVER_CURRENT;
718
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700719 /*
720 * Hubs should disable port power on over-current.
721 * However, not all EHCI implementations do this
722 * automatically, even if they _do_ support per-port
723 * power switching; they're allowed to just limit the
724 * current. khubd will turn the power back on.
725 */
726 if (HCS_PPC (ehci->hcs_params)){
727 ehci_writel(ehci,
728 temp & ~(PORT_RWC_BITS | PORT_POWER),
729 status_reg);
730 }
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* whoever resumes must GetPortStatus to complete it!! */
Alan Stern629e4422007-01-22 16:08:53 -0500734 if (temp & PORT_RESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Alan Stern629e4422007-01-22 16:08:53 -0500736 /* Remote Wakeup received? */
737 if (!ehci->reset_done[wIndex]) {
738 /* resume signaling for 20 msec */
739 ehci->reset_done[wIndex] = jiffies
740 + msecs_to_jiffies(20);
741 /* check the port again */
742 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
743 ehci->reset_done[wIndex]);
744 }
745
746 /* resume completed? */
747 else if (time_after_eq(jiffies,
748 ehci->reset_done[wIndex])) {
Alan Sterneafe5b92008-10-06 11:25:53 -0400749 clear_bit(wIndex, &ehci->suspended_ports);
Alan Sternd1f114d2008-05-20 16:58:58 -0400750 set_bit(wIndex, &ehci->port_c_suspend);
Alan Stern629e4422007-01-22 16:08:53 -0500751 ehci->reset_done[wIndex] = 0;
752
753 /* stop resume signaling */
754 temp = ehci_readl(ehci, status_reg);
755 ehci_writel(ehci,
Alan Sterne6316562007-01-16 11:58:00 -0500756 temp & ~(PORT_RWC_BITS | PORT_RESUME),
757 status_reg);
Alan Stern629e4422007-01-22 16:08:53 -0500758 retval = handshake(ehci, status_reg,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100759 PORT_RESUME, 0, 2000 /* 2msec */);
Alan Stern629e4422007-01-22 16:08:53 -0500760 if (retval != 0) {
761 ehci_err(ehci,
762 "port %d resume error %d\n",
763 wIndex + 1, retval);
764 goto error;
765 }
766 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
770 /* whoever resets must GetPortStatus to complete it!! */
771 if ((temp & PORT_RESET)
Alan Stern629e4422007-01-22 16:08:53 -0500772 && time_after_eq(jiffies,
773 ehci->reset_done[wIndex])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 status |= 1 << USB_PORT_FEAT_C_RESET;
775 ehci->reset_done [wIndex] = 0;
776
777 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100778 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -0500779 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -0700780 /* REVISIT: some hardware needs 550+ usec to clear
781 * this bit; seems too long to spin routinely...
782 */
Alan Sterne6316562007-01-16 11:58:00 -0500783 retval = handshake(ehci, status_reg,
David Brownellc22fa3a2005-06-13 07:15:28 -0700784 PORT_RESET, 0, 750);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (retval != 0) {
786 ehci_err (ehci, "port %d reset error %d\n",
787 wIndex + 1, retval);
788 goto error;
789 }
790
791 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -0500792 temp = check_reset_complete (ehci, wIndex, status_reg,
793 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Alan Sterneafe5b92008-10-06 11:25:53 -0400796 if (!(temp & (PORT_RESUME|PORT_RESET)))
797 ehci->reset_done[wIndex] = 0;
798
Alan Stern57e06c12007-01-16 11:59:45 -0500799 /* transfer dedicated ports to the companion hc */
800 if ((temp & PORT_CONNECT) &&
801 test_bit(wIndex, &ehci->companion_ports)) {
802 temp &= ~PORT_RWC_BITS;
803 temp |= PORT_OWNER;
804 ehci_writel(ehci, temp, status_reg);
805 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
806 temp = ehci_readl(ehci, status_reg);
807 }
808
Alan Stern625b5c92007-01-16 11:58:47 -0500809 /*
810 * Even if OWNER is set, there's no harm letting khubd
811 * see the wPortStatus values (they should all be 0 except
812 * for PORT_POWER anyway).
813 */
814
815 if (temp & PORT_CONNECT) {
816 status |= 1 << USB_PORT_FEAT_CONNECTION;
817 // status may be from integrated TT
Alek Du331ac6b2009-07-13 12:41:20 +0800818 if (ehci->has_hostpc) {
819 temp1 = ehci_readl(ehci, hostpc_reg);
820 status |= ehci_port_speed(ehci, temp1);
821 } else
822 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Alan Stern625b5c92007-01-16 11:58:47 -0500824 if (temp & PORT_PE)
825 status |= 1 << USB_PORT_FEAT_ENABLE;
Alan Sterneafe5b92008-10-06 11:25:53 -0400826
827 /* maybe the port was unsuspended without our knowledge */
828 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
Alan Stern625b5c92007-01-16 11:58:47 -0500829 status |= 1 << USB_PORT_FEAT_SUSPEND;
Alan Sterneafe5b92008-10-06 11:25:53 -0400830 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
831 clear_bit(wIndex, &ehci->suspended_ports);
832 ehci->reset_done[wIndex] = 0;
833 if (temp & PORT_PE)
834 set_bit(wIndex, &ehci->port_c_suspend);
835 }
836
Alan Stern625b5c92007-01-16 11:58:47 -0500837 if (temp & PORT_OC)
838 status |= 1 << USB_PORT_FEAT_OVER_CURRENT;
839 if (temp & PORT_RESET)
840 status |= 1 << USB_PORT_FEAT_RESET;
841 if (temp & PORT_POWER)
842 status |= 1 << USB_PORT_FEAT_POWER;
Alan Sternd1f114d2008-05-20 16:58:58 -0400843 if (test_bit(wIndex, &ehci->port_c_suspend))
844 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
David Brownell9776afc2008-02-01 11:42:05 -0800846#ifndef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (status & ~0xffff) /* only if wPortChange is interesting */
848#endif
849 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700850 put_unaligned_le32(status, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 break;
852 case SetHubFeature:
853 switch (wValue) {
854 case C_HUB_LOCAL_POWER:
855 case C_HUB_OVER_CURRENT:
856 /* no hub-wide feature/status flags */
857 break;
858 default:
859 goto error;
860 }
861 break;
862 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -0800863 selector = wIndex >> 8;
864 wIndex &= 0xff;
Jason Wessel8d053c72009-08-20 15:39:54 -0500865 if (unlikely(ehci->debug)) {
866 /* If the debug port is active any port
867 * feature requests should get denied */
868 if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) &&
869 (readl(&ehci->debug->control) & DBGP_ENABLED)) {
870 retval = -ENODEV;
871 goto error_exit;
872 }
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!wIndex || wIndex > ports)
875 goto error;
876 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500877 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (temp & PORT_OWNER)
879 break;
880
David Brownell10f65242005-08-31 10:55:38 -0700881 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 switch (wValue) {
883 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -0800884 if (ehci->no_selective_suspend)
885 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if ((temp & PORT_PE) == 0
887 || (temp & PORT_RESET) != 0)
888 goto error;
Alan Sterne6316562007-01-16 11:58:00 -0500889 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Alek Du331ac6b2009-07-13 12:41:20 +0800890 /* After above check the port must be connected.
891 * Set appropriate bit thus could put phy into low power
892 * mode if we have hostpc feature
893 */
894 if (hostpc_reg) {
895 temp &= ~PORT_WKCONN_E;
896 temp |= (PORT_WKDISC_E | PORT_WKOC_E);
897 ehci_writel(ehci, temp | PORT_SUSPEND,
898 status_reg);
899 msleep(5);/* 5ms for HCD enter low pwr mode */
900 temp1 = ehci_readl(ehci, hostpc_reg);
901 ehci_writel(ehci, temp1 | HOSTPC_PHCD,
902 hostpc_reg);
903 temp1 = ehci_readl(ehci, hostpc_reg);
904 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
905 wIndex, (temp1 & HOSTPC_PHCD) ?
906 "succeeded" : "failed");
907 }
Alan Sterneafe5b92008-10-06 11:25:53 -0400908 set_bit(wIndex, &ehci->suspended_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 break;
910 case USB_PORT_FEAT_POWER:
911 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100912 ehci_writel(ehci, temp | PORT_POWER,
Alan Sterne6316562007-01-16 11:58:00 -0500913 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 break;
915 case USB_PORT_FEAT_RESET:
916 if (temp & PORT_RESUME)
917 goto error;
918 /* line status bits may report this as low speed,
919 * which can be fine if this root hub has a
920 * transaction translator built in.
921 */
922 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
923 && !ehci_is_TDI(ehci)
924 && PORT_USB11 (temp)) {
925 ehci_dbg (ehci,
926 "port %d low speed --> companion\n",
927 wIndex + 1);
928 temp |= PORT_OWNER;
929 } else {
930 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
931 temp |= PORT_RESET;
932 temp &= ~PORT_PE;
933
934 /*
935 * caller must wait, then call GetPortStatus
936 * usb 2.0 spec says 50 ms resets on root
937 */
938 ehci->reset_done [wIndex] = jiffies
939 + msecs_to_jiffies (50);
940 }
Alan Sterne6316562007-01-16 11:58:00 -0500941 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
David Brownellf0d7f272006-11-16 23:56:15 -0800943
944 /* For downstream facing ports (these): one hub port is put
945 * into test mode according to USB2 11.24.2.13, then the hub
946 * must be reset (which for root hub now means rmmod+modprobe,
947 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
948 * about the EHCI-specific stuff.
949 */
950 case USB_PORT_FEAT_TEST:
951 if (!selector || selector > 5)
952 goto error;
953 ehci_quiesce(ehci);
954 ehci_halt(ehci);
955 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -0500956 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -0800957 break;
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 default:
960 goto error;
961 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100962 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 break;
964
965 default:
966error:
967 /* "stall" on error */
968 retval = -EPIPE;
969 }
Jason Wessel8d053c72009-08-20 15:39:54 -0500970error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 spin_unlock_irqrestore (&ehci->lock, flags);
972 return retval;
973}
Balaji Rao90da0962007-11-22 01:58:14 +0530974
975static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
976{
977 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
978
979 if (ehci_is_TDI(ehci))
980 return;
981 set_owner(ehci, --portnum, PORT_OWNER);
982}
983
Alan Stern3a311552008-05-20 16:58:29 -0400984static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
985{
986 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
987 u32 __iomem *reg;
988
989 if (ehci_is_TDI(ehci))
990 return 0;
991 reg = &ehci->regs->port_status[portnum - 1];
992 return ehci_readl(ehci, reg) & PORT_OWNER;
993}