blob: 1b6d15ea4ff521abc797b7474a79d2a4113c1ed4 [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>
Jack Phame60fc8c2013-06-20 13:31:37 -070024#include <linux/slab.h>
Sarah Sharp0f2a7932009-04-27 19:57:12 -070025#include <asm/unaligned.h>
26
27#include "xhci.h"
28
Andiry Xu9777e3c2010-10-14 07:23:03 -070029#define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
30#define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_WRC | PORT_OCC | \
31 PORT_RC | PORT_PLC | PORT_PE)
32
Sarah Sharp48e82362011-10-06 11:54:23 -070033/* usb 1.1 root hub device descriptor */
34static u8 usb_bos_descriptor [] = {
35 USB_DT_BOS_SIZE, /* __u8 bLength, 5 bytes */
36 USB_DT_BOS, /* __u8 bDescriptorType */
37 0x0F, 0x00, /* __le16 wTotalLength, 15 bytes */
38 0x1, /* __u8 bNumDeviceCaps */
39 /* First device capability */
40 USB_DT_USB_SS_CAP_SIZE, /* __u8 bLength, 10 bytes */
41 USB_DT_DEVICE_CAPABILITY, /* Device Capability */
42 USB_SS_CAP_TYPE, /* bDevCapabilityType, SUPERSPEED_USB */
43 0x00, /* bmAttributes, LTM off by default */
44 USB_5GBPS_OPERATION, 0x00, /* wSpeedsSupported, 5Gbps only */
45 0x03, /* bFunctionalitySupport,
46 USB 3.0 speed only */
47 0x00, /* bU1DevExitLat, set later. */
48 0x00, 0x00 /* __le16 bU2DevExitLat, set later. */
49};
50
51
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080052static void xhci_common_hub_descriptor(struct xhci_hcd *xhci,
53 struct usb_hub_descriptor *desc, int ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -070054{
Sarah Sharp0f2a7932009-04-27 19:57:12 -070055 u16 temp;
56
Sarah Sharp0f2a7932009-04-27 19:57:12 -070057 desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.9 says 20ms max */
58 desc->bHubContrCurrent = 0;
59
60 desc->bNbrPorts = ports;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070061 temp = 0;
Aman Deepc8421142011-11-22 19:33:36 +053062 /* Bits 1:0 - support per-port power switching, or power always on */
Sarah Sharp0f2a7932009-04-27 19:57:12 -070063 if (HCC_PPC(xhci->hcc_params))
Aman Deepc8421142011-11-22 19:33:36 +053064 temp |= HUB_CHAR_INDV_PORT_LPSM;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070065 else
Aman Deepc8421142011-11-22 19:33:36 +053066 temp |= HUB_CHAR_NO_LPSM;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070067 /* Bit 2 - root hubs are not part of a compound device */
68 /* Bits 4:3 - individual port over current protection */
Aman Deepc8421142011-11-22 19:33:36 +053069 temp |= HUB_CHAR_INDV_PORT_OCPM;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070070 /* Bits 6:5 - no TTs in root ports */
71 /* Bit 7 - no port indicators */
Matt Evans28ccd292011-03-29 13:40:46 +110072 desc->wHubCharacteristics = cpu_to_le16(temp);
Sarah Sharp0f2a7932009-04-27 19:57:12 -070073}
74
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080075/* Fill in the USB 2.0 roothub descriptor */
76static void xhci_usb2_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
77 struct usb_hub_descriptor *desc)
78{
79 int ports;
80 u16 temp;
81 __u8 port_removable[(USB_MAXCHILDREN + 1 + 7) / 8];
82 u32 portsc;
83 unsigned int i;
84
85 ports = xhci->num_usb2_ports;
86
87 xhci_common_hub_descriptor(xhci, desc, ports);
Aman Deepc8421142011-11-22 19:33:36 +053088 desc->bDescriptorType = USB_DT_HUB;
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080089 temp = 1 + (ports / 8);
Aman Deepc8421142011-11-22 19:33:36 +053090 desc->bDescLength = USB_DT_HUB_NONVAR_SIZE + 2 * temp;
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080091
92 /* The Device Removable bits are reported on a byte granularity.
93 * If the port doesn't exist within that byte, the bit is set to 0.
94 */
95 memset(port_removable, 0, sizeof(port_removable));
96 for (i = 0; i < ports; i++) {
Sarah Sharp3278a552012-02-09 14:43:44 -080097 portsc = xhci_readl(xhci, xhci->usb2_ports[i]);
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -080098 /* If a device is removable, PORTSC reports a 0, same as in the
99 * hub descriptor DeviceRemovable bits.
100 */
101 if (portsc & PORT_DEV_REMOVE)
102 /* This math is hairy because bit 0 of DeviceRemovable
103 * is reserved, and bit 1 is for port 1, etc.
104 */
105 port_removable[(i + 1) / 8] |= 1 << ((i + 1) % 8);
106 }
107
108 /* ch11.h defines a hub descriptor that has room for USB_MAXCHILDREN
109 * ports on it. The USB 2.0 specification says that there are two
110 * variable length fields at the end of the hub descriptor:
111 * DeviceRemovable and PortPwrCtrlMask. But since we can have less than
112 * USB_MAXCHILDREN ports, we may need to use the DeviceRemovable array
113 * to set PortPwrCtrlMask bits. PortPwrCtrlMask must always be set to
114 * 0xFF, so we initialize the both arrays (DeviceRemovable and
115 * PortPwrCtrlMask) to 0xFF. Then we set the DeviceRemovable for each
116 * set of ports that actually exist.
117 */
118 memset(desc->u.hs.DeviceRemovable, 0xff,
119 sizeof(desc->u.hs.DeviceRemovable));
120 memset(desc->u.hs.PortPwrCtrlMask, 0xff,
121 sizeof(desc->u.hs.PortPwrCtrlMask));
122
123 for (i = 0; i < (ports + 1 + 7) / 8; i++)
124 memset(&desc->u.hs.DeviceRemovable[i], port_removable[i],
125 sizeof(__u8));
126}
127
128/* Fill in the USB 3.0 roothub descriptor */
129static void xhci_usb3_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
130 struct usb_hub_descriptor *desc)
131{
132 int ports;
133 u16 port_removable;
134 u32 portsc;
135 unsigned int i;
136
137 ports = xhci->num_usb3_ports;
138 xhci_common_hub_descriptor(xhci, desc, ports);
Aman Deepc8421142011-11-22 19:33:36 +0530139 desc->bDescriptorType = USB_DT_SS_HUB;
140 desc->bDescLength = USB_DT_SS_HUB_SIZE;
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800141
142 /* header decode latency should be zero for roothubs,
143 * see section 4.23.5.2.
144 */
145 desc->u.ss.bHubHdrDecLat = 0;
146 desc->u.ss.wHubDelay = 0;
147
148 port_removable = 0;
149 /* bit 0 is reserved, bit 1 is for port 1, etc. */
150 for (i = 0; i < ports; i++) {
151 portsc = xhci_readl(xhci, xhci->usb3_ports[i]);
152 if (portsc & PORT_DEV_REMOVE)
153 port_removable |= 1 << (i + 1);
154 }
155 memset(&desc->u.ss.DeviceRemovable,
156 (__force __u16) cpu_to_le16(port_removable),
157 sizeof(__u16));
158}
159
160static void xhci_hub_descriptor(struct usb_hcd *hcd, struct xhci_hcd *xhci,
161 struct usb_hub_descriptor *desc)
162{
163
164 if (hcd->speed == HCD_USB3)
165 xhci_usb3_hub_descriptor(hcd, xhci, desc);
166 else
167 xhci_usb2_hub_descriptor(hcd, xhci, desc);
168
169}
170
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700171static unsigned int xhci_port_speed(unsigned int port_status)
172{
173 if (DEV_LOWSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -0500174 return USB_PORT_STAT_LOW_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700175 if (DEV_HIGHSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -0500176 return USB_PORT_STAT_HIGH_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700177 /*
178 * FIXME: Yes, we should check for full speed, but the core uses that as
179 * a default in portspeed() in usb/core/hub.c (which is the only place
Alan Stern288ead42010-03-04 11:32:30 -0500180 * USB_PORT_STAT_*_SPEED is used).
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700181 */
182 return 0;
183}
184
185/*
186 * These bits are Read Only (RO) and should be saved and written to the
187 * registers: 0, 3, 10:13, 30
188 * connect status, over-current status, port speed, and device removable.
189 * connect status and port speed are also sticky - meaning they're in
190 * the AUX well and they aren't changed by a hot, warm, or cold reset.
191 */
192#define XHCI_PORT_RO ((1<<0) | (1<<3) | (0xf<<10) | (1<<30))
193/*
194 * These bits are RW; writing a 0 clears the bit, writing a 1 sets the bit:
195 * bits 5:8, 9, 14:15, 25:27
196 * link state, port power, port indicator state, "wake on" enable state
197 */
198#define XHCI_PORT_RWS ((0xf<<5) | (1<<9) | (0x3<<14) | (0x7<<25))
199/*
200 * These bits are RW; writing a 1 sets the bit, writing a 0 has no effect:
201 * bit 4 (port reset)
202 */
203#define XHCI_PORT_RW1S ((1<<4))
204/*
205 * These bits are RW; writing a 1 clears the bit, writing a 0 has no effect:
206 * bits 1, 17, 18, 19, 20, 21, 22, 23
207 * port enable/disable, and
208 * change bits: connect, PED, warm port reset changed (reserved zero for USB 2.0 ports),
209 * over-current, reset, link state, and L1 change
210 */
211#define XHCI_PORT_RW1CS ((1<<1) | (0x7f<<17))
212/*
213 * Bit 16 is RW, and writing a '1' to it causes the link state control to be
214 * latched in
215 */
216#define XHCI_PORT_RW ((1<<16))
217/*
218 * These bits are Reserved Zero (RsvdZ) and zero should be written to them:
219 * bits 2, 24, 28:31
220 */
221#define XHCI_PORT_RZ ((1<<2) | (1<<24) | (0xf<<28))
222
223/*
224 * Given a port state, this function returns a value that would result in the
225 * port being in the same state, if the value was written to the port status
226 * control register.
227 * Save Read Only (RO) bits and save read/write bits where
228 * writing a 0 clears the bit and writing a 1 sets the bit (RWS).
229 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect.
230 */
Andiry Xu56192532010-10-14 07:23:00 -0700231u32 xhci_port_state_to_neutral(u32 state)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700232{
233 /* Save read-only status and port state */
234 return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS);
235}
236
Andiry Xube88fe42010-10-14 07:22:57 -0700237/*
238 * find slot id based on port number.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800239 * @port: The one-based port number from one of the two split roothubs.
Andiry Xube88fe42010-10-14 07:22:57 -0700240 */
Sarah Sharp52336302010-12-16 10:49:09 -0800241int xhci_find_slot_id_by_port(struct usb_hcd *hcd, struct xhci_hcd *xhci,
242 u16 port)
Andiry Xube88fe42010-10-14 07:22:57 -0700243{
244 int slot_id;
245 int i;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800246 enum usb_device_speed speed;
Andiry Xube88fe42010-10-14 07:22:57 -0700247
248 slot_id = 0;
249 for (i = 0; i < MAX_HC_SLOTS; i++) {
250 if (!xhci->devs[i])
251 continue;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800252 speed = xhci->devs[i]->udev->speed;
253 if (((speed == USB_SPEED_SUPER) == (hcd->speed == HCD_USB3))
Sarah Sharpfe301822011-09-02 11:05:41 -0700254 && xhci->devs[i]->fake_port == port) {
Andiry Xube88fe42010-10-14 07:22:57 -0700255 slot_id = i;
256 break;
257 }
258 }
259
260 return slot_id;
261}
262
263/*
264 * Stop device
265 * It issues stop endpoint command for EP 0 to 30. And wait the last command
266 * to complete.
267 * suspend will set to 1, if suspend bit need to set in command.
268 */
269static int xhci_stop_device(struct xhci_hcd *xhci, int slot_id, int suspend)
270{
271 struct xhci_virt_device *virt_dev;
272 struct xhci_command *cmd;
273 unsigned long flags;
274 int timeleft;
275 int ret;
276 int i;
277
278 ret = 0;
279 virt_dev = xhci->devs[slot_id];
280 cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
281 if (!cmd) {
282 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
283 return -ENOMEM;
284 }
285
286 spin_lock_irqsave(&xhci->lock, flags);
287 for (i = LAST_EP_INDEX; i > 0; i--) {
288 if (virt_dev->eps[i].ring && virt_dev->eps[i].ring->dequeue)
289 xhci_queue_stop_endpoint(xhci, slot_id, i, suspend);
290 }
291 cmd->command_trb = xhci->cmd_ring->enqueue;
292 list_add_tail(&cmd->cmd_list, &virt_dev->cmd_list);
293 xhci_queue_stop_endpoint(xhci, slot_id, 0, suspend);
294 xhci_ring_cmd_db(xhci);
295 spin_unlock_irqrestore(&xhci->lock, flags);
296
297 /* Wait for last stop endpoint command to finish */
298 timeleft = wait_for_completion_interruptible_timeout(
299 cmd->completion,
300 USB_CTRL_SET_TIMEOUT);
301 if (timeleft <= 0) {
302 xhci_warn(xhci, "%s while waiting for stop endpoint command\n",
303 timeleft == 0 ? "Timeout" : "Signal");
304 spin_lock_irqsave(&xhci->lock, flags);
305 /* The timeout might have raced with the event ring handler, so
306 * only delete from the list if the item isn't poisoned.
307 */
308 if (cmd->cmd_list.next != LIST_POISON1)
309 list_del(&cmd->cmd_list);
310 spin_unlock_irqrestore(&xhci->lock, flags);
311 ret = -ETIME;
312 goto command_cleanup;
313 }
314
315command_cleanup:
316 xhci_free_command(xhci, cmd);
317 return ret;
318}
319
320/*
321 * Ring device, it rings the all doorbells unconditionally.
322 */
Andiry Xu56192532010-10-14 07:23:00 -0700323void xhci_ring_device(struct xhci_hcd *xhci, int slot_id)
Andiry Xube88fe42010-10-14 07:22:57 -0700324{
325 int i;
326
327 for (i = 0; i < LAST_EP_INDEX + 1; i++)
328 if (xhci->devs[slot_id]->eps[i].ring &&
329 xhci->devs[slot_id]->eps[i].ring->dequeue)
330 xhci_ring_ep_doorbell(xhci, slot_id, i, 0);
331
332 return;
333}
334
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800335static void xhci_disable_port(struct usb_hcd *hcd, struct xhci_hcd *xhci,
Matt Evans28ccd292011-03-29 13:40:46 +1100336 u16 wIndex, __le32 __iomem *addr, u32 port_status)
Sarah Sharp6219c042009-12-09 15:59:11 -0800337{
Sarah Sharp6dd0a3a2010-11-16 15:58:52 -0800338 /* Don't allow the USB core to disable SuperSpeed ports. */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800339 if (hcd->speed == HCD_USB3) {
Sarah Sharp6dd0a3a2010-11-16 15:58:52 -0800340 xhci_dbg(xhci, "Ignoring request to disable "
341 "SuperSpeed port.\n");
342 return;
343 }
344
Sarah Sharp6219c042009-12-09 15:59:11 -0800345 /* Write 1 to disable the port */
346 xhci_writel(xhci, port_status | PORT_PE, addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530347 if (xhci->quirks & XHCI_PORTSC_DELAY)
348 ndelay(100);
Sarah Sharp6219c042009-12-09 15:59:11 -0800349 port_status = xhci_readl(xhci, addr);
350 xhci_dbg(xhci, "disable port, actual port %d status = 0x%x\n",
351 wIndex, port_status);
352}
353
Sarah Sharp34fb5622009-12-09 15:59:08 -0800354static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue,
Matt Evans28ccd292011-03-29 13:40:46 +1100355 u16 wIndex, __le32 __iomem *addr, u32 port_status)
Sarah Sharp34fb5622009-12-09 15:59:08 -0800356{
357 char *port_change_bit;
358 u32 status;
359
360 switch (wValue) {
361 case USB_PORT_FEAT_C_RESET:
362 status = PORT_RC;
363 port_change_bit = "reset";
364 break;
Andiry Xua11496e2011-04-27 18:07:29 +0800365 case USB_PORT_FEAT_C_BH_PORT_RESET:
366 status = PORT_WRC;
367 port_change_bit = "warm(BH) reset";
368 break;
Sarah Sharp34fb5622009-12-09 15:59:08 -0800369 case USB_PORT_FEAT_C_CONNECTION:
370 status = PORT_CSC;
371 port_change_bit = "connect";
372 break;
373 case USB_PORT_FEAT_C_OVER_CURRENT:
374 status = PORT_OCC;
375 port_change_bit = "over-current";
376 break;
Sarah Sharp6219c042009-12-09 15:59:11 -0800377 case USB_PORT_FEAT_C_ENABLE:
378 status = PORT_PEC;
379 port_change_bit = "enable/disable";
380 break;
Andiry Xube88fe42010-10-14 07:22:57 -0700381 case USB_PORT_FEAT_C_SUSPEND:
382 status = PORT_PLC;
383 port_change_bit = "suspend/resume";
384 break;
Andiry Xu85387c02011-04-27 18:07:35 +0800385 case USB_PORT_FEAT_C_PORT_LINK_STATE:
386 status = PORT_PLC;
387 port_change_bit = "link state";
388 break;
Sarah Sharp34fb5622009-12-09 15:59:08 -0800389 default:
390 /* Should never happen */
391 return;
392 }
393 /* Change bits are all write 1 to clear */
394 xhci_writel(xhci, port_status | status, addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530395 if (xhci->quirks & XHCI_PORTSC_DELAY)
396 ndelay(100);
Sarah Sharp34fb5622009-12-09 15:59:08 -0800397 port_status = xhci_readl(xhci, addr);
398 xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n",
399 port_change_bit, wIndex, port_status);
400}
401
huajun lia0885922011-05-03 21:11:00 +0800402static int xhci_get_ports(struct usb_hcd *hcd, __le32 __iomem ***port_array)
403{
404 int max_ports;
405 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
406
407 if (hcd->speed == HCD_USB3) {
408 max_ports = xhci->num_usb3_ports;
409 *port_array = xhci->usb3_ports;
410 } else {
411 max_ports = xhci->num_usb2_ports;
412 *port_array = xhci->usb2_ports;
413 }
414
415 return max_ports;
416}
417
Andiry Xuc9682df2011-09-23 14:19:48 -0700418void xhci_set_link_state(struct xhci_hcd *xhci, __le32 __iomem **port_array,
419 int port_id, u32 link_state)
420{
421 u32 temp;
422
423 temp = xhci_readl(xhci, port_array[port_id]);
424 temp = xhci_port_state_to_neutral(temp);
425 temp &= ~PORT_PLS_MASK;
426 temp |= PORT_LINK_STROBE | link_state;
427 xhci_writel(xhci, temp, port_array[port_id]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530428 if (xhci->quirks & XHCI_PORTSC_DELAY)
429 ndelay(100);
Andiry Xuc9682df2011-09-23 14:19:48 -0700430}
431
Sarah Sharp4296c702012-01-06 10:34:31 -0800432void xhci_set_remote_wake_mask(struct xhci_hcd *xhci,
433 __le32 __iomem **port_array, int port_id, u16 wake_mask)
434{
435 u32 temp;
436
437 temp = xhci_readl(xhci, port_array[port_id]);
438 temp = xhci_port_state_to_neutral(temp);
439
440 if (wake_mask & USB_PORT_FEAT_REMOTE_WAKE_CONNECT)
441 temp |= PORT_WKCONN_E;
442 else
443 temp &= ~PORT_WKCONN_E;
444
445 if (wake_mask & USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT)
446 temp |= PORT_WKDISC_E;
447 else
448 temp &= ~PORT_WKDISC_E;
449
450 if (wake_mask & USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT)
451 temp |= PORT_WKOC_E;
452 else
453 temp &= ~PORT_WKOC_E;
454
455 xhci_writel(xhci, temp, port_array[port_id]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530456 if (xhci->quirks & XHCI_PORTSC_DELAY)
457 ndelay(100);
Sarah Sharp4296c702012-01-06 10:34:31 -0800458}
459
Andiry Xud2f52c92011-09-23 14:19:49 -0700460/* Test and clear port RWC bit */
461void xhci_test_and_clear_bit(struct xhci_hcd *xhci, __le32 __iomem **port_array,
462 int port_id, u32 port_bit)
463{
464 u32 temp;
465
466 temp = xhci_readl(xhci, port_array[port_id]);
467 if (temp & port_bit) {
468 temp = xhci_port_state_to_neutral(temp);
469 temp |= port_bit;
470 xhci_writel(xhci, temp, port_array[port_id]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530471 if (xhci->quirks & XHCI_PORTSC_DELAY)
472 ndelay(100);
Andiry Xud2f52c92011-09-23 14:19:49 -0700473 }
474}
475
Jack Phame60fc8c2013-06-20 13:31:37 -0700476static void xhci_single_step_completion(struct urb *urb)
477{
478 struct completion *done = urb->context;
479
480 complete(done);
481}
482
483/*
484 * Allocate a URB and initialize the various fields of it.
485 * This API is used by the single_step_set_feature test of
486 * EHSET where IN packet of the GetDescriptor request is
487 * sent 15secs after the SETUP packet.
488 * Return NULL if failed.
489 */
490static struct urb *xhci_request_single_step_set_feature_urb(
491 struct usb_device *udev,
492 void *dr,
493 void *buf,
494 struct completion *done)
495{
496 struct urb *urb;
497 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
498 struct usb_host_endpoint *ep;
499
500 urb = usb_alloc_urb(0, GFP_KERNEL);
501 if (!urb)
502 return NULL;
503
504 urb->pipe = usb_rcvctrlpipe(udev, 0);
505 ep = udev->ep_in[usb_pipeendpoint(urb->pipe)];
506 if (!ep) {
507 usb_free_urb(urb);
508 return NULL;
509 }
510
511 /*
512 * Initialize the various URB fields as these are used by the HCD
513 * driver to queue it and as well as when completion happens.
514 */
515 urb->ep = ep;
516 urb->dev = udev;
517 urb->setup_packet = dr;
518 urb->transfer_buffer = buf;
519 urb->transfer_buffer_length = USB_DT_DEVICE_SIZE;
520 urb->complete = xhci_single_step_completion;
521 urb->status = -EINPROGRESS;
522 urb->actual_length = 0;
523 urb->transfer_flags = URB_DIR_IN;
524 usb_get_urb(urb);
525 atomic_inc(&urb->use_count);
526 atomic_inc(&urb->dev->urbnum);
527 usb_hcd_map_urb_for_dma(hcd, urb, GFP_KERNEL);
528 urb->context = done;
529 return urb;
530}
531
532/*
533 * This function implements the USB_PORT_FEAT_TEST handling of the
534 * SINGLE_STEP_SET_FEATURE test mode as defined in the Embedded
535 * High-Speed Electrical Test (EHSET) specification. This simply
536 * issues a GetDescriptor control transfer, with an inserted 15-second
537 * delay after the end of the SETUP stage and before the IN token of
538 * the DATA stage is set. The idea is that this gives the test operator
539 * enough time to configure the oscilloscope to perform a measurement
540 * of the response time between the DATA and ACK packets that follow.
541 */
542static int xhci_ehset_single_step_set_feature(struct usb_hcd *hcd, int port)
543{
544 int retval;
545 struct usb_ctrlrequest *dr;
546 struct urb *urb;
547 struct usb_device *udev;
548 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
549 struct usb_device_descriptor *buf;
550 unsigned long flags;
551 DECLARE_COMPLETION_ONSTACK(done);
552
553 /* Obtain udev of the rhub's child port */
554 udev = hcd->self.root_hub->children[port];
555 if (!udev) {
556 xhci_err(xhci, "No device attached to the RootHub\n");
557 return -ENODEV;
558 }
559 buf = kmalloc(USB_DT_DEVICE_SIZE, GFP_KERNEL);
560 if (!buf)
561 return -ENOMEM;
562
563 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
564 if (!dr) {
565 kfree(buf);
566 return -ENOMEM;
567 }
568
569 /* Fill Setup packet for GetDescriptor */
570 dr->bRequestType = USB_DIR_IN;
571 dr->bRequest = USB_REQ_GET_DESCRIPTOR;
572 dr->wValue = cpu_to_le16(USB_DT_DEVICE << 8);
573 dr->wIndex = 0;
574 dr->wLength = cpu_to_le16(USB_DT_DEVICE_SIZE);
575 urb = xhci_request_single_step_set_feature_urb(udev, dr, buf, &done);
576 if (!urb)
577 goto cleanup;
578
579 /* Now complete just the SETUP stage */
580 spin_lock_irqsave(&xhci->lock, flags);
581 retval = xhci_submit_single_step_set_feature(hcd, urb, 1);
582 spin_unlock_irqrestore(&xhci->lock, flags);
583 if (retval)
584 goto out1;
585
586 if (!wait_for_completion_timeout(&done, msecs_to_jiffies(2000))) {
587 usb_kill_urb(urb);
588 retval = -ETIMEDOUT;
589 xhci_err(xhci, "%s SETUP stage timed out on ep0\n", __func__);
590 goto out1;
591 }
592
593 /* Sleep for 15 seconds; HC will send SOFs during this period */
594 msleep(15 * 1000);
595
596 /* Complete remaining DATA and status stages. Re-use same URB */
597 urb->status = -EINPROGRESS;
598 usb_get_urb(urb);
599 atomic_inc(&urb->use_count);
600 atomic_inc(&urb->dev->urbnum);
601
602 spin_lock_irqsave(&xhci->lock, flags);
603 retval = xhci_submit_single_step_set_feature(hcd, urb, 0);
604 spin_unlock_irqrestore(&xhci->lock, flags);
605 if (!retval && !wait_for_completion_timeout(&done,
606 msecs_to_jiffies(2000))) {
607 usb_kill_urb(urb);
608 retval = -ETIMEDOUT;
609 xhci_err(xhci, "%s IN stage timed out on ep0\n", __func__);
610 }
611out1:
612 usb_free_urb(urb);
613cleanup:
614 kfree(dr);
615 kfree(buf);
616 return retval;
617}
618
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700619int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
620 u16 wIndex, char *buf, u16 wLength)
621{
622 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
huajun lia0885922011-05-03 21:11:00 +0800623 int max_ports;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700624 unsigned long flags;
Andiry Xuc9682df2011-09-23 14:19:48 -0700625 u32 temp, status;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700626 int retval = 0;
Matt Evans28ccd292011-03-29 13:40:46 +1100627 __le32 __iomem **port_array;
Andiry Xube88fe42010-10-14 07:22:57 -0700628 int slot_id;
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800629 struct xhci_bus_state *bus_state;
Andiry Xu2c441782011-04-27 18:07:39 +0800630 u16 link_state = 0;
Sarah Sharp4296c702012-01-06 10:34:31 -0800631 u16 wake_mask = 0;
Manu Gautama8bc8e22013-01-28 16:47:18 +0530632 u16 test_mode = 0;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700633
huajun lia0885922011-05-03 21:11:00 +0800634 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800635 bus_state = &xhci->bus_state[hcd_index(hcd)];
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700636
637 spin_lock_irqsave(&xhci->lock, flags);
638 switch (typeReq) {
639 case GetHubStatus:
640 /* No power source, over-current reported per port */
641 memset(buf, 0, 4);
642 break;
643 case GetHubDescriptor:
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800644 /* Check to make sure userspace is asking for the USB 3.0 hub
645 * descriptor for the USB 3.0 roothub. If not, we stall the
646 * endpoint, like external hubs do.
647 */
648 if (hcd->speed == HCD_USB3 &&
649 (wLength < USB_DT_SS_HUB_SIZE ||
650 wValue != (USB_DT_SS_HUB << 8))) {
651 xhci_dbg(xhci, "Wrong hub descriptor type for "
652 "USB 3.0 roothub.\n");
653 goto error;
654 }
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800655 xhci_hub_descriptor(hcd, xhci,
656 (struct usb_hub_descriptor *) buf);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700657 break;
Sarah Sharp48e82362011-10-06 11:54:23 -0700658 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
659 if ((wValue & 0xff00) != (USB_DT_BOS << 8))
660 goto error;
661
662 if (hcd->speed != HCD_USB3)
663 goto error;
664
665 memcpy(buf, &usb_bos_descriptor,
666 USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE);
667 temp = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
668 buf[12] = HCS_U1_LATENCY(temp);
669 put_unaligned_le16(HCS_U2_LATENCY(temp), &buf[13]);
670
671 spin_unlock_irqrestore(&xhci->lock, flags);
672 return USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700673 case GetPortStatus:
huajun lia0885922011-05-03 21:11:00 +0800674 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700675 goto error;
676 wIndex--;
677 status = 0;
Sarah Sharp5308a912010-12-01 11:34:59 -0800678 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700679 if (temp == 0xffffffff) {
680 retval = -ENODEV;
681 break;
682 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700683 xhci_dbg(xhci, "get port status, actual port %d status = 0x%x\n", wIndex, temp);
684
685 /* wPortChange bits */
686 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -0500687 status |= USB_PORT_STAT_C_CONNECTION << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700688 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -0500689 status |= USB_PORT_STAT_C_ENABLE << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700690 if ((temp & PORT_OCC))
Alan Stern749da5f2010-03-04 17:05:08 -0500691 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Andiry Xu0ed9a572011-04-27 18:07:43 +0800692 if ((temp & PORT_RC))
693 status |= USB_PORT_STAT_C_RESET << 16;
694 /* USB3.0 only */
695 if (hcd->speed == HCD_USB3) {
696 if ((temp & PORT_PLC))
697 status |= USB_PORT_STAT_C_LINK_STATE << 16;
698 if ((temp & PORT_WRC))
699 status |= USB_PORT_STAT_C_BH_RESET << 16;
700 }
701
702 if (hcd->speed != HCD_USB3) {
703 if ((temp & PORT_PLS_MASK) == XDEV_U3
704 && (temp & PORT_POWER))
705 status |= USB_PORT_STAT_SUSPEND;
706 }
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800707 if ((temp & PORT_PLS_MASK) == XDEV_RESUME &&
708 !DEV_SUPERSPEED(temp)) {
Andiry Xu56192532010-10-14 07:23:00 -0700709 if ((temp & PORT_RESET) || !(temp & PORT_PE))
710 goto error;
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800711 if (time_after_eq(jiffies,
712 bus_state->resume_done[wIndex])) {
Andiry Xu56192532010-10-14 07:23:00 -0700713 xhci_dbg(xhci, "Resume USB2 port %d\n",
714 wIndex + 1);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800715 bus_state->resume_done[wIndex] = 0;
Andiry Xuc9682df2011-09-23 14:19:48 -0700716 xhci_set_link_state(xhci, port_array, wIndex,
717 XDEV_U0);
Andiry Xu56192532010-10-14 07:23:00 -0700718 xhci_dbg(xhci, "set port %d resume\n",
719 wIndex + 1);
Sarah Sharp52336302010-12-16 10:49:09 -0800720 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
Andiry Xu56192532010-10-14 07:23:00 -0700721 wIndex + 1);
722 if (!slot_id) {
723 xhci_dbg(xhci, "slot_id is zero\n");
724 goto error;
725 }
726 xhci_ring_device(xhci, slot_id);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800727 bus_state->port_c_suspend |= 1 << wIndex;
728 bus_state->suspended_ports &= ~(1 << wIndex);
Andiry Xu8a8ff2f2011-08-03 16:46:49 +0800729 } else {
730 /*
731 * The resume has been signaling for less than
732 * 20ms. Report the port status as SUSPEND,
733 * let the usbcore check port status again
734 * and clear resume signaling later.
735 */
736 status |= USB_PORT_STAT_SUSPEND;
Andiry Xu56192532010-10-14 07:23:00 -0700737 }
738 }
Andiry Xube88fe42010-10-14 07:22:57 -0700739 if ((temp & PORT_PLS_MASK) == XDEV_U0
740 && (temp & PORT_POWER)
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800741 && (bus_state->suspended_ports & (1 << wIndex))) {
742 bus_state->suspended_ports &= ~(1 << wIndex);
Andiry Xua7114232011-04-27 18:07:50 +0800743 if (hcd->speed != HCD_USB3)
744 bus_state->port_c_suspend |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700745 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700746 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -0500747 status |= USB_PORT_STAT_CONNECTION;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700748 status |= xhci_port_speed(temp);
749 }
750 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -0500751 status |= USB_PORT_STAT_ENABLE;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700752 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -0500753 status |= USB_PORT_STAT_OVERCURRENT;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700754 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -0500755 status |= USB_PORT_STAT_RESET;
Andiry Xu0ed9a572011-04-27 18:07:43 +0800756 if (temp & PORT_POWER) {
757 if (hcd->speed == HCD_USB3)
758 status |= USB_SS_PORT_STAT_POWER;
759 else
760 status |= USB_PORT_STAT_POWER;
761 }
762 /* Port Link State */
763 if (hcd->speed == HCD_USB3) {
764 /* resume state is a xHCI internal state.
765 * Do not report it to usb core.
766 */
767 if ((temp & PORT_PLS_MASK) != XDEV_RESUME)
768 status |= (temp & PORT_PLS_MASK);
769 }
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800770 if (bus_state->port_c_suspend & (1 << wIndex))
Andiry Xube88fe42010-10-14 07:22:57 -0700771 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700772 xhci_dbg(xhci, "Get port status returned 0x%x\n", status);
773 put_unaligned(cpu_to_le32(status), (__le32 *) buf);
774 break;
775 case SetPortFeature:
Manu Gautama8bc8e22013-01-28 16:47:18 +0530776 /* The MSB of wIndex is the TEST Mode */
777 test_mode = (wIndex & 0xff00) >> 8;
Andiry Xu2c441782011-04-27 18:07:39 +0800778 if (wValue == USB_PORT_FEAT_LINK_STATE)
779 link_state = (wIndex & 0xff00) >> 3;
Sarah Sharp4296c702012-01-06 10:34:31 -0800780 if (wValue == USB_PORT_FEAT_REMOTE_WAKE_MASK)
781 wake_mask = wIndex & 0xff00;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700782 wIndex &= 0xff;
huajun lia0885922011-05-03 21:11:00 +0800783 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700784 goto error;
785 wIndex--;
Sarah Sharp5308a912010-12-01 11:34:59 -0800786 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700787 if (temp == 0xffffffff) {
788 retval = -ENODEV;
789 break;
790 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700791 temp = xhci_port_state_to_neutral(temp);
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800792 /* FIXME: What new port features do we need to support? */
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700793 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700794 case USB_PORT_FEAT_SUSPEND:
Sarah Sharp5308a912010-12-01 11:34:59 -0800795 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xu65580b432011-09-23 14:19:52 -0700796 if ((temp & PORT_PLS_MASK) != XDEV_U0) {
797 /* Resume the port to U0 first */
798 xhci_set_link_state(xhci, port_array, wIndex,
799 XDEV_U0);
800 spin_unlock_irqrestore(&xhci->lock, flags);
801 msleep(10);
802 spin_lock_irqsave(&xhci->lock, flags);
803 }
Andiry Xube88fe42010-10-14 07:22:57 -0700804 /* In spec software should not attempt to suspend
805 * a port unless the port reports that it is in the
806 * enabled (PED = ‘1’,PLS < ‘3’) state.
807 */
Andiry Xu65580b432011-09-23 14:19:52 -0700808 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xube88fe42010-10-14 07:22:57 -0700809 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET)
810 || (temp & PORT_PLS_MASK) >= XDEV_U3) {
811 xhci_warn(xhci, "USB core suspending device "
812 "not in U0/U1/U2.\n");
813 goto error;
814 }
815
Sarah Sharp52336302010-12-16 10:49:09 -0800816 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
817 wIndex + 1);
Andiry Xube88fe42010-10-14 07:22:57 -0700818 if (!slot_id) {
819 xhci_warn(xhci, "slot_id is zero\n");
820 goto error;
821 }
822 /* unlock to execute stop endpoint commands */
823 spin_unlock_irqrestore(&xhci->lock, flags);
824 xhci_stop_device(xhci, slot_id, 1);
825 spin_lock_irqsave(&xhci->lock, flags);
826
Andiry Xuc9682df2011-09-23 14:19:48 -0700827 xhci_set_link_state(xhci, port_array, wIndex, XDEV_U3);
Andiry Xube88fe42010-10-14 07:22:57 -0700828
829 spin_unlock_irqrestore(&xhci->lock, flags);
830 msleep(10); /* wait device to enter */
831 spin_lock_irqsave(&xhci->lock, flags);
832
Sarah Sharp5308a912010-12-01 11:34:59 -0800833 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800834 bus_state->suspended_ports |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700835 break;
Andiry Xu2c441782011-04-27 18:07:39 +0800836 case USB_PORT_FEAT_LINK_STATE:
837 temp = xhci_readl(xhci, port_array[wIndex]);
838 /* Software should not attempt to set
839 * port link state above '5' (Rx.Detect) and the port
840 * must be enabled.
841 */
842 if ((temp & PORT_PE) == 0 ||
843 (link_state > USB_SS_PORT_LS_RX_DETECT)) {
844 xhci_warn(xhci, "Cannot set link state.\n");
845 goto error;
846 }
847
848 if (link_state == USB_SS_PORT_LS_U3) {
849 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
850 wIndex + 1);
851 if (slot_id) {
852 /* unlock to execute stop endpoint
853 * commands */
854 spin_unlock_irqrestore(&xhci->lock,
855 flags);
856 xhci_stop_device(xhci, slot_id, 1);
857 spin_lock_irqsave(&xhci->lock, flags);
858 }
859 }
860
Andiry Xuc9682df2011-09-23 14:19:48 -0700861 xhci_set_link_state(xhci, port_array, wIndex,
862 link_state);
Andiry Xu2c441782011-04-27 18:07:39 +0800863
864 spin_unlock_irqrestore(&xhci->lock, flags);
865 msleep(20); /* wait device to enter */
866 spin_lock_irqsave(&xhci->lock, flags);
867
868 temp = xhci_readl(xhci, port_array[wIndex]);
869 if (link_state == USB_SS_PORT_LS_U3)
870 bus_state->suspended_ports |= 1 << wIndex;
871 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700872 case USB_PORT_FEAT_POWER:
873 /*
874 * Turn on ports, even if there isn't per-port switching.
875 * HC will report connect events even before this is set.
876 * However, khubd will ignore the roothub events until
877 * the roothub is registered.
878 */
Sarah Sharp5308a912010-12-01 11:34:59 -0800879 xhci_writel(xhci, temp | PORT_POWER,
880 port_array[wIndex]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530881 if (xhci->quirks & XHCI_PORTSC_DELAY)
882 ndelay(100);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700883
Sarah Sharp5308a912010-12-01 11:34:59 -0800884 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700885 xhci_dbg(xhci, "set port power, actual port %d status = 0x%x\n", wIndex, temp);
886 break;
887 case USB_PORT_FEAT_RESET:
888 temp = (temp | PORT_RESET);
Sarah Sharp5308a912010-12-01 11:34:59 -0800889 xhci_writel(xhci, temp, port_array[wIndex]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530890 if (xhci->quirks & XHCI_PORTSC_DELAY)
891 ndelay(100);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700892
Sarah Sharp5308a912010-12-01 11:34:59 -0800893 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700894 xhci_dbg(xhci, "set port reset, actual port %d status = 0x%x\n", wIndex, temp);
895 break;
Sarah Sharp4296c702012-01-06 10:34:31 -0800896 case USB_PORT_FEAT_REMOTE_WAKE_MASK:
897 xhci_set_remote_wake_mask(xhci, port_array,
898 wIndex, wake_mask);
899 temp = xhci_readl(xhci, port_array[wIndex]);
900 xhci_dbg(xhci, "set port remote wake mask, "
901 "actual port %d status = 0x%x\n",
902 wIndex, temp);
903 break;
Andiry Xua11496e2011-04-27 18:07:29 +0800904 case USB_PORT_FEAT_BH_PORT_RESET:
905 temp |= PORT_WR;
906 xhci_writel(xhci, temp, port_array[wIndex]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +0530907 if (xhci->quirks & XHCI_PORTSC_DELAY)
908 ndelay(100);
Andiry Xua11496e2011-04-27 18:07:29 +0800909
910 temp = xhci_readl(xhci, port_array[wIndex]);
911 break;
Manu Gautama8bc8e22013-01-28 16:47:18 +0530912 case USB_PORT_FEAT_TEST:
913 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
914 wIndex + 1);
915 if (test_mode && test_mode <= 5) {
916 /* unlock to execute stop endpoint commands */
917 spin_unlock_irqrestore(&xhci->lock, flags);
918 xhci_stop_device(xhci, slot_id, 1);
919 spin_lock_irqsave(&xhci->lock, flags);
920 xhci_halt(xhci);
921
922 temp = xhci_readl(xhci, port_array[wIndex] + 1);
923 temp |= test_mode << 28;
924 xhci_writel(xhci, temp, port_array[wIndex] + 1);
Jack Phame60fc8c2013-06-20 13:31:37 -0700925 } else if (test_mode == 6) {
926 spin_unlock_irqrestore(&xhci->lock, flags);
927 retval = xhci_ehset_single_step_set_feature(hcd,
928 wIndex);
929 spin_lock_irqsave(&xhci->lock, flags);
Manu Gautama8bc8e22013-01-28 16:47:18 +0530930 } else {
931 goto error;
932 }
933 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700934 default:
935 goto error;
936 }
Sarah Sharp5308a912010-12-01 11:34:59 -0800937 /* unblock any posted writes */
938 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700939 break;
940 case ClearPortFeature:
huajun lia0885922011-05-03 21:11:00 +0800941 if (!wIndex || wIndex > max_ports)
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700942 goto error;
943 wIndex--;
Sarah Sharp5308a912010-12-01 11:34:59 -0800944 temp = xhci_readl(xhci, port_array[wIndex]);
Sarah Sharpf9de8152010-10-29 14:37:23 -0700945 if (temp == 0xffffffff) {
946 retval = -ENODEV;
947 break;
948 }
Sarah Sharp4bbb0ac2010-11-29 16:14:37 -0800949 /* FIXME: What new port features do we need to support? */
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700950 temp = xhci_port_state_to_neutral(temp);
951 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700952 case USB_PORT_FEAT_SUSPEND:
Sarah Sharp5308a912010-12-01 11:34:59 -0800953 temp = xhci_readl(xhci, port_array[wIndex]);
Andiry Xube88fe42010-10-14 07:22:57 -0700954 xhci_dbg(xhci, "clear USB_PORT_FEAT_SUSPEND\n");
955 xhci_dbg(xhci, "PORTSC %04x\n", temp);
956 if (temp & PORT_RESET)
957 goto error;
Andiry Xu5ac04bf2011-08-03 16:46:48 +0800958 if ((temp & PORT_PLS_MASK) == XDEV_U3) {
Andiry Xube88fe42010-10-14 07:22:57 -0700959 if ((temp & PORT_PE) == 0)
960 goto error;
Andiry Xube88fe42010-10-14 07:22:57 -0700961
Andiry Xuc9682df2011-09-23 14:19:48 -0700962 xhci_set_link_state(xhci, port_array, wIndex,
963 XDEV_RESUME);
964 spin_unlock_irqrestore(&xhci->lock, flags);
Andiry Xua7114232011-04-27 18:07:50 +0800965 msleep(20);
966 spin_lock_irqsave(&xhci->lock, flags);
Andiry Xuc9682df2011-09-23 14:19:48 -0700967 xhci_set_link_state(xhci, port_array, wIndex,
968 XDEV_U0);
Andiry Xube88fe42010-10-14 07:22:57 -0700969 }
Andiry Xua7114232011-04-27 18:07:50 +0800970 bus_state->port_c_suspend |= 1 << wIndex;
Andiry Xube88fe42010-10-14 07:22:57 -0700971
Sarah Sharp52336302010-12-16 10:49:09 -0800972 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
973 wIndex + 1);
Andiry Xube88fe42010-10-14 07:22:57 -0700974 if (!slot_id) {
975 xhci_dbg(xhci, "slot_id is zero\n");
976 goto error;
977 }
978 xhci_ring_device(xhci, slot_id);
979 break;
980 case USB_PORT_FEAT_C_SUSPEND:
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800981 bus_state->port_c_suspend &= ~(1 << wIndex);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700982 case USB_PORT_FEAT_C_RESET:
Andiry Xua11496e2011-04-27 18:07:29 +0800983 case USB_PORT_FEAT_C_BH_PORT_RESET:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700984 case USB_PORT_FEAT_C_CONNECTION:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700985 case USB_PORT_FEAT_C_OVER_CURRENT:
Sarah Sharp6219c042009-12-09 15:59:11 -0800986 case USB_PORT_FEAT_C_ENABLE:
Andiry Xu85387c02011-04-27 18:07:35 +0800987 case USB_PORT_FEAT_C_PORT_LINK_STATE:
Sarah Sharp34fb5622009-12-09 15:59:08 -0800988 xhci_clear_port_change_bit(xhci, wValue, wIndex,
Sarah Sharp5308a912010-12-01 11:34:59 -0800989 port_array[wIndex], temp);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700990 break;
Sarah Sharp6219c042009-12-09 15:59:11 -0800991 case USB_PORT_FEAT_ENABLE:
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800992 xhci_disable_port(hcd, xhci, wIndex,
Sarah Sharp5308a912010-12-01 11:34:59 -0800993 port_array[wIndex], temp);
Sarah Sharp6219c042009-12-09 15:59:11 -0800994 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700995 default:
996 goto error;
997 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700998 break;
999 default:
1000error:
1001 /* "stall" on error */
1002 retval = -EPIPE;
1003 }
1004 spin_unlock_irqrestore(&xhci->lock, flags);
1005 return retval;
1006}
1007
1008/*
1009 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
1010 * Ports are 0-indexed from the HCD point of view,
1011 * and 1-indexed from the USB core pointer of view.
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001012 *
1013 * Note that the status change bits will be cleared as soon as a port status
1014 * change event is generated, so we use the saved status from that event.
1015 */
1016int xhci_hub_status_data(struct usb_hcd *hcd, char *buf)
1017{
1018 unsigned long flags;
1019 u32 temp, status;
Andiry Xu56192532010-10-14 07:23:00 -07001020 u32 mask;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001021 int i, retval;
1022 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
huajun lia0885922011-05-03 21:11:00 +08001023 int max_ports;
Matt Evans28ccd292011-03-29 13:40:46 +11001024 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001025 struct xhci_bus_state *bus_state;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001026
huajun lia0885922011-05-03 21:11:00 +08001027 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001028 bus_state = &xhci->bus_state[hcd_index(hcd)];
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001029
1030 /* Initial status is no changes */
huajun lia0885922011-05-03 21:11:00 +08001031 retval = (max_ports + 8) / 8;
William Gulland419a8e82010-05-12 10:20:34 -07001032 memset(buf, 0, retval);
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001033 status = 0;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001034
Greg KH44f4c3e2011-09-19 16:05:11 -07001035 mask = PORT_CSC | PORT_PEC | PORT_OCC | PORT_PLC | PORT_WRC;
Andiry Xu56192532010-10-14 07:23:00 -07001036
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001037 spin_lock_irqsave(&xhci->lock, flags);
1038 /* For each port, did anything change? If so, set that bit in buf. */
huajun lia0885922011-05-03 21:11:00 +08001039 for (i = 0; i < max_ports; i++) {
Sarah Sharp5308a912010-12-01 11:34:59 -08001040 temp = xhci_readl(xhci, port_array[i]);
Sarah Sharpf9de8152010-10-29 14:37:23 -07001041 if (temp == 0xffffffff) {
1042 retval = -ENODEV;
1043 break;
1044 }
Andiry Xu56192532010-10-14 07:23:00 -07001045 if ((temp & mask) != 0 ||
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001046 (bus_state->port_c_suspend & 1 << i) ||
1047 (bus_state->resume_done[i] && time_after_eq(
1048 jiffies, bus_state->resume_done[i]))) {
William Gulland419a8e82010-05-12 10:20:34 -07001049 buf[(i + 1) / 8] |= 1 << (i + 1) % 8;
Sarah Sharp0f2a7932009-04-27 19:57:12 -07001050 status = 1;
1051 }
1052 }
1053 spin_unlock_irqrestore(&xhci->lock, flags);
1054 return status ? retval : 0;
1055}
Andiry Xu9777e3c2010-10-14 07:23:03 -07001056
1057#ifdef CONFIG_PM
1058
1059int xhci_bus_suspend(struct usb_hcd *hcd)
1060{
1061 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp518e8482010-12-15 11:56:29 -08001062 int max_ports, port_index;
Matt Evans28ccd292011-03-29 13:40:46 +11001063 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001064 struct xhci_bus_state *bus_state;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001065 unsigned long flags;
1066
huajun lia0885922011-05-03 21:11:00 +08001067 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001068 bus_state = &xhci->bus_state[hcd_index(hcd)];
Andiry Xu9777e3c2010-10-14 07:23:03 -07001069
1070 spin_lock_irqsave(&xhci->lock, flags);
1071
1072 if (hcd->self.root_hub->do_remote_wakeup) {
Sarah Sharp518e8482010-12-15 11:56:29 -08001073 port_index = max_ports;
1074 while (port_index--) {
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001075 if (bus_state->resume_done[port_index] != 0) {
Andiry Xu9777e3c2010-10-14 07:23:03 -07001076 spin_unlock_irqrestore(&xhci->lock, flags);
1077 xhci_dbg(xhci, "suspend failed because "
1078 "port %d is resuming\n",
Sarah Sharp518e8482010-12-15 11:56:29 -08001079 port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001080 return -EBUSY;
1081 }
1082 }
1083 }
1084
Sarah Sharp518e8482010-12-15 11:56:29 -08001085 port_index = max_ports;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001086 bus_state->bus_suspended = 0;
Sarah Sharp518e8482010-12-15 11:56:29 -08001087 while (port_index--) {
Andiry Xu9777e3c2010-10-14 07:23:03 -07001088 /* suspend the port if the port is not suspended */
Andiry Xu9777e3c2010-10-14 07:23:03 -07001089 u32 t1, t2;
1090 int slot_id;
1091
Sarah Sharp5308a912010-12-01 11:34:59 -08001092 t1 = xhci_readl(xhci, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001093 t2 = xhci_port_state_to_neutral(t1);
1094
1095 if ((t1 & PORT_PE) && !(t1 & PORT_PLS_MASK)) {
Sarah Sharp518e8482010-12-15 11:56:29 -08001096 xhci_dbg(xhci, "port %d not suspended\n", port_index);
Sarah Sharp52336302010-12-16 10:49:09 -08001097 slot_id = xhci_find_slot_id_by_port(hcd, xhci,
Sarah Sharp518e8482010-12-15 11:56:29 -08001098 port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001099 if (slot_id) {
1100 spin_unlock_irqrestore(&xhci->lock, flags);
1101 xhci_stop_device(xhci, slot_id, 1);
1102 spin_lock_irqsave(&xhci->lock, flags);
1103 }
1104 t2 &= ~PORT_PLS_MASK;
1105 t2 |= PORT_LINK_STROBE | XDEV_U3;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001106 set_bit(port_index, &bus_state->bus_suspended);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001107 }
Sarah Sharp4296c702012-01-06 10:34:31 -08001108 /* USB core sets remote wake mask for USB 3.0 hubs,
1109 * including the USB 3.0 roothub, but only if CONFIG_USB_SUSPEND
1110 * is enabled, so also enable remote wake here.
1111 */
Andiry Xu9777e3c2010-10-14 07:23:03 -07001112 if (hcd->self.root_hub->do_remote_wakeup) {
1113 if (t1 & PORT_CONNECT) {
1114 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
1115 t2 &= ~PORT_WKCONN_E;
1116 } else {
1117 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
1118 t2 &= ~PORT_WKDISC_E;
1119 }
1120 } else
1121 t2 &= ~PORT_WAKE_BITS;
1122
1123 t1 = xhci_port_state_to_neutral(t1);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301124 if (t1 != t2) {
Sarah Sharp5308a912010-12-01 11:34:59 -08001125 xhci_writel(xhci, t2, port_array[port_index]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301126 if (xhci->quirks & XHCI_PORTSC_DELAY)
1127 ndelay(100);
1128 }
Andiry Xu9777e3c2010-10-14 07:23:03 -07001129
Andiry Xu4f0871a2011-04-19 17:17:39 +08001130 if (hcd->speed != HCD_USB3) {
Andiry Xu9777e3c2010-10-14 07:23:03 -07001131 /* enable remote wake up for USB 2.0 */
Matt Evans28ccd292011-03-29 13:40:46 +11001132 __le32 __iomem *addr;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001133 u32 tmp;
1134
Sarah Sharp5308a912010-12-01 11:34:59 -08001135 /* Add one to the port status register address to get
1136 * the port power control register address.
1137 */
1138 addr = port_array[port_index] + 1;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001139 tmp = xhci_readl(xhci, addr);
1140 tmp |= PORT_RWE;
1141 xhci_writel(xhci, tmp, addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301142 if (xhci->quirks & XHCI_PORTSC_DELAY)
1143 ndelay(100);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001144 }
1145 }
1146 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001147 bus_state->next_statechange = jiffies + msecs_to_jiffies(10);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001148 spin_unlock_irqrestore(&xhci->lock, flags);
1149 return 0;
1150}
1151
1152int xhci_bus_resume(struct usb_hcd *hcd)
1153{
1154 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp518e8482010-12-15 11:56:29 -08001155 int max_ports, port_index;
Matt Evans28ccd292011-03-29 13:40:46 +11001156 __le32 __iomem **port_array;
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001157 struct xhci_bus_state *bus_state;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001158 u32 temp;
1159 unsigned long flags;
1160
huajun lia0885922011-05-03 21:11:00 +08001161 max_ports = xhci_get_ports(hcd, &port_array);
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001162 bus_state = &xhci->bus_state[hcd_index(hcd)];
Andiry Xu9777e3c2010-10-14 07:23:03 -07001163
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001164 if (time_before(jiffies, bus_state->next_statechange))
Andiry Xu9777e3c2010-10-14 07:23:03 -07001165 msleep(5);
1166
1167 spin_lock_irqsave(&xhci->lock, flags);
1168 if (!HCD_HW_ACCESSIBLE(hcd)) {
1169 spin_unlock_irqrestore(&xhci->lock, flags);
1170 return -ESHUTDOWN;
1171 }
1172
1173 /* delay the irqs */
1174 temp = xhci_readl(xhci, &xhci->op_regs->command);
1175 temp &= ~CMD_EIE;
1176 xhci_writel(xhci, temp, &xhci->op_regs->command);
1177
Sarah Sharp518e8482010-12-15 11:56:29 -08001178 port_index = max_ports;
1179 while (port_index--) {
Andiry Xu9777e3c2010-10-14 07:23:03 -07001180 /* Check whether need resume ports. If needed
1181 resume port and disable remote wakeup */
Andiry Xu9777e3c2010-10-14 07:23:03 -07001182 u32 temp;
1183 int slot_id;
1184
Sarah Sharp5308a912010-12-01 11:34:59 -08001185 temp = xhci_readl(xhci, port_array[port_index]);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001186 if (DEV_SUPERSPEED(temp))
1187 temp &= ~(PORT_RWC_BITS | PORT_CEC | PORT_WAKE_BITS);
1188 else
1189 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001190 if (test_bit(port_index, &bus_state->bus_suspended) &&
Andiry Xu9777e3c2010-10-14 07:23:03 -07001191 (temp & PORT_PLS_MASK)) {
1192 if (DEV_SUPERSPEED(temp)) {
Andiry Xuc9682df2011-09-23 14:19:48 -07001193 xhci_set_link_state(xhci, port_array,
1194 port_index, XDEV_U0);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001195 } else {
Andiry Xuc9682df2011-09-23 14:19:48 -07001196 xhci_set_link_state(xhci, port_array,
1197 port_index, XDEV_RESUME);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001198
1199 spin_unlock_irqrestore(&xhci->lock, flags);
1200 msleep(20);
1201 spin_lock_irqsave(&xhci->lock, flags);
1202
Andiry Xuc9682df2011-09-23 14:19:48 -07001203 xhci_set_link_state(xhci, port_array,
1204 port_index, XDEV_U0);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001205 }
Andiry Xu4f0871a2011-04-19 17:17:39 +08001206 /* wait for the port to enter U0 and report port link
1207 * state change.
1208 */
1209 spin_unlock_irqrestore(&xhci->lock, flags);
1210 msleep(20);
1211 spin_lock_irqsave(&xhci->lock, flags);
1212
1213 /* Clear PLC */
Andiry Xud2f52c92011-09-23 14:19:49 -07001214 xhci_test_and_clear_bit(xhci, port_array, port_index,
1215 PORT_PLC);
Andiry Xu4f0871a2011-04-19 17:17:39 +08001216
Sarah Sharp52336302010-12-16 10:49:09 -08001217 slot_id = xhci_find_slot_id_by_port(hcd,
1218 xhci, port_index + 1);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001219 if (slot_id)
1220 xhci_ring_device(xhci, slot_id);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301221 } else {
Sarah Sharp5308a912010-12-01 11:34:59 -08001222 xhci_writel(xhci, temp, port_array[port_index]);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301223 if (xhci->quirks & XHCI_PORTSC_DELAY)
1224 ndelay(100);
1225 }
Andiry Xu9777e3c2010-10-14 07:23:03 -07001226
Andiry Xu4f0871a2011-04-19 17:17:39 +08001227 if (hcd->speed != HCD_USB3) {
Andiry Xu9777e3c2010-10-14 07:23:03 -07001228 /* disable remote wake up for USB 2.0 */
Matt Evans28ccd292011-03-29 13:40:46 +11001229 __le32 __iomem *addr;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001230 u32 tmp;
1231
Sarah Sharp5308a912010-12-01 11:34:59 -08001232 /* Add one to the port status register address to get
1233 * the port power control register address.
1234 */
1235 addr = port_array[port_index] + 1;
Andiry Xu9777e3c2010-10-14 07:23:03 -07001236 tmp = xhci_readl(xhci, addr);
1237 tmp &= ~PORT_RWE;
1238 xhci_writel(xhci, tmp, addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05301239 if (xhci->quirks & XHCI_PORTSC_DELAY)
1240 ndelay(100);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001241 }
1242 }
1243
1244 (void) xhci_readl(xhci, &xhci->op_regs->command);
1245
Sarah Sharp20b67cf2010-12-15 12:47:14 -08001246 bus_state->next_statechange = jiffies + msecs_to_jiffies(5);
Andiry Xu9777e3c2010-10-14 07:23:03 -07001247 /* re-enable irqs */
1248 temp = xhci_readl(xhci, &xhci->op_regs->command);
1249 temp |= CMD_EIE;
1250 xhci_writel(xhci, temp, &xhci->op_regs->command);
1251 temp = xhci_readl(xhci, &xhci->op_regs->command);
1252
1253 spin_unlock_irqrestore(&xhci->lock, flags);
1254 return 0;
1255}
1256
Sarah Sharp436a3892010-10-15 14:59:15 -07001257#endif /* CONFIG_PM */