Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 27 | #define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E) |
| 28 | #define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_WRC | PORT_OCC | \ |
| 29 | PORT_RC | PORT_PLC | PORT_PE) |
| 30 | |
Sarah Sharp | 48e8236 | 2011-10-06 11:54:23 -0700 | [diff] [blame^] | 31 | /* usb 1.1 root hub device descriptor */ |
| 32 | static u8 usb_bos_descriptor [] = { |
| 33 | USB_DT_BOS_SIZE, /* __u8 bLength, 5 bytes */ |
| 34 | USB_DT_BOS, /* __u8 bDescriptorType */ |
| 35 | 0x0F, 0x00, /* __le16 wTotalLength, 15 bytes */ |
| 36 | 0x1, /* __u8 bNumDeviceCaps */ |
| 37 | /* First device capability */ |
| 38 | USB_DT_USB_SS_CAP_SIZE, /* __u8 bLength, 10 bytes */ |
| 39 | USB_DT_DEVICE_CAPABILITY, /* Device Capability */ |
| 40 | USB_SS_CAP_TYPE, /* bDevCapabilityType, SUPERSPEED_USB */ |
| 41 | 0x00, /* bmAttributes, LTM off by default */ |
| 42 | USB_5GBPS_OPERATION, 0x00, /* wSpeedsSupported, 5Gbps only */ |
| 43 | 0x03, /* bFunctionalitySupport, |
| 44 | USB 3.0 speed only */ |
| 45 | 0x00, /* bU1DevExitLat, set later. */ |
| 46 | 0x00, 0x00 /* __le16 bU2DevExitLat, set later. */ |
| 47 | }; |
| 48 | |
| 49 | |
Sarah Sharp | 4bbb0ac | 2010-11-29 16:14:37 -0800 | [diff] [blame] | 50 | static void xhci_common_hub_descriptor(struct xhci_hcd *xhci, |
| 51 | struct usb_hub_descriptor *desc, int ports) |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 52 | { |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 53 | u16 temp; |
| 54 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 55 | desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.9 says 20ms max */ |
| 56 | desc->bHubContrCurrent = 0; |
| 57 | |
| 58 | desc->bNbrPorts = ports; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 59 | /* Ugh, these should be #defines, FIXME */ |
| 60 | /* Using table 11-13 in USB 2.0 spec. */ |
| 61 | temp = 0; |
| 62 | /* Bits 1:0 - support port power switching, or power always on */ |
| 63 | if (HCC_PPC(xhci->hcc_params)) |
| 64 | temp |= 0x0001; |
| 65 | else |
| 66 | temp |= 0x0002; |
| 67 | /* Bit 2 - root hubs are not part of a compound device */ |
| 68 | /* Bits 4:3 - individual port over current protection */ |
| 69 | temp |= 0x0008; |
| 70 | /* Bits 6:5 - no TTs in root ports */ |
| 71 | /* Bit 7 - no port indicators */ |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 72 | desc->wHubCharacteristics = cpu_to_le16(temp); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Sarah Sharp | 4bbb0ac | 2010-11-29 16:14:37 -0800 | [diff] [blame] | 75 | /* Fill in the USB 2.0 roothub descriptor */ |
| 76 | static 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); |
| 88 | desc->bDescriptorType = 0x29; |
| 89 | temp = 1 + (ports / 8); |
| 90 | desc->bDescLength = 7 + 2 * temp; |
| 91 | |
| 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++) { |
| 97 | portsc = xhci_readl(xhci, xhci->usb3_ports[i]); |
| 98 | /* 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 */ |
| 129 | static 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); |
| 139 | desc->bDescriptorType = 0x2a; |
| 140 | desc->bDescLength = 12; |
| 141 | |
| 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 | |
| 160 | static 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 Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 171 | static unsigned int xhci_port_speed(unsigned int port_status) |
| 172 | { |
| 173 | if (DEV_LOWSPEED(port_status)) |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 174 | return USB_PORT_STAT_LOW_SPEED; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 175 | if (DEV_HIGHSPEED(port_status)) |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 176 | return USB_PORT_STAT_HIGH_SPEED; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 177 | /* |
| 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 Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 180 | * USB_PORT_STAT_*_SPEED is used). |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 181 | */ |
| 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 Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 231 | u32 xhci_port_state_to_neutral(u32 state) |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 232 | { |
| 233 | /* Save read-only status and port state */ |
| 234 | return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS); |
| 235 | } |
| 236 | |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 237 | /* |
| 238 | * find slot id based on port number. |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 239 | * @port: The one-based port number from one of the two split roothubs. |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 240 | */ |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 241 | int xhci_find_slot_id_by_port(struct usb_hcd *hcd, struct xhci_hcd *xhci, |
| 242 | u16 port) |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 243 | { |
| 244 | int slot_id; |
| 245 | int i; |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 246 | enum usb_device_speed speed; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 247 | |
| 248 | slot_id = 0; |
| 249 | for (i = 0; i < MAX_HC_SLOTS; i++) { |
| 250 | if (!xhci->devs[i]) |
| 251 | continue; |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 252 | speed = xhci->devs[i]->udev->speed; |
| 253 | if (((speed == USB_SPEED_SUPER) == (hcd->speed == HCD_USB3)) |
Sarah Sharp | fe30182 | 2011-09-02 11:05:41 -0700 | [diff] [blame] | 254 | && xhci->devs[i]->fake_port == port) { |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 255 | 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 | */ |
| 269 | static 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 | |
| 315 | command_cleanup: |
| 316 | xhci_free_command(xhci, cmd); |
| 317 | return ret; |
| 318 | } |
| 319 | |
| 320 | /* |
| 321 | * Ring device, it rings the all doorbells unconditionally. |
| 322 | */ |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 323 | void xhci_ring_device(struct xhci_hcd *xhci, int slot_id) |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 324 | { |
| 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 Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 335 | static void xhci_disable_port(struct usb_hcd *hcd, struct xhci_hcd *xhci, |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 336 | u16 wIndex, __le32 __iomem *addr, u32 port_status) |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 337 | { |
Sarah Sharp | 6dd0a3a | 2010-11-16 15:58:52 -0800 | [diff] [blame] | 338 | /* Don't allow the USB core to disable SuperSpeed ports. */ |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 339 | if (hcd->speed == HCD_USB3) { |
Sarah Sharp | 6dd0a3a | 2010-11-16 15:58:52 -0800 | [diff] [blame] | 340 | xhci_dbg(xhci, "Ignoring request to disable " |
| 341 | "SuperSpeed port.\n"); |
| 342 | return; |
| 343 | } |
| 344 | |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 345 | /* Write 1 to disable the port */ |
| 346 | xhci_writel(xhci, port_status | PORT_PE, addr); |
| 347 | port_status = xhci_readl(xhci, addr); |
| 348 | xhci_dbg(xhci, "disable port, actual port %d status = 0x%x\n", |
| 349 | wIndex, port_status); |
| 350 | } |
| 351 | |
Sarah Sharp | 34fb562 | 2009-12-09 15:59:08 -0800 | [diff] [blame] | 352 | static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue, |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 353 | u16 wIndex, __le32 __iomem *addr, u32 port_status) |
Sarah Sharp | 34fb562 | 2009-12-09 15:59:08 -0800 | [diff] [blame] | 354 | { |
| 355 | char *port_change_bit; |
| 356 | u32 status; |
| 357 | |
| 358 | switch (wValue) { |
| 359 | case USB_PORT_FEAT_C_RESET: |
| 360 | status = PORT_RC; |
| 361 | port_change_bit = "reset"; |
| 362 | break; |
Andiry Xu | a11496e | 2011-04-27 18:07:29 +0800 | [diff] [blame] | 363 | case USB_PORT_FEAT_C_BH_PORT_RESET: |
| 364 | status = PORT_WRC; |
| 365 | port_change_bit = "warm(BH) reset"; |
| 366 | break; |
Sarah Sharp | 34fb562 | 2009-12-09 15:59:08 -0800 | [diff] [blame] | 367 | case USB_PORT_FEAT_C_CONNECTION: |
| 368 | status = PORT_CSC; |
| 369 | port_change_bit = "connect"; |
| 370 | break; |
| 371 | case USB_PORT_FEAT_C_OVER_CURRENT: |
| 372 | status = PORT_OCC; |
| 373 | port_change_bit = "over-current"; |
| 374 | break; |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 375 | case USB_PORT_FEAT_C_ENABLE: |
| 376 | status = PORT_PEC; |
| 377 | port_change_bit = "enable/disable"; |
| 378 | break; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 379 | case USB_PORT_FEAT_C_SUSPEND: |
| 380 | status = PORT_PLC; |
| 381 | port_change_bit = "suspend/resume"; |
| 382 | break; |
Andiry Xu | 85387c0 | 2011-04-27 18:07:35 +0800 | [diff] [blame] | 383 | case USB_PORT_FEAT_C_PORT_LINK_STATE: |
| 384 | status = PORT_PLC; |
| 385 | port_change_bit = "link state"; |
| 386 | break; |
Sarah Sharp | 34fb562 | 2009-12-09 15:59:08 -0800 | [diff] [blame] | 387 | default: |
| 388 | /* Should never happen */ |
| 389 | return; |
| 390 | } |
| 391 | /* Change bits are all write 1 to clear */ |
| 392 | xhci_writel(xhci, port_status | status, addr); |
| 393 | port_status = xhci_readl(xhci, addr); |
| 394 | xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n", |
| 395 | port_change_bit, wIndex, port_status); |
| 396 | } |
| 397 | |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 398 | static int xhci_get_ports(struct usb_hcd *hcd, __le32 __iomem ***port_array) |
| 399 | { |
| 400 | int max_ports; |
| 401 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 402 | |
| 403 | if (hcd->speed == HCD_USB3) { |
| 404 | max_ports = xhci->num_usb3_ports; |
| 405 | *port_array = xhci->usb3_ports; |
| 406 | } else { |
| 407 | max_ports = xhci->num_usb2_ports; |
| 408 | *port_array = xhci->usb2_ports; |
| 409 | } |
| 410 | |
| 411 | return max_ports; |
| 412 | } |
| 413 | |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 414 | void xhci_set_link_state(struct xhci_hcd *xhci, __le32 __iomem **port_array, |
| 415 | int port_id, u32 link_state) |
| 416 | { |
| 417 | u32 temp; |
| 418 | |
| 419 | temp = xhci_readl(xhci, port_array[port_id]); |
| 420 | temp = xhci_port_state_to_neutral(temp); |
| 421 | temp &= ~PORT_PLS_MASK; |
| 422 | temp |= PORT_LINK_STROBE | link_state; |
| 423 | xhci_writel(xhci, temp, port_array[port_id]); |
| 424 | } |
| 425 | |
Andiry Xu | d2f52c9 | 2011-09-23 14:19:49 -0700 | [diff] [blame] | 426 | /* Test and clear port RWC bit */ |
| 427 | void xhci_test_and_clear_bit(struct xhci_hcd *xhci, __le32 __iomem **port_array, |
| 428 | int port_id, u32 port_bit) |
| 429 | { |
| 430 | u32 temp; |
| 431 | |
| 432 | temp = xhci_readl(xhci, port_array[port_id]); |
| 433 | if (temp & port_bit) { |
| 434 | temp = xhci_port_state_to_neutral(temp); |
| 435 | temp |= port_bit; |
| 436 | xhci_writel(xhci, temp, port_array[port_id]); |
| 437 | } |
| 438 | } |
| 439 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 440 | int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, |
| 441 | u16 wIndex, char *buf, u16 wLength) |
| 442 | { |
| 443 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 444 | int max_ports; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 445 | unsigned long flags; |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 446 | u32 temp, status; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 447 | int retval = 0; |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 448 | __le32 __iomem **port_array; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 449 | int slot_id; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 450 | struct xhci_bus_state *bus_state; |
Andiry Xu | 2c44178 | 2011-04-27 18:07:39 +0800 | [diff] [blame] | 451 | u16 link_state = 0; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 452 | |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 453 | max_ports = xhci_get_ports(hcd, &port_array); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 454 | bus_state = &xhci->bus_state[hcd_index(hcd)]; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 455 | |
| 456 | spin_lock_irqsave(&xhci->lock, flags); |
| 457 | switch (typeReq) { |
| 458 | case GetHubStatus: |
| 459 | /* No power source, over-current reported per port */ |
| 460 | memset(buf, 0, 4); |
| 461 | break; |
| 462 | case GetHubDescriptor: |
Sarah Sharp | 4bbb0ac | 2010-11-29 16:14:37 -0800 | [diff] [blame] | 463 | /* Check to make sure userspace is asking for the USB 3.0 hub |
| 464 | * descriptor for the USB 3.0 roothub. If not, we stall the |
| 465 | * endpoint, like external hubs do. |
| 466 | */ |
| 467 | if (hcd->speed == HCD_USB3 && |
| 468 | (wLength < USB_DT_SS_HUB_SIZE || |
| 469 | wValue != (USB_DT_SS_HUB << 8))) { |
| 470 | xhci_dbg(xhci, "Wrong hub descriptor type for " |
| 471 | "USB 3.0 roothub.\n"); |
| 472 | goto error; |
| 473 | } |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 474 | xhci_hub_descriptor(hcd, xhci, |
| 475 | (struct usb_hub_descriptor *) buf); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 476 | break; |
Sarah Sharp | 48e8236 | 2011-10-06 11:54:23 -0700 | [diff] [blame^] | 477 | case DeviceRequest | USB_REQ_GET_DESCRIPTOR: |
| 478 | if ((wValue & 0xff00) != (USB_DT_BOS << 8)) |
| 479 | goto error; |
| 480 | |
| 481 | if (hcd->speed != HCD_USB3) |
| 482 | goto error; |
| 483 | |
| 484 | memcpy(buf, &usb_bos_descriptor, |
| 485 | USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE); |
| 486 | temp = xhci_readl(xhci, &xhci->cap_regs->hcs_params3); |
| 487 | buf[12] = HCS_U1_LATENCY(temp); |
| 488 | put_unaligned_le16(HCS_U2_LATENCY(temp), &buf[13]); |
| 489 | |
| 490 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 491 | return USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 492 | case GetPortStatus: |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 493 | if (!wIndex || wIndex > max_ports) |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 494 | goto error; |
| 495 | wIndex--; |
| 496 | status = 0; |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 497 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | f9de815 | 2010-10-29 14:37:23 -0700 | [diff] [blame] | 498 | if (temp == 0xffffffff) { |
| 499 | retval = -ENODEV; |
| 500 | break; |
| 501 | } |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 502 | xhci_dbg(xhci, "get port status, actual port %d status = 0x%x\n", wIndex, temp); |
| 503 | |
| 504 | /* wPortChange bits */ |
| 505 | if (temp & PORT_CSC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 506 | status |= USB_PORT_STAT_C_CONNECTION << 16; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 507 | if (temp & PORT_PEC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 508 | status |= USB_PORT_STAT_C_ENABLE << 16; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 509 | if ((temp & PORT_OCC)) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 510 | status |= USB_PORT_STAT_C_OVERCURRENT << 16; |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 511 | if ((temp & PORT_RC)) |
| 512 | status |= USB_PORT_STAT_C_RESET << 16; |
| 513 | /* USB3.0 only */ |
| 514 | if (hcd->speed == HCD_USB3) { |
| 515 | if ((temp & PORT_PLC)) |
| 516 | status |= USB_PORT_STAT_C_LINK_STATE << 16; |
| 517 | if ((temp & PORT_WRC)) |
| 518 | status |= USB_PORT_STAT_C_BH_RESET << 16; |
| 519 | } |
| 520 | |
| 521 | if (hcd->speed != HCD_USB3) { |
| 522 | if ((temp & PORT_PLS_MASK) == XDEV_U3 |
| 523 | && (temp & PORT_POWER)) |
| 524 | status |= USB_PORT_STAT_SUSPEND; |
| 525 | } |
Andiry Xu | 8a8ff2f | 2011-08-03 16:46:49 +0800 | [diff] [blame] | 526 | if ((temp & PORT_PLS_MASK) == XDEV_RESUME && |
| 527 | !DEV_SUPERSPEED(temp)) { |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 528 | if ((temp & PORT_RESET) || !(temp & PORT_PE)) |
| 529 | goto error; |
Andiry Xu | 8a8ff2f | 2011-08-03 16:46:49 +0800 | [diff] [blame] | 530 | if (time_after_eq(jiffies, |
| 531 | bus_state->resume_done[wIndex])) { |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 532 | xhci_dbg(xhci, "Resume USB2 port %d\n", |
| 533 | wIndex + 1); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 534 | bus_state->resume_done[wIndex] = 0; |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 535 | xhci_set_link_state(xhci, port_array, wIndex, |
| 536 | XDEV_U0); |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 537 | xhci_dbg(xhci, "set port %d resume\n", |
| 538 | wIndex + 1); |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 539 | slot_id = xhci_find_slot_id_by_port(hcd, xhci, |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 540 | wIndex + 1); |
| 541 | if (!slot_id) { |
| 542 | xhci_dbg(xhci, "slot_id is zero\n"); |
| 543 | goto error; |
| 544 | } |
| 545 | xhci_ring_device(xhci, slot_id); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 546 | bus_state->port_c_suspend |= 1 << wIndex; |
| 547 | bus_state->suspended_ports &= ~(1 << wIndex); |
Andiry Xu | 8a8ff2f | 2011-08-03 16:46:49 +0800 | [diff] [blame] | 548 | } else { |
| 549 | /* |
| 550 | * The resume has been signaling for less than |
| 551 | * 20ms. Report the port status as SUSPEND, |
| 552 | * let the usbcore check port status again |
| 553 | * and clear resume signaling later. |
| 554 | */ |
| 555 | status |= USB_PORT_STAT_SUSPEND; |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 556 | } |
| 557 | } |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 558 | if ((temp & PORT_PLS_MASK) == XDEV_U0 |
| 559 | && (temp & PORT_POWER) |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 560 | && (bus_state->suspended_ports & (1 << wIndex))) { |
| 561 | bus_state->suspended_ports &= ~(1 << wIndex); |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 562 | if (hcd->speed != HCD_USB3) |
| 563 | bus_state->port_c_suspend |= 1 << wIndex; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 564 | } |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 565 | if (temp & PORT_CONNECT) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 566 | status |= USB_PORT_STAT_CONNECTION; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 567 | status |= xhci_port_speed(temp); |
| 568 | } |
| 569 | if (temp & PORT_PE) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 570 | status |= USB_PORT_STAT_ENABLE; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 571 | if (temp & PORT_OC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 572 | status |= USB_PORT_STAT_OVERCURRENT; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 573 | if (temp & PORT_RESET) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 574 | status |= USB_PORT_STAT_RESET; |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 575 | if (temp & PORT_POWER) { |
| 576 | if (hcd->speed == HCD_USB3) |
| 577 | status |= USB_SS_PORT_STAT_POWER; |
| 578 | else |
| 579 | status |= USB_PORT_STAT_POWER; |
| 580 | } |
| 581 | /* Port Link State */ |
| 582 | if (hcd->speed == HCD_USB3) { |
| 583 | /* resume state is a xHCI internal state. |
| 584 | * Do not report it to usb core. |
| 585 | */ |
| 586 | if ((temp & PORT_PLS_MASK) != XDEV_RESUME) |
| 587 | status |= (temp & PORT_PLS_MASK); |
| 588 | } |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 589 | if (bus_state->port_c_suspend & (1 << wIndex)) |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 590 | status |= 1 << USB_PORT_FEAT_C_SUSPEND; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 591 | xhci_dbg(xhci, "Get port status returned 0x%x\n", status); |
| 592 | put_unaligned(cpu_to_le32(status), (__le32 *) buf); |
| 593 | break; |
| 594 | case SetPortFeature: |
Andiry Xu | 2c44178 | 2011-04-27 18:07:39 +0800 | [diff] [blame] | 595 | if (wValue == USB_PORT_FEAT_LINK_STATE) |
| 596 | link_state = (wIndex & 0xff00) >> 3; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 597 | wIndex &= 0xff; |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 598 | if (!wIndex || wIndex > max_ports) |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 599 | goto error; |
| 600 | wIndex--; |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 601 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | f9de815 | 2010-10-29 14:37:23 -0700 | [diff] [blame] | 602 | if (temp == 0xffffffff) { |
| 603 | retval = -ENODEV; |
| 604 | break; |
| 605 | } |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 606 | temp = xhci_port_state_to_neutral(temp); |
Sarah Sharp | 4bbb0ac | 2010-11-29 16:14:37 -0800 | [diff] [blame] | 607 | /* FIXME: What new port features do we need to support? */ |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 608 | switch (wValue) { |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 609 | case USB_PORT_FEAT_SUSPEND: |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 610 | temp = xhci_readl(xhci, port_array[wIndex]); |
Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 611 | if ((temp & PORT_PLS_MASK) != XDEV_U0) { |
| 612 | /* Resume the port to U0 first */ |
| 613 | xhci_set_link_state(xhci, port_array, wIndex, |
| 614 | XDEV_U0); |
| 615 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 616 | msleep(10); |
| 617 | spin_lock_irqsave(&xhci->lock, flags); |
| 618 | } |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 619 | /* In spec software should not attempt to suspend |
| 620 | * a port unless the port reports that it is in the |
| 621 | * enabled (PED = ‘1’,PLS < ‘3’) state. |
| 622 | */ |
Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 623 | temp = xhci_readl(xhci, port_array[wIndex]); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 624 | if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) |
| 625 | || (temp & PORT_PLS_MASK) >= XDEV_U3) { |
| 626 | xhci_warn(xhci, "USB core suspending device " |
| 627 | "not in U0/U1/U2.\n"); |
| 628 | goto error; |
| 629 | } |
| 630 | |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 631 | slot_id = xhci_find_slot_id_by_port(hcd, xhci, |
| 632 | wIndex + 1); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 633 | if (!slot_id) { |
| 634 | xhci_warn(xhci, "slot_id is zero\n"); |
| 635 | goto error; |
| 636 | } |
| 637 | /* unlock to execute stop endpoint commands */ |
| 638 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 639 | xhci_stop_device(xhci, slot_id, 1); |
| 640 | spin_lock_irqsave(&xhci->lock, flags); |
| 641 | |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 642 | xhci_set_link_state(xhci, port_array, wIndex, XDEV_U3); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 643 | |
| 644 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 645 | msleep(10); /* wait device to enter */ |
| 646 | spin_lock_irqsave(&xhci->lock, flags); |
| 647 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 648 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 649 | bus_state->suspended_ports |= 1 << wIndex; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 650 | break; |
Andiry Xu | 2c44178 | 2011-04-27 18:07:39 +0800 | [diff] [blame] | 651 | case USB_PORT_FEAT_LINK_STATE: |
| 652 | temp = xhci_readl(xhci, port_array[wIndex]); |
| 653 | /* Software should not attempt to set |
| 654 | * port link state above '5' (Rx.Detect) and the port |
| 655 | * must be enabled. |
| 656 | */ |
| 657 | if ((temp & PORT_PE) == 0 || |
| 658 | (link_state > USB_SS_PORT_LS_RX_DETECT)) { |
| 659 | xhci_warn(xhci, "Cannot set link state.\n"); |
| 660 | goto error; |
| 661 | } |
| 662 | |
| 663 | if (link_state == USB_SS_PORT_LS_U3) { |
| 664 | slot_id = xhci_find_slot_id_by_port(hcd, xhci, |
| 665 | wIndex + 1); |
| 666 | if (slot_id) { |
| 667 | /* unlock to execute stop endpoint |
| 668 | * commands */ |
| 669 | spin_unlock_irqrestore(&xhci->lock, |
| 670 | flags); |
| 671 | xhci_stop_device(xhci, slot_id, 1); |
| 672 | spin_lock_irqsave(&xhci->lock, flags); |
| 673 | } |
| 674 | } |
| 675 | |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 676 | xhci_set_link_state(xhci, port_array, wIndex, |
| 677 | link_state); |
Andiry Xu | 2c44178 | 2011-04-27 18:07:39 +0800 | [diff] [blame] | 678 | |
| 679 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 680 | msleep(20); /* wait device to enter */ |
| 681 | spin_lock_irqsave(&xhci->lock, flags); |
| 682 | |
| 683 | temp = xhci_readl(xhci, port_array[wIndex]); |
| 684 | if (link_state == USB_SS_PORT_LS_U3) |
| 685 | bus_state->suspended_ports |= 1 << wIndex; |
| 686 | break; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 687 | case USB_PORT_FEAT_POWER: |
| 688 | /* |
| 689 | * Turn on ports, even if there isn't per-port switching. |
| 690 | * HC will report connect events even before this is set. |
| 691 | * However, khubd will ignore the roothub events until |
| 692 | * the roothub is registered. |
| 693 | */ |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 694 | xhci_writel(xhci, temp | PORT_POWER, |
| 695 | port_array[wIndex]); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 696 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 697 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 698 | xhci_dbg(xhci, "set port power, actual port %d status = 0x%x\n", wIndex, temp); |
| 699 | break; |
| 700 | case USB_PORT_FEAT_RESET: |
| 701 | temp = (temp | PORT_RESET); |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 702 | xhci_writel(xhci, temp, port_array[wIndex]); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 703 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 704 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 705 | xhci_dbg(xhci, "set port reset, actual port %d status = 0x%x\n", wIndex, temp); |
| 706 | break; |
Andiry Xu | a11496e | 2011-04-27 18:07:29 +0800 | [diff] [blame] | 707 | case USB_PORT_FEAT_BH_PORT_RESET: |
| 708 | temp |= PORT_WR; |
| 709 | xhci_writel(xhci, temp, port_array[wIndex]); |
| 710 | |
| 711 | temp = xhci_readl(xhci, port_array[wIndex]); |
| 712 | break; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 713 | default: |
| 714 | goto error; |
| 715 | } |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 716 | /* unblock any posted writes */ |
| 717 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 718 | break; |
| 719 | case ClearPortFeature: |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 720 | if (!wIndex || wIndex > max_ports) |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 721 | goto error; |
| 722 | wIndex--; |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 723 | temp = xhci_readl(xhci, port_array[wIndex]); |
Sarah Sharp | f9de815 | 2010-10-29 14:37:23 -0700 | [diff] [blame] | 724 | if (temp == 0xffffffff) { |
| 725 | retval = -ENODEV; |
| 726 | break; |
| 727 | } |
Sarah Sharp | 4bbb0ac | 2010-11-29 16:14:37 -0800 | [diff] [blame] | 728 | /* FIXME: What new port features do we need to support? */ |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 729 | temp = xhci_port_state_to_neutral(temp); |
| 730 | switch (wValue) { |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 731 | case USB_PORT_FEAT_SUSPEND: |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 732 | temp = xhci_readl(xhci, port_array[wIndex]); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 733 | xhci_dbg(xhci, "clear USB_PORT_FEAT_SUSPEND\n"); |
| 734 | xhci_dbg(xhci, "PORTSC %04x\n", temp); |
| 735 | if (temp & PORT_RESET) |
| 736 | goto error; |
Andiry Xu | 5ac04bf | 2011-08-03 16:46:48 +0800 | [diff] [blame] | 737 | if ((temp & PORT_PLS_MASK) == XDEV_U3) { |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 738 | if ((temp & PORT_PE) == 0) |
| 739 | goto error; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 740 | |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 741 | xhci_set_link_state(xhci, port_array, wIndex, |
| 742 | XDEV_RESUME); |
| 743 | spin_unlock_irqrestore(&xhci->lock, flags); |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 744 | msleep(20); |
| 745 | spin_lock_irqsave(&xhci->lock, flags); |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 746 | xhci_set_link_state(xhci, port_array, wIndex, |
| 747 | XDEV_U0); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 748 | } |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 749 | bus_state->port_c_suspend |= 1 << wIndex; |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 750 | |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 751 | slot_id = xhci_find_slot_id_by_port(hcd, xhci, |
| 752 | wIndex + 1); |
Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 753 | if (!slot_id) { |
| 754 | xhci_dbg(xhci, "slot_id is zero\n"); |
| 755 | goto error; |
| 756 | } |
| 757 | xhci_ring_device(xhci, slot_id); |
| 758 | break; |
| 759 | case USB_PORT_FEAT_C_SUSPEND: |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 760 | bus_state->port_c_suspend &= ~(1 << wIndex); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 761 | case USB_PORT_FEAT_C_RESET: |
Andiry Xu | a11496e | 2011-04-27 18:07:29 +0800 | [diff] [blame] | 762 | case USB_PORT_FEAT_C_BH_PORT_RESET: |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 763 | case USB_PORT_FEAT_C_CONNECTION: |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 764 | case USB_PORT_FEAT_C_OVER_CURRENT: |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 765 | case USB_PORT_FEAT_C_ENABLE: |
Andiry Xu | 85387c0 | 2011-04-27 18:07:35 +0800 | [diff] [blame] | 766 | case USB_PORT_FEAT_C_PORT_LINK_STATE: |
Sarah Sharp | 34fb562 | 2009-12-09 15:59:08 -0800 | [diff] [blame] | 767 | xhci_clear_port_change_bit(xhci, wValue, wIndex, |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 768 | port_array[wIndex], temp); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 769 | break; |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 770 | case USB_PORT_FEAT_ENABLE: |
Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 771 | xhci_disable_port(hcd, xhci, wIndex, |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 772 | port_array[wIndex], temp); |
Sarah Sharp | 6219c04 | 2009-12-09 15:59:11 -0800 | [diff] [blame] | 773 | break; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 774 | default: |
| 775 | goto error; |
| 776 | } |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 777 | break; |
| 778 | default: |
| 779 | error: |
| 780 | /* "stall" on error */ |
| 781 | retval = -EPIPE; |
| 782 | } |
| 783 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 784 | return retval; |
| 785 | } |
| 786 | |
| 787 | /* |
| 788 | * Returns 0 if the status hasn't changed, or the number of bytes in buf. |
| 789 | * Ports are 0-indexed from the HCD point of view, |
| 790 | * and 1-indexed from the USB core pointer of view. |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 791 | * |
| 792 | * Note that the status change bits will be cleared as soon as a port status |
| 793 | * change event is generated, so we use the saved status from that event. |
| 794 | */ |
| 795 | int xhci_hub_status_data(struct usb_hcd *hcd, char *buf) |
| 796 | { |
| 797 | unsigned long flags; |
| 798 | u32 temp, status; |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 799 | u32 mask; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 800 | int i, retval; |
| 801 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 802 | int max_ports; |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 803 | __le32 __iomem **port_array; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 804 | struct xhci_bus_state *bus_state; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 805 | |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 806 | max_ports = xhci_get_ports(hcd, &port_array); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 807 | bus_state = &xhci->bus_state[hcd_index(hcd)]; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 808 | |
| 809 | /* Initial status is no changes */ |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 810 | retval = (max_ports + 8) / 8; |
William Gulland | 419a8e81 | 2010-05-12 10:20:34 -0700 | [diff] [blame] | 811 | memset(buf, 0, retval); |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 812 | status = 0; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 813 | |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 814 | mask = PORT_CSC | PORT_PEC | PORT_OCC | PORT_PLC; |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 815 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 816 | spin_lock_irqsave(&xhci->lock, flags); |
| 817 | /* For each port, did anything change? If so, set that bit in buf. */ |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 818 | for (i = 0; i < max_ports; i++) { |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 819 | temp = xhci_readl(xhci, port_array[i]); |
Sarah Sharp | f9de815 | 2010-10-29 14:37:23 -0700 | [diff] [blame] | 820 | if (temp == 0xffffffff) { |
| 821 | retval = -ENODEV; |
| 822 | break; |
| 823 | } |
Andiry Xu | 5619253 | 2010-10-14 07:23:00 -0700 | [diff] [blame] | 824 | if ((temp & mask) != 0 || |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 825 | (bus_state->port_c_suspend & 1 << i) || |
| 826 | (bus_state->resume_done[i] && time_after_eq( |
| 827 | jiffies, bus_state->resume_done[i]))) { |
William Gulland | 419a8e81 | 2010-05-12 10:20:34 -0700 | [diff] [blame] | 828 | buf[(i + 1) / 8] |= 1 << (i + 1) % 8; |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 829 | status = 1; |
| 830 | } |
| 831 | } |
| 832 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 833 | return status ? retval : 0; |
| 834 | } |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 835 | |
| 836 | #ifdef CONFIG_PM |
| 837 | |
| 838 | int xhci_bus_suspend(struct usb_hcd *hcd) |
| 839 | { |
| 840 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 841 | int max_ports, port_index; |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 842 | __le32 __iomem **port_array; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 843 | struct xhci_bus_state *bus_state; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 844 | unsigned long flags; |
| 845 | |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 846 | max_ports = xhci_get_ports(hcd, &port_array); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 847 | bus_state = &xhci->bus_state[hcd_index(hcd)]; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 848 | |
| 849 | spin_lock_irqsave(&xhci->lock, flags); |
| 850 | |
| 851 | if (hcd->self.root_hub->do_remote_wakeup) { |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 852 | port_index = max_ports; |
| 853 | while (port_index--) { |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 854 | if (bus_state->resume_done[port_index] != 0) { |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 855 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 856 | xhci_dbg(xhci, "suspend failed because " |
| 857 | "port %d is resuming\n", |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 858 | port_index + 1); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 859 | return -EBUSY; |
| 860 | } |
| 861 | } |
| 862 | } |
| 863 | |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 864 | port_index = max_ports; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 865 | bus_state->bus_suspended = 0; |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 866 | while (port_index--) { |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 867 | /* suspend the port if the port is not suspended */ |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 868 | u32 t1, t2; |
| 869 | int slot_id; |
| 870 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 871 | t1 = xhci_readl(xhci, port_array[port_index]); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 872 | t2 = xhci_port_state_to_neutral(t1); |
| 873 | |
| 874 | if ((t1 & PORT_PE) && !(t1 & PORT_PLS_MASK)) { |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 875 | xhci_dbg(xhci, "port %d not suspended\n", port_index); |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 876 | slot_id = xhci_find_slot_id_by_port(hcd, xhci, |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 877 | port_index + 1); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 878 | if (slot_id) { |
| 879 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 880 | xhci_stop_device(xhci, slot_id, 1); |
| 881 | spin_lock_irqsave(&xhci->lock, flags); |
| 882 | } |
| 883 | t2 &= ~PORT_PLS_MASK; |
| 884 | t2 |= PORT_LINK_STROBE | XDEV_U3; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 885 | set_bit(port_index, &bus_state->bus_suspended); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 886 | } |
| 887 | if (hcd->self.root_hub->do_remote_wakeup) { |
| 888 | if (t1 & PORT_CONNECT) { |
| 889 | t2 |= PORT_WKOC_E | PORT_WKDISC_E; |
| 890 | t2 &= ~PORT_WKCONN_E; |
| 891 | } else { |
| 892 | t2 |= PORT_WKOC_E | PORT_WKCONN_E; |
| 893 | t2 &= ~PORT_WKDISC_E; |
| 894 | } |
| 895 | } else |
| 896 | t2 &= ~PORT_WAKE_BITS; |
| 897 | |
| 898 | t1 = xhci_port_state_to_neutral(t1); |
| 899 | if (t1 != t2) |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 900 | xhci_writel(xhci, t2, port_array[port_index]); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 901 | |
Andiry Xu | 4f0871a | 2011-04-19 17:17:39 +0800 | [diff] [blame] | 902 | if (hcd->speed != HCD_USB3) { |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 903 | /* enable remote wake up for USB 2.0 */ |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 904 | __le32 __iomem *addr; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 905 | u32 tmp; |
| 906 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 907 | /* Add one to the port status register address to get |
| 908 | * the port power control register address. |
| 909 | */ |
| 910 | addr = port_array[port_index] + 1; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 911 | tmp = xhci_readl(xhci, addr); |
| 912 | tmp |= PORT_RWE; |
| 913 | xhci_writel(xhci, tmp, addr); |
| 914 | } |
| 915 | } |
| 916 | hcd->state = HC_STATE_SUSPENDED; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 917 | bus_state->next_statechange = jiffies + msecs_to_jiffies(10); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 918 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 919 | return 0; |
| 920 | } |
| 921 | |
| 922 | int xhci_bus_resume(struct usb_hcd *hcd) |
| 923 | { |
| 924 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 925 | int max_ports, port_index; |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 926 | __le32 __iomem **port_array; |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 927 | struct xhci_bus_state *bus_state; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 928 | u32 temp; |
| 929 | unsigned long flags; |
| 930 | |
huajun li | a088592 | 2011-05-03 21:11:00 +0800 | [diff] [blame] | 931 | max_ports = xhci_get_ports(hcd, &port_array); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 932 | bus_state = &xhci->bus_state[hcd_index(hcd)]; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 933 | |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 934 | if (time_before(jiffies, bus_state->next_statechange)) |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 935 | msleep(5); |
| 936 | |
| 937 | spin_lock_irqsave(&xhci->lock, flags); |
| 938 | if (!HCD_HW_ACCESSIBLE(hcd)) { |
| 939 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 940 | return -ESHUTDOWN; |
| 941 | } |
| 942 | |
| 943 | /* delay the irqs */ |
| 944 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
| 945 | temp &= ~CMD_EIE; |
| 946 | xhci_writel(xhci, temp, &xhci->op_regs->command); |
| 947 | |
Sarah Sharp | 518e848 | 2010-12-15 11:56:29 -0800 | [diff] [blame] | 948 | port_index = max_ports; |
| 949 | while (port_index--) { |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 950 | /* Check whether need resume ports. If needed |
| 951 | resume port and disable remote wakeup */ |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 952 | u32 temp; |
| 953 | int slot_id; |
| 954 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 955 | temp = xhci_readl(xhci, port_array[port_index]); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 956 | if (DEV_SUPERSPEED(temp)) |
| 957 | temp &= ~(PORT_RWC_BITS | PORT_CEC | PORT_WAKE_BITS); |
| 958 | else |
| 959 | temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 960 | if (test_bit(port_index, &bus_state->bus_suspended) && |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 961 | (temp & PORT_PLS_MASK)) { |
| 962 | if (DEV_SUPERSPEED(temp)) { |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 963 | xhci_set_link_state(xhci, port_array, |
| 964 | port_index, XDEV_U0); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 965 | } else { |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 966 | xhci_set_link_state(xhci, port_array, |
| 967 | port_index, XDEV_RESUME); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 968 | |
| 969 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 970 | msleep(20); |
| 971 | spin_lock_irqsave(&xhci->lock, flags); |
| 972 | |
Andiry Xu | c9682df | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 973 | xhci_set_link_state(xhci, port_array, |
| 974 | port_index, XDEV_U0); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 975 | } |
Andiry Xu | 4f0871a | 2011-04-19 17:17:39 +0800 | [diff] [blame] | 976 | /* wait for the port to enter U0 and report port link |
| 977 | * state change. |
| 978 | */ |
| 979 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 980 | msleep(20); |
| 981 | spin_lock_irqsave(&xhci->lock, flags); |
| 982 | |
| 983 | /* Clear PLC */ |
Andiry Xu | d2f52c9 | 2011-09-23 14:19:49 -0700 | [diff] [blame] | 984 | xhci_test_and_clear_bit(xhci, port_array, port_index, |
| 985 | PORT_PLC); |
Andiry Xu | 4f0871a | 2011-04-19 17:17:39 +0800 | [diff] [blame] | 986 | |
Sarah Sharp | 5233630 | 2010-12-16 10:49:09 -0800 | [diff] [blame] | 987 | slot_id = xhci_find_slot_id_by_port(hcd, |
| 988 | xhci, port_index + 1); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 989 | if (slot_id) |
| 990 | xhci_ring_device(xhci, slot_id); |
| 991 | } else |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 992 | xhci_writel(xhci, temp, port_array[port_index]); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 993 | |
Andiry Xu | 4f0871a | 2011-04-19 17:17:39 +0800 | [diff] [blame] | 994 | if (hcd->speed != HCD_USB3) { |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 995 | /* disable remote wake up for USB 2.0 */ |
Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 996 | __le32 __iomem *addr; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 997 | u32 tmp; |
| 998 | |
Sarah Sharp | 5308a91 | 2010-12-01 11:34:59 -0800 | [diff] [blame] | 999 | /* Add one to the port status register address to get |
| 1000 | * the port power control register address. |
| 1001 | */ |
| 1002 | addr = port_array[port_index] + 1; |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 1003 | tmp = xhci_readl(xhci, addr); |
| 1004 | tmp &= ~PORT_RWE; |
| 1005 | xhci_writel(xhci, tmp, addr); |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | (void) xhci_readl(xhci, &xhci->op_regs->command); |
| 1010 | |
Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 1011 | bus_state->next_statechange = jiffies + msecs_to_jiffies(5); |
Andiry Xu | 9777e3c | 2010-10-14 07:23:03 -0700 | [diff] [blame] | 1012 | /* re-enable irqs */ |
| 1013 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
| 1014 | temp |= CMD_EIE; |
| 1015 | xhci_writel(xhci, temp, &xhci->op_regs->command); |
| 1016 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
| 1017 | |
| 1018 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1019 | return 0; |
| 1020 | } |
| 1021 | |
Sarah Sharp | 436a389 | 2010-10-15 14:59:15 -0700 | [diff] [blame] | 1022 | #endif /* CONFIG_PM */ |