blob: 14b48b261e06a13b58d5e27588b392974afcd5cb [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
23#include <asm/unaligned.h>
24
25#include "xhci.h"
26
27static void xhci_hub_descriptor(struct xhci_hcd *xhci,
28 struct usb_hub_descriptor *desc)
29{
30 int ports;
31 u16 temp;
32
33 ports = HCS_MAX_PORTS(xhci->hcs_params1);
34
35 /* USB 3.0 hubs have a different descriptor, but we fake this for now */
36 desc->bDescriptorType = 0x29;
37 desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.9 says 20ms max */
38 desc->bHubContrCurrent = 0;
39
40 desc->bNbrPorts = ports;
41 temp = 1 + (ports / 8);
42 desc->bDescLength = 7 + 2 * temp;
43
44 /* Why does core/hcd.h define bitmap? It's just confusing. */
45 memset(&desc->DeviceRemovable[0], 0, temp);
46 memset(&desc->DeviceRemovable[temp], 0xff, temp);
47
48 /* Ugh, these should be #defines, FIXME */
49 /* Using table 11-13 in USB 2.0 spec. */
50 temp = 0;
51 /* Bits 1:0 - support port power switching, or power always on */
52 if (HCC_PPC(xhci->hcc_params))
53 temp |= 0x0001;
54 else
55 temp |= 0x0002;
56 /* Bit 2 - root hubs are not part of a compound device */
57 /* Bits 4:3 - individual port over current protection */
58 temp |= 0x0008;
59 /* Bits 6:5 - no TTs in root ports */
60 /* Bit 7 - no port indicators */
61 desc->wHubCharacteristics = (__force __u16) cpu_to_le16(temp);
62}
63
64static unsigned int xhci_port_speed(unsigned int port_status)
65{
66 if (DEV_LOWSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -050067 return USB_PORT_STAT_LOW_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070068 if (DEV_HIGHSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -050069 return USB_PORT_STAT_HIGH_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070070 if (DEV_SUPERSPEED(port_status))
Alan Stern288ead42010-03-04 11:32:30 -050071 return USB_PORT_STAT_SUPER_SPEED;
Sarah Sharp0f2a7932009-04-27 19:57:12 -070072 /*
73 * FIXME: Yes, we should check for full speed, but the core uses that as
74 * a default in portspeed() in usb/core/hub.c (which is the only place
Alan Stern288ead42010-03-04 11:32:30 -050075 * USB_PORT_STAT_*_SPEED is used).
Sarah Sharp0f2a7932009-04-27 19:57:12 -070076 */
77 return 0;
78}
79
80/*
81 * These bits are Read Only (RO) and should be saved and written to the
82 * registers: 0, 3, 10:13, 30
83 * connect status, over-current status, port speed, and device removable.
84 * connect status and port speed are also sticky - meaning they're in
85 * the AUX well and they aren't changed by a hot, warm, or cold reset.
86 */
87#define XHCI_PORT_RO ((1<<0) | (1<<3) | (0xf<<10) | (1<<30))
88/*
89 * These bits are RW; writing a 0 clears the bit, writing a 1 sets the bit:
90 * bits 5:8, 9, 14:15, 25:27
91 * link state, port power, port indicator state, "wake on" enable state
92 */
93#define XHCI_PORT_RWS ((0xf<<5) | (1<<9) | (0x3<<14) | (0x7<<25))
94/*
95 * These bits are RW; writing a 1 sets the bit, writing a 0 has no effect:
96 * bit 4 (port reset)
97 */
98#define XHCI_PORT_RW1S ((1<<4))
99/*
100 * These bits are RW; writing a 1 clears the bit, writing a 0 has no effect:
101 * bits 1, 17, 18, 19, 20, 21, 22, 23
102 * port enable/disable, and
103 * change bits: connect, PED, warm port reset changed (reserved zero for USB 2.0 ports),
104 * over-current, reset, link state, and L1 change
105 */
106#define XHCI_PORT_RW1CS ((1<<1) | (0x7f<<17))
107/*
108 * Bit 16 is RW, and writing a '1' to it causes the link state control to be
109 * latched in
110 */
111#define XHCI_PORT_RW ((1<<16))
112/*
113 * These bits are Reserved Zero (RsvdZ) and zero should be written to them:
114 * bits 2, 24, 28:31
115 */
116#define XHCI_PORT_RZ ((1<<2) | (1<<24) | (0xf<<28))
117
118/*
119 * Given a port state, this function returns a value that would result in the
120 * port being in the same state, if the value was written to the port status
121 * control register.
122 * Save Read Only (RO) bits and save read/write bits where
123 * writing a 0 clears the bit and writing a 1 sets the bit (RWS).
124 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect.
125 */
126static u32 xhci_port_state_to_neutral(u32 state)
127{
128 /* Save read-only status and port state */
129 return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS);
130}
131
Andiry Xube88fe42010-10-14 07:22:57 -0700132/*
133 * find slot id based on port number.
134 */
135static int xhci_find_slot_id_by_port(struct xhci_hcd *xhci, u16 port)
136{
137 int slot_id;
138 int i;
139
140 slot_id = 0;
141 for (i = 0; i < MAX_HC_SLOTS; i++) {
142 if (!xhci->devs[i])
143 continue;
144 if (xhci->devs[i]->port == port) {
145 slot_id = i;
146 break;
147 }
148 }
149
150 return slot_id;
151}
152
153/*
154 * Stop device
155 * It issues stop endpoint command for EP 0 to 30. And wait the last command
156 * to complete.
157 * suspend will set to 1, if suspend bit need to set in command.
158 */
159static int xhci_stop_device(struct xhci_hcd *xhci, int slot_id, int suspend)
160{
161 struct xhci_virt_device *virt_dev;
162 struct xhci_command *cmd;
163 unsigned long flags;
164 int timeleft;
165 int ret;
166 int i;
167
168 ret = 0;
169 virt_dev = xhci->devs[slot_id];
170 cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
171 if (!cmd) {
172 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
173 return -ENOMEM;
174 }
175
176 spin_lock_irqsave(&xhci->lock, flags);
177 for (i = LAST_EP_INDEX; i > 0; i--) {
178 if (virt_dev->eps[i].ring && virt_dev->eps[i].ring->dequeue)
179 xhci_queue_stop_endpoint(xhci, slot_id, i, suspend);
180 }
181 cmd->command_trb = xhci->cmd_ring->enqueue;
182 list_add_tail(&cmd->cmd_list, &virt_dev->cmd_list);
183 xhci_queue_stop_endpoint(xhci, slot_id, 0, suspend);
184 xhci_ring_cmd_db(xhci);
185 spin_unlock_irqrestore(&xhci->lock, flags);
186
187 /* Wait for last stop endpoint command to finish */
188 timeleft = wait_for_completion_interruptible_timeout(
189 cmd->completion,
190 USB_CTRL_SET_TIMEOUT);
191 if (timeleft <= 0) {
192 xhci_warn(xhci, "%s while waiting for stop endpoint command\n",
193 timeleft == 0 ? "Timeout" : "Signal");
194 spin_lock_irqsave(&xhci->lock, flags);
195 /* The timeout might have raced with the event ring handler, so
196 * only delete from the list if the item isn't poisoned.
197 */
198 if (cmd->cmd_list.next != LIST_POISON1)
199 list_del(&cmd->cmd_list);
200 spin_unlock_irqrestore(&xhci->lock, flags);
201 ret = -ETIME;
202 goto command_cleanup;
203 }
204
205command_cleanup:
206 xhci_free_command(xhci, cmd);
207 return ret;
208}
209
210/*
211 * Ring device, it rings the all doorbells unconditionally.
212 */
213static void xhci_ring_device(struct xhci_hcd *xhci, int slot_id)
214{
215 int i;
216
217 for (i = 0; i < LAST_EP_INDEX + 1; i++)
218 if (xhci->devs[slot_id]->eps[i].ring &&
219 xhci->devs[slot_id]->eps[i].ring->dequeue)
220 xhci_ring_ep_doorbell(xhci, slot_id, i, 0);
221
222 return;
223}
224
Sarah Sharp6219c0472009-12-09 15:59:11 -0800225static void xhci_disable_port(struct xhci_hcd *xhci, u16 wIndex,
226 u32 __iomem *addr, u32 port_status)
227{
228 /* Write 1 to disable the port */
229 xhci_writel(xhci, port_status | PORT_PE, addr);
230 port_status = xhci_readl(xhci, addr);
231 xhci_dbg(xhci, "disable port, actual port %d status = 0x%x\n",
232 wIndex, port_status);
233}
234
Sarah Sharp34fb5622009-12-09 15:59:08 -0800235static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue,
236 u16 wIndex, u32 __iomem *addr, u32 port_status)
237{
238 char *port_change_bit;
239 u32 status;
240
241 switch (wValue) {
242 case USB_PORT_FEAT_C_RESET:
243 status = PORT_RC;
244 port_change_bit = "reset";
245 break;
246 case USB_PORT_FEAT_C_CONNECTION:
247 status = PORT_CSC;
248 port_change_bit = "connect";
249 break;
250 case USB_PORT_FEAT_C_OVER_CURRENT:
251 status = PORT_OCC;
252 port_change_bit = "over-current";
253 break;
Sarah Sharp6219c0472009-12-09 15:59:11 -0800254 case USB_PORT_FEAT_C_ENABLE:
255 status = PORT_PEC;
256 port_change_bit = "enable/disable";
257 break;
Andiry Xube88fe42010-10-14 07:22:57 -0700258 case USB_PORT_FEAT_C_SUSPEND:
259 status = PORT_PLC;
260 port_change_bit = "suspend/resume";
261 break;
Sarah Sharp34fb5622009-12-09 15:59:08 -0800262 default:
263 /* Should never happen */
264 return;
265 }
266 /* Change bits are all write 1 to clear */
267 xhci_writel(xhci, port_status | status, addr);
268 port_status = xhci_readl(xhci, addr);
269 xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n",
270 port_change_bit, wIndex, port_status);
271}
272
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700273int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
274 u16 wIndex, char *buf, u16 wLength)
275{
276 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
277 int ports;
278 unsigned long flags;
279 u32 temp, status;
280 int retval = 0;
281 u32 __iomem *addr;
Andiry Xube88fe42010-10-14 07:22:57 -0700282 int slot_id;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700283
284 ports = HCS_MAX_PORTS(xhci->hcs_params1);
285
286 spin_lock_irqsave(&xhci->lock, flags);
287 switch (typeReq) {
288 case GetHubStatus:
289 /* No power source, over-current reported per port */
290 memset(buf, 0, 4);
291 break;
292 case GetHubDescriptor:
293 xhci_hub_descriptor(xhci, (struct usb_hub_descriptor *) buf);
294 break;
295 case GetPortStatus:
296 if (!wIndex || wIndex > ports)
297 goto error;
298 wIndex--;
299 status = 0;
300 addr = &xhci->op_regs->port_status_base + NUM_PORT_REGS*(wIndex & 0xff);
301 temp = xhci_readl(xhci, addr);
302 xhci_dbg(xhci, "get port status, actual port %d status = 0x%x\n", wIndex, temp);
303
304 /* wPortChange bits */
305 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -0500306 status |= USB_PORT_STAT_C_CONNECTION << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700307 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -0500308 status |= USB_PORT_STAT_C_ENABLE << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700309 if ((temp & PORT_OCC))
Alan Stern749da5f2010-03-04 17:05:08 -0500310 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700311 /*
Andiry Xube88fe42010-10-14 07:22:57 -0700312 * FIXME ignoring reset and USB 2.1/3.0 specific
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700313 * changes
314 */
Andiry Xube88fe42010-10-14 07:22:57 -0700315 if ((temp & PORT_PLS_MASK) == XDEV_U3
316 && (temp & PORT_POWER))
317 status |= 1 << USB_PORT_FEAT_SUSPEND;
318 if ((temp & PORT_PLS_MASK) == XDEV_U0
319 && (temp & PORT_POWER)
320 && (xhci->suspended_ports[wIndex >> 5] &
321 (1 << (wIndex & 31)))) {
322 xhci->suspended_ports[wIndex >> 5] &=
323 ~(1 << (wIndex & 31));
324 xhci->port_c_suspend[wIndex >> 5] |=
325 1 << (wIndex & 31);
326 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700327 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -0500328 status |= USB_PORT_STAT_CONNECTION;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700329 status |= xhci_port_speed(temp);
330 }
331 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -0500332 status |= USB_PORT_STAT_ENABLE;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700333 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -0500334 status |= USB_PORT_STAT_OVERCURRENT;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700335 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -0500336 status |= USB_PORT_STAT_RESET;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700337 if (temp & PORT_POWER)
Alan Stern749da5f2010-03-04 17:05:08 -0500338 status |= USB_PORT_STAT_POWER;
Andiry Xube88fe42010-10-14 07:22:57 -0700339 if (xhci->port_c_suspend[wIndex >> 5] & (1 << (wIndex & 31)))
340 status |= 1 << USB_PORT_FEAT_C_SUSPEND;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700341 xhci_dbg(xhci, "Get port status returned 0x%x\n", status);
342 put_unaligned(cpu_to_le32(status), (__le32 *) buf);
343 break;
344 case SetPortFeature:
345 wIndex &= 0xff;
346 if (!wIndex || wIndex > ports)
347 goto error;
348 wIndex--;
349 addr = &xhci->op_regs->port_status_base + NUM_PORT_REGS*(wIndex & 0xff);
350 temp = xhci_readl(xhci, addr);
351 temp = xhci_port_state_to_neutral(temp);
352 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700353 case USB_PORT_FEAT_SUSPEND:
354 temp = xhci_readl(xhci, addr);
355 /* In spec software should not attempt to suspend
356 * a port unless the port reports that it is in the
357 * enabled (PED = ‘1’,PLS < ‘3’) state.
358 */
359 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET)
360 || (temp & PORT_PLS_MASK) >= XDEV_U3) {
361 xhci_warn(xhci, "USB core suspending device "
362 "not in U0/U1/U2.\n");
363 goto error;
364 }
365
366 slot_id = xhci_find_slot_id_by_port(xhci, wIndex + 1);
367 if (!slot_id) {
368 xhci_warn(xhci, "slot_id is zero\n");
369 goto error;
370 }
371 /* unlock to execute stop endpoint commands */
372 spin_unlock_irqrestore(&xhci->lock, flags);
373 xhci_stop_device(xhci, slot_id, 1);
374 spin_lock_irqsave(&xhci->lock, flags);
375
376 temp = xhci_port_state_to_neutral(temp);
377 temp &= ~PORT_PLS_MASK;
378 temp |= PORT_LINK_STROBE | XDEV_U3;
379 xhci_writel(xhci, temp, addr);
380
381 spin_unlock_irqrestore(&xhci->lock, flags);
382 msleep(10); /* wait device to enter */
383 spin_lock_irqsave(&xhci->lock, flags);
384
385 temp = xhci_readl(xhci, addr);
386 xhci->suspended_ports[wIndex >> 5] |=
387 1 << (wIndex & (31));
388 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700389 case USB_PORT_FEAT_POWER:
390 /*
391 * Turn on ports, even if there isn't per-port switching.
392 * HC will report connect events even before this is set.
393 * However, khubd will ignore the roothub events until
394 * the roothub is registered.
395 */
396 xhci_writel(xhci, temp | PORT_POWER, addr);
397
398 temp = xhci_readl(xhci, addr);
399 xhci_dbg(xhci, "set port power, actual port %d status = 0x%x\n", wIndex, temp);
400 break;
401 case USB_PORT_FEAT_RESET:
402 temp = (temp | PORT_RESET);
403 xhci_writel(xhci, temp, addr);
404
405 temp = xhci_readl(xhci, addr);
406 xhci_dbg(xhci, "set port reset, actual port %d status = 0x%x\n", wIndex, temp);
407 break;
408 default:
409 goto error;
410 }
411 temp = xhci_readl(xhci, addr); /* unblock any posted writes */
412 break;
413 case ClearPortFeature:
414 if (!wIndex || wIndex > ports)
415 goto error;
416 wIndex--;
417 addr = &xhci->op_regs->port_status_base +
418 NUM_PORT_REGS*(wIndex & 0xff);
419 temp = xhci_readl(xhci, addr);
420 temp = xhci_port_state_to_neutral(temp);
421 switch (wValue) {
Andiry Xube88fe42010-10-14 07:22:57 -0700422 case USB_PORT_FEAT_SUSPEND:
423 temp = xhci_readl(xhci, addr);
424 xhci_dbg(xhci, "clear USB_PORT_FEAT_SUSPEND\n");
425 xhci_dbg(xhci, "PORTSC %04x\n", temp);
426 if (temp & PORT_RESET)
427 goto error;
428 if (temp & XDEV_U3) {
429 if ((temp & PORT_PE) == 0)
430 goto error;
431 if (DEV_SUPERSPEED(temp)) {
432 temp = xhci_port_state_to_neutral(temp);
433 temp &= ~PORT_PLS_MASK;
434 temp |= PORT_LINK_STROBE | XDEV_U0;
435 xhci_writel(xhci, temp, addr);
436 xhci_readl(xhci, addr);
437 } else {
438 temp = xhci_port_state_to_neutral(temp);
439 temp &= ~PORT_PLS_MASK;
440 temp |= PORT_LINK_STROBE | XDEV_RESUME;
441 xhci_writel(xhci, temp, addr);
442
443 spin_unlock_irqrestore(&xhci->lock,
444 flags);
445 msleep(20);
446 spin_lock_irqsave(&xhci->lock, flags);
447
448 temp = xhci_readl(xhci, addr);
449 temp = xhci_port_state_to_neutral(temp);
450 temp &= ~PORT_PLS_MASK;
451 temp |= PORT_LINK_STROBE | XDEV_U0;
452 xhci_writel(xhci, temp, addr);
453 }
454 xhci->port_c_suspend[wIndex >> 5] |=
455 1 << (wIndex & 31);
456 }
457
458 slot_id = xhci_find_slot_id_by_port(xhci, wIndex + 1);
459 if (!slot_id) {
460 xhci_dbg(xhci, "slot_id is zero\n");
461 goto error;
462 }
463 xhci_ring_device(xhci, slot_id);
464 break;
465 case USB_PORT_FEAT_C_SUSPEND:
466 xhci->port_c_suspend[wIndex >> 5] &=
467 ~(1 << (wIndex & 31));
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700468 case USB_PORT_FEAT_C_RESET:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700469 case USB_PORT_FEAT_C_CONNECTION:
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700470 case USB_PORT_FEAT_C_OVER_CURRENT:
Sarah Sharp6219c0472009-12-09 15:59:11 -0800471 case USB_PORT_FEAT_C_ENABLE:
Sarah Sharp34fb5622009-12-09 15:59:08 -0800472 xhci_clear_port_change_bit(xhci, wValue, wIndex,
473 addr, temp);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700474 break;
Sarah Sharp6219c0472009-12-09 15:59:11 -0800475 case USB_PORT_FEAT_ENABLE:
476 xhci_disable_port(xhci, wIndex, addr, temp);
477 break;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700478 default:
479 goto error;
480 }
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700481 break;
482 default:
483error:
484 /* "stall" on error */
485 retval = -EPIPE;
486 }
487 spin_unlock_irqrestore(&xhci->lock, flags);
488 return retval;
489}
490
491/*
492 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
493 * Ports are 0-indexed from the HCD point of view,
494 * and 1-indexed from the USB core pointer of view.
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700495 *
496 * Note that the status change bits will be cleared as soon as a port status
497 * change event is generated, so we use the saved status from that event.
498 */
499int xhci_hub_status_data(struct usb_hcd *hcd, char *buf)
500{
501 unsigned long flags;
502 u32 temp, status;
503 int i, retval;
504 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
505 int ports;
506 u32 __iomem *addr;
507
508 ports = HCS_MAX_PORTS(xhci->hcs_params1);
509
510 /* Initial status is no changes */
William Gulland419a8e812010-05-12 10:20:34 -0700511 retval = (ports + 8) / 8;
512 memset(buf, 0, retval);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700513 status = 0;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700514
515 spin_lock_irqsave(&xhci->lock, flags);
516 /* For each port, did anything change? If so, set that bit in buf. */
517 for (i = 0; i < ports; i++) {
518 addr = &xhci->op_regs->port_status_base +
519 NUM_PORT_REGS*i;
520 temp = xhci_readl(xhci, addr);
521 if (temp & (PORT_CSC | PORT_PEC | PORT_OCC)) {
William Gulland419a8e812010-05-12 10:20:34 -0700522 buf[(i + 1) / 8] |= 1 << (i + 1) % 8;
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700523 status = 1;
524 }
525 }
526 spin_unlock_irqrestore(&xhci->lock, flags);
527 return status ? retval : 0;
528}