1 // SPDX-License-Identifier: GPL-2.0
3 * xHCI host controller driver
5 * Copyright (C) 2008 Intel Corp.
8 * Some code borrowed from the Linux EHCI driver.
12 #include <linux/slab.h>
13 #include <asm/unaligned.h>
16 #include "xhci-trace.h"
18 #define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
19 #define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_WRC | PORT_OCC | \
20 PORT_RC | PORT_PLC | PORT_PE)
22 /* USB 3 BOS descriptor and a capability descriptors, combined.
23 * Fields will be adjusted and added later in xhci_create_usb3_bos_desc()
25 static u8 usb_bos_descriptor
[] = {
26 USB_DT_BOS_SIZE
, /* __u8 bLength, 5 bytes */
27 USB_DT_BOS
, /* __u8 bDescriptorType */
28 0x0F, 0x00, /* __le16 wTotalLength, 15 bytes */
29 0x1, /* __u8 bNumDeviceCaps */
30 /* First device capability, SuperSpeed */
31 USB_DT_USB_SS_CAP_SIZE
, /* __u8 bLength, 10 bytes */
32 USB_DT_DEVICE_CAPABILITY
, /* Device Capability */
33 USB_SS_CAP_TYPE
, /* bDevCapabilityType, SUPERSPEED_USB */
34 0x00, /* bmAttributes, LTM off by default */
35 USB_5GBPS_OPERATION
, 0x00, /* wSpeedsSupported, 5Gbps only */
36 0x03, /* bFunctionalitySupport,
38 0x00, /* bU1DevExitLat, set later. */
39 0x00, 0x00, /* __le16 bU2DevExitLat, set later. */
40 /* Second device capability, SuperSpeedPlus */
41 0x1c, /* bLength 28, will be adjusted later */
42 USB_DT_DEVICE_CAPABILITY
, /* Device Capability */
43 USB_SSP_CAP_TYPE
, /* bDevCapabilityType SUPERSPEED_PLUS */
44 0x00, /* bReserved 0 */
45 0x23, 0x00, 0x00, 0x00, /* bmAttributes, SSAC=3 SSIC=1 */
46 0x01, 0x00, /* wFunctionalitySupport */
47 0x00, 0x00, /* wReserved 0 */
48 /* Default Sublink Speed Attributes, overwrite if custom PSI exists */
49 0x34, 0x00, 0x05, 0x00, /* 5Gbps, symmetric, rx, ID = 4 */
50 0xb4, 0x00, 0x05, 0x00, /* 5Gbps, symmetric, tx, ID = 4 */
51 0x35, 0x40, 0x0a, 0x00, /* 10Gbps, SSP, symmetric, rx, ID = 5 */
52 0xb5, 0x40, 0x0a, 0x00, /* 10Gbps, SSP, symmetric, tx, ID = 5 */
55 static int xhci_create_usb3_bos_desc(struct xhci_hcd
*xhci
, char *buf
,
58 struct xhci_port_cap
*port_cap
= NULL
;
61 u16 desc_size
, ssp_cap_size
, ssa_size
= 0;
64 desc_size
= USB_DT_BOS_SIZE
+ USB_DT_USB_SS_CAP_SIZE
;
65 ssp_cap_size
= sizeof(usb_bos_descriptor
) - desc_size
;
67 /* does xhci support USB 3.1 Enhanced SuperSpeed */
68 for (i
= 0; i
< xhci
->num_port_caps
; i
++) {
69 if (xhci
->port_caps
[i
].maj_rev
== 0x03 &&
70 xhci
->port_caps
[i
].min_rev
>= 0x01) {
72 port_cap
= &xhci
->port_caps
[i
];
78 /* does xhci provide a PSI table for SSA speed attributes? */
79 if (port_cap
->psi_count
) {
80 /* two SSA entries for each unique PSI ID, RX and TX */
81 ssa_count
= port_cap
->psi_uid_count
* 2;
82 ssa_size
= ssa_count
* sizeof(u32
);
83 ssp_cap_size
-= 16; /* skip copying the default SSA */
85 desc_size
+= ssp_cap_size
;
87 memcpy(buf
, &usb_bos_descriptor
, min(desc_size
, wLength
));
90 /* modify bos descriptor bNumDeviceCaps and wTotalLength */
92 put_unaligned_le16(desc_size
+ ssa_size
, &buf
[2]);
95 if (wLength
< USB_DT_BOS_SIZE
+ USB_DT_USB_SS_CAP_SIZE
)
98 /* Indicate whether the host has LTM support. */
99 temp
= readl(&xhci
->cap_regs
->hcc_params
);
101 buf
[8] |= USB_LTM_SUPPORT
;
103 /* Set the U1 and U2 exit latencies. */
104 if ((xhci
->quirks
& XHCI_LPM_SUPPORT
)) {
105 temp
= readl(&xhci
->cap_regs
->hcs_params3
);
106 buf
[12] = HCS_U1_LATENCY(temp
);
107 put_unaligned_le16(HCS_U2_LATENCY(temp
), &buf
[13]);
110 /* If PSI table exists, add the custom speed attributes from it */
111 if (usb3_1
&& port_cap
->psi_count
) {
112 u32 ssp_cap_base
, bm_attrib
, psi
, psi_mant
, psi_exp
;
115 ssp_cap_base
= USB_DT_BOS_SIZE
+ USB_DT_USB_SS_CAP_SIZE
;
117 if (wLength
< desc_size
)
119 buf
[ssp_cap_base
] = ssp_cap_size
+ ssa_size
;
121 /* attribute count SSAC bits 4:0 and ID count SSIC bits 8:5 */
122 bm_attrib
= (ssa_count
- 1) & 0x1f;
123 bm_attrib
|= (port_cap
->psi_uid_count
- 1) << 5;
124 put_unaligned_le32(bm_attrib
, &buf
[ssp_cap_base
+ 4]);
126 if (wLength
< desc_size
+ ssa_size
)
129 * Create the Sublink Speed Attributes (SSA) array.
130 * The xhci PSI field and USB 3.1 SSA fields are very similar,
131 * but link type bits 7:6 differ for values 01b and 10b.
132 * xhci has also only one PSI entry for a symmetric link when
133 * USB 3.1 requires two SSA entries (RX and TX) for every link
136 for (i
= 0; i
< port_cap
->psi_count
; i
++) {
137 psi
= port_cap
->psi
[i
];
138 psi
&= ~USB_SSP_SUBLINK_SPEED_RSVD
;
139 psi_exp
= XHCI_EXT_PORT_PSIE(psi
);
140 psi_mant
= XHCI_EXT_PORT_PSIM(psi
);
142 /* Shift to Gbps and set SSP Link BIT(14) if 10Gpbs */
143 for (; psi_exp
< 3; psi_exp
++)
148 if ((psi
& PLT_MASK
) == PLT_SYM
) {
149 /* Symmetric, create SSA RX and TX from one PSI entry */
150 put_unaligned_le32(psi
, &buf
[offset
]);
151 psi
|= 1 << 7; /* turn entry to TX */
153 if (offset
>= desc_size
+ ssa_size
)
154 return desc_size
+ ssa_size
;
155 } else if ((psi
& PLT_MASK
) == PLT_ASYM_RX
) {
156 /* Asymetric RX, flip bits 7:6 for SSA */
159 put_unaligned_le32(psi
, &buf
[offset
]);
161 if (offset
>= desc_size
+ ssa_size
)
162 return desc_size
+ ssa_size
;
165 /* ssa_size is 0 for other than usb 3.1 hosts */
166 return desc_size
+ ssa_size
;
169 static void xhci_common_hub_descriptor(struct xhci_hcd
*xhci
,
170 struct usb_hub_descriptor
*desc
, int ports
)
174 desc
->bPwrOn2PwrGood
= 10; /* xhci section 5.4.9 says 20ms max */
175 desc
->bHubContrCurrent
= 0;
177 desc
->bNbrPorts
= ports
;
179 /* Bits 1:0 - support per-port power switching, or power always on */
180 if (HCC_PPC(xhci
->hcc_params
))
181 temp
|= HUB_CHAR_INDV_PORT_LPSM
;
183 temp
|= HUB_CHAR_NO_LPSM
;
184 /* Bit 2 - root hubs are not part of a compound device */
185 /* Bits 4:3 - individual port over current protection */
186 temp
|= HUB_CHAR_INDV_PORT_OCPM
;
187 /* Bits 6:5 - no TTs in root ports */
188 /* Bit 7 - no port indicators */
189 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
192 /* Fill in the USB 2.0 roothub descriptor */
193 static void xhci_usb2_hub_descriptor(struct usb_hcd
*hcd
, struct xhci_hcd
*xhci
,
194 struct usb_hub_descriptor
*desc
)
198 __u8 port_removable
[(USB_MAXCHILDREN
+ 1 + 7) / 8];
201 struct xhci_hub
*rhub
;
203 rhub
= &xhci
->usb2_rhub
;
204 ports
= rhub
->num_ports
;
205 xhci_common_hub_descriptor(xhci
, desc
, ports
);
206 desc
->bDescriptorType
= USB_DT_HUB
;
207 temp
= 1 + (ports
/ 8);
208 desc
->bDescLength
= USB_DT_HUB_NONVAR_SIZE
+ 2 * temp
;
210 /* The Device Removable bits are reported on a byte granularity.
211 * If the port doesn't exist within that byte, the bit is set to 0.
213 memset(port_removable
, 0, sizeof(port_removable
));
214 for (i
= 0; i
< ports
; i
++) {
215 portsc
= readl(rhub
->ports
[i
]->addr
);
216 /* If a device is removable, PORTSC reports a 0, same as in the
217 * hub descriptor DeviceRemovable bits.
219 if (portsc
& PORT_DEV_REMOVE
)
220 /* This math is hairy because bit 0 of DeviceRemovable
221 * is reserved, and bit 1 is for port 1, etc.
223 port_removable
[(i
+ 1) / 8] |= 1 << ((i
+ 1) % 8);
226 /* ch11.h defines a hub descriptor that has room for USB_MAXCHILDREN
227 * ports on it. The USB 2.0 specification says that there are two
228 * variable length fields at the end of the hub descriptor:
229 * DeviceRemovable and PortPwrCtrlMask. But since we can have less than
230 * USB_MAXCHILDREN ports, we may need to use the DeviceRemovable array
231 * to set PortPwrCtrlMask bits. PortPwrCtrlMask must always be set to
232 * 0xFF, so we initialize the both arrays (DeviceRemovable and
233 * PortPwrCtrlMask) to 0xFF. Then we set the DeviceRemovable for each
234 * set of ports that actually exist.
236 memset(desc
->u
.hs
.DeviceRemovable
, 0xff,
237 sizeof(desc
->u
.hs
.DeviceRemovable
));
238 memset(desc
->u
.hs
.PortPwrCtrlMask
, 0xff,
239 sizeof(desc
->u
.hs
.PortPwrCtrlMask
));
241 for (i
= 0; i
< (ports
+ 1 + 7) / 8; i
++)
242 memset(&desc
->u
.hs
.DeviceRemovable
[i
], port_removable
[i
],
246 /* Fill in the USB 3.0 roothub descriptor */
247 static void xhci_usb3_hub_descriptor(struct usb_hcd
*hcd
, struct xhci_hcd
*xhci
,
248 struct usb_hub_descriptor
*desc
)
254 struct xhci_hub
*rhub
;
256 rhub
= &xhci
->usb3_rhub
;
257 ports
= rhub
->num_ports
;
258 xhci_common_hub_descriptor(xhci
, desc
, ports
);
259 desc
->bDescriptorType
= USB_DT_SS_HUB
;
260 desc
->bDescLength
= USB_DT_SS_HUB_SIZE
;
262 /* header decode latency should be zero for roothubs,
263 * see section 4.23.5.2.
265 desc
->u
.ss
.bHubHdrDecLat
= 0;
266 desc
->u
.ss
.wHubDelay
= 0;
269 /* bit 0 is reserved, bit 1 is for port 1, etc. */
270 for (i
= 0; i
< ports
; i
++) {
271 portsc
= readl(rhub
->ports
[i
]->addr
);
272 if (portsc
& PORT_DEV_REMOVE
)
273 port_removable
|= 1 << (i
+ 1);
276 desc
->u
.ss
.DeviceRemovable
= cpu_to_le16(port_removable
);
279 static void xhci_hub_descriptor(struct usb_hcd
*hcd
, struct xhci_hcd
*xhci
,
280 struct usb_hub_descriptor
*desc
)
283 if (hcd
->speed
>= HCD_USB3
)
284 xhci_usb3_hub_descriptor(hcd
, xhci
, desc
);
286 xhci_usb2_hub_descriptor(hcd
, xhci
, desc
);
290 static unsigned int xhci_port_speed(unsigned int port_status
)
292 if (DEV_LOWSPEED(port_status
))
293 return USB_PORT_STAT_LOW_SPEED
;
294 if (DEV_HIGHSPEED(port_status
))
295 return USB_PORT_STAT_HIGH_SPEED
;
297 * FIXME: Yes, we should check for full speed, but the core uses that as
298 * a default in portspeed() in usb/core/hub.c (which is the only place
299 * USB_PORT_STAT_*_SPEED is used).
305 * These bits are Read Only (RO) and should be saved and written to the
306 * registers: 0, 3, 10:13, 30
307 * connect status, over-current status, port speed, and device removable.
308 * connect status and port speed are also sticky - meaning they're in
309 * the AUX well and they aren't changed by a hot, warm, or cold reset.
311 #define XHCI_PORT_RO ((1<<0) | (1<<3) | (0xf<<10) | (1<<30))
313 * These bits are RW; writing a 0 clears the bit, writing a 1 sets the bit:
314 * bits 5:8, 9, 14:15, 25:27
315 * link state, port power, port indicator state, "wake on" enable state
317 #define XHCI_PORT_RWS ((0xf<<5) | (1<<9) | (0x3<<14) | (0x7<<25))
319 * These bits are RW; writing a 1 sets the bit, writing a 0 has no effect:
322 #define XHCI_PORT_RW1S ((1<<4))
324 * These bits are RW; writing a 1 clears the bit, writing a 0 has no effect:
325 * bits 1, 17, 18, 19, 20, 21, 22, 23
326 * port enable/disable, and
327 * change bits: connect, PED, warm port reset changed (reserved zero for USB 2.0 ports),
328 * over-current, reset, link state, and L1 change
330 #define XHCI_PORT_RW1CS ((1<<1) | (0x7f<<17))
332 * Bit 16 is RW, and writing a '1' to it causes the link state control to be
335 #define XHCI_PORT_RW ((1<<16))
337 * These bits are Reserved Zero (RsvdZ) and zero should be written to them:
340 #define XHCI_PORT_RZ ((1<<2) | (1<<24) | (0xf<<28))
343 * Given a port state, this function returns a value that would result in the
344 * port being in the same state, if the value was written to the port status
346 * Save Read Only (RO) bits and save read/write bits where
347 * writing a 0 clears the bit and writing a 1 sets the bit (RWS).
348 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect.
350 u32
xhci_port_state_to_neutral(u32 state
)
352 /* Save read-only status and port state */
353 return (state
& XHCI_PORT_RO
) | (state
& XHCI_PORT_RWS
);
357 * find slot id based on port number.
358 * @port: The one-based port number from one of the two split roothubs.
360 int xhci_find_slot_id_by_port(struct usb_hcd
*hcd
, struct xhci_hcd
*xhci
,
365 enum usb_device_speed speed
;
368 for (i
= 0; i
< MAX_HC_SLOTS
; i
++) {
369 if (!xhci
->devs
[i
] || !xhci
->devs
[i
]->udev
)
371 speed
= xhci
->devs
[i
]->udev
->speed
;
372 if (((speed
>= USB_SPEED_SUPER
) == (hcd
->speed
>= HCD_USB3
))
373 && xhci
->devs
[i
]->fake_port
== port
) {
384 * It issues stop endpoint command for EP 0 to 30. And wait the last command
386 * suspend will set to 1, if suspend bit need to set in command.
388 static int xhci_stop_device(struct xhci_hcd
*xhci
, int slot_id
, int suspend
)
390 struct xhci_virt_device
*virt_dev
;
391 struct xhci_command
*cmd
;
397 virt_dev
= xhci
->devs
[slot_id
];
401 trace_xhci_stop_device(virt_dev
);
403 cmd
= xhci_alloc_command(xhci
, true, GFP_NOIO
);
407 spin_lock_irqsave(&xhci
->lock
, flags
);
408 for (i
= LAST_EP_INDEX
; i
> 0; i
--) {
409 if (virt_dev
->eps
[i
].ring
&& virt_dev
->eps
[i
].ring
->dequeue
) {
410 struct xhci_ep_ctx
*ep_ctx
;
411 struct xhci_command
*command
;
413 ep_ctx
= xhci_get_ep_ctx(xhci
, virt_dev
->out_ctx
, i
);
415 /* Check ep is running, required by AMD SNPS 3.1 xHC */
416 if (GET_EP_CTX_STATE(ep_ctx
) != EP_STATE_RUNNING
)
419 command
= xhci_alloc_command(xhci
, false, GFP_NOWAIT
);
421 spin_unlock_irqrestore(&xhci
->lock
, flags
);
426 ret
= xhci_queue_stop_endpoint(xhci
, command
, slot_id
,
429 spin_unlock_irqrestore(&xhci
->lock
, flags
);
430 xhci_free_command(xhci
, command
);
435 ret
= xhci_queue_stop_endpoint(xhci
, cmd
, slot_id
, 0, suspend
);
437 spin_unlock_irqrestore(&xhci
->lock
, flags
);
441 xhci_ring_cmd_db(xhci
);
442 spin_unlock_irqrestore(&xhci
->lock
, flags
);
444 /* Wait for last stop endpoint command to finish */
445 wait_for_completion(cmd
->completion
);
447 if (cmd
->status
== COMP_COMMAND_ABORTED
||
448 cmd
->status
== COMP_COMMAND_RING_STOPPED
) {
449 xhci_warn(xhci
, "Timeout while waiting for stop endpoint command\n");
454 xhci_free_command(xhci
, cmd
);
459 * Ring device, it rings the all doorbells unconditionally.
461 void xhci_ring_device(struct xhci_hcd
*xhci
, int slot_id
)
464 struct xhci_virt_ep
*ep
;
466 for (i
= 0; i
< LAST_EP_INDEX
+ 1; i
++) {
467 ep
= &xhci
->devs
[slot_id
]->eps
[i
];
469 if (ep
->ep_state
& EP_HAS_STREAMS
) {
470 for (s
= 1; s
< ep
->stream_info
->num_streams
; s
++)
471 xhci_ring_ep_doorbell(xhci
, slot_id
, i
, s
);
472 } else if (ep
->ring
&& ep
->ring
->dequeue
) {
473 xhci_ring_ep_doorbell(xhci
, slot_id
, i
, 0);
480 static void xhci_disable_port(struct usb_hcd
*hcd
, struct xhci_hcd
*xhci
,
481 u16 wIndex
, __le32 __iomem
*addr
, u32 port_status
)
483 /* Don't allow the USB core to disable SuperSpeed ports. */
484 if (hcd
->speed
>= HCD_USB3
) {
485 xhci_dbg(xhci
, "Ignoring request to disable "
486 "SuperSpeed port.\n");
490 if (xhci
->quirks
& XHCI_BROKEN_PORT_PED
) {
492 "Broken Port Enabled/Disabled, ignoring port disable request.\n");
496 /* Write 1 to disable the port */
497 writel(port_status
| PORT_PE
, addr
);
498 port_status
= readl(addr
);
499 xhci_dbg(xhci
, "disable port, actual port %d status = 0x%x\n",
500 wIndex
, port_status
);
503 static void xhci_clear_port_change_bit(struct xhci_hcd
*xhci
, u16 wValue
,
504 u16 wIndex
, __le32 __iomem
*addr
, u32 port_status
)
506 char *port_change_bit
;
510 case USB_PORT_FEAT_C_RESET
:
512 port_change_bit
= "reset";
514 case USB_PORT_FEAT_C_BH_PORT_RESET
:
516 port_change_bit
= "warm(BH) reset";
518 case USB_PORT_FEAT_C_CONNECTION
:
520 port_change_bit
= "connect";
522 case USB_PORT_FEAT_C_OVER_CURRENT
:
524 port_change_bit
= "over-current";
526 case USB_PORT_FEAT_C_ENABLE
:
528 port_change_bit
= "enable/disable";
530 case USB_PORT_FEAT_C_SUSPEND
:
532 port_change_bit
= "suspend/resume";
534 case USB_PORT_FEAT_C_PORT_LINK_STATE
:
536 port_change_bit
= "link state";
538 case USB_PORT_FEAT_C_PORT_CONFIG_ERROR
:
540 port_change_bit
= "config error";
543 /* Should never happen */
546 /* Change bits are all write 1 to clear */
547 writel(port_status
| status
, addr
);
548 port_status
= readl(addr
);
549 xhci_dbg(xhci
, "clear port %s change, actual port %d status = 0x%x\n",
550 port_change_bit
, wIndex
, port_status
);
553 struct xhci_hub
*xhci_get_rhub(struct usb_hcd
*hcd
)
555 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
557 if (hcd
->speed
>= HCD_USB3
)
558 return &xhci
->usb3_rhub
;
559 return &xhci
->usb2_rhub
;
563 * xhci_set_port_power() must be called with xhci->lock held.
564 * It will release and re-aquire the lock while calling ACPI
567 static void xhci_set_port_power(struct xhci_hcd
*xhci
, struct usb_hcd
*hcd
,
568 u16 index
, bool on
, unsigned long *flags
)
570 struct xhci_hub
*rhub
;
571 struct xhci_port
*port
;
574 rhub
= xhci_get_rhub(hcd
);
575 port
= rhub
->ports
[index
];
576 temp
= readl(port
->addr
);
577 temp
= xhci_port_state_to_neutral(temp
);
580 writel(temp
| PORT_POWER
, port
->addr
);
581 temp
= readl(port
->addr
);
582 xhci_dbg(xhci
, "set port power, actual port %d status = 0x%x\n",
586 writel(temp
& ~PORT_POWER
, port
->addr
);
589 spin_unlock_irqrestore(&xhci
->lock
, *flags
);
590 temp
= usb_acpi_power_manageable(hcd
->self
.root_hub
,
593 usb_acpi_set_power_state(hcd
->self
.root_hub
,
595 spin_lock_irqsave(&xhci
->lock
, *flags
);
598 static void xhci_port_set_test_mode(struct xhci_hcd
*xhci
,
599 u16 test_mode
, u16 wIndex
)
602 struct xhci_port
*port
;
604 /* xhci only supports test mode for usb2 ports */
605 port
= xhci
->usb2_rhub
.ports
[wIndex
];
606 temp
= readl(port
->addr
+ PORTPMSC
);
607 temp
|= test_mode
<< PORT_TEST_MODE_SHIFT
;
608 writel(temp
, port
->addr
+ PORTPMSC
);
609 xhci
->test_mode
= test_mode
;
610 if (test_mode
== TEST_FORCE_EN
)
614 static int xhci_enter_test_mode(struct xhci_hcd
*xhci
,
615 u16 test_mode
, u16 wIndex
, unsigned long *flags
)
619 /* Disable all Device Slots */
620 xhci_dbg(xhci
, "Disable all slots\n");
621 spin_unlock_irqrestore(&xhci
->lock
, *flags
);
622 for (i
= 1; i
<= HCS_MAX_SLOTS(xhci
->hcs_params1
); i
++) {
626 retval
= xhci_disable_slot(xhci
, i
);
628 xhci_err(xhci
, "Failed to disable slot %d, %d. Enter test mode anyway\n",
631 spin_lock_irqsave(&xhci
->lock
, *flags
);
632 /* Put all ports to the Disable state by clear PP */
633 xhci_dbg(xhci
, "Disable all port (PP = 0)\n");
634 /* Power off USB3 ports*/
635 for (i
= 0; i
< xhci
->usb3_rhub
.num_ports
; i
++)
636 xhci_set_port_power(xhci
, xhci
->shared_hcd
, i
, false, flags
);
637 /* Power off USB2 ports*/
638 for (i
= 0; i
< xhci
->usb2_rhub
.num_ports
; i
++)
639 xhci_set_port_power(xhci
, xhci
->main_hcd
, i
, false, flags
);
640 /* Stop the controller */
641 xhci_dbg(xhci
, "Stop controller\n");
642 retval
= xhci_halt(xhci
);
645 /* Disable runtime PM for test mode */
646 pm_runtime_forbid(xhci_to_hcd(xhci
)->self
.controller
);
647 /* Set PORTPMSC.PTC field to enter selected test mode */
648 /* Port is selected by wIndex. port_id = wIndex + 1 */
649 xhci_dbg(xhci
, "Enter Test Mode: %d, Port_id=%d\n",
650 test_mode
, wIndex
+ 1);
651 xhci_port_set_test_mode(xhci
, test_mode
, wIndex
);
655 static int xhci_exit_test_mode(struct xhci_hcd
*xhci
)
659 if (!xhci
->test_mode
) {
660 xhci_err(xhci
, "Not in test mode, do nothing.\n");
663 if (xhci
->test_mode
== TEST_FORCE_EN
&&
664 !(xhci
->xhc_state
& XHCI_STATE_HALTED
)) {
665 retval
= xhci_halt(xhci
);
669 pm_runtime_allow(xhci_to_hcd(xhci
)->self
.controller
);
671 return xhci_reset(xhci
);
674 void xhci_set_link_state(struct xhci_hcd
*xhci
, struct xhci_port
*port
,
679 temp
= readl(port
->addr
);
680 temp
= xhci_port_state_to_neutral(temp
);
681 temp
&= ~PORT_PLS_MASK
;
682 temp
|= PORT_LINK_STROBE
| link_state
;
683 writel(temp
, port
->addr
);
686 static void xhci_set_remote_wake_mask(struct xhci_hcd
*xhci
,
687 struct xhci_port
*port
, u16 wake_mask
)
691 temp
= readl(port
->addr
);
692 temp
= xhci_port_state_to_neutral(temp
);
694 if (wake_mask
& USB_PORT_FEAT_REMOTE_WAKE_CONNECT
)
695 temp
|= PORT_WKCONN_E
;
697 temp
&= ~PORT_WKCONN_E
;
699 if (wake_mask
& USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT
)
700 temp
|= PORT_WKDISC_E
;
702 temp
&= ~PORT_WKDISC_E
;
704 if (wake_mask
& USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT
)
707 temp
&= ~PORT_WKOC_E
;
709 writel(temp
, port
->addr
);
712 /* Test and clear port RWC bit */
713 void xhci_test_and_clear_bit(struct xhci_hcd
*xhci
, struct xhci_port
*port
,
718 temp
= readl(port
->addr
);
719 if (temp
& port_bit
) {
720 temp
= xhci_port_state_to_neutral(temp
);
722 writel(temp
, port
->addr
);
726 /* Updates Link Status for USB 2.1 port */
727 static void xhci_hub_report_usb2_link_state(u32
*status
, u32 status_reg
)
729 if ((status_reg
& PORT_PLS_MASK
) == XDEV_U2
)
730 *status
|= USB_PORT_STAT_L1
;
733 /* Updates Link Status for super Speed port */
734 static void xhci_hub_report_usb3_link_state(struct xhci_hcd
*xhci
,
735 u32
*status
, u32 status_reg
)
737 u32 pls
= status_reg
& PORT_PLS_MASK
;
739 /* resume state is a xHCI internal state.
740 * Do not report it to usb core, instead, pretend to be U3,
741 * thus usb core knows it's not ready for transfer
743 if (pls
== XDEV_RESUME
) {
744 *status
|= USB_SS_PORT_LS_U3
;
748 /* When the CAS bit is set then warm reset
749 * should be performed on port
751 if (status_reg
& PORT_CAS
) {
752 /* The CAS bit can be set while the port is
754 * Only roothubs have CAS bit, so we
755 * pretend to be in compliance mode
756 * unless we're already in compliance
757 * or the inactive state.
759 if (pls
!= USB_SS_PORT_LS_COMP_MOD
&&
760 pls
!= USB_SS_PORT_LS_SS_INACTIVE
) {
761 pls
= USB_SS_PORT_LS_COMP_MOD
;
763 /* Return also connection bit -
764 * hub state machine resets port
765 * when this bit is set.
767 pls
|= USB_PORT_STAT_CONNECTION
;
770 * If CAS bit isn't set but the Port is already at
771 * Compliance Mode, fake a connection so the USB core
772 * notices the Compliance state and resets the port.
773 * This resolves an issue generated by the SN65LVPE502CP
774 * in which sometimes the port enters compliance mode
775 * caused by a delay on the host-device negotiation.
777 if ((xhci
->quirks
& XHCI_COMP_MODE_QUIRK
) &&
778 (pls
== USB_SS_PORT_LS_COMP_MOD
))
779 pls
|= USB_PORT_STAT_CONNECTION
;
782 /* update status field */
787 * Function for Compliance Mode Quirk.
789 * This Function verifies if all xhc USB3 ports have entered U0, if so,
790 * the compliance mode timer is deleted. A port won't enter
791 * compliance mode if it has previously entered U0.
793 static void xhci_del_comp_mod_timer(struct xhci_hcd
*xhci
, u32 status
,
796 u32 all_ports_seen_u0
= ((1 << xhci
->usb3_rhub
.num_ports
) - 1);
797 bool port_in_u0
= ((status
& PORT_PLS_MASK
) == XDEV_U0
);
799 if (!(xhci
->quirks
& XHCI_COMP_MODE_QUIRK
))
802 if ((xhci
->port_status_u0
!= all_ports_seen_u0
) && port_in_u0
) {
803 xhci
->port_status_u0
|= 1 << wIndex
;
804 if (xhci
->port_status_u0
== all_ports_seen_u0
) {
805 del_timer_sync(&xhci
->comp_mode_recovery_timer
);
806 xhci_dbg_trace(xhci
, trace_xhci_dbg_quirks
,
807 "All USB3 ports have entered U0 already!");
808 xhci_dbg_trace(xhci
, trace_xhci_dbg_quirks
,
809 "Compliance Mode Recovery Timer Deleted.");
814 static u32
xhci_get_ext_port_status(u32 raw_port_status
, u32 port_li
)
819 /* only support rx and tx lane counts of 1 in usb3.1 spec */
820 speed_id
= DEV_PORT_SPEED(raw_port_status
);
821 ext_stat
|= speed_id
; /* bits 3:0, RX speed id */
822 ext_stat
|= speed_id
<< 4; /* bits 7:4, TX speed id */
824 ext_stat
|= PORT_RX_LANES(port_li
) << 8; /* bits 11:8 Rx lane count */
825 ext_stat
|= PORT_TX_LANES(port_li
) << 12; /* bits 15:12 Tx lane count */
831 * Converts a raw xHCI port status into the format that external USB 2.0 or USB
834 * Possible side effects:
835 * - Mark a port as being done with device resume,
836 * and ring the endpoint doorbells.
837 * - Stop the Synopsys redriver Compliance Mode polling.
838 * - Drop and reacquire the xHCI lock, in order to wait for port resume.
840 static u32
xhci_get_port_status(struct usb_hcd
*hcd
,
841 struct xhci_bus_state
*bus_state
,
842 u16 wIndex
, u32 raw_port_status
,
843 unsigned long *flags
)
844 __releases(&xhci
->lock
)
845 __acquires(&xhci
->lock
)
847 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
850 struct xhci_hub
*rhub
;
851 struct xhci_port
*port
;
853 rhub
= xhci_get_rhub(hcd
);
854 port
= rhub
->ports
[wIndex
];
856 /* wPortChange bits */
857 if (raw_port_status
& PORT_CSC
)
858 status
|= USB_PORT_STAT_C_CONNECTION
<< 16;
859 if (raw_port_status
& PORT_PEC
)
860 status
|= USB_PORT_STAT_C_ENABLE
<< 16;
861 if ((raw_port_status
& PORT_OCC
))
862 status
|= USB_PORT_STAT_C_OVERCURRENT
<< 16;
863 if ((raw_port_status
& PORT_RC
))
864 status
|= USB_PORT_STAT_C_RESET
<< 16;
866 if (hcd
->speed
>= HCD_USB3
) {
867 /* Port link change with port in resume state should not be
868 * reported to usbcore, as this is an internal state to be
869 * handled by xhci driver. Reporting PLC to usbcore may
870 * cause usbcore clearing PLC first and port change event
871 * irq won't be generated.
873 if ((raw_port_status
& PORT_PLC
) &&
874 (raw_port_status
& PORT_PLS_MASK
) != XDEV_RESUME
)
875 status
|= USB_PORT_STAT_C_LINK_STATE
<< 16;
876 if ((raw_port_status
& PORT_WRC
))
877 status
|= USB_PORT_STAT_C_BH_RESET
<< 16;
878 if ((raw_port_status
& PORT_CEC
))
879 status
|= USB_PORT_STAT_C_CONFIG_ERROR
<< 16;
881 /* USB3 remote wake resume signaling completed */
882 if (bus_state
->port_remote_wakeup
& (1 << wIndex
) &&
883 (raw_port_status
& PORT_PLS_MASK
) != XDEV_RESUME
&&
884 (raw_port_status
& PORT_PLS_MASK
) != XDEV_RECOVERY
) {
885 bus_state
->port_remote_wakeup
&= ~(1 << wIndex
);
886 usb_hcd_end_port_resume(&hcd
->self
, wIndex
);
890 if (hcd
->speed
< HCD_USB3
) {
891 if ((raw_port_status
& PORT_PLS_MASK
) == XDEV_U3
892 && (raw_port_status
& PORT_POWER
))
893 status
|= USB_PORT_STAT_SUSPEND
;
895 if ((raw_port_status
& PORT_PLS_MASK
) == XDEV_RESUME
&&
896 !DEV_SUPERSPEED_ANY(raw_port_status
) && hcd
->speed
< HCD_USB3
) {
897 if ((raw_port_status
& PORT_RESET
) ||
898 !(raw_port_status
& PORT_PE
))
900 /* did port event handler already start resume timing? */
901 if (!bus_state
->resume_done
[wIndex
]) {
902 /* If not, maybe we are in a host initated resume? */
903 if (test_bit(wIndex
, &bus_state
->resuming_ports
)) {
904 /* Host initated resume doesn't time the resume
905 * signalling using resume_done[].
906 * It manually sets RESUME state, sleeps 20ms
907 * and sets U0 state. This should probably be
908 * changed, but not right now.
911 /* port resume was discovered now and here,
912 * start resume timing
914 unsigned long timeout
= jiffies
+
915 msecs_to_jiffies(USB_RESUME_TIMEOUT
);
917 set_bit(wIndex
, &bus_state
->resuming_ports
);
918 bus_state
->resume_done
[wIndex
] = timeout
;
919 mod_timer(&hcd
->rh_timer
, timeout
);
920 usb_hcd_start_port_resume(&hcd
->self
, wIndex
);
922 /* Has resume been signalled for USB_RESUME_TIME yet? */
923 } else if (time_after_eq(jiffies
,
924 bus_state
->resume_done
[wIndex
])) {
927 xhci_dbg(xhci
, "Resume USB2 port %d\n",
929 bus_state
->resume_done
[wIndex
] = 0;
930 clear_bit(wIndex
, &bus_state
->resuming_ports
);
932 set_bit(wIndex
, &bus_state
->rexit_ports
);
934 xhci_test_and_clear_bit(xhci
, port
, PORT_PLC
);
935 xhci_set_link_state(xhci
, port
, XDEV_U0
);
937 spin_unlock_irqrestore(&xhci
->lock
, *flags
);
938 time_left
= wait_for_completion_timeout(
939 &bus_state
->rexit_done
[wIndex
],
941 XHCI_MAX_REXIT_TIMEOUT_MS
));
942 spin_lock_irqsave(&xhci
->lock
, *flags
);
945 slot_id
= xhci_find_slot_id_by_port(hcd
,
948 xhci_dbg(xhci
, "slot_id is zero\n");
951 xhci_ring_device(xhci
, slot_id
);
953 int port_status
= readl(port
->addr
);
954 xhci_warn(xhci
, "Port resume took longer than %i msec, port status = 0x%x\n",
955 XHCI_MAX_REXIT_TIMEOUT_MS
,
957 status
|= USB_PORT_STAT_SUSPEND
;
958 clear_bit(wIndex
, &bus_state
->rexit_ports
);
961 usb_hcd_end_port_resume(&hcd
->self
, wIndex
);
962 bus_state
->port_c_suspend
|= 1 << wIndex
;
963 bus_state
->suspended_ports
&= ~(1 << wIndex
);
966 * The resume has been signaling for less than
967 * USB_RESUME_TIME. Report the port status as SUSPEND,
968 * let the usbcore check port status again and clear
969 * resume signaling later.
971 status
|= USB_PORT_STAT_SUSPEND
;
975 * Clear stale usb2 resume signalling variables in case port changed
976 * state during resume signalling. For example on error
978 if ((bus_state
->resume_done
[wIndex
] ||
979 test_bit(wIndex
, &bus_state
->resuming_ports
)) &&
980 (raw_port_status
& PORT_PLS_MASK
) != XDEV_U3
&&
981 (raw_port_status
& PORT_PLS_MASK
) != XDEV_RESUME
) {
982 bus_state
->resume_done
[wIndex
] = 0;
983 clear_bit(wIndex
, &bus_state
->resuming_ports
);
984 usb_hcd_end_port_resume(&hcd
->self
, wIndex
);
988 if ((raw_port_status
& PORT_PLS_MASK
) == XDEV_U0
&&
989 (raw_port_status
& PORT_POWER
)) {
990 if (bus_state
->suspended_ports
& (1 << wIndex
)) {
991 bus_state
->suspended_ports
&= ~(1 << wIndex
);
992 if (hcd
->speed
< HCD_USB3
)
993 bus_state
->port_c_suspend
|= 1 << wIndex
;
995 bus_state
->resume_done
[wIndex
] = 0;
996 clear_bit(wIndex
, &bus_state
->resuming_ports
);
998 if (raw_port_status
& PORT_CONNECT
) {
999 status
|= USB_PORT_STAT_CONNECTION
;
1000 status
|= xhci_port_speed(raw_port_status
);
1002 if (raw_port_status
& PORT_PE
)
1003 status
|= USB_PORT_STAT_ENABLE
;
1004 if (raw_port_status
& PORT_OC
)
1005 status
|= USB_PORT_STAT_OVERCURRENT
;
1006 if (raw_port_status
& PORT_RESET
)
1007 status
|= USB_PORT_STAT_RESET
;
1008 if (raw_port_status
& PORT_POWER
) {
1009 if (hcd
->speed
>= HCD_USB3
)
1010 status
|= USB_SS_PORT_STAT_POWER
;
1012 status
|= USB_PORT_STAT_POWER
;
1014 /* Update Port Link State */
1015 if (hcd
->speed
>= HCD_USB3
) {
1016 xhci_hub_report_usb3_link_state(xhci
, &status
, raw_port_status
);
1018 * Verify if all USB3 Ports Have entered U0 already.
1019 * Delete Compliance Mode Timer if so.
1021 xhci_del_comp_mod_timer(xhci
, raw_port_status
, wIndex
);
1023 xhci_hub_report_usb2_link_state(&status
, raw_port_status
);
1025 if (bus_state
->port_c_suspend
& (1 << wIndex
))
1026 status
|= USB_PORT_STAT_C_SUSPEND
<< 16;
1031 int xhci_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
1032 u16 wIndex
, char *buf
, u16 wLength
)
1034 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
1036 unsigned long flags
;
1040 struct xhci_bus_state
*bus_state
;
1045 struct xhci_hub
*rhub
;
1046 struct xhci_port
**ports
;
1048 rhub
= xhci_get_rhub(hcd
);
1049 ports
= rhub
->ports
;
1050 max_ports
= rhub
->num_ports
;
1051 bus_state
= &xhci
->bus_state
[hcd_index(hcd
)];
1053 spin_lock_irqsave(&xhci
->lock
, flags
);
1056 /* No power source, over-current reported per port */
1059 case GetHubDescriptor
:
1060 /* Check to make sure userspace is asking for the USB 3.0 hub
1061 * descriptor for the USB 3.0 roothub. If not, we stall the
1062 * endpoint, like external hubs do.
1064 if (hcd
->speed
>= HCD_USB3
&&
1065 (wLength
< USB_DT_SS_HUB_SIZE
||
1066 wValue
!= (USB_DT_SS_HUB
<< 8))) {
1067 xhci_dbg(xhci
, "Wrong hub descriptor type for "
1068 "USB 3.0 roothub.\n");
1071 xhci_hub_descriptor(hcd
, xhci
,
1072 (struct usb_hub_descriptor
*) buf
);
1074 case DeviceRequest
| USB_REQ_GET_DESCRIPTOR
:
1075 if ((wValue
& 0xff00) != (USB_DT_BOS
<< 8))
1078 if (hcd
->speed
< HCD_USB3
)
1081 retval
= xhci_create_usb3_bos_desc(xhci
, buf
, wLength
);
1082 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1085 if (!wIndex
|| wIndex
> max_ports
)
1088 temp
= readl(ports
[wIndex
]->addr
);
1089 if (temp
== ~(u32
)0) {
1094 trace_xhci_get_port_status(wIndex
, temp
);
1095 status
= xhci_get_port_status(hcd
, bus_state
, wIndex
, temp
,
1097 if (status
== 0xffffffff)
1100 xhci_dbg(xhci
, "get port status, actual port %d status = 0x%x\n",
1102 xhci_dbg(xhci
, "Get port status returned 0x%x\n", status
);
1104 put_unaligned(cpu_to_le32(status
), (__le32
*) buf
);
1105 /* if USB 3.1 extended port status return additional 4 bytes */
1106 if (wValue
== 0x02) {
1109 if (hcd
->speed
< HCD_USB31
|| wLength
!= 8) {
1110 xhci_err(xhci
, "get ext port status invalid parameter\n");
1114 port_li
= readl(ports
[wIndex
]->addr
+ PORTLI
);
1115 status
= xhci_get_ext_port_status(temp
, port_li
);
1116 put_unaligned_le32(status
, &buf
[4]);
1119 case SetPortFeature
:
1120 if (wValue
== USB_PORT_FEAT_LINK_STATE
)
1121 link_state
= (wIndex
& 0xff00) >> 3;
1122 if (wValue
== USB_PORT_FEAT_REMOTE_WAKE_MASK
)
1123 wake_mask
= wIndex
& 0xff00;
1124 if (wValue
== USB_PORT_FEAT_TEST
)
1125 test_mode
= (wIndex
& 0xff00) >> 8;
1126 /* The MSB of wIndex is the U1/U2 timeout */
1127 timeout
= (wIndex
& 0xff00) >> 8;
1129 if (!wIndex
|| wIndex
> max_ports
)
1132 temp
= readl(ports
[wIndex
]->addr
);
1133 if (temp
== ~(u32
)0) {
1138 temp
= xhci_port_state_to_neutral(temp
);
1139 /* FIXME: What new port features do we need to support? */
1141 case USB_PORT_FEAT_SUSPEND
:
1142 temp
= readl(ports
[wIndex
]->addr
);
1143 if ((temp
& PORT_PLS_MASK
) != XDEV_U0
) {
1144 /* Resume the port to U0 first */
1145 xhci_set_link_state(xhci
, ports
[wIndex
],
1147 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1149 spin_lock_irqsave(&xhci
->lock
, flags
);
1151 /* In spec software should not attempt to suspend
1152 * a port unless the port reports that it is in the
1153 * enabled (PED = ‘1’,PLS < ‘3’) state.
1155 temp
= readl(ports
[wIndex
]->addr
);
1156 if ((temp
& PORT_PE
) == 0 || (temp
& PORT_RESET
)
1157 || (temp
& PORT_PLS_MASK
) >= XDEV_U3
) {
1158 xhci_warn(xhci
, "USB core suspending device not in U0/U1/U2.\n");
1162 slot_id
= xhci_find_slot_id_by_port(hcd
, xhci
,
1165 xhci_warn(xhci
, "slot_id is zero\n");
1168 /* unlock to execute stop endpoint commands */
1169 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1170 xhci_stop_device(xhci
, slot_id
, 1);
1171 spin_lock_irqsave(&xhci
->lock
, flags
);
1173 xhci_set_link_state(xhci
, ports
[wIndex
], XDEV_U3
);
1175 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1176 msleep(10); /* wait device to enter */
1177 spin_lock_irqsave(&xhci
->lock
, flags
);
1179 temp
= readl(ports
[wIndex
]->addr
);
1180 bus_state
->suspended_ports
|= 1 << wIndex
;
1182 case USB_PORT_FEAT_LINK_STATE
:
1183 temp
= readl(ports
[wIndex
]->addr
);
1185 if (link_state
== USB_SS_PORT_LS_SS_DISABLED
) {
1186 xhci_dbg(xhci
, "Disable port %d\n", wIndex
);
1187 temp
= xhci_port_state_to_neutral(temp
);
1189 * Clear all change bits, so that we get a new
1192 temp
|= PORT_CSC
| PORT_PEC
| PORT_WRC
|
1193 PORT_OCC
| PORT_RC
| PORT_PLC
|
1195 writel(temp
| PORT_PE
, ports
[wIndex
]->addr
);
1196 temp
= readl(ports
[wIndex
]->addr
);
1200 /* Put link in RxDetect (enable port) */
1201 if (link_state
== USB_SS_PORT_LS_RX_DETECT
) {
1202 xhci_dbg(xhci
, "Enable port %d\n", wIndex
);
1203 xhci_set_link_state(xhci
, ports
[wIndex
],
1205 temp
= readl(ports
[wIndex
]->addr
);
1210 * For xHCI 1.1 according to section 4.19.1.2.4.1 a
1211 * root hub port's transition to compliance mode upon
1212 * detecting LFPS timeout may be controlled by an
1213 * Compliance Transition Enabled (CTE) flag (not
1214 * software visible). This flag is set by writing 0xA
1215 * to PORTSC PLS field which will allow transition to
1216 * compliance mode the next time LFPS timeout is
1217 * encountered. A warm reset will clear it.
1219 * The CTE flag is only supported if the HCCPARAMS2 CTC
1220 * flag is set, otherwise, the compliance substate is
1221 * automatically entered as on 1.0 and prior.
1223 if (link_state
== USB_SS_PORT_LS_COMP_MOD
) {
1224 if (!HCC2_CTC(xhci
->hcc_params2
)) {
1225 xhci_dbg(xhci
, "CTC flag is 0, port already supports entering compliance mode\n");
1229 if ((temp
& PORT_CONNECT
)) {
1230 xhci_warn(xhci
, "Can't set compliance mode when port is connected\n");
1234 xhci_dbg(xhci
, "Enable compliance mode transition for port %d\n",
1236 xhci_set_link_state(xhci
, ports
[wIndex
],
1239 temp
= readl(ports
[wIndex
]->addr
);
1242 /* Port must be enabled */
1243 if (!(temp
& PORT_PE
)) {
1247 /* Can't set port link state above '3' (U3) */
1248 if (link_state
> USB_SS_PORT_LS_U3
) {
1249 xhci_warn(xhci
, "Cannot set port %d link state %d\n",
1250 wIndex
, link_state
);
1253 if (link_state
== USB_SS_PORT_LS_U3
) {
1254 slot_id
= xhci_find_slot_id_by_port(hcd
, xhci
,
1257 /* unlock to execute stop endpoint
1259 spin_unlock_irqrestore(&xhci
->lock
,
1261 xhci_stop_device(xhci
, slot_id
, 1);
1262 spin_lock_irqsave(&xhci
->lock
, flags
);
1266 xhci_set_link_state(xhci
, ports
[wIndex
], link_state
);
1268 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1269 if (link_state
== USB_SS_PORT_LS_U3
) {
1273 usleep_range(4000, 8000);
1274 temp
= readl(ports
[wIndex
]->addr
);
1275 if ((temp
& PORT_PLS_MASK
) == XDEV_U3
)
1279 spin_lock_irqsave(&xhci
->lock
, flags
);
1281 temp
= readl(ports
[wIndex
]->addr
);
1282 if (link_state
== USB_SS_PORT_LS_U3
)
1283 bus_state
->suspended_ports
|= 1 << wIndex
;
1285 case USB_PORT_FEAT_POWER
:
1287 * Turn on ports, even if there isn't per-port switching.
1288 * HC will report connect events even before this is set.
1289 * However, hub_wq will ignore the roothub events until
1290 * the roothub is registered.
1292 xhci_set_port_power(xhci
, hcd
, wIndex
, true, &flags
);
1294 case USB_PORT_FEAT_RESET
:
1295 temp
= (temp
| PORT_RESET
);
1296 writel(temp
, ports
[wIndex
]->addr
);
1298 temp
= readl(ports
[wIndex
]->addr
);
1299 xhci_dbg(xhci
, "set port reset, actual port %d status = 0x%x\n", wIndex
, temp
);
1301 case USB_PORT_FEAT_REMOTE_WAKE_MASK
:
1302 xhci_set_remote_wake_mask(xhci
, ports
[wIndex
],
1304 temp
= readl(ports
[wIndex
]->addr
);
1305 xhci_dbg(xhci
, "set port remote wake mask, "
1306 "actual port %d status = 0x%x\n",
1309 case USB_PORT_FEAT_BH_PORT_RESET
:
1311 writel(temp
, ports
[wIndex
]->addr
);
1312 temp
= readl(ports
[wIndex
]->addr
);
1314 case USB_PORT_FEAT_U1_TIMEOUT
:
1315 if (hcd
->speed
< HCD_USB3
)
1317 temp
= readl(ports
[wIndex
]->addr
+ PORTPMSC
);
1318 temp
&= ~PORT_U1_TIMEOUT_MASK
;
1319 temp
|= PORT_U1_TIMEOUT(timeout
);
1320 writel(temp
, ports
[wIndex
]->addr
+ PORTPMSC
);
1322 case USB_PORT_FEAT_U2_TIMEOUT
:
1323 if (hcd
->speed
< HCD_USB3
)
1325 temp
= readl(ports
[wIndex
]->addr
+ PORTPMSC
);
1326 temp
&= ~PORT_U2_TIMEOUT_MASK
;
1327 temp
|= PORT_U2_TIMEOUT(timeout
);
1328 writel(temp
, ports
[wIndex
]->addr
+ PORTPMSC
);
1330 case USB_PORT_FEAT_TEST
:
1331 /* 4.19.6 Port Test Modes (USB2 Test Mode) */
1332 if (hcd
->speed
!= HCD_USB2
)
1334 if (test_mode
> TEST_FORCE_EN
|| test_mode
< TEST_J
)
1336 retval
= xhci_enter_test_mode(xhci
, test_mode
, wIndex
,
1342 /* unblock any posted writes */
1343 temp
= readl(ports
[wIndex
]->addr
);
1345 case ClearPortFeature
:
1346 if (!wIndex
|| wIndex
> max_ports
)
1349 temp
= readl(ports
[wIndex
]->addr
);
1350 if (temp
== ~(u32
)0) {
1355 /* FIXME: What new port features do we need to support? */
1356 temp
= xhci_port_state_to_neutral(temp
);
1358 case USB_PORT_FEAT_SUSPEND
:
1359 temp
= readl(ports
[wIndex
]->addr
);
1360 xhci_dbg(xhci
, "clear USB_PORT_FEAT_SUSPEND\n");
1361 xhci_dbg(xhci
, "PORTSC %04x\n", temp
);
1362 if (temp
& PORT_RESET
)
1364 if ((temp
& PORT_PLS_MASK
) == XDEV_U3
) {
1365 if ((temp
& PORT_PE
) == 0)
1368 set_bit(wIndex
, &bus_state
->resuming_ports
);
1369 usb_hcd_start_port_resume(&hcd
->self
, wIndex
);
1370 xhci_set_link_state(xhci
, ports
[wIndex
],
1372 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1373 msleep(USB_RESUME_TIMEOUT
);
1374 spin_lock_irqsave(&xhci
->lock
, flags
);
1375 xhci_set_link_state(xhci
, ports
[wIndex
],
1377 clear_bit(wIndex
, &bus_state
->resuming_ports
);
1378 usb_hcd_end_port_resume(&hcd
->self
, wIndex
);
1380 bus_state
->port_c_suspend
|= 1 << wIndex
;
1382 slot_id
= xhci_find_slot_id_by_port(hcd
, xhci
,
1385 xhci_dbg(xhci
, "slot_id is zero\n");
1388 xhci_ring_device(xhci
, slot_id
);
1390 case USB_PORT_FEAT_C_SUSPEND
:
1391 bus_state
->port_c_suspend
&= ~(1 << wIndex
);
1393 case USB_PORT_FEAT_C_RESET
:
1394 case USB_PORT_FEAT_C_BH_PORT_RESET
:
1395 case USB_PORT_FEAT_C_CONNECTION
:
1396 case USB_PORT_FEAT_C_OVER_CURRENT
:
1397 case USB_PORT_FEAT_C_ENABLE
:
1398 case USB_PORT_FEAT_C_PORT_LINK_STATE
:
1399 case USB_PORT_FEAT_C_PORT_CONFIG_ERROR
:
1400 xhci_clear_port_change_bit(xhci
, wValue
, wIndex
,
1401 ports
[wIndex
]->addr
, temp
);
1403 case USB_PORT_FEAT_ENABLE
:
1404 xhci_disable_port(hcd
, xhci
, wIndex
,
1405 ports
[wIndex
]->addr
, temp
);
1407 case USB_PORT_FEAT_POWER
:
1408 xhci_set_port_power(xhci
, hcd
, wIndex
, false, &flags
);
1410 case USB_PORT_FEAT_TEST
:
1411 retval
= xhci_exit_test_mode(xhci
);
1419 /* "stall" on error */
1422 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1427 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
1428 * Ports are 0-indexed from the HCD point of view,
1429 * and 1-indexed from the USB core pointer of view.
1431 * Note that the status change bits will be cleared as soon as a port status
1432 * change event is generated, so we use the saved status from that event.
1434 int xhci_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
1436 unsigned long flags
;
1440 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
1442 struct xhci_bus_state
*bus_state
;
1443 bool reset_change
= false;
1444 struct xhci_hub
*rhub
;
1445 struct xhci_port
**ports
;
1447 rhub
= xhci_get_rhub(hcd
);
1448 ports
= rhub
->ports
;
1449 max_ports
= rhub
->num_ports
;
1450 bus_state
= &xhci
->bus_state
[hcd_index(hcd
)];
1452 /* Initial status is no changes */
1453 retval
= (max_ports
+ 8) / 8;
1454 memset(buf
, 0, retval
);
1457 * Inform the usbcore about resume-in-progress by returning
1458 * a non-zero value even if there are no status changes.
1460 status
= bus_state
->resuming_ports
;
1462 mask
= PORT_CSC
| PORT_PEC
| PORT_OCC
| PORT_PLC
| PORT_WRC
| PORT_CEC
;
1464 spin_lock_irqsave(&xhci
->lock
, flags
);
1465 /* For each port, did anything change? If so, set that bit in buf. */
1466 for (i
= 0; i
< max_ports
; i
++) {
1467 temp
= readl(ports
[i
]->addr
);
1468 if (temp
== ~(u32
)0) {
1473 trace_xhci_hub_status_data(i
, temp
);
1475 if ((temp
& mask
) != 0 ||
1476 (bus_state
->port_c_suspend
& 1 << i
) ||
1477 (bus_state
->resume_done
[i
] && time_after_eq(
1478 jiffies
, bus_state
->resume_done
[i
]))) {
1479 buf
[(i
+ 1) / 8] |= 1 << (i
+ 1) % 8;
1482 if ((temp
& PORT_RC
))
1483 reset_change
= true;
1487 if (!status
&& !reset_change
) {
1488 xhci_dbg(xhci
, "%s: stopping port polling.\n", __func__
);
1489 clear_bit(HCD_FLAG_POLL_RH
, &hcd
->flags
);
1491 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1492 return status
? retval
: 0;
1497 int xhci_bus_suspend(struct usb_hcd
*hcd
)
1499 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
1500 int max_ports
, port_index
;
1501 struct xhci_bus_state
*bus_state
;
1502 unsigned long flags
;
1503 struct xhci_hub
*rhub
;
1504 struct xhci_port
**ports
;
1505 u32 portsc_buf
[USB_MAXCHILDREN
];
1508 rhub
= xhci_get_rhub(hcd
);
1509 ports
= rhub
->ports
;
1510 max_ports
= rhub
->num_ports
;
1511 bus_state
= &xhci
->bus_state
[hcd_index(hcd
)];
1512 wake_enabled
= hcd
->self
.root_hub
->do_remote_wakeup
;
1514 spin_lock_irqsave(&xhci
->lock
, flags
);
1517 if (bus_state
->resuming_ports
|| /* USB2 */
1518 bus_state
->port_remote_wakeup
) { /* USB3 */
1519 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1520 xhci_dbg(xhci
, "suspend failed because a port is resuming\n");
1525 * Prepare ports for suspend, but don't write anything before all ports
1526 * are checked and we know bus suspend can proceed
1528 bus_state
->bus_suspended
= 0;
1529 port_index
= max_ports
;
1530 while (port_index
--) {
1534 t1
= readl(ports
[port_index
]->addr
);
1535 t2
= xhci_port_state_to_neutral(t1
);
1536 portsc_buf
[port_index
] = 0;
1539 * Give a USB3 port in link training time to finish, but don't
1540 * prevent suspend as port might be stuck
1542 if ((hcd
->speed
>= HCD_USB3
) && retries
-- &&
1543 (t1
& PORT_PLS_MASK
) == XDEV_POLLING
) {
1544 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1545 msleep(XHCI_PORT_POLLING_LFPS_TIME
);
1546 spin_lock_irqsave(&xhci
->lock
, flags
);
1547 xhci_dbg(xhci
, "port %d polling in bus suspend, waiting\n",
1551 /* bail out if port detected a over-current condition */
1553 bus_state
->bus_suspended
= 0;
1554 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1555 xhci_dbg(xhci
, "Bus suspend bailout, port over-current detected\n");
1558 /* suspend ports in U0, or bail out for new connect changes */
1559 if ((t1
& PORT_PE
) && (t1
& PORT_PLS_MASK
) == XDEV_U0
) {
1560 if ((t1
& PORT_CSC
) && wake_enabled
) {
1561 bus_state
->bus_suspended
= 0;
1562 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1563 xhci_dbg(xhci
, "Bus suspend bailout, port connect change\n");
1566 xhci_dbg(xhci
, "port %d not suspended\n", port_index
);
1567 t2
&= ~PORT_PLS_MASK
;
1568 t2
|= PORT_LINK_STROBE
| XDEV_U3
;
1569 set_bit(port_index
, &bus_state
->bus_suspended
);
1571 /* USB core sets remote wake mask for USB 3.0 hubs,
1572 * including the USB 3.0 roothub, but only if CONFIG_PM
1573 * is enabled, so also enable remote wake here.
1576 if (t1
& PORT_CONNECT
) {
1577 t2
|= PORT_WKOC_E
| PORT_WKDISC_E
;
1578 t2
&= ~PORT_WKCONN_E
;
1580 t2
|= PORT_WKOC_E
| PORT_WKCONN_E
;
1581 t2
&= ~PORT_WKDISC_E
;
1584 if ((xhci
->quirks
& XHCI_U2_DISABLE_WAKE
) &&
1585 (hcd
->speed
< HCD_USB3
)) {
1586 if (usb_amd_pt_check_port(hcd
->self
.controller
,
1588 t2
&= ~PORT_WAKE_BITS
;
1591 t2
&= ~PORT_WAKE_BITS
;
1593 t1
= xhci_port_state_to_neutral(t1
);
1595 portsc_buf
[port_index
] = t2
;
1598 /* write port settings, stopping and suspending ports if needed */
1599 port_index
= max_ports
;
1600 while (port_index
--) {
1601 if (!portsc_buf
[port_index
])
1603 if (test_bit(port_index
, &bus_state
->bus_suspended
)) {
1606 slot_id
= xhci_find_slot_id_by_port(hcd
, xhci
,
1609 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1610 xhci_stop_device(xhci
, slot_id
, 1);
1611 spin_lock_irqsave(&xhci
->lock
, flags
);
1614 writel(portsc_buf
[port_index
], ports
[port_index
]->addr
);
1616 hcd
->state
= HC_STATE_SUSPENDED
;
1617 bus_state
->next_statechange
= jiffies
+ msecs_to_jiffies(10);
1618 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1623 * Workaround for missing Cold Attach Status (CAS) if device re-plugged in S3.
1624 * warm reset a USB3 device stuck in polling or compliance mode after resume.
1625 * See Intel 100/c230 series PCH specification update Doc #332692-006 Errata #8
1627 static bool xhci_port_missing_cas_quirk(struct xhci_port
*port
)
1631 portsc
= readl(port
->addr
);
1633 /* if any of these are set we are not stuck */
1634 if (portsc
& (PORT_CONNECT
| PORT_CAS
))
1637 if (((portsc
& PORT_PLS_MASK
) != XDEV_POLLING
) &&
1638 ((portsc
& PORT_PLS_MASK
) != XDEV_COMP_MODE
))
1641 /* clear wakeup/change bits, and do a warm port reset */
1642 portsc
&= ~(PORT_RWC_BITS
| PORT_CEC
| PORT_WAKE_BITS
);
1644 writel(portsc
, port
->addr
);
1650 int xhci_bus_resume(struct usb_hcd
*hcd
)
1652 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
1653 struct xhci_bus_state
*bus_state
;
1654 unsigned long flags
;
1655 int max_ports
, port_index
;
1660 struct xhci_hub
*rhub
;
1661 struct xhci_port
**ports
;
1663 rhub
= xhci_get_rhub(hcd
);
1664 ports
= rhub
->ports
;
1665 max_ports
= rhub
->num_ports
;
1666 bus_state
= &xhci
->bus_state
[hcd_index(hcd
)];
1668 if (time_before(jiffies
, bus_state
->next_statechange
))
1671 spin_lock_irqsave(&xhci
->lock
, flags
);
1672 if (!HCD_HW_ACCESSIBLE(hcd
)) {
1673 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1677 /* delay the irqs */
1678 temp
= readl(&xhci
->op_regs
->command
);
1680 writel(temp
, &xhci
->op_regs
->command
);
1682 /* bus specific resume for ports we suspended at bus_suspend */
1683 if (hcd
->speed
>= HCD_USB3
)
1684 next_state
= XDEV_U0
;
1686 next_state
= XDEV_RESUME
;
1688 port_index
= max_ports
;
1689 while (port_index
--) {
1690 portsc
= readl(ports
[port_index
]->addr
);
1692 /* warm reset CAS limited ports stuck in polling/compliance */
1693 if ((xhci
->quirks
& XHCI_MISSING_CAS
) &&
1694 (hcd
->speed
>= HCD_USB3
) &&
1695 xhci_port_missing_cas_quirk(ports
[port_index
])) {
1696 xhci_dbg(xhci
, "reset stuck port %d\n", port_index
);
1697 clear_bit(port_index
, &bus_state
->bus_suspended
);
1700 /* resume if we suspended the link, and it is still suspended */
1701 if (test_bit(port_index
, &bus_state
->bus_suspended
))
1702 switch (portsc
& PORT_PLS_MASK
) {
1704 portsc
= xhci_port_state_to_neutral(portsc
);
1705 portsc
&= ~PORT_PLS_MASK
;
1706 portsc
|= PORT_LINK_STROBE
| next_state
;
1709 /* resume already initiated */
1712 /* not in a resumeable state, ignore it */
1713 clear_bit(port_index
,
1714 &bus_state
->bus_suspended
);
1717 /* disable wake for all ports, write new link state if needed */
1718 portsc
&= ~(PORT_RWC_BITS
| PORT_CEC
| PORT_WAKE_BITS
);
1719 writel(portsc
, ports
[port_index
]->addr
);
1722 /* USB2 specific resume signaling delay and U0 link state transition */
1723 if (hcd
->speed
< HCD_USB3
) {
1724 if (bus_state
->bus_suspended
) {
1725 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1726 msleep(USB_RESUME_TIMEOUT
);
1727 spin_lock_irqsave(&xhci
->lock
, flags
);
1729 for_each_set_bit(port_index
, &bus_state
->bus_suspended
,
1731 /* Clear PLC to poll it later for U0 transition */
1732 xhci_test_and_clear_bit(xhci
, ports
[port_index
],
1734 xhci_set_link_state(xhci
, ports
[port_index
], XDEV_U0
);
1738 /* poll for U0 link state complete, both USB2 and USB3 */
1739 for_each_set_bit(port_index
, &bus_state
->bus_suspended
, BITS_PER_LONG
) {
1740 sret
= xhci_handshake(ports
[port_index
]->addr
, PORT_PLC
,
1741 PORT_PLC
, 10 * 1000);
1743 xhci_warn(xhci
, "port %d resume PLC timeout\n",
1747 xhci_test_and_clear_bit(xhci
, ports
[port_index
], PORT_PLC
);
1748 slot_id
= xhci_find_slot_id_by_port(hcd
, xhci
, port_index
+ 1);
1750 xhci_ring_device(xhci
, slot_id
);
1752 (void) readl(&xhci
->op_regs
->command
);
1754 bus_state
->next_statechange
= jiffies
+ msecs_to_jiffies(5);
1755 /* re-enable irqs */
1756 temp
= readl(&xhci
->op_regs
->command
);
1758 writel(temp
, &xhci
->op_regs
->command
);
1759 temp
= readl(&xhci
->op_regs
->command
);
1761 spin_unlock_irqrestore(&xhci
->lock
, flags
);
1765 unsigned long xhci_get_resuming_ports(struct usb_hcd
*hcd
)
1767 struct xhci_hcd
*xhci
= hcd_to_xhci(hcd
);
1768 struct xhci_bus_state
*bus_state
;
1770 bus_state
= &xhci
->bus_state
[hcd_index(hcd
)];
1772 /* USB3 port wakeups are reported via usb_wakeup_notification() */
1773 return bus_state
->resuming_ports
; /* USB2 ports only */
1776 #endif /* CONFIG_PM */