blob: c75d9270c752921ee8751e2106ce522c6db2ee85 [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
199 msleep(5);/* 5ms for HCD enter low pwr mode */
200 t3 = ehci_readl(ehci, hostpc_reg);
201 ehci_writel(ehci, t3 | HOSTPC_PHCD, hostpc_reg);
202 t3 = ehci_readl(ehci, hostpc_reg);
203 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
204 port, (t3 & HOSTPC_PHCD) ?
205 "succeeded" : "failed");
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208 }
209
Alan Sterncd930c92008-01-10 11:14:53 -0500210 /* Apparently some devices need a >= 1-uframe delay here */
211 if (ehci->bus_suspended)
212 udelay(150);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* turn off now-idle HC */
215 ehci_halt (ehci);
216 hcd->state = HC_STATE_SUSPENDED;
217
David Brownellcdc647a2008-04-02 13:40:20 -0700218 if (ehci->reclaim)
219 end_unlink_async(ehci);
220
Alan Stern8c033562006-11-09 14:42:16 -0500221 /* allow remote wakeup */
222 mask = INTR_MASK;
Alan Stern58a97ff2008-04-14 12:17:10 -0400223 if (!hcd->self.root_hub->do_remote_wakeup)
Alan Stern8c033562006-11-09 14:42:16 -0500224 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100225 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
226 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
229 spin_unlock_irq (&ehci->lock);
Jon Hunter015798b2009-08-12 11:57:59 -0400230
231 /* ehci_work() may have re-enabled the watchdog timer, which we do not
232 * want, and so we must delete any pending watchdog timer events.
233 */
234 del_timer_sync(&ehci->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return 0;
236}
237
238
239/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400240static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
243 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400244 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int i;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530246 u8 resume_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (time_before (jiffies, ehci->next_statechange))
249 msleep(5);
250 spin_lock_irq (&ehci->lock);
Alan Sterncfa59da2007-06-21 16:25:35 -0400251 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
252 spin_unlock_irq(&ehci->lock);
253 return -ESHUTDOWN;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jason Wesselad45f1d2009-08-20 15:39:58 -0500256 if (unlikely(ehci->debug)) {
Jason Wessel872d3592009-09-23 18:32:44 -0500257 if (!dbgp_reset_prep())
Jason Wesselad45f1d2009-08-20 15:39:58 -0500258 ehci->debug = NULL;
259 else
260 dbgp_external_startup();
261 }
262
David Brownellf03c17f2005-11-23 15:45:28 -0800263 /* Ideally and we've got a real resume here, and no port's power
264 * was lost. (For PCI, that means Vaux was maintained.) But we
265 * could instead be restoring a swsusp snapshot -- so that BIOS was
266 * the last user of the controller, not reset/pm hardware keeping
267 * state we gave to it.
268 */
Alan Stern383975d2007-05-04 11:52:40 -0400269 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
270 ehci_dbg(ehci, "resume root hub%s\n",
271 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800272
Alan Stern8c033562006-11-09 14:42:16 -0500273 /* at least some APM implementations will try to deliver
274 * IRQs right away, so delay them until we're ready.
275 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100276 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500277
278 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100279 ehci_writel(ehci, 0, &ehci->regs->segment);
280 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
281 ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* restore CMD_RUN, framelist size, and irq threshold */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100284 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Alan Sterne198a312007-03-15 15:54:30 -0400286 /* Some controller/firmware combinations need a delay during which
287 * they set up the port statuses. See Bugzilla #8190. */
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530288 spin_unlock_irq(&ehci->lock);
289 msleep(8);
290 spin_lock_irq(&ehci->lock);
Alan Sterne198a312007-03-15 15:54:30 -0400291
Alan Stern8c033562006-11-09 14:42:16 -0500292 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 i = HCS_N_PORTS (ehci->hcs_params);
294 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100295 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern58a97ff2008-04-14 12:17:10 -0400296 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Alan Stern8c033562006-11-09 14:42:16 -0500297 if (test_bit(i, &ehci->bus_suspended) &&
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530298 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 temp |= PORT_RESUME;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530300 resume_needed = 1;
301 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100302 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530304
305 /* msleep for 20ms only if code is trying to resume port */
306 if (resume_needed) {
307 spin_unlock_irq(&ehci->lock);
308 msleep(20);
309 spin_lock_irq(&ehci->lock);
310 }
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 i = HCS_N_PORTS (ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100314 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500315 if (test_bit(i, &ehci->bus_suspended) &&
316 (temp & PORT_SUSPEND)) {
317 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100318 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500319 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100322 (void) ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* maybe re-activate the schedule(s) */
325 temp = 0;
326 if (ehci->async->qh_next.qh)
327 temp |= CMD_ASE;
328 if (ehci->periodic_sched)
329 temp |= CMD_PSE;
330 if (temp) {
331 ehci->command |= temp;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100332 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
335 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
336 hcd->state = HC_STATE_RUNNING;
337
338 /* Now we can safely re-enable irqs */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100339 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 spin_unlock_irq (&ehci->lock);
Alan Stern3bb1af52008-03-03 15:15:36 -0500342 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
346#else
347
Alan Stern0c0382e2005-10-13 17:08:02 -0400348#define ehci_bus_suspend NULL
349#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351#endif /* CONFIG_PM */
352
353/*-------------------------------------------------------------------------*/
354
Alan Stern57e06c12007-01-16 11:59:45 -0500355/* Display the ports dedicated to the companion controller */
Tony Jones5a3201b2007-09-11 14:07:31 -0700356static ssize_t show_companion(struct device *dev,
357 struct device_attribute *attr,
358 char *buf)
Alan Stern57e06c12007-01-16 11:59:45 -0500359{
360 struct ehci_hcd *ehci;
361 int nports, index, n;
362 int count = PAGE_SIZE;
363 char *ptr = buf;
364
Tony Jones5a3201b2007-09-11 14:07:31 -0700365 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
Alan Stern57e06c12007-01-16 11:59:45 -0500366 nports = HCS_N_PORTS(ehci->hcs_params);
367
368 for (index = 0; index < nports; ++index) {
369 if (test_bit(index, &ehci->companion_ports)) {
370 n = scnprintf(ptr, count, "%d\n", index + 1);
371 ptr += n;
372 count -= n;
373 }
374 }
375 return ptr - buf;
376}
377
378/*
Balaji Rao90da0962007-11-22 01:58:14 +0530379 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500380 */
Balaji Rao90da0962007-11-22 01:58:14 +0530381static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500382{
Alan Stern57e06c12007-01-16 11:59:45 -0500383 u32 __iomem *status_reg;
384 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530385 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500386
Balaji Rao90da0962007-11-22 01:58:14 +0530387 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500388
389 /*
390 * The controller won't set the OWNER bit if the port is
391 * enabled, so this loop will sometimes require at least two
392 * iterations: one to disable the port and one to set OWNER.
393 */
Alan Stern57e06c12007-01-16 11:59:45 -0500394 for (try = 4; try > 0; --try) {
395 spin_lock_irq(&ehci->lock);
396 port_status = ehci_readl(ehci, status_reg);
397 if ((port_status & PORT_OWNER) == new_owner
398 || (port_status & (PORT_OWNER | PORT_CONNECT))
399 == 0)
400 try = 0;
401 else {
402 port_status ^= PORT_OWNER;
403 port_status &= ~(PORT_PE | PORT_RWC_BITS);
404 ehci_writel(ehci, port_status, status_reg);
405 }
406 spin_unlock_irq(&ehci->lock);
407 if (try > 1)
408 msleep(5);
409 }
Balaji Rao90da0962007-11-22 01:58:14 +0530410}
411
412/*
413 * Dedicate or undedicate a port to the companion controller.
414 * Syntax is "[-]portnum", where a leading '-' sign means
415 * return control of the port to the EHCI controller.
416 */
417static ssize_t store_companion(struct device *dev,
418 struct device_attribute *attr,
419 const char *buf, size_t count)
420{
421 struct ehci_hcd *ehci;
422 int portnum, new_owner;
423
424 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
425 new_owner = PORT_OWNER; /* Owned by companion */
426 if (sscanf(buf, "%d", &portnum) != 1)
427 return -EINVAL;
428 if (portnum < 0) {
429 portnum = - portnum;
430 new_owner = 0; /* Owned by EHCI */
431 }
432 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
433 return -ENOENT;
434 portnum--;
435 if (new_owner)
436 set_bit(portnum, &ehci->companion_ports);
437 else
438 clear_bit(portnum, &ehci->companion_ports);
439 set_owner(ehci, portnum, new_owner);
Alan Stern57e06c12007-01-16 11:59:45 -0500440 return count;
441}
Tony Jones5a3201b2007-09-11 14:07:31 -0700442static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500443
444static inline void create_companion_file(struct ehci_hcd *ehci)
445{
446 int i;
447
448 /* with integrated TT there is no companion! */
449 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700450 i = device_create_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700451 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500452}
453
454static inline void remove_companion_file(struct ehci_hcd *ehci)
455{
456 /* with integrated TT there is no companion! */
457 if (!ehci_is_TDI(ehci))
Greg Kroah-Hartmaned14f032009-04-27 13:15:38 -0700458 device_remove_file(ehci_to_hcd(ehci)->self.controller,
Tony Jones5a3201b2007-09-11 14:07:31 -0700459 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500460}
461
462
463/*-------------------------------------------------------------------------*/
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static int check_reset_complete (
466 struct ehci_hcd *ehci,
467 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500468 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int port_status
470) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800471 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 /* if reset finished and it's still not enabled -- handoff */
475 if (!(port_status & PORT_PE)) {
476
477 /* with integrated TT, there's nobody to hand it to! */
478 if (ehci_is_TDI(ehci)) {
479 ehci_dbg (ehci,
480 "Failed to enable port %d on root hub TT\n",
481 index+1);
482 return port_status;
483 }
484
485 ehci_dbg (ehci, "port %d full speed --> companion\n",
486 index + 1);
487
488 // what happens if HCS_N_CC(params) == 0 ?
489 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700490 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500491 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100493 /* ensure 440EPX ohci controller state is operational */
494 if (ehci->has_amcc_usb23)
495 set_ohci_hcfs(ehci, 1);
496 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 ehci_dbg (ehci, "port %d high speed\n", index + 1);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100498 /* ensure 440EPx ohci controller state is suspended */
499 if (ehci->has_amcc_usb23)
500 set_ohci_hcfs(ehci, 0);
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 return port_status;
504}
505
506/*-------------------------------------------------------------------------*/
507
508
509/* build "status change" packet (one or two bytes) from HC registers */
510
511static int
512ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
513{
514 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
515 u32 temp, status = 0;
David Brownell93f1a472006-11-16 23:34:58 -0800516 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int ports, i, retval = 1;
518 unsigned long flags;
519
520 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
521 if (!HC_IS_RUNNING(hcd->state))
522 return 0;
523
524 /* init status to no-changes */
525 buf [0] = 0;
526 ports = HCS_N_PORTS (ehci->hcs_params);
527 if (ports > 7) {
528 buf [1] = 0;
529 retval++;
530 }
David Brownell53bd6a62006-08-30 14:50:06 -0700531
David Brownell93f1a472006-11-16 23:34:58 -0800532 /* Some boards (mostly VIA?) report bogus overcurrent indications,
533 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200534 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800535 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
536 * PORT_POWER; that's surprising, but maybe within-spec.
537 */
538 if (!ignore_oc)
539 mask = PORT_CSC | PORT_PEC | PORT_OCC;
540 else
541 mask = PORT_CSC | PORT_PEC;
542 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* no hub change reports (bit 0) for now (power, ...) */
545
546 /* port N changes (bit N)? */
547 spin_lock_irqsave (&ehci->lock, flags);
548 for (i = 0; i < ports; i++) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100549 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern625b5c92007-01-16 11:58:47 -0500550
551 /*
552 * Return status information even for ports with OWNER set.
553 * Otherwise khubd wouldn't see the disconnect event when a
554 * high-speed device is switched over to the companion
555 * controller by the user.
556 */
557
Alan Sterneafe5b92008-10-06 11:25:53 -0400558 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
559 || (ehci->reset_done[i] && time_after_eq(
560 jiffies, ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (i < 7)
562 buf [0] |= 1 << (i + 1);
563 else
564 buf [1] |= 1 << (i - 7);
565 status = STS_PCD;
566 }
567 }
568 /* FIXME autosuspend idle root hubs */
569 spin_unlock_irqrestore (&ehci->lock, flags);
570 return status ? retval : 0;
571}
572
573/*-------------------------------------------------------------------------*/
574
575static void
576ehci_hub_descriptor (
577 struct ehci_hcd *ehci,
578 struct usb_hub_descriptor *desc
579) {
580 int ports = HCS_N_PORTS (ehci->hcs_params);
581 u16 temp;
582
583 desc->bDescriptorType = 0x29;
584 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
585 desc->bHubContrCurrent = 0;
586
587 desc->bNbrPorts = ports;
588 temp = 1 + (ports / 8);
589 desc->bDescLength = 7 + 2 * temp;
590
591 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
592 memset (&desc->bitmap [0], 0, temp);
593 memset (&desc->bitmap [temp], 0xff, temp);
594
595 temp = 0x0008; /* per-port overcurrent reporting */
596 if (HCS_PPC (ehci->hcs_params))
597 temp |= 0x0001; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700598 else
599 temp |= 0x0002; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#if 0
601// re-enable when we support USB_PORT_FEAT_INDICATOR below.
602 if (HCS_INDICATOR (ehci->hcs_params))
603 temp |= 0x0080; /* per-port indicators (LEDs) */
604#endif
Al Virofd05e722008-04-28 07:00:16 +0100605 desc->wHubCharacteristics = cpu_to_le16(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608/*-------------------------------------------------------------------------*/
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610static int ehci_hub_control (
611 struct usb_hcd *hcd,
612 u16 typeReq,
613 u16 wValue,
614 u16 wIndex,
615 char *buf,
616 u16 wLength
617) {
618 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
619 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern383975d2007-05-04 11:52:40 -0400620 u32 __iomem *status_reg = &ehci->regs->port_status[
621 (wIndex & 0xff) - 1];
Alek Du331ac6b2009-07-13 12:41:20 +0800622 u32 __iomem *hostpc_reg = NULL;
623 u32 temp, temp1, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 unsigned long flags;
625 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800626 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 /*
629 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
630 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
631 * (track current state ourselves) ... blink for diagnostics,
632 * power, "this is the one", etc. EHCI spec supports this.
633 */
634
Alek Du331ac6b2009-07-13 12:41:20 +0800635 if (ehci->has_hostpc)
636 hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs
637 + HOSTPC0 + 4 * ((wIndex & 0xff) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 spin_lock_irqsave (&ehci->lock, flags);
639 switch (typeReq) {
640 case ClearHubFeature:
641 switch (wValue) {
642 case C_HUB_LOCAL_POWER:
643 case C_HUB_OVER_CURRENT:
644 /* no hub-wide feature/status flags */
645 break;
646 default:
647 goto error;
648 }
649 break;
650 case ClearPortFeature:
651 if (!wIndex || wIndex > ports)
652 goto error;
653 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500654 temp = ehci_readl(ehci, status_reg);
Alan Stern625b5c92007-01-16 11:58:47 -0500655
656 /*
657 * Even if OWNER is set, so the port is owned by the
658 * companion controller, khubd needs to be able to clear
659 * the port-change status bits (especially
660 * USB_PORT_FEAT_C_CONNECTION).
661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 switch (wValue) {
664 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500665 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 break;
667 case USB_PORT_FEAT_C_ENABLE:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100668 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
Alan Sterne6316562007-01-16 11:58:00 -0500669 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
671 case USB_PORT_FEAT_SUSPEND:
672 if (temp & PORT_RESET)
673 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800674 if (ehci->no_selective_suspend)
675 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (temp & PORT_SUSPEND) {
677 if ((temp & PORT_PE) == 0)
678 goto error;
679 /* resume signaling for 20 msec */
David Brownell10f65242005-08-31 10:55:38 -0700680 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100681 ehci_writel(ehci, temp | PORT_RESUME,
Alan Sterne6316562007-01-16 11:58:00 -0500682 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ehci->reset_done [wIndex] = jiffies
684 + msecs_to_jiffies (20);
685 }
686 break;
687 case USB_PORT_FEAT_C_SUSPEND:
Alan Sternd1f114d2008-05-20 16:58:58 -0400688 clear_bit(wIndex, &ehci->port_c_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690 case USB_PORT_FEAT_POWER:
691 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100692 ehci_writel(ehci,
693 temp & ~(PORT_RWC_BITS | PORT_POWER),
Alan Sterne6316562007-01-16 11:58:00 -0500694 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 break;
696 case USB_PORT_FEAT_C_CONNECTION:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100697 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
Alan Sterne6316562007-01-16 11:58:00 -0500698 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 case USB_PORT_FEAT_C_OVER_CURRENT:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100701 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
Alan Sterne6316562007-01-16 11:58:00 -0500702 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
704 case USB_PORT_FEAT_C_RESET:
705 /* GetPortStatus clears reset */
706 break;
707 default:
708 goto error;
709 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100710 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
712 case GetHubDescriptor:
713 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
714 buf);
715 break;
716 case GetHubStatus:
717 /* no hub-wide feature/status flags */
718 memset (buf, 0, 4);
719 //cpu_to_le32s ((u32 *) buf);
720 break;
721 case GetPortStatus:
722 if (!wIndex || wIndex > ports)
723 goto error;
724 wIndex--;
725 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500726 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 // wPortChange bits
729 if (temp & PORT_CSC)
730 status |= 1 << USB_PORT_FEAT_C_CONNECTION;
731 if (temp & PORT_PEC)
732 status |= 1 << USB_PORT_FEAT_C_ENABLE;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700733
734 if ((temp & PORT_OCC) && !ignore_oc){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 status |= 1 << USB_PORT_FEAT_C_OVER_CURRENT;
736
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700737 /*
738 * Hubs should disable port power on over-current.
739 * However, not all EHCI implementations do this
740 * automatically, even if they _do_ support per-port
741 * power switching; they're allowed to just limit the
742 * current. khubd will turn the power back on.
743 */
744 if (HCS_PPC (ehci->hcs_params)){
745 ehci_writel(ehci,
746 temp & ~(PORT_RWC_BITS | PORT_POWER),
747 status_reg);
748 }
749 }
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* whoever resumes must GetPortStatus to complete it!! */
Alan Stern629e4422007-01-22 16:08:53 -0500752 if (temp & PORT_RESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Alan Stern629e4422007-01-22 16:08:53 -0500754 /* Remote Wakeup received? */
755 if (!ehci->reset_done[wIndex]) {
756 /* resume signaling for 20 msec */
757 ehci->reset_done[wIndex] = jiffies
758 + msecs_to_jiffies(20);
759 /* check the port again */
760 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
761 ehci->reset_done[wIndex]);
762 }
763
764 /* resume completed? */
765 else if (time_after_eq(jiffies,
766 ehci->reset_done[wIndex])) {
Alan Sterneafe5b92008-10-06 11:25:53 -0400767 clear_bit(wIndex, &ehci->suspended_ports);
Alan Sternd1f114d2008-05-20 16:58:58 -0400768 set_bit(wIndex, &ehci->port_c_suspend);
Alan Stern629e4422007-01-22 16:08:53 -0500769 ehci->reset_done[wIndex] = 0;
770
771 /* stop resume signaling */
772 temp = ehci_readl(ehci, status_reg);
773 ehci_writel(ehci,
Alan Sterne6316562007-01-16 11:58:00 -0500774 temp & ~(PORT_RWC_BITS | PORT_RESUME),
775 status_reg);
Alan Stern629e4422007-01-22 16:08:53 -0500776 retval = handshake(ehci, status_reg,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100777 PORT_RESUME, 0, 2000 /* 2msec */);
Alan Stern629e4422007-01-22 16:08:53 -0500778 if (retval != 0) {
779 ehci_err(ehci,
780 "port %d resume error %d\n",
781 wIndex + 1, retval);
782 goto error;
783 }
784 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 /* whoever resets must GetPortStatus to complete it!! */
789 if ((temp & PORT_RESET)
Alan Stern629e4422007-01-22 16:08:53 -0500790 && time_after_eq(jiffies,
791 ehci->reset_done[wIndex])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 status |= 1 << USB_PORT_FEAT_C_RESET;
793 ehci->reset_done [wIndex] = 0;
794
795 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100796 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -0500797 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -0700798 /* REVISIT: some hardware needs 550+ usec to clear
799 * this bit; seems too long to spin routinely...
800 */
Alan Sterne6316562007-01-16 11:58:00 -0500801 retval = handshake(ehci, status_reg,
David Brownellc22fa3a2005-06-13 07:15:28 -0700802 PORT_RESET, 0, 750);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (retval != 0) {
804 ehci_err (ehci, "port %d reset error %d\n",
805 wIndex + 1, retval);
806 goto error;
807 }
808
809 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -0500810 temp = check_reset_complete (ehci, wIndex, status_reg,
811 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
Alan Sterneafe5b92008-10-06 11:25:53 -0400814 if (!(temp & (PORT_RESUME|PORT_RESET)))
815 ehci->reset_done[wIndex] = 0;
816
Alan Stern57e06c12007-01-16 11:59:45 -0500817 /* transfer dedicated ports to the companion hc */
818 if ((temp & PORT_CONNECT) &&
819 test_bit(wIndex, &ehci->companion_ports)) {
820 temp &= ~PORT_RWC_BITS;
821 temp |= PORT_OWNER;
822 ehci_writel(ehci, temp, status_reg);
823 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
824 temp = ehci_readl(ehci, status_reg);
825 }
826
Alan Stern625b5c92007-01-16 11:58:47 -0500827 /*
828 * Even if OWNER is set, there's no harm letting khubd
829 * see the wPortStatus values (they should all be 0 except
830 * for PORT_POWER anyway).
831 */
832
833 if (temp & PORT_CONNECT) {
834 status |= 1 << USB_PORT_FEAT_CONNECTION;
835 // status may be from integrated TT
Alek Du331ac6b2009-07-13 12:41:20 +0800836 if (ehci->has_hostpc) {
837 temp1 = ehci_readl(ehci, hostpc_reg);
838 status |= ehci_port_speed(ehci, temp1);
839 } else
840 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Alan Stern625b5c92007-01-16 11:58:47 -0500842 if (temp & PORT_PE)
843 status |= 1 << USB_PORT_FEAT_ENABLE;
Alan Sterneafe5b92008-10-06 11:25:53 -0400844
845 /* maybe the port was unsuspended without our knowledge */
846 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
Alan Stern625b5c92007-01-16 11:58:47 -0500847 status |= 1 << USB_PORT_FEAT_SUSPEND;
Alan Sterneafe5b92008-10-06 11:25:53 -0400848 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
849 clear_bit(wIndex, &ehci->suspended_ports);
850 ehci->reset_done[wIndex] = 0;
851 if (temp & PORT_PE)
852 set_bit(wIndex, &ehci->port_c_suspend);
853 }
854
Alan Stern625b5c92007-01-16 11:58:47 -0500855 if (temp & PORT_OC)
856 status |= 1 << USB_PORT_FEAT_OVER_CURRENT;
857 if (temp & PORT_RESET)
858 status |= 1 << USB_PORT_FEAT_RESET;
859 if (temp & PORT_POWER)
860 status |= 1 << USB_PORT_FEAT_POWER;
Alan Sternd1f114d2008-05-20 16:58:58 -0400861 if (test_bit(wIndex, &ehci->port_c_suspend))
862 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
David Brownell9776afc2008-02-01 11:42:05 -0800864#ifndef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (status & ~0xffff) /* only if wPortChange is interesting */
866#endif
867 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700868 put_unaligned_le32(status, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
870 case SetHubFeature:
871 switch (wValue) {
872 case C_HUB_LOCAL_POWER:
873 case C_HUB_OVER_CURRENT:
874 /* no hub-wide feature/status flags */
875 break;
876 default:
877 goto error;
878 }
879 break;
880 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -0800881 selector = wIndex >> 8;
882 wIndex &= 0xff;
Jason Wessel8d053c72009-08-20 15:39:54 -0500883 if (unlikely(ehci->debug)) {
884 /* If the debug port is active any port
885 * feature requests should get denied */
886 if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) &&
887 (readl(&ehci->debug->control) & DBGP_ENABLED)) {
888 retval = -ENODEV;
889 goto error_exit;
890 }
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (!wIndex || wIndex > ports)
893 goto error;
894 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500895 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (temp & PORT_OWNER)
897 break;
898
David Brownell10f65242005-08-31 10:55:38 -0700899 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 switch (wValue) {
901 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -0800902 if (ehci->no_selective_suspend)
903 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if ((temp & PORT_PE) == 0
905 || (temp & PORT_RESET) != 0)
906 goto error;
Alan Sterne6316562007-01-16 11:58:00 -0500907 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Alek Du331ac6b2009-07-13 12:41:20 +0800908 /* After above check the port must be connected.
909 * Set appropriate bit thus could put phy into low power
910 * mode if we have hostpc feature
911 */
912 if (hostpc_reg) {
913 temp &= ~PORT_WKCONN_E;
914 temp |= (PORT_WKDISC_E | PORT_WKOC_E);
915 ehci_writel(ehci, temp | PORT_SUSPEND,
916 status_reg);
917 msleep(5);/* 5ms for HCD enter low pwr mode */
918 temp1 = ehci_readl(ehci, hostpc_reg);
919 ehci_writel(ehci, temp1 | HOSTPC_PHCD,
920 hostpc_reg);
921 temp1 = ehci_readl(ehci, hostpc_reg);
922 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
923 wIndex, (temp1 & HOSTPC_PHCD) ?
924 "succeeded" : "failed");
925 }
Alan Sterneafe5b92008-10-06 11:25:53 -0400926 set_bit(wIndex, &ehci->suspended_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
928 case USB_PORT_FEAT_POWER:
929 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100930 ehci_writel(ehci, temp | PORT_POWER,
Alan Sterne6316562007-01-16 11:58:00 -0500931 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 break;
933 case USB_PORT_FEAT_RESET:
934 if (temp & PORT_RESUME)
935 goto error;
936 /* line status bits may report this as low speed,
937 * which can be fine if this root hub has a
938 * transaction translator built in.
939 */
940 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
941 && !ehci_is_TDI(ehci)
942 && PORT_USB11 (temp)) {
943 ehci_dbg (ehci,
944 "port %d low speed --> companion\n",
945 wIndex + 1);
946 temp |= PORT_OWNER;
947 } else {
948 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
949 temp |= PORT_RESET;
950 temp &= ~PORT_PE;
951
952 /*
953 * caller must wait, then call GetPortStatus
954 * usb 2.0 spec says 50 ms resets on root
955 */
956 ehci->reset_done [wIndex] = jiffies
957 + msecs_to_jiffies (50);
958 }
Alan Sterne6316562007-01-16 11:58:00 -0500959 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 break;
David Brownellf0d7f272006-11-16 23:56:15 -0800961
962 /* For downstream facing ports (these): one hub port is put
963 * into test mode according to USB2 11.24.2.13, then the hub
964 * must be reset (which for root hub now means rmmod+modprobe,
965 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
966 * about the EHCI-specific stuff.
967 */
968 case USB_PORT_FEAT_TEST:
969 if (!selector || selector > 5)
970 goto error;
971 ehci_quiesce(ehci);
972 ehci_halt(ehci);
973 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -0500974 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -0800975 break;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 default:
978 goto error;
979 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100980 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
982
983 default:
984error:
985 /* "stall" on error */
986 retval = -EPIPE;
987 }
Jason Wessel8d053c72009-08-20 15:39:54 -0500988error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 spin_unlock_irqrestore (&ehci->lock, flags);
990 return retval;
991}
Balaji Rao90da0962007-11-22 01:58:14 +0530992
993static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
994{
995 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
996
997 if (ehci_is_TDI(ehci))
998 return;
999 set_owner(ehci, --portnum, PORT_OWNER);
1000}
1001
Alan Stern3a311552008-05-20 16:58:29 -04001002static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
1003{
1004 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1005 u32 __iomem *reg;
1006
1007 if (ehci_is_TDI(ehci))
1008 return 0;
1009 reg = &ehci->regs->port_status[portnum - 1];
1010 return ehci_readl(ehci, reg) & PORT_OWNER;
1011}