blob: ef956220f8541087ba058563dae887bda42f3ebb [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 spin_lock_irq (&ehci->lock);
124
Alan Sterncec3a532010-01-08 11:18:20 -0500125 /* Once the controller is stopped, port resumes that are already
126 * in progress won't complete. Hence if remote wakeup is enabled
127 * for the root hub and any ports are in the middle of a resume or
128 * remote wakeup, we must fail the suspend.
129 */
130 if (hcd->self.root_hub->do_remote_wakeup) {
131 port = HCS_N_PORTS(ehci->hcs_params);
132 while (port--) {
133 if (ehci->reset_done[port] != 0) {
134 spin_unlock_irq(&ehci->lock);
135 ehci_dbg(ehci, "suspend failed because "
136 "port %d is resuming\n",
137 port + 1);
138 return -EBUSY;
139 }
140 }
141 }
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* stop schedules, clean any completed work */
144 if (HC_IS_RUNNING(hcd->state)) {
145 ehci_quiesce (ehci);
146 hcd->state = HC_STATE_QUIESCING;
147 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100148 ehci->command = ehci_readl(ehci, &ehci->regs->command);
David Howells7d12e782006-10-05 14:55:46 +0100149 ehci_work(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Alan Stern8c033562006-11-09 14:42:16 -0500151 /* Unlike other USB host controller types, EHCI doesn't have
152 * any notion of "global" or bus-wide suspend. The driver has
153 * to manually suspend all the active unsuspended ports, and
154 * then manually resume them in the bus_resume() routine.
155 */
156 ehci->bus_suspended = 0;
Alan Stern383975d2007-05-04 11:52:40 -0400157 ehci->owned_ports = 0;
Alan Sterncec3a532010-01-08 11:18:20 -0500158 port = HCS_N_PORTS(ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 while (port--) {
160 u32 __iomem *reg = &ehci->regs->port_status [port];
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100161 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 u32 t2 = t1;
163
Alek Du331ac6b2009-07-13 12:41:20 +0800164 if (ehci->has_hostpc)
165 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
166 + HOSTPC0 + 4 * (port & 0xff));
Alan Stern8c033562006-11-09 14:42:16 -0500167 /* keep track of which ports we suspend */
Alan Stern383975d2007-05-04 11:52:40 -0400168 if (t1 & PORT_OWNER)
169 set_bit(port, &ehci->owned_ports);
170 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 t2 |= PORT_SUSPEND;
Alan Stern8c033562006-11-09 14:42:16 -0500172 set_bit(port, &ehci->bus_suspended);
173 }
174
175 /* enable remote wakeup on all ports */
Alek Du331ac6b2009-07-13 12:41:20 +0800176 if (hcd->self.root_hub->do_remote_wakeup) {
177 /* only enable appropriate wake bits, otherwise the
178 * hardware can not go phy low power mode. If a race
179 * condition happens here(connection change during bits
180 * set), the port change detection will finally fix it.
181 */
182 if (t1 & PORT_CONNECT) {
183 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
184 t2 &= ~PORT_WKCONN_E;
185 } else {
186 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
187 t2 &= ~PORT_WKDISC_E;
188 }
189 } else
Alan Stern58a97ff2008-04-14 12:17:10 -0400190 t2 &= ~PORT_WAKE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (t1 != t2) {
193 ehci_vdbg (ehci, "port %d, %08x -> %08x\n",
194 port + 1, t1, t2);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100195 ehci_writel(ehci, t2, reg);
Alek Du331ac6b2009-07-13 12:41:20 +0800196 if (hostpc_reg) {
197 u32 t3;
198
Alek Dub9df79422010-01-19 16:31:31 +0800199 spin_unlock_irq(&ehci->lock);
Alek Du331ac6b2009-07-13 12:41:20 +0800200 msleep(5);/* 5ms for HCD enter low pwr mode */
Alek Dub9df79422010-01-19 16:31:31 +0800201 spin_lock_irq(&ehci->lock);
Alek Du331ac6b2009-07-13 12:41:20 +0800202 t3 = ehci_readl(ehci, hostpc_reg);
203 ehci_writel(ehci, t3 | HOSTPC_PHCD, hostpc_reg);
204 t3 = ehci_readl(ehci, hostpc_reg);
205 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
206 port, (t3 & HOSTPC_PHCD) ?
207 "succeeded" : "failed");
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210 }
211
Alan Sterncd930c92008-01-10 11:14:53 -0500212 /* Apparently some devices need a >= 1-uframe delay here */
213 if (ehci->bus_suspended)
214 udelay(150);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* turn off now-idle HC */
217 ehci_halt (ehci);
218 hcd->state = HC_STATE_SUSPENDED;
219
David Brownellcdc647a2008-04-02 13:40:20 -0700220 if (ehci->reclaim)
221 end_unlink_async(ehci);
222
Alan Stern8c033562006-11-09 14:42:16 -0500223 /* allow remote wakeup */
224 mask = INTR_MASK;
Alan Stern58a97ff2008-04-14 12:17:10 -0400225 if (!hcd->self.root_hub->do_remote_wakeup)
Alan Stern8c033562006-11-09 14:42:16 -0500226 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100227 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
228 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
231 spin_unlock_irq (&ehci->lock);
Jon Hunter015798b2009-08-12 11:57:59 -0400232
233 /* ehci_work() may have re-enabled the watchdog timer, which we do not
234 * want, and so we must delete any pending watchdog timer events.
235 */
236 del_timer_sync(&ehci->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238}
239
240
241/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400242static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
245 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400246 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 int i;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530248 u8 resume_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (time_before (jiffies, ehci->next_statechange))
251 msleep(5);
252 spin_lock_irq (&ehci->lock);
Alan Sterncfa59da2007-06-21 16:25:35 -0400253 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
254 spin_unlock_irq(&ehci->lock);
255 return -ESHUTDOWN;
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jason Wesselad45f1d2009-08-20 15:39:58 -0500258 if (unlikely(ehci->debug)) {
Jason Wessel872d3592009-09-23 18:32:44 -0500259 if (!dbgp_reset_prep())
Jason Wesselad45f1d2009-08-20 15:39:58 -0500260 ehci->debug = NULL;
261 else
262 dbgp_external_startup();
263 }
264
David Brownellf03c17f2005-11-23 15:45:28 -0800265 /* Ideally and we've got a real resume here, and no port's power
266 * was lost. (For PCI, that means Vaux was maintained.) But we
267 * could instead be restoring a swsusp snapshot -- so that BIOS was
268 * the last user of the controller, not reset/pm hardware keeping
269 * state we gave to it.
270 */
Alan Stern383975d2007-05-04 11:52:40 -0400271 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
272 ehci_dbg(ehci, "resume root hub%s\n",
273 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800274
Alan Stern8c033562006-11-09 14:42:16 -0500275 /* at least some APM implementations will try to deliver
276 * IRQs right away, so delay them until we're ready.
277 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100278 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500279
280 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100281 ehci_writel(ehci, 0, &ehci->regs->segment);
282 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
283 ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* restore CMD_RUN, framelist size, and irq threshold */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100286 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Alan Sterne198a312007-03-15 15:54:30 -0400288 /* Some controller/firmware combinations need a delay during which
289 * they set up the port statuses. See Bugzilla #8190. */
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530290 spin_unlock_irq(&ehci->lock);
291 msleep(8);
292 spin_lock_irq(&ehci->lock);
Alan Sterne198a312007-03-15 15:54:30 -0400293
Alan Stern8c033562006-11-09 14:42:16 -0500294 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 i = HCS_N_PORTS (ehci->hcs_params);
296 while (i--) {
Alek Dueab80de2010-05-10 11:17:49 +0800297 /* clear phy low power mode before resume */
298 if (ehci->has_hostpc) {
299 u32 __iomem *hostpc_reg =
300 (u32 __iomem *)((u8 *)ehci->regs
301 + HOSTPC0 + 4 * (i & 0xff));
302 temp = ehci_readl(ehci, hostpc_reg);
303 ehci_writel(ehci, temp & ~HOSTPC_PHCD,
304 hostpc_reg);
305 mdelay(5);
306 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100307 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern58a97ff2008-04-14 12:17:10 -0400308 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Alan Stern8c033562006-11-09 14:42:16 -0500309 if (test_bit(i, &ehci->bus_suspended) &&
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530310 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 temp |= PORT_RESUME;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530312 resume_needed = 1;
313 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100314 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530316
317 /* msleep for 20ms only if code is trying to resume port */
318 if (resume_needed) {
319 spin_unlock_irq(&ehci->lock);
320 msleep(20);
321 spin_lock_irq(&ehci->lock);
322 }
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 i = HCS_N_PORTS (ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100326 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500327 if (test_bit(i, &ehci->bus_suspended) &&
328 (temp & PORT_SUSPEND)) {
329 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100330 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500331 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100334 (void) ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* maybe re-activate the schedule(s) */
337 temp = 0;
338 if (ehci->async->qh_next.qh)
339 temp |= CMD_ASE;
340 if (ehci->periodic_sched)
341 temp |= CMD_PSE;
342 if (temp) {
343 ehci->command |= temp;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100344 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
348 hcd->state = HC_STATE_RUNNING;
349
350 /* Now we can safely re-enable irqs */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100351 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 spin_unlock_irq (&ehci->lock);
Alan Stern3bb1af52008-03-03 15:15:36 -0500354 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return 0;
356}
357
358#else
359
Alan Stern0c0382e2005-10-13 17:08:02 -0400360#define ehci_bus_suspend NULL
361#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363#endif /* CONFIG_PM */
364
365/*-------------------------------------------------------------------------*/
366
Alan Stern57e06c12007-01-16 11:59:45 -0500367/* Display the ports dedicated to the companion controller */
Tony Jones5a3201b2007-09-11 14:07:31 -0700368static ssize_t show_companion(struct device *dev,
369 struct device_attribute *attr,
370 char *buf)
Alan Stern57e06c12007-01-16 11:59:45 -0500371{
372 struct ehci_hcd *ehci;
373 int nports, index, n;
374 int count = PAGE_SIZE;
375 char *ptr = buf;
376
Tony Jones5a3201b2007-09-11 14:07:31 -0700377 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
Alan Stern57e06c12007-01-16 11:59:45 -0500378 nports = HCS_N_PORTS(ehci->hcs_params);
379
380 for (index = 0; index < nports; ++index) {
381 if (test_bit(index, &ehci->companion_ports)) {
382 n = scnprintf(ptr, count, "%d\n", index + 1);
383 ptr += n;
384 count -= n;
385 }
386 }
387 return ptr - buf;
388}
389
390/*
Balaji Rao90da0962007-11-22 01:58:14 +0530391 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500392 */
Balaji Rao90da0962007-11-22 01:58:14 +0530393static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500394{
Alan Stern57e06c12007-01-16 11:59:45 -0500395 u32 __iomem *status_reg;
396 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530397 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500398
Balaji Rao90da0962007-11-22 01:58:14 +0530399 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500400
401 /*
402 * The controller won't set the OWNER bit if the port is
403 * enabled, so this loop will sometimes require at least two
404 * iterations: one to disable the port and one to set OWNER.
405 */
Alan Stern57e06c12007-01-16 11:59:45 -0500406 for (try = 4; try > 0; --try) {
407 spin_lock_irq(&ehci->lock);
408 port_status = ehci_readl(ehci, status_reg);
409 if ((port_status & PORT_OWNER) == new_owner
410 || (port_status & (PORT_OWNER | PORT_CONNECT))
411 == 0)
412 try = 0;
413 else {
414 port_status ^= PORT_OWNER;
415 port_status &= ~(PORT_PE | PORT_RWC_BITS);
416 ehci_writel(ehci, port_status, status_reg);
417 }
418 spin_unlock_irq(&ehci->lock);
419 if (try > 1)
420 msleep(5);
421 }
Balaji Rao90da0962007-11-22 01:58:14 +0530422}
423
424/*
425 * Dedicate or undedicate a port to the companion controller.
426 * Syntax is "[-]portnum", where a leading '-' sign means
427 * return control of the port to the EHCI controller.
428 */
429static ssize_t store_companion(struct device *dev,
430 struct device_attribute *attr,
431 const char *buf, size_t count)
432{
433 struct ehci_hcd *ehci;
434 int portnum, new_owner;
435
436 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
437 new_owner = PORT_OWNER; /* Owned by companion */
438 if (sscanf(buf, "%d", &portnum) != 1)
439 return -EINVAL;
440 if (portnum < 0) {
441 portnum = - portnum;
442 new_owner = 0; /* Owned by EHCI */
443 }
444 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
445 return -ENOENT;
446 portnum--;
447 if (new_owner)
448 set_bit(portnum, &ehci->companion_ports);
449 else
450 clear_bit(portnum, &ehci->companion_ports);
451 set_owner(ehci, portnum, new_owner);
Alan Stern57e06c12007-01-16 11:59:45 -0500452 return count;
453}
Tony Jones5a3201b2007-09-11 14:07:31 -0700454static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500455
456static inline void create_companion_file(struct ehci_hcd *ehci)
457{
458 int i;
459
460 /* with integrated TT there is no companion! */
461 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700462 i = device_create_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700463 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500464}
465
466static inline void remove_companion_file(struct ehci_hcd *ehci)
467{
468 /* with integrated TT there is no companion! */
469 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700470 device_remove_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700471 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500472}
473
474
475/*-------------------------------------------------------------------------*/
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477static int check_reset_complete (
478 struct ehci_hcd *ehci,
479 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500480 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int port_status
482) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800483 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* if reset finished and it's still not enabled -- handoff */
487 if (!(port_status & PORT_PE)) {
488
489 /* with integrated TT, there's nobody to hand it to! */
490 if (ehci_is_TDI(ehci)) {
491 ehci_dbg (ehci,
492 "Failed to enable port %d on root hub TT\n",
493 index+1);
494 return port_status;
495 }
496
497 ehci_dbg (ehci, "port %d full speed --> companion\n",
498 index + 1);
499
500 // what happens if HCS_N_CC(params) == 0 ?
501 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700502 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500503 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100505 /* ensure 440EPX ohci controller state is operational */
506 if (ehci->has_amcc_usb23)
507 set_ohci_hcfs(ehci, 1);
508 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 ehci_dbg (ehci, "port %d high speed\n", index + 1);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100510 /* ensure 440EPx ohci controller state is suspended */
511 if (ehci->has_amcc_usb23)
512 set_ohci_hcfs(ehci, 0);
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 return port_status;
516}
517
518/*-------------------------------------------------------------------------*/
519
520
521/* build "status change" packet (one or two bytes) from HC registers */
522
523static int
524ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
525{
526 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
527 u32 temp, status = 0;
David Brownell93f1a472006-11-16 23:34:58 -0800528 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int ports, i, retval = 1;
530 unsigned long flags;
531
532 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
533 if (!HC_IS_RUNNING(hcd->state))
534 return 0;
535
536 /* init status to no-changes */
537 buf [0] = 0;
538 ports = HCS_N_PORTS (ehci->hcs_params);
539 if (ports > 7) {
540 buf [1] = 0;
541 retval++;
542 }
David Brownell53bd6a62006-08-30 14:50:06 -0700543
David Brownell93f1a472006-11-16 23:34:58 -0800544 /* Some boards (mostly VIA?) report bogus overcurrent indications,
545 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200546 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800547 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
548 * PORT_POWER; that's surprising, but maybe within-spec.
549 */
550 if (!ignore_oc)
551 mask = PORT_CSC | PORT_PEC | PORT_OCC;
552 else
553 mask = PORT_CSC | PORT_PEC;
554 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /* no hub change reports (bit 0) for now (power, ...) */
557
558 /* port N changes (bit N)? */
559 spin_lock_irqsave (&ehci->lock, flags);
560 for (i = 0; i < ports; i++) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100561 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern625b5c92007-01-16 11:58:47 -0500562
563 /*
564 * Return status information even for ports with OWNER set.
565 * Otherwise khubd wouldn't see the disconnect event when a
566 * high-speed device is switched over to the companion
567 * controller by the user.
568 */
569
Alan Sterneafe5b92008-10-06 11:25:53 -0400570 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
571 || (ehci->reset_done[i] && time_after_eq(
572 jiffies, ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (i < 7)
574 buf [0] |= 1 << (i + 1);
575 else
576 buf [1] |= 1 << (i - 7);
577 status = STS_PCD;
578 }
579 }
580 /* FIXME autosuspend idle root hubs */
581 spin_unlock_irqrestore (&ehci->lock, flags);
582 return status ? retval : 0;
583}
584
585/*-------------------------------------------------------------------------*/
586
587static void
588ehci_hub_descriptor (
589 struct ehci_hcd *ehci,
590 struct usb_hub_descriptor *desc
591) {
592 int ports = HCS_N_PORTS (ehci->hcs_params);
593 u16 temp;
594
595 desc->bDescriptorType = 0x29;
596 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
597 desc->bHubContrCurrent = 0;
598
599 desc->bNbrPorts = ports;
600 temp = 1 + (ports / 8);
601 desc->bDescLength = 7 + 2 * temp;
602
603 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
604 memset (&desc->bitmap [0], 0, temp);
605 memset (&desc->bitmap [temp], 0xff, temp);
606
607 temp = 0x0008; /* per-port overcurrent reporting */
608 if (HCS_PPC (ehci->hcs_params))
609 temp |= 0x0001; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700610 else
611 temp |= 0x0002; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#if 0
613// re-enable when we support USB_PORT_FEAT_INDICATOR below.
614 if (HCS_INDICATOR (ehci->hcs_params))
615 temp |= 0x0080; /* per-port indicators (LEDs) */
616#endif
Al Virofd05e722008-04-28 07:00:16 +0100617 desc->wHubCharacteristics = cpu_to_le16(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/*-------------------------------------------------------------------------*/
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622static int ehci_hub_control (
623 struct usb_hcd *hcd,
624 u16 typeReq,
625 u16 wValue,
626 u16 wIndex,
627 char *buf,
628 u16 wLength
629) {
630 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
631 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern383975d2007-05-04 11:52:40 -0400632 u32 __iomem *status_reg = &ehci->regs->port_status[
633 (wIndex & 0xff) - 1];
Alek Du331ac6b2009-07-13 12:41:20 +0800634 u32 __iomem *hostpc_reg = NULL;
635 u32 temp, temp1, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unsigned long flags;
637 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800638 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 /*
641 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
642 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
643 * (track current state ourselves) ... blink for diagnostics,
644 * power, "this is the one", etc. EHCI spec supports this.
645 */
646
Alek Du331ac6b2009-07-13 12:41:20 +0800647 if (ehci->has_hostpc)
648 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
649 + HOSTPC0 + 4 * ((wIndex & 0xff) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_lock_irqsave (&ehci->lock, flags);
651 switch (typeReq) {
652 case ClearHubFeature:
653 switch (wValue) {
654 case C_HUB_LOCAL_POWER:
655 case C_HUB_OVER_CURRENT:
656 /* no hub-wide feature/status flags */
657 break;
658 default:
659 goto error;
660 }
661 break;
662 case ClearPortFeature:
663 if (!wIndex || wIndex > ports)
664 goto error;
665 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500666 temp = ehci_readl(ehci, status_reg);
Alan Stern625b5c92007-01-16 11:58:47 -0500667
668 /*
669 * Even if OWNER is set, so the port is owned by the
670 * companion controller, khubd needs to be able to clear
671 * the port-change status bits (especially
Alan Stern749da5f2010-03-04 17:05:08 -0500672 * USB_PORT_STAT_C_CONNECTION).
Alan Stern625b5c92007-01-16 11:58:47 -0500673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 switch (wValue) {
676 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500677 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 break;
679 case USB_PORT_FEAT_C_ENABLE:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100680 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
Alan Sterne6316562007-01-16 11:58:00 -0500681 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
683 case USB_PORT_FEAT_SUSPEND:
684 if (temp & PORT_RESET)
685 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800686 if (ehci->no_selective_suspend)
687 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (temp & PORT_SUSPEND) {
689 if ((temp & PORT_PE) == 0)
690 goto error;
Alek Dueab80de2010-05-10 11:17:49 +0800691 /* clear phy low power mode before resume */
692 if (hostpc_reg) {
693 temp1 = ehci_readl(ehci, hostpc_reg);
694 ehci_writel(ehci, temp1 & ~HOSTPC_PHCD,
695 hostpc_reg);
696 mdelay(5);
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* resume signaling for 20 msec */
David Brownell10f65242005-08-31 10:55:38 -0700699 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100700 ehci_writel(ehci, temp | PORT_RESUME,
Alan Sterne6316562007-01-16 11:58:00 -0500701 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ehci->reset_done [wIndex] = jiffies
703 + msecs_to_jiffies (20);
704 }
705 break;
706 case USB_PORT_FEAT_C_SUSPEND:
Alan Sternd1f114d2008-05-20 16:58:58 -0400707 clear_bit(wIndex, &ehci->port_c_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
709 case USB_PORT_FEAT_POWER:
710 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100711 ehci_writel(ehci,
712 temp & ~(PORT_RWC_BITS | PORT_POWER),
Alan Sterne6316562007-01-16 11:58:00 -0500713 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
715 case USB_PORT_FEAT_C_CONNECTION:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100716 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
Alan Sterne6316562007-01-16 11:58:00 -0500717 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 break;
719 case USB_PORT_FEAT_C_OVER_CURRENT:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100720 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
Alan Sterne6316562007-01-16 11:58:00 -0500721 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 break;
723 case USB_PORT_FEAT_C_RESET:
724 /* GetPortStatus clears reset */
725 break;
726 default:
727 goto error;
728 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100729 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 break;
731 case GetHubDescriptor:
732 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
733 buf);
734 break;
735 case GetHubStatus:
736 /* no hub-wide feature/status flags */
737 memset (buf, 0, 4);
738 //cpu_to_le32s ((u32 *) buf);
739 break;
740 case GetPortStatus:
741 if (!wIndex || wIndex > ports)
742 goto error;
743 wIndex--;
744 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500745 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 // wPortChange bits
748 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -0500749 status |= USB_PORT_STAT_C_CONNECTION << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -0500751 status |= USB_PORT_STAT_C_ENABLE << 16;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700752
753 if ((temp & PORT_OCC) && !ignore_oc){
Alan Stern749da5f2010-03-04 17:05:08 -0500754 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700756 /*
757 * Hubs should disable port power on over-current.
758 * However, not all EHCI implementations do this
759 * automatically, even if they _do_ support per-port
760 * power switching; they're allowed to just limit the
761 * current. khubd will turn the power back on.
762 */
763 if (HCS_PPC (ehci->hcs_params)){
764 ehci_writel(ehci,
765 temp & ~(PORT_RWC_BITS | PORT_POWER),
766 status_reg);
767 }
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* whoever resumes must GetPortStatus to complete it!! */
Alan Stern629e4422007-01-22 16:08:53 -0500771 if (temp & PORT_RESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Alan Stern629e4422007-01-22 16:08:53 -0500773 /* Remote Wakeup received? */
774 if (!ehci->reset_done[wIndex]) {
775 /* resume signaling for 20 msec */
776 ehci->reset_done[wIndex] = jiffies
777 + msecs_to_jiffies(20);
778 /* check the port again */
779 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
780 ehci->reset_done[wIndex]);
781 }
782
783 /* resume completed? */
784 else if (time_after_eq(jiffies,
785 ehci->reset_done[wIndex])) {
Alan Sterneafe5b92008-10-06 11:25:53 -0400786 clear_bit(wIndex, &ehci->suspended_ports);
Alan Sternd1f114d2008-05-20 16:58:58 -0400787 set_bit(wIndex, &ehci->port_c_suspend);
Alan Stern629e4422007-01-22 16:08:53 -0500788 ehci->reset_done[wIndex] = 0;
789
790 /* stop resume signaling */
791 temp = ehci_readl(ehci, status_reg);
792 ehci_writel(ehci,
Alan Sterne6316562007-01-16 11:58:00 -0500793 temp & ~(PORT_RWC_BITS | PORT_RESUME),
794 status_reg);
Alan Stern629e4422007-01-22 16:08:53 -0500795 retval = handshake(ehci, status_reg,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100796 PORT_RESUME, 0, 2000 /* 2msec */);
Alan Stern629e4422007-01-22 16:08:53 -0500797 if (retval != 0) {
798 ehci_err(ehci,
799 "port %d resume error %d\n",
800 wIndex + 1, retval);
801 goto error;
802 }
803 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806
807 /* whoever resets must GetPortStatus to complete it!! */
808 if ((temp & PORT_RESET)
Alan Stern629e4422007-01-22 16:08:53 -0500809 && time_after_eq(jiffies,
810 ehci->reset_done[wIndex])) {
Alan Stern749da5f2010-03-04 17:05:08 -0500811 status |= USB_PORT_STAT_C_RESET << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 ehci->reset_done [wIndex] = 0;
813
814 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100815 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -0500816 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -0700817 /* REVISIT: some hardware needs 550+ usec to clear
818 * this bit; seems too long to spin routinely...
819 */
Alan Sterne6316562007-01-16 11:58:00 -0500820 retval = handshake(ehci, status_reg,
Dinh Nguyen6307e092010-04-13 11:13:15 -0500821 PORT_RESET, 0, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (retval != 0) {
823 ehci_err (ehci, "port %d reset error %d\n",
824 wIndex + 1, retval);
825 goto error;
826 }
827
828 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -0500829 temp = check_reset_complete (ehci, wIndex, status_reg,
830 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
Alan Sterneafe5b92008-10-06 11:25:53 -0400833 if (!(temp & (PORT_RESUME|PORT_RESET)))
834 ehci->reset_done[wIndex] = 0;
835
Alan Stern57e06c12007-01-16 11:59:45 -0500836 /* transfer dedicated ports to the companion hc */
837 if ((temp & PORT_CONNECT) &&
838 test_bit(wIndex, &ehci->companion_ports)) {
839 temp &= ~PORT_RWC_BITS;
840 temp |= PORT_OWNER;
841 ehci_writel(ehci, temp, status_reg);
842 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
843 temp = ehci_readl(ehci, status_reg);
844 }
845
Alan Stern625b5c92007-01-16 11:58:47 -0500846 /*
847 * Even if OWNER is set, there's no harm letting khubd
848 * see the wPortStatus values (they should all be 0 except
849 * for PORT_POWER anyway).
850 */
851
852 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -0500853 status |= USB_PORT_STAT_CONNECTION;
Alan Stern625b5c92007-01-16 11:58:47 -0500854 // status may be from integrated TT
Alek Du331ac6b2009-07-13 12:41:20 +0800855 if (ehci->has_hostpc) {
856 temp1 = ehci_readl(ehci, hostpc_reg);
857 status |= ehci_port_speed(ehci, temp1);
858 } else
859 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Alan Stern625b5c92007-01-16 11:58:47 -0500861 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -0500862 status |= USB_PORT_STAT_ENABLE;
Alan Sterneafe5b92008-10-06 11:25:53 -0400863
864 /* maybe the port was unsuspended without our knowledge */
865 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
Alan Stern749da5f2010-03-04 17:05:08 -0500866 status |= USB_PORT_STAT_SUSPEND;
Alan Sterneafe5b92008-10-06 11:25:53 -0400867 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
868 clear_bit(wIndex, &ehci->suspended_ports);
869 ehci->reset_done[wIndex] = 0;
870 if (temp & PORT_PE)
871 set_bit(wIndex, &ehci->port_c_suspend);
872 }
873
Alan Stern625b5c92007-01-16 11:58:47 -0500874 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -0500875 status |= USB_PORT_STAT_OVERCURRENT;
Alan Stern625b5c92007-01-16 11:58:47 -0500876 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -0500877 status |= USB_PORT_STAT_RESET;
Alan Stern625b5c92007-01-16 11:58:47 -0500878 if (temp & PORT_POWER)
Alan Stern749da5f2010-03-04 17:05:08 -0500879 status |= USB_PORT_STAT_POWER;
Alan Sternd1f114d2008-05-20 16:58:58 -0400880 if (test_bit(wIndex, &ehci->port_c_suspend))
Alan Stern749da5f2010-03-04 17:05:08 -0500881 status |= USB_PORT_STAT_C_SUSPEND << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
David Brownell9776afc2008-02-01 11:42:05 -0800883#ifndef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (status & ~0xffff) /* only if wPortChange is interesting */
885#endif
886 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700887 put_unaligned_le32(status, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 break;
889 case SetHubFeature:
890 switch (wValue) {
891 case C_HUB_LOCAL_POWER:
892 case C_HUB_OVER_CURRENT:
893 /* no hub-wide feature/status flags */
894 break;
895 default:
896 goto error;
897 }
898 break;
899 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -0800900 selector = wIndex >> 8;
901 wIndex &= 0xff;
Jason Wessel8d053c72009-08-20 15:39:54 -0500902 if (unlikely(ehci->debug)) {
903 /* If the debug port is active any port
904 * feature requests should get denied */
905 if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) &&
906 (readl(&ehci->debug->control) & DBGP_ENABLED)) {
907 retval = -ENODEV;
908 goto error_exit;
909 }
910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!wIndex || wIndex > ports)
912 goto error;
913 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500914 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (temp & PORT_OWNER)
916 break;
917
David Brownell10f65242005-08-31 10:55:38 -0700918 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 switch (wValue) {
920 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -0800921 if (ehci->no_selective_suspend)
922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if ((temp & PORT_PE) == 0
924 || (temp & PORT_RESET) != 0)
925 goto error;
Alek Dub9df79422010-01-19 16:31:31 +0800926
Alek Du331ac6b2009-07-13 12:41:20 +0800927 /* After above check the port must be connected.
928 * Set appropriate bit thus could put phy into low power
929 * mode if we have hostpc feature
930 */
Alek Dub9df79422010-01-19 16:31:31 +0800931 temp &= ~PORT_WKCONN_E;
932 temp |= PORT_WKDISC_E | PORT_WKOC_E;
933 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Alek Du331ac6b2009-07-13 12:41:20 +0800934 if (hostpc_reg) {
Alek Dub9df79422010-01-19 16:31:31 +0800935 spin_unlock_irqrestore(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +0800936 msleep(5);/* 5ms for HCD enter low pwr mode */
Alek Dub9df79422010-01-19 16:31:31 +0800937 spin_lock_irqsave(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +0800938 temp1 = ehci_readl(ehci, hostpc_reg);
939 ehci_writel(ehci, temp1 | HOSTPC_PHCD,
940 hostpc_reg);
941 temp1 = ehci_readl(ehci, hostpc_reg);
942 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
943 wIndex, (temp1 & HOSTPC_PHCD) ?
944 "succeeded" : "failed");
945 }
Alan Sterneafe5b92008-10-06 11:25:53 -0400946 set_bit(wIndex, &ehci->suspended_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
948 case USB_PORT_FEAT_POWER:
949 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100950 ehci_writel(ehci, temp | PORT_POWER,
Alan Sterne6316562007-01-16 11:58:00 -0500951 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 break;
953 case USB_PORT_FEAT_RESET:
954 if (temp & PORT_RESUME)
955 goto error;
956 /* line status bits may report this as low speed,
957 * which can be fine if this root hub has a
958 * transaction translator built in.
959 */
960 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
961 && !ehci_is_TDI(ehci)
962 && PORT_USB11 (temp)) {
963 ehci_dbg (ehci,
964 "port %d low speed --> companion\n",
965 wIndex + 1);
966 temp |= PORT_OWNER;
967 } else {
968 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
969 temp |= PORT_RESET;
970 temp &= ~PORT_PE;
971
972 /*
973 * caller must wait, then call GetPortStatus
974 * usb 2.0 spec says 50 ms resets on root
975 */
976 ehci->reset_done [wIndex] = jiffies
977 + msecs_to_jiffies (50);
978 }
Alan Sterne6316562007-01-16 11:58:00 -0500979 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
David Brownellf0d7f272006-11-16 23:56:15 -0800981
982 /* For downstream facing ports (these): one hub port is put
983 * into test mode according to USB2 11.24.2.13, then the hub
984 * must be reset (which for root hub now means rmmod+modprobe,
985 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
986 * about the EHCI-specific stuff.
987 */
988 case USB_PORT_FEAT_TEST:
989 if (!selector || selector > 5)
990 goto error;
991 ehci_quiesce(ehci);
992 ehci_halt(ehci);
993 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -0500994 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -0800995 break;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 default:
998 goto error;
999 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001000 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 break;
1002
1003 default:
1004error:
1005 /* "stall" on error */
1006 retval = -EPIPE;
1007 }
Jason Wessel8d053c72009-08-20 15:39:54 -05001008error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 spin_unlock_irqrestore (&ehci->lock, flags);
1010 return retval;
1011}
Balaji Rao90da0962007-11-22 01:58:14 +05301012
1013static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
1014{
1015 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1016
1017 if (ehci_is_TDI(ehci))
1018 return;
1019 set_owner(ehci, --portnum, PORT_OWNER);
1020}
1021
Alan Stern3a311552008-05-20 16:58:29 -04001022static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
1023{
1024 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1025 u32 __iomem *reg;
1026
1027 if (ehci_is_TDI(ehci))
1028 return 0;
1029 reg = &ehci->regs->port_status[portnum - 1];
1030 return ehci_readl(ehci, reg) & PORT_OWNER;
1031}