blob: 4e065e556e4b802c8c83a507973fb31a56931460 [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 Stern383975d2007-05-04 11:52:40 -040031#ifdef CONFIG_USB_PERSIST
32
33static int ehci_hub_control(
34 struct usb_hcd *hcd,
35 u16 typeReq,
36 u16 wValue,
37 u16 wIndex,
38 char *buf,
39 u16 wLength
40);
41
42/* After a power loss, ports that were owned by the companion must be
43 * reset so that the companion can still own them.
44 */
45static void ehci_handover_companion_ports(struct ehci_hcd *ehci)
46{
47 u32 __iomem *reg;
48 u32 status;
49 int port;
50 __le32 buf;
51 struct usb_hcd *hcd = ehci_to_hcd(ehci);
52
53 if (!ehci->owned_ports)
54 return;
55
56 /* Give the connections some time to appear */
57 msleep(20);
58
59 port = HCS_N_PORTS(ehci->hcs_params);
60 while (port--) {
61 if (test_bit(port, &ehci->owned_ports)) {
62 reg = &ehci->regs->port_status[port];
Alan Stern3c519b82007-05-04 11:55:31 -040063 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Alan Stern383975d2007-05-04 11:52:40 -040064
65 /* Port already owned by companion? */
66 if (status & PORT_OWNER)
67 clear_bit(port, &ehci->owned_ports);
Alan Stern3c519b82007-05-04 11:55:31 -040068 else if (test_bit(port, &ehci->companion_ports))
69 ehci_writel(ehci, status & ~PORT_PE, reg);
Alan Stern383975d2007-05-04 11:52:40 -040070 else
71 ehci_hub_control(hcd, SetPortFeature,
72 USB_PORT_FEAT_RESET, port + 1,
73 NULL, 0);
74 }
75 }
76
77 if (!ehci->owned_ports)
78 return;
79 msleep(90); /* Wait for resets to complete */
80
81 port = HCS_N_PORTS(ehci->hcs_params);
82 while (port--) {
83 if (test_bit(port, &ehci->owned_ports)) {
84 ehci_hub_control(hcd, GetPortStatus,
85 0, port + 1,
86 (char *) &buf, sizeof(buf));
87
88 /* The companion should now own the port,
89 * but if something went wrong the port must not
90 * remain enabled.
91 */
92 reg = &ehci->regs->port_status[port];
93 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
94 if (status & PORT_OWNER)
95 ehci_writel(ehci, status | PORT_CSC, reg);
96 else {
97 ehci_dbg(ehci, "failed handover port %d: %x\n",
98 port + 1, status);
99 ehci_writel(ehci, status & ~PORT_PE, reg);
100 }
101 }
102 }
103
104 ehci->owned_ports = 0;
105}
106
107#else /* CONFIG_USB_PERSIST */
108
109static inline void ehci_handover_companion_ports(struct ehci_hcd *ehci)
110{ }
111
112#endif
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#ifdef CONFIG_PM
115
Alan Stern0c0382e2005-10-13 17:08:02 -0400116static int ehci_bus_suspend (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
119 int port;
Alan Stern8c033562006-11-09 14:42:16 -0500120 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Alan Stern8c774fe2007-02-01 16:09:59 -0500122 ehci_dbg(ehci, "suspend root hub\n");
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (time_before (jiffies, ehci->next_statechange))
125 msleep(5);
Alan Sternf8fa7572008-01-10 16:43:15 -0500126 del_timer_sync(&ehci->watchdog);
127 del_timer_sync(&ehci->iaa_watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 port = HCS_N_PORTS (ehci->hcs_params);
130 spin_lock_irq (&ehci->lock);
131
132 /* stop schedules, clean any completed work */
133 if (HC_IS_RUNNING(hcd->state)) {
134 ehci_quiesce (ehci);
135 hcd->state = HC_STATE_QUIESCING;
136 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100137 ehci->command = ehci_readl(ehci, &ehci->regs->command);
David Howells7d12e782006-10-05 14:55:46 +0100138 ehci_work(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Alan Stern8c033562006-11-09 14:42:16 -0500140 /* Unlike other USB host controller types, EHCI doesn't have
141 * any notion of "global" or bus-wide suspend. The driver has
142 * to manually suspend all the active unsuspended ports, and
143 * then manually resume them in the bus_resume() routine.
144 */
145 ehci->bus_suspended = 0;
Alan Stern383975d2007-05-04 11:52:40 -0400146 ehci->owned_ports = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 while (port--) {
148 u32 __iomem *reg = &ehci->regs->port_status [port];
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100149 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 u32 t2 = t1;
151
Alan Stern8c033562006-11-09 14:42:16 -0500152 /* keep track of which ports we suspend */
Alan Stern383975d2007-05-04 11:52:40 -0400153 if (t1 & PORT_OWNER)
154 set_bit(port, &ehci->owned_ports);
155 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 t2 |= PORT_SUSPEND;
Alan Stern8c033562006-11-09 14:42:16 -0500157 set_bit(port, &ehci->bus_suspended);
158 }
159
160 /* enable remote wakeup on all ports */
David Brownell2c1c3c42005-11-07 15:24:46 -0800161 if (device_may_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 t2 |= PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E;
163 else
164 t2 &= ~(PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E);
165
166 if (t1 != t2) {
167 ehci_vdbg (ehci, "port %d, %08x -> %08x\n",
168 port + 1, t1, t2);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100169 ehci_writel(ehci, t2, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171 }
172
Alan Sterncd930c92008-01-10 11:14:53 -0500173 /* Apparently some devices need a >= 1-uframe delay here */
174 if (ehci->bus_suspended)
175 udelay(150);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* turn off now-idle HC */
178 ehci_halt (ehci);
179 hcd->state = HC_STATE_SUSPENDED;
180
David Brownellcdc647a2008-04-02 13:40:20 -0700181 if (ehci->reclaim)
182 end_unlink_async(ehci);
183
Alan Stern8c033562006-11-09 14:42:16 -0500184 /* allow remote wakeup */
185 mask = INTR_MASK;
186 if (!device_may_wakeup(&hcd->self.root_hub->dev))
187 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100188 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
189 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
192 spin_unlock_irq (&ehci->lock);
193 return 0;
194}
195
196
197/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400198static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
201 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400202 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 if (time_before (jiffies, ehci->next_statechange))
206 msleep(5);
207 spin_lock_irq (&ehci->lock);
Alan Sterncfa59da2007-06-21 16:25:35 -0400208 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
209 spin_unlock_irq(&ehci->lock);
210 return -ESHUTDOWN;
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
David Brownellf03c17f2005-11-23 15:45:28 -0800213 /* Ideally and we've got a real resume here, and no port's power
214 * was lost. (For PCI, that means Vaux was maintained.) But we
215 * could instead be restoring a swsusp snapshot -- so that BIOS was
216 * the last user of the controller, not reset/pm hardware keeping
217 * state we gave to it.
218 */
Alan Stern383975d2007-05-04 11:52:40 -0400219 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
220 ehci_dbg(ehci, "resume root hub%s\n",
221 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800222
Alan Stern8c033562006-11-09 14:42:16 -0500223 /* at least some APM implementations will try to deliver
224 * IRQs right away, so delay them until we're ready.
225 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100226 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500227
228 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100229 ehci_writel(ehci, 0, &ehci->regs->segment);
230 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
231 ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* restore CMD_RUN, framelist size, and irq threshold */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100234 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Alan Sterne198a312007-03-15 15:54:30 -0400236 /* Some controller/firmware combinations need a delay during which
237 * they set up the port statuses. See Bugzilla #8190. */
238 mdelay(8);
239
Alan Stern8c033562006-11-09 14:42:16 -0500240 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 i = HCS_N_PORTS (ehci->hcs_params);
242 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100243 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
David Brownell10f65242005-08-31 10:55:38 -0700244 temp &= ~(PORT_RWC_BITS
245 | PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E);
Alan Stern8c033562006-11-09 14:42:16 -0500246 if (test_bit(i, &ehci->bus_suspended) &&
247 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 ehci->reset_done [i] = jiffies + msecs_to_jiffies (20);
249 temp |= PORT_RESUME;
250 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100251 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 i = HCS_N_PORTS (ehci->hcs_params);
254 mdelay (20);
255 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100256 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500257 if (test_bit(i, &ehci->bus_suspended) &&
258 (temp & PORT_SUSPEND)) {
259 temp &= ~(PORT_RWC_BITS | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100260 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500261 ehci_vdbg (ehci, "resumed port %d\n", i + 1);
262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100264 (void) ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* maybe re-activate the schedule(s) */
267 temp = 0;
268 if (ehci->async->qh_next.qh)
269 temp |= CMD_ASE;
270 if (ehci->periodic_sched)
271 temp |= CMD_PSE;
272 if (temp) {
273 ehci->command |= temp;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100274 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276
277 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
278 hcd->state = HC_STATE_RUNNING;
279
280 /* Now we can safely re-enable irqs */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100281 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 spin_unlock_irq (&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -0400284
285 if (!power_okay)
286 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
290#else
291
Alan Stern0c0382e2005-10-13 17:08:02 -0400292#define ehci_bus_suspend NULL
293#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295#endif /* CONFIG_PM */
296
297/*-------------------------------------------------------------------------*/
298
Alan Stern57e06c12007-01-16 11:59:45 -0500299/* Display the ports dedicated to the companion controller */
Tony Jones5a3201b2007-09-11 14:07:31 -0700300static ssize_t show_companion(struct device *dev,
301 struct device_attribute *attr,
302 char *buf)
Alan Stern57e06c12007-01-16 11:59:45 -0500303{
304 struct ehci_hcd *ehci;
305 int nports, index, n;
306 int count = PAGE_SIZE;
307 char *ptr = buf;
308
Tony Jones5a3201b2007-09-11 14:07:31 -0700309 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
Alan Stern57e06c12007-01-16 11:59:45 -0500310 nports = HCS_N_PORTS(ehci->hcs_params);
311
312 for (index = 0; index < nports; ++index) {
313 if (test_bit(index, &ehci->companion_ports)) {
314 n = scnprintf(ptr, count, "%d\n", index + 1);
315 ptr += n;
316 count -= n;
317 }
318 }
319 return ptr - buf;
320}
321
322/*
Balaji Rao90da0962007-11-22 01:58:14 +0530323 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500324 */
Balaji Rao90da0962007-11-22 01:58:14 +0530325static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500326{
Alan Stern57e06c12007-01-16 11:59:45 -0500327 u32 __iomem *status_reg;
328 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530329 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500330
Balaji Rao90da0962007-11-22 01:58:14 +0530331 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500332
333 /*
334 * The controller won't set the OWNER bit if the port is
335 * enabled, so this loop will sometimes require at least two
336 * iterations: one to disable the port and one to set OWNER.
337 */
Alan Stern57e06c12007-01-16 11:59:45 -0500338 for (try = 4; try > 0; --try) {
339 spin_lock_irq(&ehci->lock);
340 port_status = ehci_readl(ehci, status_reg);
341 if ((port_status & PORT_OWNER) == new_owner
342 || (port_status & (PORT_OWNER | PORT_CONNECT))
343 == 0)
344 try = 0;
345 else {
346 port_status ^= PORT_OWNER;
347 port_status &= ~(PORT_PE | PORT_RWC_BITS);
348 ehci_writel(ehci, port_status, status_reg);
349 }
350 spin_unlock_irq(&ehci->lock);
351 if (try > 1)
352 msleep(5);
353 }
Balaji Rao90da0962007-11-22 01:58:14 +0530354}
355
356/*
357 * Dedicate or undedicate a port to the companion controller.
358 * Syntax is "[-]portnum", where a leading '-' sign means
359 * return control of the port to the EHCI controller.
360 */
361static ssize_t store_companion(struct device *dev,
362 struct device_attribute *attr,
363 const char *buf, size_t count)
364{
365 struct ehci_hcd *ehci;
366 int portnum, new_owner;
367
368 ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev)));
369 new_owner = PORT_OWNER; /* Owned by companion */
370 if (sscanf(buf, "%d", &portnum) != 1)
371 return -EINVAL;
372 if (portnum < 0) {
373 portnum = - portnum;
374 new_owner = 0; /* Owned by EHCI */
375 }
376 if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params))
377 return -ENOENT;
378 portnum--;
379 if (new_owner)
380 set_bit(portnum, &ehci->companion_ports);
381 else
382 clear_bit(portnum, &ehci->companion_ports);
383 set_owner(ehci, portnum, new_owner);
Alan Stern57e06c12007-01-16 11:59:45 -0500384 return count;
385}
Tony Jones5a3201b2007-09-11 14:07:31 -0700386static DEVICE_ATTR(companion, 0644, show_companion, store_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500387
388static inline void create_companion_file(struct ehci_hcd *ehci)
389{
390 int i;
391
392 /* with integrated TT there is no companion! */
393 if (!ehci_is_TDI(ehci))
Tony Jones5a3201b2007-09-11 14:07:31 -0700394 i = device_create_file(ehci_to_hcd(ehci)->self.dev,
395 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500396}
397
398static inline void remove_companion_file(struct ehci_hcd *ehci)
399{
400 /* with integrated TT there is no companion! */
401 if (!ehci_is_TDI(ehci))
Tony Jones5a3201b2007-09-11 14:07:31 -0700402 device_remove_file(ehci_to_hcd(ehci)->self.dev,
403 &dev_attr_companion);
Alan Stern57e06c12007-01-16 11:59:45 -0500404}
405
406
407/*-------------------------------------------------------------------------*/
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static int check_reset_complete (
410 struct ehci_hcd *ehci,
411 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500412 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int port_status
414) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800415 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* if reset finished and it's still not enabled -- handoff */
419 if (!(port_status & PORT_PE)) {
420
421 /* with integrated TT, there's nobody to hand it to! */
422 if (ehci_is_TDI(ehci)) {
423 ehci_dbg (ehci,
424 "Failed to enable port %d on root hub TT\n",
425 index+1);
426 return port_status;
427 }
428
429 ehci_dbg (ehci, "port %d full speed --> companion\n",
430 index + 1);
431
432 // what happens if HCS_N_CC(params) == 0 ?
433 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700434 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500435 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 } else
438 ehci_dbg (ehci, "port %d high speed\n", index + 1);
439
440 return port_status;
441}
442
443/*-------------------------------------------------------------------------*/
444
445
446/* build "status change" packet (one or two bytes) from HC registers */
447
448static int
449ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
450{
451 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
452 u32 temp, status = 0;
David Brownell93f1a472006-11-16 23:34:58 -0800453 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int ports, i, retval = 1;
455 unsigned long flags;
456
457 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
458 if (!HC_IS_RUNNING(hcd->state))
459 return 0;
460
461 /* init status to no-changes */
462 buf [0] = 0;
463 ports = HCS_N_PORTS (ehci->hcs_params);
464 if (ports > 7) {
465 buf [1] = 0;
466 retval++;
467 }
David Brownell53bd6a62006-08-30 14:50:06 -0700468
David Brownell93f1a472006-11-16 23:34:58 -0800469 /* Some boards (mostly VIA?) report bogus overcurrent indications,
470 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200471 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800472 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
473 * PORT_POWER; that's surprising, but maybe within-spec.
474 */
475 if (!ignore_oc)
476 mask = PORT_CSC | PORT_PEC | PORT_OCC;
477 else
478 mask = PORT_CSC | PORT_PEC;
479 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /* no hub change reports (bit 0) for now (power, ...) */
482
483 /* port N changes (bit N)? */
484 spin_lock_irqsave (&ehci->lock, flags);
485 for (i = 0; i < ports; i++) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100486 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern625b5c92007-01-16 11:58:47 -0500487
488 /*
489 * Return status information even for ports with OWNER set.
490 * Otherwise khubd wouldn't see the disconnect event when a
491 * high-speed device is switched over to the companion
492 * controller by the user.
493 */
494
David Brownell93f1a472006-11-16 23:34:58 -0800495 if ((temp & mask) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 || ((temp & PORT_RESUME) != 0
Alan Stern629e4422007-01-22 16:08:53 -0500497 && time_after_eq(jiffies,
498 ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (i < 7)
500 buf [0] |= 1 << (i + 1);
501 else
502 buf [1] |= 1 << (i - 7);
503 status = STS_PCD;
504 }
505 }
506 /* FIXME autosuspend idle root hubs */
507 spin_unlock_irqrestore (&ehci->lock, flags);
508 return status ? retval : 0;
509}
510
511/*-------------------------------------------------------------------------*/
512
513static void
514ehci_hub_descriptor (
515 struct ehci_hcd *ehci,
516 struct usb_hub_descriptor *desc
517) {
518 int ports = HCS_N_PORTS (ehci->hcs_params);
519 u16 temp;
520
521 desc->bDescriptorType = 0x29;
522 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
523 desc->bHubContrCurrent = 0;
524
525 desc->bNbrPorts = ports;
526 temp = 1 + (ports / 8);
527 desc->bDescLength = 7 + 2 * temp;
528
529 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
530 memset (&desc->bitmap [0], 0, temp);
531 memset (&desc->bitmap [temp], 0xff, temp);
532
533 temp = 0x0008; /* per-port overcurrent reporting */
534 if (HCS_PPC (ehci->hcs_params))
535 temp |= 0x0001; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700536 else
537 temp |= 0x0002; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#if 0
539// re-enable when we support USB_PORT_FEAT_INDICATOR below.
540 if (HCS_INDICATOR (ehci->hcs_params))
541 temp |= 0x0080; /* per-port indicators (LEDs) */
542#endif
543 desc->wHubCharacteristics = (__force __u16)cpu_to_le16 (temp);
544}
545
546/*-------------------------------------------------------------------------*/
547
David Brownell53bd6a62006-08-30 14:50:06 -0700548#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550static int ehci_hub_control (
551 struct usb_hcd *hcd,
552 u16 typeReq,
553 u16 wValue,
554 u16 wIndex,
555 char *buf,
556 u16 wLength
557) {
558 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
559 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern383975d2007-05-04 11:52:40 -0400560 u32 __iomem *status_reg = &ehci->regs->port_status[
561 (wIndex & 0xff) - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 u32 temp, status;
563 unsigned long flags;
564 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800565 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /*
568 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
569 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
570 * (track current state ourselves) ... blink for diagnostics,
571 * power, "this is the one", etc. EHCI spec supports this.
572 */
573
574 spin_lock_irqsave (&ehci->lock, flags);
575 switch (typeReq) {
576 case ClearHubFeature:
577 switch (wValue) {
578 case C_HUB_LOCAL_POWER:
579 case C_HUB_OVER_CURRENT:
580 /* no hub-wide feature/status flags */
581 break;
582 default:
583 goto error;
584 }
585 break;
586 case ClearPortFeature:
587 if (!wIndex || wIndex > ports)
588 goto error;
589 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500590 temp = ehci_readl(ehci, status_reg);
Alan Stern625b5c92007-01-16 11:58:47 -0500591
592 /*
593 * Even if OWNER is set, so the port is owned by the
594 * companion controller, khubd needs to be able to clear
595 * the port-change status bits (especially
596 * USB_PORT_FEAT_C_CONNECTION).
597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 switch (wValue) {
600 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500601 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 break;
603 case USB_PORT_FEAT_C_ENABLE:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100604 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC,
Alan Sterne6316562007-01-16 11:58:00 -0500605 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607 case USB_PORT_FEAT_SUSPEND:
608 if (temp & PORT_RESET)
609 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800610 if (ehci->no_selective_suspend)
611 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (temp & PORT_SUSPEND) {
613 if ((temp & PORT_PE) == 0)
614 goto error;
615 /* resume signaling for 20 msec */
David Brownell10f65242005-08-31 10:55:38 -0700616 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100617 ehci_writel(ehci, temp | PORT_RESUME,
Alan Sterne6316562007-01-16 11:58:00 -0500618 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 ehci->reset_done [wIndex] = jiffies
620 + msecs_to_jiffies (20);
621 }
622 break;
623 case USB_PORT_FEAT_C_SUSPEND:
624 /* we auto-clear this feature */
625 break;
626 case USB_PORT_FEAT_POWER:
627 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100628 ehci_writel(ehci,
629 temp & ~(PORT_RWC_BITS | PORT_POWER),
Alan Sterne6316562007-01-16 11:58:00 -0500630 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 case USB_PORT_FEAT_C_CONNECTION:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100633 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC,
Alan Sterne6316562007-01-16 11:58:00 -0500634 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636 case USB_PORT_FEAT_C_OVER_CURRENT:
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100637 ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC,
Alan Sterne6316562007-01-16 11:58:00 -0500638 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 break;
640 case USB_PORT_FEAT_C_RESET:
641 /* GetPortStatus clears reset */
642 break;
643 default:
644 goto error;
645 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100646 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648 case GetHubDescriptor:
649 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
650 buf);
651 break;
652 case GetHubStatus:
653 /* no hub-wide feature/status flags */
654 memset (buf, 0, 4);
655 //cpu_to_le32s ((u32 *) buf);
656 break;
657 case GetPortStatus:
658 if (!wIndex || wIndex > ports)
659 goto error;
660 wIndex--;
661 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500662 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 // wPortChange bits
665 if (temp & PORT_CSC)
666 status |= 1 << USB_PORT_FEAT_C_CONNECTION;
667 if (temp & PORT_PEC)
668 status |= 1 << USB_PORT_FEAT_C_ENABLE;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700669
670 if ((temp & PORT_OCC) && !ignore_oc){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 status |= 1 << USB_PORT_FEAT_C_OVER_CURRENT;
672
Christian Engelmayer756aa6b2007-05-30 11:04:48 -0700673 /*
674 * Hubs should disable port power on over-current.
675 * However, not all EHCI implementations do this
676 * automatically, even if they _do_ support per-port
677 * power switching; they're allowed to just limit the
678 * current. khubd will turn the power back on.
679 */
680 if (HCS_PPC (ehci->hcs_params)){
681 ehci_writel(ehci,
682 temp & ~(PORT_RWC_BITS | PORT_POWER),
683 status_reg);
684 }
685 }
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /* whoever resumes must GetPortStatus to complete it!! */
Alan Stern629e4422007-01-22 16:08:53 -0500688 if (temp & PORT_RESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Alan Stern629e4422007-01-22 16:08:53 -0500690 /* Remote Wakeup received? */
691 if (!ehci->reset_done[wIndex]) {
692 /* resume signaling for 20 msec */
693 ehci->reset_done[wIndex] = jiffies
694 + msecs_to_jiffies(20);
695 /* check the port again */
696 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
697 ehci->reset_done[wIndex]);
698 }
699
700 /* resume completed? */
701 else if (time_after_eq(jiffies,
702 ehci->reset_done[wIndex])) {
703 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
704 ehci->reset_done[wIndex] = 0;
705
706 /* stop resume signaling */
707 temp = ehci_readl(ehci, status_reg);
708 ehci_writel(ehci,
Alan Sterne6316562007-01-16 11:58:00 -0500709 temp & ~(PORT_RWC_BITS | PORT_RESUME),
710 status_reg);
Alan Stern629e4422007-01-22 16:08:53 -0500711 retval = handshake(ehci, status_reg,
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100712 PORT_RESUME, 0, 2000 /* 2msec */);
Alan Stern629e4422007-01-22 16:08:53 -0500713 if (retval != 0) {
714 ehci_err(ehci,
715 "port %d resume error %d\n",
716 wIndex + 1, retval);
717 goto error;
718 }
719 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
723 /* whoever resets must GetPortStatus to complete it!! */
724 if ((temp & PORT_RESET)
Alan Stern629e4422007-01-22 16:08:53 -0500725 && time_after_eq(jiffies,
726 ehci->reset_done[wIndex])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 status |= 1 << USB_PORT_FEAT_C_RESET;
728 ehci->reset_done [wIndex] = 0;
729
730 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100731 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -0500732 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -0700733 /* REVISIT: some hardware needs 550+ usec to clear
734 * this bit; seems too long to spin routinely...
735 */
Alan Sterne6316562007-01-16 11:58:00 -0500736 retval = handshake(ehci, status_reg,
David Brownellc22fa3a2005-06-13 07:15:28 -0700737 PORT_RESET, 0, 750);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (retval != 0) {
739 ehci_err (ehci, "port %d reset error %d\n",
740 wIndex + 1, retval);
741 goto error;
742 }
743
744 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -0500745 temp = check_reset_complete (ehci, wIndex, status_reg,
746 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Alan Stern57e06c12007-01-16 11:59:45 -0500749 /* transfer dedicated ports to the companion hc */
750 if ((temp & PORT_CONNECT) &&
751 test_bit(wIndex, &ehci->companion_ports)) {
752 temp &= ~PORT_RWC_BITS;
753 temp |= PORT_OWNER;
754 ehci_writel(ehci, temp, status_reg);
755 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
756 temp = ehci_readl(ehci, status_reg);
757 }
758
Alan Stern625b5c92007-01-16 11:58:47 -0500759 /*
760 * Even if OWNER is set, there's no harm letting khubd
761 * see the wPortStatus values (they should all be 0 except
762 * for PORT_POWER anyway).
763 */
764
765 if (temp & PORT_CONNECT) {
766 status |= 1 << USB_PORT_FEAT_CONNECTION;
767 // status may be from integrated TT
768 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Alan Stern625b5c92007-01-16 11:58:47 -0500770 if (temp & PORT_PE)
771 status |= 1 << USB_PORT_FEAT_ENABLE;
772 if (temp & (PORT_SUSPEND|PORT_RESUME))
773 status |= 1 << USB_PORT_FEAT_SUSPEND;
774 if (temp & PORT_OC)
775 status |= 1 << USB_PORT_FEAT_OVER_CURRENT;
776 if (temp & PORT_RESET)
777 status |= 1 << USB_PORT_FEAT_RESET;
778 if (temp & PORT_POWER)
779 status |= 1 << USB_PORT_FEAT_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781#ifndef EHCI_VERBOSE_DEBUG
782 if (status & ~0xffff) /* only if wPortChange is interesting */
783#endif
784 dbg_port (ehci, "GetStatus", wIndex + 1, temp);
Max Dmitrichenko64543652007-03-06 02:45:01 +0300785 put_unaligned(cpu_to_le32 (status), (__le32 *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 break;
787 case SetHubFeature:
788 switch (wValue) {
789 case C_HUB_LOCAL_POWER:
790 case C_HUB_OVER_CURRENT:
791 /* no hub-wide feature/status flags */
792 break;
793 default:
794 goto error;
795 }
796 break;
797 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -0800798 selector = wIndex >> 8;
799 wIndex &= 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (!wIndex || wIndex > ports)
801 goto error;
802 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500803 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (temp & PORT_OWNER)
805 break;
806
David Brownell10f65242005-08-31 10:55:38 -0700807 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 switch (wValue) {
809 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -0800810 if (ehci->no_selective_suspend)
811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if ((temp & PORT_PE) == 0
813 || (temp & PORT_RESET) != 0)
814 goto error;
David Brownell2c1c3c42005-11-07 15:24:46 -0800815 if (device_may_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 temp |= PORT_WAKE_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500817 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 break;
819 case USB_PORT_FEAT_POWER:
820 if (HCS_PPC (ehci->hcs_params))
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100821 ehci_writel(ehci, temp | PORT_POWER,
Alan Sterne6316562007-01-16 11:58:00 -0500822 status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
824 case USB_PORT_FEAT_RESET:
825 if (temp & PORT_RESUME)
826 goto error;
827 /* line status bits may report this as low speed,
828 * which can be fine if this root hub has a
829 * transaction translator built in.
830 */
831 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
832 && !ehci_is_TDI(ehci)
833 && PORT_USB11 (temp)) {
834 ehci_dbg (ehci,
835 "port %d low speed --> companion\n",
836 wIndex + 1);
837 temp |= PORT_OWNER;
838 } else {
839 ehci_vdbg (ehci, "port %d reset\n", wIndex + 1);
840 temp |= PORT_RESET;
841 temp &= ~PORT_PE;
842
843 /*
844 * caller must wait, then call GetPortStatus
845 * usb 2.0 spec says 50 ms resets on root
846 */
847 ehci->reset_done [wIndex] = jiffies
848 + msecs_to_jiffies (50);
849 }
Alan Sterne6316562007-01-16 11:58:00 -0500850 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 break;
David Brownellf0d7f272006-11-16 23:56:15 -0800852
853 /* For downstream facing ports (these): one hub port is put
854 * into test mode according to USB2 11.24.2.13, then the hub
855 * must be reset (which for root hub now means rmmod+modprobe,
856 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
857 * about the EHCI-specific stuff.
858 */
859 case USB_PORT_FEAT_TEST:
860 if (!selector || selector > 5)
861 goto error;
862 ehci_quiesce(ehci);
863 ehci_halt(ehci);
864 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -0500865 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -0800866 break;
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 default:
869 goto error;
870 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100871 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873
874 default:
875error:
876 /* "stall" on error */
877 retval = -EPIPE;
878 }
879 spin_unlock_irqrestore (&ehci->lock, flags);
880 return retval;
881}
Balaji Rao90da0962007-11-22 01:58:14 +0530882
883static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
884{
885 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
886
887 if (ehci_is_TDI(ehci))
888 return;
889 set_owner(ehci, --portnum, PORT_OWNER);
890}
891