blob: 430e88fd3f6cd170261592175d51b6971406c1f2 [file] [log] [blame]
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Paul Gortmaker4bcbcc92011-07-18 14:42:00 -040023#include <linux/gfp.h>
Sarah Sharp0f2a7932009-04-27 19:57:12 -070024#include <asm/unaligned.h>
25
26#include "xhci.h"
27
Andiry Xu9777e3c2010-10-14 07:23:03 -070028#define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
29#define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_WRC | PORT_OCC | \
30 PORT_RC | PORT_PLC | PORT_PE)
31
Sarah Sharp48e82362011-10-06 11:54:23 -070032/* usb 1.1 root hub device descriptor */
33static u8 usb_bos_descriptor [] = {
34 USB_DT_BOS_SIZE, /* __u8 bLength, 5 bytes */
35 USB_DT_BOS, /* __u8 bDescriptorType */
36 0x0F, 0x00, /* __le16 wTotalLength, 15 bytes */
37 0x1, /* __u8 bNumDeviceCaps */
38 /* First device capability */
39 USB_DT_USB_SS_CAP_SIZE, /* __u8 bLength, 10 bytes */
40 USB_DT_DEVICE_CAPABILITY, /* Device Capability */
41 USB_SS_CAP_TYPE, /* bDevCapabilityType, SUPERSPEED_USB */
42 0x00, /* bmAttributes, LTM off by default */
43 USB_5GBPS_OPERATION, 0x00, /* wSpeedsSupported, 5Gbps only */
44 0x03, /* bFunctionalitySupport,
45 USB 3.0 speed only */
46 0x00, /* bU1DevExitLat, set later. */
47 0x00, 0x00 /* __le16 bU2DevExitLat, set later. */
48};
49
50
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080051static void xhci_common_hub_descriptor(struct xhci_hcd *xhci,
52 struct usb_hub_descriptor *desc, int ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -070053{
Sarah Sharp0f2a7932009-04-27 19:57:12 -070054 u16 temp;
55
Sarah Sharp0f2a7932009-04-27 19:57:12 -070056 desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.9 says 20ms max */
57 desc->bHubContrCurrent = 0;
58
59 desc->bNbrPorts = ports;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070060 /* Ugh, these should be #defines, FIXME */
61 /* Using table 11-13 in USB 2.0 spec. */
62 temp = 0;
63 /* Bits 1:0 - support port power switching, or power always on */
64 if (HCC_PPC(xhci->hcc_params))
65 temp |= 0x0001;
66 else
67 temp |= 0x0002;
68 /* Bit 2 - root hubs are not part of a compound device */
69 /* Bits 4:3 - individual port over current protection */
70 temp |= 0x0008;
71 /* Bits 6:5 - no TTs in root ports */
72 /* Bit 7 - no port indicators */
Matt Evans28ccd292011-03-29 13:40:46 +110073 desc->wHubCharacteristics = cpu_to_le16(temp);
Sarah Sharp0f2a7932009-04-27 19:57:12 -070074}
75
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080076/* Fill in the USB 2.0 roothub descriptor */
77static void xhci_usb2_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
78 struct usb_hub_descriptor *desc)
79{
80 int ports;
81 u16 temp;
82 __u8 port_removable[(USB_MAXCHILDREN + 1 + 7) / 8];
83 u32 portsc;
84 unsigned int i;
85
86 ports = xhci->num_usb2_ports;
87
88 xhci_common_hub_descriptor(xhci, desc, ports);
89 desc->bDescriptorType = 0x29;
90 temp = 1 + (ports / 8);
91 desc->bDescLength = 7 + 2 * temp;
92
93 /* The Device Removable bits are reported on a byte granularity.
94 * If the port doesn't exist within that byte, the bit is set to 0.
95 */
96 memset(port_removable, 0, sizeof(port_removable));
97 for (i = 0; i < ports; i++) {
98 portsc = xhci_readl(xhci, xhci->usb3_ports[i]);
99 /* If a device is removable, PORTSC reports a 0, same as in the
100 * hub descriptor DeviceRemovable bits.
101 */
102 if (portsc & PORT_DEV_REMOVE)
103 /* This math is hairy because bit 0 of DeviceRemovable
104 * is reserved, and bit 1 is for port 1, etc.
105 */
106 port_removable[(i + 1) / 8] |= 1 << ((i + 1) % 8);
107 }
108
109 /* ch11.h defines a hub descriptor that has room for USB_MAXCHILDREN
110 * ports on it. The USB 2.0 specification says that there are two
111 * variable length fields at the end of the hub descriptor:
112 * DeviceRemovable and PortPwrCtrlMask. But since we can have less than
113 * USB_MAXCHILDREN ports, we may need to use the DeviceRemovable array
114 * to set PortPwrCtrlMask bits. PortPwrCtrlMask must always be set to
115 * 0xFF, so we initialize the both arrays (DeviceRemovable and
116 * PortPwrCtrlMask) to 0xFF. Then we set the DeviceRemovable for each
117 * set of ports that actually exist.
118 */
119 memset(desc->u.hs.DeviceRemovable, 0xff,
120 sizeof(desc->u.hs.DeviceRemovable));
121 memset(desc->u.hs.PortPwrCtrlMask, 0xff,
122 sizeof(desc->u.hs.PortPwrCtrlMask));
123
124 for (i = 0; i < (ports + 1 + 7) / 8; i++)
125 memset(&desc->u.hs.DeviceRemovable[i], port_removable[i],
126 sizeof(__u8));
127}
128
129/* Fill in the USB 3.0 roothub descriptor */
130static void xhci_usb3_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
131 struct usb_hub_descriptor *desc)
132{
133 int ports;
134 u16 port_removable;
135 u32 portsc;
136 unsigned int i;
137
138 ports = xhci->num_usb3_ports;
139 xhci_common_hub_descriptor(xhci, desc, ports);
140 desc->bDescriptorType = 0x2a;
141 desc->bDescLength = 12;
142
143 /* header decode latency should be zero for roothubs,
144 * see section 4.23.5.2.
145 */
146 desc->u.ss.bHubHdrDecLat = 0;
147 desc->u.ss.wHubDelay = 0;
148
149 port_removable = 0;
150 /* bit 0 is reserved, bit 1 is for port 1, etc. */
151 for (i = 0; i < ports; i++) {
152 portsc = xhci_readl(xhci, xhci->usb3_ports[i]);
153 if (portsc & PORT_DEV_REMOVE)
154 port_removable |= 1 << (i + 1);
155 }
156 memset(&desc->u.ss.DeviceRemovable,
157 (__force __u16) cpu_to_le16(port_removable),
158 sizeof(__u16));
159}
160
161static void xhci_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
162 struct usb_hub_descriptor *desc)
163{
164
165 if (hcd->speed == HCD_USB3)
166 xhci_usb3_hub_descriptor(hcd, xhci, desc);
167 else
168 xhci_usb2_hub_descriptor(hcd, xhci, desc);
169
170}
171
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700172static unsigned int xhci_port_speed(unsigned int port_status)
173{
174 if (DEV_LOWSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -0500175 return USB_PORT_STAT_LOW_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700176 if (DEV_HIGHSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -0500177 return USB_PORT_STAT_HIGH_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700178 /*
179 * FIXME: Yes, we should check for full speed, but the core uses that as
180 * a default in portspeed() in usb/core/hub.c (which is the only place
Alan Stern288ead42010-03-04 11:32:30 -0500181 * USB_PORT_STAT_*_SPEED is used).
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700182 */
183 return 0;
184}
185
186/*
187 * These bits are Read Only (RO) and should be saved and written to the
188 * registers: 0, 3, 10:13, 30
189 * connect status, over-current status, port speed, and device removable.
190 * connect status and port speed are also sticky - meaning they're in
191 * the AUX well and they aren't changed by a hot, warm, or cold reset.
192 */
193#define XHCI_PORT_RO ((1<<0) | (1<<3) | (0xf<<10) | (1<<30))
194/*
195 * These bits are RW; writing a 0 clears the bit, writing a 1 sets the bit:
196 * bits 5:8, 9, 14:15, 25:27
197 * link state, port power, port indicator state, "wake on" enable state
198 */
199#define XHCI_PORT_RWS ((0xf<<5) | (1<<9) | (0x3<<14) | (0x7<<25))
200/*
201 * These bits are RW; writing a 1 sets the bit, writing a 0 has no effect:
202 * bit 4 (port reset)
203 */
204#define XHCI_PORT_RW1S ((1<<4))
205/*
206 * These bits are RW; writing a 1 clears the bit, writing a 0 has no effect:
207 * bits 1, 17, 18, 19, 20, 21, 22, 23
208 * port enable/disable, and
209 * change bits: connect, PED, warm port reset changed (reserved zero for USB 2.0 ports),
210 * over-current, reset, link state, and L1 change
211 */
212#define XHCI_PORT_RW1CS ((1<<1) | (0x7f<<17))
213/*
214 * Bit 16 is RW, and writing a '1' to it causes the link state control to be
215 * latched in
216 */
217#define XHCI_PORT_RW ((1<<16))
218/*
219 * These bits are Reserved Zero (RsvdZ) and zero should be written to them:
220 * bits 2, 24, 28:31
221 */
222#define XHCI_PORT_RZ ((1<<2) | (1<<24) | (0xf<<28))
223
224/*
225 * Given a port state, this function returns a value that would result in the
226 * port being in the same state, if the value was written to the port status
227 * control register.
228 * Save Read Only (RO) bits and save read/write bits where
229 * writing a 0 clears the bit and writing a 1 sets the bit (RWS).
230 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect.
231 */
Andiry Xu56192532010-10-14 07:23:00 -0700232u32 xhci_port_state_to_neutral(u32 state)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700233{
234 /* Save read-only status and port state */
235 return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS);
236}
237
Andiry Xube88fe42010-10-14 07:22:57 -0700238/*
239 * find slot id based on port number.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800240 * @port: The one-based port number from one of the two split roothubs.
Andiry Xube88fe42010-10-14 07:22:57 -0700241 */
Sarah Sharp52336302010-12-16 10:49:09 -0800242int xhci_find_slot_id_by_port(struct usb_hcd *hcd, struct xhci_hcd *xhci,
243 u16 port)
Andiry Xube88fe42010-10-14 07:22:57 -0700244{
245 int slot_id;
246 int i;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800247 enum usb_device_speed speed;
Andiry Xube88fe42010-10-14 07:22:57 -0700248
249 slot_id = 0;
250 for (i = 0; i < MAX_HC_SLOTS; i++) {
251 if (!xhci->devs[i])
252 continue;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800253 speed = xhci->devs[i]->udev->speed;
254 if (((speed == USB_SPEED_SUPER) == (hcd->speed == HCD_USB3))
Sarah Sharpfe301822011-09-02 11:05:41 -0700255 && xhci->devs[i]->fake_port == port) {
Andiry Xube88fe42010-10-14 07:22:57 -0700256 slot_id = i;
257 break;
258 }
259 }
260
261 return slot_id;
262}
263
264/*
265 * Stop device
266 * It issues stop endpoint command for EP 0 to 30. And wait the last command
267 * to complete.
268 * suspend will set to 1, if suspend bit need to set in command.
269 */
270static int xhci_stop_device(struct xhci_hcd *xhci, int slot_id, int suspend)
271{
272 struct xhci_virt_device *virt_dev;
273 struct xhci_command *cmd;
274 unsigned long flags;
275 int timeleft;
276 int ret;
277 int i;
278
279 ret = 0;
280 virt_dev = xhci->devs[slot_id];
281 cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
282 if (!cmd) {
283 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
284 return -ENOMEM;
285 }
286
287 spin_lock_irqsave(&xhci->lock, flags);
288 for (i = LAST_EP_INDEX; i > 0; i--) {
289 if (virt_dev->eps[i].ring && virt_dev->eps[i].ring->dequeue)
290 xhci_queue_stop_endpoint(xhci, slot_id, i, suspend);
291 }
292 cmd->command_trb = xhci->cmd_ring->enqueue;
293 list_add_tail(&cmd->cmd_list, &virt_dev->cmd_list);
294 xhci_queue_stop_endpoint(xhci, slot_id, 0, suspend);
295 xhci_ring_cmd_db(xhci);
296 spin_unlock_irqrestore(&xhci->lock, flags);
297
298 /* Wait for last stop endpoint command to finish */
299 timeleft = wait_for_completion_interruptible_timeout(
300 cmd->completion,
301 USB_CTRL_SET_TIMEOUT);
302 if (timeleft <= 0) {
303 xhci_warn(xhci, "%s while waiting for stop endpoint command\n",
304 timeleft == 0 ? "Timeout" : "Signal");
305 spin_lock_irqsave(&xhci->lock, flags);
306 /* The timeout might have raced with the event ring handler, so
307 * only delete from the list if the item isn't poisoned.
308 */
309 if (cmd->cmd_list.next != LIST_POISON1)
310 list_del(&cmd->cmd_list);
311 spin_unlock_irqrestore(&xhci->lock, flags);
312 ret = -ETIME;
313 goto command_cleanup;
314 }
315
316command_cleanup:
317 xhci_free_command(xhci, cmd);
318 return ret;
319}
320
321/*
322 * Ring device, it rings the all doorbells unconditionally.
323 */
Andiry Xu56192532010-10-14 07:23:00 -0700324void xhci_ring_device(struct xhci_hcd *xhci, int slot_id)
Andiry Xube88fe42010-10-14 07:22:57 -0700325{
326 int i;
327
328 for (i = 0; i < LAST_EP_INDEX + 1; i++)
329 if (xhci->devs[slot_id]->eps[i].ring &&
330 xhci->devs[slot_id]->eps[i].ring->dequeue)
331 xhci_ring_ep_doorbell(xhci, slot_id, i, 0);
332
333 return;
334}
335
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800336static void xhci_disable_port(struct usb_hcd *hcd, struct xhci_hcd *xhci,
Matt Evans28ccd292011-03-29 13:40:46 +1100337 u16 wIndex, __le32 __iomem *addr, u32 port_status)
Sarah Sharp6219c0472009-12-09 15:59:11 -0800338{
Sarah Sharp6dd0a3a72010-11-16 15:58:52 -0800339 /* Don't allow the USB core to disable SuperSpeed ports. */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800340 if (hcd->speed == HCD_USB3) {
Sarah Sharp6dd0a3a72010-11-16 15:58:52 -0800341 xhci_dbg(xhci, "Ignoring request to disable "
342 "SuperSpeed port.\n");
343 return;
344 }
345
Sarah Sharp6219c0472009-12-09 15:59:11 -0800346 /* Write 1 to disable the port */
347 xhci_writel(xhci, port_status | PORT_PE, addr);
348 port_status = xhci_readl(xhci, addr);
349 xhci_dbg(xhci, "disable port, actual port %d status = 0x%x\n",
350 wIndex, port_status);
351}
352
Sarah Sharp34fb5622009-12-09 15:59:08 -0800353static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue,
Matt Evans28ccd292011-03-29 13:40:46 +1100354 u16 wIndex, __le32 __iomem *addr, u32 port_status)
Sarah Sharp34fb5622009-12-09 15:59:08 -0800355{
356 char *port_change_bit;
357 u32 status;
358
359 switch (wValue) {
360 case USB_PORT_FEAT_C_RESET:
361 status = PORT_RC;
362 port_change_bit = "reset";
363 break;
Andiry Xua11496e2011-04-27 18:07:29 +0800364 case USB_PORT_FEAT_C_BH_PORT_RESET:
365 status = PORT_WRC;
366 port_change_bit = "warm(BH) reset";
367 break;
Sarah Sharp34fb5622009-12-09 15:59:08 -0800368 case USB_PORT_FEAT_C_CONNECTION:
369 status = PORT_CSC;
370 port_change_bit = "connect";
371 break;
372 case USB_PORT_FEAT_C_OVER_CURRENT:
373 status = PORT_OCC;
374 port_change_bit = "over-current";
375 break;
Sarah Sharp6219c0472009-12-09 15:59:11 -0800376 case USB_PORT_FEAT_C_ENABLE:
377 status = PORT_PEC;
378 port_change_bit = "enable/disable";
379 break;
Andiry Xube88fe42010-10-14 07:22:57 -0700380 case USB_PORT_FEAT_C_SUSPEND:
381 status = PORT_PLC;
382 port_change_bit = "suspend/resume";
383 break;
Andiry Xu85387c02011-04-27 18:07:35 +0800384 case USB_PORT_FEAT_C_PORT_LINK_STATE:
385 status = PORT_PLC;
386 port_change_bit = "link state";
387 break;
Sarah Sharp34fb5622009-12-09 15:59:08 -0800388 default:
389 /* Should never happen */
390 return;
391 }
392 /* Change bits are all write 1 to clear */
393 xhci_writel(xhci, port_status | status, addr);
394 port_status = xhci_readl(xhci, addr);
395 xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n",
396 port_change_bit, wIndex, port_status);
397}
398
huajun lia0885922011-05-03 21:11:00 +0800399static int xhci_get_ports(struct usb_hcd *hcd, __le32 __iomem ***port_array)
400{
401 int max_ports;
402 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
403
404 if (hcd->speed == HCD_USB3) {
405 max_ports = xhci->num_usb3_ports;
406 *port_array = xhci->usb3_ports;
407 } else {
408 max_ports = xhci->num_usb2_ports;
409 *port_array = xhci->usb2_ports;
410 }
411
412 return max_ports;
413}
414
Andiry Xuc9682df2011-09-23 14:19:48 -0700415void xhci_set_link_state(struct xhci_hcd *xhci, __le32 __iomem **port_array,
416 int port_id, u32 link_state)
417{
418 u32 temp;
419
420 temp = xhci_readl(xhci, port_array[port_id]);
421 temp = xhci_port_state_to_neutral(temp);
422 temp &= ~PORT_PLS_MASK;
423 temp |= PORT_LINK_STROBE | link_state;
424 xhci_writel(xhci, temp, port_array[port_id]);
425}
426
Andiry Xud2f52c92011-09-23 14:19:49 -0700427/* Test and clear port RWC bit */
428void xhci_test_and_clear_bit(struct xhci_hcd *xhci, __le32 __iomem **port_array,
429 int port_id, u32 port_bit)
430{
431 u32 temp;
432
433 temp = xhci_readl(xhci, port_array[port_id]);
434 if (temp & port_bit) {
435 temp = xhci_port_state_to_neutral(temp);
436 temp |= port_bit;
437 xhci_writel(xhci, temp, port_array[port_id]);
438 }
439}
440
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700441int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
442 u16 wIndex, char *buf, u16 wLength)
443{
444 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
huajun lia0885922011-05-03 21:11:00 +0800445 int max_ports;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700446 unsigned long flags;
Andiry Xuc9682df2011-09-23 14:19:48 -0700447 u32 temp, status;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700448 int retval = 0;
Matt Evans28ccd292011-03-29 13:40:46 +1100449 __le32 __iomem **port_array;
Andiry Xube88fe42010-10-14 07:22:57 -0700450 int slot_id;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800451 struct xhci_bus_state *bus_state;
Andiry Xu2c441782011-04-27 18:07:39 +0800452 u16 link_state = 0;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700453
huajun lia0885922011-05-03 21:11:00 +0800454 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800455 bus_state = &xhci->bus_state[hcd_index(hcd)];
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700456
457 spin_lock_irqsave(&xhci->lock, flags);
458 switch (typeReq) {
459 case GetHubStatus:
460 /* No power source, over-current reported per port */
461 memset(buf, 0, 4);
462 break;
463 case GetHubDescriptor:
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800464 /* Check to make sure userspace is asking for the USB 3.0 hub
465 * descriptor for the USB 3.0 roothub. If not, we stall the
466 * endpoint, like external hubs do.
467 */
468 if (hcd->speed == HCD_USB3 &&
469 (wLength < USB_DT_SS_HUB_SIZE ||
470 wValue != (USB_DT_SS_HUB << 8))) {
471 xhci_dbg(xhci, "Wrong hub descriptor type for "
472 "USB 3.0 roothub.\n");
473 goto error;
474 }
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800475 xhci_hub_descriptor(hcd, xhci,
476 (struct usb_hub_descriptor *) buf);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700477 break;
Sarah Sharp48e82362011-10-06 11:54:23 -0700478 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
479 if ((wValue & 0xff00) != (USB_DT_BOS << 8))
480 goto error;
481
482 if (hcd->speed != HCD_USB3)
483 goto error;
484
485 memcpy(buf, &usb_bos_descriptor,
486 USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE);
487 temp = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
488 buf[12] = HCS_U1_LATENCY(temp);
489 put_unaligned_le16(HCS_U2_LATENCY(temp), &buf[13]);
490
491 spin_unlock_irqrestore(&xhci->lock, flags);
492 return USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700493 case GetPortStatus:
huajun lia0885922011-05-03 21:11:00 +0800494 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700495 goto error;
496 wIndex--;
497 status = 0;
Sarah Sharp5308a912010-12-01 11:34:59 -0800498 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700499 if (temp == 0xffffffff) {
500 retval = -ENODEV;
501 break;
502 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700503 xhci_dbg(xhci, "get port status, actual port %d status = 0x%x\n", wIndex, temp);
504
505 /* wPortChange bits */
506 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -0500507 status |= USB_PORT_STAT_C_CONNECTION << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700508 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -0500509 status |= USB_PORT_STAT_C_ENABLE << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700510 if ((temp & PORT_OCC))
Alan Stern749da5f2010-03-04 17:05:08 -0500511 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Andiry Xu0ed9a572011-04-27 18:07:43 +0800512 if ((temp & PORT_RC))
513 status |= USB_PORT_STAT_C_RESET << 16;
514 /* USB3.0 only */
515 if (hcd->speed == HCD_USB3) {
516 if ((temp & PORT_PLC))
517 status |= USB_PORT_STAT_C_LINK_STATE << 16;
518 if ((temp & PORT_WRC))
519 status |= USB_PORT_STAT_C_BH_RESET << 16;
520 }
521
522 if (hcd->speed != HCD_USB3) {
523 if ((temp & PORT_PLS_MASK) == XDEV_U3
524 && (temp & PORT_POWER))
525 status |= USB_PORT_STAT_SUSPEND;
526 }
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800527 if ((temp & PORT_PLS_MASK) == XDEV_RESUME &&
528 !DEV_SUPERSPEED(temp)) {
Andiry Xu56192532010-10-14 07:23:00 -0700529 if ((temp & PORT_RESET) || !(temp & PORT_PE))
530 goto error;
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800531 if (time_after_eq(jiffies,
532 bus_state->resume_done[wIndex])) {
Andiry Xu56192532010-10-14 07:23:00 -0700533 xhci_dbg(xhci, "Resume USB2 port %d\n",
534 wIndex + 1);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800535 bus_state->resume_done[wIndex] = 0;
Andiry Xuc9682df2011-09-23 14:19:48 -0700536 xhci_set_link_state(xhci, port_array, wIndex,
537 XDEV_U0);
Andiry Xu56192532010-10-14 07:23:00 -0700538 xhci_dbg(xhci, "set port %d resume\n",
539 wIndex + 1);
Sarah Sharp52336302010-12-16 10:49:09 -0800540 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
Andiry Xu56192532010-10-14 07:23:00 -0700541 wIndex + 1);
542 if (!slot_id) {
543 xhci_dbg(xhci, "slot_id is zero\n");
544 goto error;
545 }
546 xhci_ring_device(xhci, slot_id);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800547 bus_state->port_c_suspend |= 1 << wIndex;
548 bus_state->suspended_ports &= ~(1 << wIndex);
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800549 } else {
550 /*
551 * The resume has been signaling for less than
552 * 20ms. Report the port status as SUSPEND,
553 * let the usbcore check port status again
554 * and clear resume signaling later.
555 */
556 status |= USB_PORT_STAT_SUSPEND;
Andiry Xu56192532010-10-14 07:23:00 -0700557 }
558 }
Andiry Xube88fe42010-10-14 07:22:57 -0700559 if ((temp & PORT_PLS_MASK) == XDEV_U0
560 && (temp & PORT_POWER)
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800561 && (bus_state->suspended_ports & (1 << wIndex))) {
562 bus_state->suspended_ports &= ~(1 << wIndex);
Andiry Xua7114232011-04-27 18:07:50 +0800563 if (hcd->speed != HCD_USB3)
564 bus_state->port_c_suspend |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700565 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700566 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -0500567 status |= USB_PORT_STAT_CONNECTION;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700568 status |= xhci_port_speed(temp);
569 }
570 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -0500571 status |= USB_PORT_STAT_ENABLE;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700572 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -0500573 status |= USB_PORT_STAT_OVERCURRENT;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700574 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -0500575 status |= USB_PORT_STAT_RESET;
Andiry Xu0ed9a572011-04-27 18:07:43 +0800576 if (temp & PORT_POWER) {
577 if (hcd->speed == HCD_USB3)
578 status |= USB_SS_PORT_STAT_POWER;
579 else
580 status |= USB_PORT_STAT_POWER;
581 }
582 /* Port Link State */
583 if (hcd->speed == HCD_USB3) {
584 /* resume state is a xHCI internal state.
585 * Do not report it to usb core.
586 */
587 if ((temp & PORT_PLS_MASK) != XDEV_RESUME)
588 status |= (temp & PORT_PLS_MASK);
589 }
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800590 if (bus_state->port_c_suspend & (1 << wIndex))
Andiry Xube88fe42010-10-14 07:22:57 -0700591 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700592 xhci_dbg(xhci, "Get port status returned 0x%x\n", status);
593 put_unaligned(cpu_to_le32(status), (__le32 *) buf);
594 break;
595 case SetPortFeature:
Andiry Xu2c441782011-04-27 18:07:39 +0800596 if (wValue == USB_PORT_FEAT_LINK_STATE)
597 link_state = (wIndex & 0xff00) >> 3;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700598 wIndex &= 0xff;
huajun lia0885922011-05-03 21:11:00 +0800599 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700600 goto error;
601 wIndex--;
Sarah Sharp5308a912010-12-01 11:34:59 -0800602 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700603 if (temp == 0xffffffff) {
604 retval = -ENODEV;
605 break;
606 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700607 temp = xhci_port_state_to_neutral(temp);
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800608 /* FIXME: What new port features do we need to support? */
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700609 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700610 case USB_PORT_FEAT_SUSPEND:
Sarah Sharp5308a912010-12-01 11:34:59 -0800611 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xu65580b432011-09-23 14:19:52 -0700612 if ((temp & PORT_PLS_MASK) != XDEV_U0) {
613 /* Resume the port to U0 first */
614 xhci_set_link_state(xhci, port_array, wIndex,
615 XDEV_U0);
616 spin_unlock_irqrestore(&xhci->lock, flags);
617 msleep(10);
618 spin_lock_irqsave(&xhci->lock, flags);
619 }
Andiry Xube88fe42010-10-14 07:22:57 -0700620 /* In spec software should not attempt to suspend
621 * a port unless the port reports that it is in the
622 * enabled (PED = ‘1’,PLS < ‘3’) state.
623 */
Andiry Xu65580b432011-09-23 14:19:52 -0700624 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xube88fe42010-10-14 07:22:57 -0700625 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET)
626 || (temp & PORT_PLS_MASK) >= XDEV_U3) {
627 xhci_warn(xhci, "USB core suspending device "
628 "not in U0/U1/U2.\n");
629 goto error;
630 }
631
Sarah Sharp52336302010-12-16 10:49:09 -0800632 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
633 wIndex + 1);
Andiry Xube88fe42010-10-14 07:22:57 -0700634 if (!slot_id) {
635 xhci_warn(xhci, "slot_id is zero\n");
636 goto error;
637 }
638 /* unlock to execute stop endpoint commands */
639 spin_unlock_irqrestore(&xhci->lock, flags);
640 xhci_stop_device(xhci, slot_id, 1);
641 spin_lock_irqsave(&xhci->lock, flags);
642
Andiry Xuc9682df2011-09-23 14:19:48 -0700643 xhci_set_link_state(xhci, port_array, wIndex, XDEV_U3);
Andiry Xube88fe42010-10-14 07:22:57 -0700644
645 spin_unlock_irqrestore(&xhci->lock, flags);
646 msleep(10); /* wait device to enter */
647 spin_lock_irqsave(&xhci->lock, flags);
648
Sarah Sharp5308a912010-12-01 11:34:59 -0800649 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800650 bus_state->suspended_ports |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700651 break;
Andiry Xu2c441782011-04-27 18:07:39 +0800652 case USB_PORT_FEAT_LINK_STATE:
653 temp = xhci_readl(xhci, port_array[wIndex]);
654 /* Software should not attempt to set
655 * port link state above '5' (Rx.Detect) and the port
656 * must be enabled.
657 */
658 if ((temp & PORT_PE) == 0 ||
659 (link_state > USB_SS_PORT_LS_RX_DETECT)) {
660 xhci_warn(xhci, "Cannot set link state.\n");
661 goto error;
662 }
663
664 if (link_state == USB_SS_PORT_LS_U3) {
665 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
666 wIndex + 1);
667 if (slot_id) {
668 /* unlock to execute stop endpoint
669 * commands */
670 spin_unlock_irqrestore(&xhci->lock,
671 flags);
672 xhci_stop_device(xhci, slot_id, 1);
673 spin_lock_irqsave(&xhci->lock, flags);
674 }
675 }
676
Andiry Xuc9682df2011-09-23 14:19:48 -0700677 xhci_set_link_state(xhci, port_array, wIndex,
678 link_state);
Andiry Xu2c441782011-04-27 18:07:39 +0800679
680 spin_unlock_irqrestore(&xhci->lock, flags);
681 msleep(20); /* wait device to enter */
682 spin_lock_irqsave(&xhci->lock, flags);
683
684 temp = xhci_readl(xhci, port_array[wIndex]);
685 if (link_state == USB_SS_PORT_LS_U3)
686 bus_state->suspended_ports |= 1 << wIndex;
687 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700688 case USB_PORT_FEAT_POWER:
689 /*
690 * Turn on ports, even if there isn't per-port switching.
691 * HC will report connect events even before this is set.
692 * However, khubd will ignore the roothub events until
693 * the roothub is registered.
694 */
Sarah Sharp5308a912010-12-01 11:34:59 -0800695 xhci_writel(xhci, temp | PORT_POWER,
696 port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700697
Sarah Sharp5308a912010-12-01 11:34:59 -0800698 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700699 xhci_dbg(xhci, "set port power, actual port %d status = 0x%x\n", wIndex, temp);
700 break;
701 case USB_PORT_FEAT_RESET:
702 temp = (temp | PORT_RESET);
Sarah Sharp5308a912010-12-01 11:34:59 -0800703 xhci_writel(xhci, temp, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700704
Sarah Sharp5308a912010-12-01 11:34:59 -0800705 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700706 xhci_dbg(xhci, "set port reset, actual port %d status = 0x%x\n", wIndex, temp);
707 break;
Andiry Xua11496e2011-04-27 18:07:29 +0800708 case USB_PORT_FEAT_BH_PORT_RESET:
709 temp |= PORT_WR;
710 xhci_writel(xhci, temp, port_array[wIndex]);
711
712 temp = xhci_readl(xhci, port_array[wIndex]);
713 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700714 default:
715 goto error;
716 }
Sarah Sharp5308a912010-12-01 11:34:59 -0800717 /* unblock any posted writes */
718 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700719 break;
720 case ClearPortFeature:
huajun lia0885922011-05-03 21:11:00 +0800721 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700722 goto error;
723 wIndex--;
Sarah Sharp5308a912010-12-01 11:34:59 -0800724 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700725 if (temp == 0xffffffff) {
726 retval = -ENODEV;
727 break;
728 }
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800729 /* FIXME: What new port features do we need to support? */
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700730 temp = xhci_port_state_to_neutral(temp);
731 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700732 case USB_PORT_FEAT_SUSPEND:
Sarah Sharp5308a912010-12-01 11:34:59 -0800733 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xube88fe42010-10-14 07:22:57 -0700734 xhci_dbg(xhci, "clear USB_PORT_FEAT_SUSPEND\n");
735 xhci_dbg(xhci, "PORTSC %04x\n", temp);
736 if (temp & PORT_RESET)
737 goto error;
Andiry Xu5ac04bf2011-08-03 16:46:48 +0800738 if ((temp & PORT_PLS_MASK) == XDEV_U3) {
Andiry Xube88fe42010-10-14 07:22:57 -0700739 if ((temp & PORT_PE) == 0)
740 goto error;
Andiry Xube88fe42010-10-14 07:22:57 -0700741
Andiry Xuc9682df2011-09-23 14:19:48 -0700742 xhci_set_link_state(xhci, port_array, wIndex,
743 XDEV_RESUME);
744 spin_unlock_irqrestore(&xhci->lock, flags);
Andiry Xua7114232011-04-27 18:07:50 +0800745 msleep(20);
746 spin_lock_irqsave(&xhci->lock, flags);
Andiry Xuc9682df2011-09-23 14:19:48 -0700747 xhci_set_link_state(xhci, port_array, wIndex,
748 XDEV_U0);
Andiry Xube88fe42010-10-14 07:22:57 -0700749 }
Andiry Xua7114232011-04-27 18:07:50 +0800750 bus_state->port_c_suspend |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700751
Sarah Sharp52336302010-12-16 10:49:09 -0800752 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
753 wIndex + 1);
Andiry Xube88fe42010-10-14 07:22:57 -0700754 if (!slot_id) {
755 xhci_dbg(xhci, "slot_id is zero\n");
756 goto error;
757 }
758 xhci_ring_device(xhci, slot_id);
759 break;
760 case USB_PORT_FEAT_C_SUSPEND:
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800761 bus_state->port_c_suspend &= ~(1 << wIndex);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700762 case USB_PORT_FEAT_C_RESET:
Andiry Xua11496e2011-04-27 18:07:29 +0800763 case USB_PORT_FEAT_C_BH_PORT_RESET:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700764 case USB_PORT_FEAT_C_CONNECTION:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700765 case USB_PORT_FEAT_C_OVER_CURRENT:
Sarah Sharp6219c0472009-12-09 15:59:11 -0800766 case USB_PORT_FEAT_C_ENABLE:
Andiry Xu85387c02011-04-27 18:07:35 +0800767 case USB_PORT_FEAT_C_PORT_LINK_STATE:
Sarah Sharp34fb5622009-12-09 15:59:08 -0800768 xhci_clear_port_change_bit(xhci, wValue, wIndex,
Sarah Sharp5308a912010-12-01 11:34:59 -0800769 port_array[wIndex], temp);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700770 break;
Sarah Sharp6219c0472009-12-09 15:59:11 -0800771 case USB_PORT_FEAT_ENABLE:
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800772 xhci_disable_port(hcd, xhci, wIndex,
Sarah Sharp5308a912010-12-01 11:34:59 -0800773 port_array[wIndex], temp);
Sarah Sharp6219c0472009-12-09 15:59:11 -0800774 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700775 default:
776 goto error;
777 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700778 break;
779 default:
780error:
781 /* "stall" on error */
782 retval = -EPIPE;
783 }
784 spin_unlock_irqrestore(&xhci->lock, flags);
785 return retval;
786}
787
788/*
789 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
790 * Ports are 0-indexed from the HCD point of view,
791 * and 1-indexed from the USB core pointer of view.
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700792 *
793 * Note that the status change bits will be cleared as soon as a port status
794 * change event is generated, so we use the saved status from that event.
795 */
796int xhci_hub_status_data(struct usb_hcd *hcd, char *buf)
797{
798 unsigned long flags;
799 u32 temp, status;
Andiry Xu56192532010-10-14 07:23:00 -0700800 u32 mask;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700801 int i, retval;
802 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
huajun lia0885922011-05-03 21:11:00 +0800803 int max_ports;
Matt Evans28ccd292011-03-29 13:40:46 +1100804 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800805 struct xhci_bus_state *bus_state;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700806
huajun lia0885922011-05-03 21:11:00 +0800807 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800808 bus_state = &xhci->bus_state[hcd_index(hcd)];
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700809
810 /* Initial status is no changes */
huajun lia0885922011-05-03 21:11:00 +0800811 retval = (max_ports + 8) / 8;
William Gulland419a8e812010-05-12 10:20:34 -0700812 memset(buf, 0, retval);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700813 status = 0;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700814
Greg KH44f4c3e2011-09-19 16:05:11 -0700815 mask = PORT_CSC | PORT_PEC | PORT_OCC | PORT_PLC | PORT_WRC;
Andiry Xu56192532010-10-14 07:23:00 -0700816
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700817 spin_lock_irqsave(&xhci->lock, flags);
818 /* For each port, did anything change? If so, set that bit in buf. */
huajun lia0885922011-05-03 21:11:00 +0800819 for (i = 0; i < max_ports; i++) {
Sarah Sharp5308a912010-12-01 11:34:59 -0800820 temp = xhci_readl(xhci, port_array[i]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700821 if (temp == 0xffffffff) {
822 retval = -ENODEV;
823 break;
824 }
Andiry Xu56192532010-10-14 07:23:00 -0700825 if ((temp & mask) != 0 ||
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800826 (bus_state->port_c_suspend & 1 << i) ||
827 (bus_state->resume_done[i] && time_after_eq(
828 jiffies, bus_state->resume_done[i]))) {
William Gulland419a8e812010-05-12 10:20:34 -0700829 buf[(i + 1) / 8] |= 1 << (i + 1) % 8;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700830 status = 1;
831 }
832 }
833 spin_unlock_irqrestore(&xhci->lock, flags);
834 return status ? retval : 0;
835}
Andiry Xu9777e3c2010-10-14 07:23:03 -0700836
837#ifdef CONFIG_PM
838
839int xhci_bus_suspend(struct usb_hcd *hcd)
840{
841 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp518e8482010-12-15 11:56:29 -0800842 int max_ports, port_index;
Matt Evans28ccd292011-03-29 13:40:46 +1100843 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800844 struct xhci_bus_state *bus_state;
Andiry Xu9777e3c2010-10-14 07:23:03 -0700845 unsigned long flags;
846
huajun lia0885922011-05-03 21:11:00 +0800847 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800848 bus_state = &xhci->bus_state[hcd_index(hcd)];
Andiry Xu9777e3c2010-10-14 07:23:03 -0700849
850 spin_lock_irqsave(&xhci->lock, flags);
851
852 if (hcd->self.root_hub->do_remote_wakeup) {
Sarah Sharp518e8482010-12-15 11:56:29 -0800853 port_index = max_ports;
854 while (port_index--) {
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800855 if (bus_state->resume_done[port_index] != 0) {
Andiry Xu9777e3c2010-10-14 07:23:03 -0700856 spin_unlock_irqrestore(&xhci->lock, flags);
857 xhci_dbg(xhci, "suspend failed because "
858 "port %d is resuming\n",
Sarah Sharp518e8482010-12-15 11:56:29 -0800859 port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700860 return -EBUSY;
861 }
862 }
863 }
864
Sarah Sharp518e8482010-12-15 11:56:29 -0800865 port_index = max_ports;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800866 bus_state->bus_suspended = 0;
Sarah Sharp518e8482010-12-15 11:56:29 -0800867 while (port_index--) {
Andiry Xu9777e3c2010-10-14 07:23:03 -0700868 /* suspend the port if the port is not suspended */
Andiry Xu9777e3c2010-10-14 07:23:03 -0700869 u32 t1, t2;
870 int slot_id;
871
Sarah Sharp5308a912010-12-01 11:34:59 -0800872 t1 = xhci_readl(xhci, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700873 t2 = xhci_port_state_to_neutral(t1);
874
875 if ((t1 & PORT_PE) && !(t1 & PORT_PLS_MASK)) {
Sarah Sharp518e8482010-12-15 11:56:29 -0800876 xhci_dbg(xhci, "port %d not suspended\n", port_index);
Sarah Sharp52336302010-12-16 10:49:09 -0800877 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
Sarah Sharp518e8482010-12-15 11:56:29 -0800878 port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700879 if (slot_id) {
880 spin_unlock_irqrestore(&xhci->lock, flags);
881 xhci_stop_device(xhci, slot_id, 1);
882 spin_lock_irqsave(&xhci->lock, flags);
883 }
884 t2 &= ~PORT_PLS_MASK;
885 t2 |= PORT_LINK_STROBE | XDEV_U3;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800886 set_bit(port_index, &bus_state->bus_suspended);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700887 }
888 if (hcd->self.root_hub->do_remote_wakeup) {
889 if (t1 & PORT_CONNECT) {
890 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
891 t2 &= ~PORT_WKCONN_E;
892 } else {
893 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
894 t2 &= ~PORT_WKDISC_E;
895 }
896 } else
897 t2 &= ~PORT_WAKE_BITS;
898
899 t1 = xhci_port_state_to_neutral(t1);
900 if (t1 != t2)
Sarah Sharp5308a912010-12-01 11:34:59 -0800901 xhci_writel(xhci, t2, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700902
Andiry Xu4f0871a2011-04-19 17:17:39 +0800903 if (hcd->speed != HCD_USB3) {
Andiry Xu9777e3c2010-10-14 07:23:03 -0700904 /* enable remote wake up for USB 2.0 */
Matt Evans28ccd292011-03-29 13:40:46 +1100905 __le32 __iomem *addr;
Andiry Xu9777e3c2010-10-14 07:23:03 -0700906 u32 tmp;
907
Sarah Sharp5308a912010-12-01 11:34:59 -0800908 /* Add one to the port status register address to get
909 * the port power control register address.
910 */
911 addr = port_array[port_index] + 1;
Andiry Xu9777e3c2010-10-14 07:23:03 -0700912 tmp = xhci_readl(xhci, addr);
913 tmp |= PORT_RWE;
914 xhci_writel(xhci, tmp, addr);
915 }
916 }
917 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800918 bus_state->next_statechange = jiffies + msecs_to_jiffies(10);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700919 spin_unlock_irqrestore(&xhci->lock, flags);
920 return 0;
921}
922
923int xhci_bus_resume(struct usb_hcd *hcd)
924{
925 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp518e8482010-12-15 11:56:29 -0800926 int max_ports, port_index;
Matt Evans28ccd292011-03-29 13:40:46 +1100927 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800928 struct xhci_bus_state *bus_state;
Andiry Xu9777e3c2010-10-14 07:23:03 -0700929 u32 temp;
930 unsigned long flags;
931
huajun lia0885922011-05-03 21:11:00 +0800932 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800933 bus_state = &xhci->bus_state[hcd_index(hcd)];
Andiry Xu9777e3c2010-10-14 07:23:03 -0700934
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800935 if (time_before(jiffies, bus_state->next_statechange))
Andiry Xu9777e3c2010-10-14 07:23:03 -0700936 msleep(5);
937
938 spin_lock_irqsave(&xhci->lock, flags);
939 if (!HCD_HW_ACCESSIBLE(hcd)) {
940 spin_unlock_irqrestore(&xhci->lock, flags);
941 return -ESHUTDOWN;
942 }
943
944 /* delay the irqs */
945 temp = xhci_readl(xhci, &xhci->op_regs->command);
946 temp &= ~CMD_EIE;
947 xhci_writel(xhci, temp, &xhci->op_regs->command);
948
Sarah Sharp518e8482010-12-15 11:56:29 -0800949 port_index = max_ports;
950 while (port_index--) {
Andiry Xu9777e3c2010-10-14 07:23:03 -0700951 /* Check whether need resume ports. If needed
952 resume port and disable remote wakeup */
Andiry Xu9777e3c2010-10-14 07:23:03 -0700953 u32 temp;
954 int slot_id;
955
Sarah Sharp5308a912010-12-01 11:34:59 -0800956 temp = xhci_readl(xhci, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700957 if (DEV_SUPERSPEED(temp))
958 temp &= ~(PORT_RWC_BITS | PORT_CEC | PORT_WAKE_BITS);
959 else
960 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800961 if (test_bit(port_index, &bus_state->bus_suspended) &&
Andiry Xu9777e3c2010-10-14 07:23:03 -0700962 (temp & PORT_PLS_MASK)) {
963 if (DEV_SUPERSPEED(temp)) {
Andiry Xuc9682df2011-09-23 14:19:48 -0700964 xhci_set_link_state(xhci, port_array,
965 port_index, XDEV_U0);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700966 } else {
Andiry Xuc9682df2011-09-23 14:19:48 -0700967 xhci_set_link_state(xhci, port_array,
968 port_index, XDEV_RESUME);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700969
970 spin_unlock_irqrestore(&xhci->lock, flags);
971 msleep(20);
972 spin_lock_irqsave(&xhci->lock, flags);
973
Andiry Xuc9682df2011-09-23 14:19:48 -0700974 xhci_set_link_state(xhci, port_array,
975 port_index, XDEV_U0);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700976 }
Andiry Xu4f0871a2011-04-19 17:17:39 +0800977 /* wait for the port to enter U0 and report port link
978 * state change.
979 */
980 spin_unlock_irqrestore(&xhci->lock, flags);
981 msleep(20);
982 spin_lock_irqsave(&xhci->lock, flags);
983
984 /* Clear PLC */
Andiry Xud2f52c92011-09-23 14:19:49 -0700985 xhci_test_and_clear_bit(xhci, port_array, port_index,
986 PORT_PLC);
Andiry Xu4f0871a2011-04-19 17:17:39 +0800987
Sarah Sharp52336302010-12-16 10:49:09 -0800988 slot_id = xhci_find_slot_id_by_port(hcd,
989 xhci, port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700990 if (slot_id)
991 xhci_ring_device(xhci, slot_id);
992 } else
Sarah Sharp5308a912010-12-01 11:34:59 -0800993 xhci_writel(xhci, temp, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -0700994
Andiry Xu4f0871a2011-04-19 17:17:39 +0800995 if (hcd->speed != HCD_USB3) {
Andiry Xu9777e3c2010-10-14 07:23:03 -0700996 /* disable remote wake up for USB 2.0 */
Matt Evans28ccd292011-03-29 13:40:46 +1100997 __le32 __iomem *addr;
Andiry Xu9777e3c2010-10-14 07:23:03 -0700998 u32 tmp;
999
Sarah Sharp5308a912010-12-01 11:34:59 -08001000 /* Add one to the port status register address to get
1001 * the port power control register address.
1002 */
1003 addr = port_array[port_index] + 1;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001004 tmp = xhci_readl(xhci, addr);
1005 tmp &= ~PORT_RWE;
1006 xhci_writel(xhci, tmp, addr);
1007 }
1008 }
1009
1010 (void) xhci_readl(xhci, &xhci->op_regs->command);
1011
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001012 bus_state->next_statechange = jiffies + msecs_to_jiffies(5);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001013 /* re-enable irqs */
1014 temp = xhci_readl(xhci, &xhci->op_regs->command);
1015 temp |= CMD_EIE;
1016 xhci_writel(xhci, temp, &xhci->op_regs->command);
1017 temp = xhci_readl(xhci, &xhci->op_regs->command);
1018
1019 spin_unlock_irqrestore(&xhci->lock, flags);
1020 return 0;
1021}
1022
Sarah Sharp436a3892010-10-15 14:59:15 -07001023#endif /* CONFIG_PM */