Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Brownell | d49d431 | 2005-05-07 13:21:50 -0700 | [diff] [blame] | 2 | * Copyright (C) 2001-2004 by David Brownell |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the |
| 6 | * Free Software Foundation; either version 2 of the License, or (at your |
| 7 | * option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | * for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software Foundation, |
| 16 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 17 | */ |
| 18 | |
| 19 | /* this file is part of ehci-hcd.c */ |
| 20 | |
| 21 | /*-------------------------------------------------------------------------*/ |
| 22 | |
| 23 | /* |
| 24 | * EHCI Root Hub ... the nonsharable stuff |
| 25 | * |
| 26 | * Registers don't need cpu_to_le32, that happens transparently |
| 27 | */ |
| 28 | |
| 29 | /*-------------------------------------------------------------------------*/ |
| 30 | |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 31 | #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E) |
| 32 | |
Alan Stern | aff6d18 | 2008-04-18 11:11:26 -0400 | [diff] [blame] | 33 | #ifdef CONFIG_PM |
| 34 | |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 35 | static int ehci_hub_control( |
| 36 | struct usb_hcd *hcd, |
| 37 | u16 typeReq, |
| 38 | u16 wValue, |
| 39 | u16 wIndex, |
| 40 | char *buf, |
| 41 | u16 wLength |
| 42 | ); |
| 43 | |
| 44 | /* After a power loss, ports that were owned by the companion must be |
| 45 | * reset so that the companion can still own them. |
| 46 | */ |
| 47 | static void ehci_handover_companion_ports(struct ehci_hcd *ehci) |
| 48 | { |
| 49 | u32 __iomem *reg; |
| 50 | u32 status; |
| 51 | int port; |
| 52 | __le32 buf; |
| 53 | struct usb_hcd *hcd = ehci_to_hcd(ehci); |
| 54 | |
| 55 | if (!ehci->owned_ports) |
| 56 | return; |
| 57 | |
| 58 | /* Give the connections some time to appear */ |
| 59 | msleep(20); |
| 60 | |
| 61 | port = HCS_N_PORTS(ehci->hcs_params); |
| 62 | while (port--) { |
| 63 | if (test_bit(port, &ehci->owned_ports)) { |
| 64 | reg = &ehci->regs->port_status[port]; |
Alan Stern | 3c519b8 | 2007-05-04 11:55:31 -0400 | [diff] [blame] | 65 | status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 66 | |
| 67 | /* Port already owned by companion? */ |
| 68 | if (status & PORT_OWNER) |
| 69 | clear_bit(port, &ehci->owned_ports); |
Alan Stern | 3c519b8 | 2007-05-04 11:55:31 -0400 | [diff] [blame] | 70 | else if (test_bit(port, &ehci->companion_ports)) |
| 71 | ehci_writel(ehci, status & ~PORT_PE, reg); |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 72 | else |
| 73 | ehci_hub_control(hcd, SetPortFeature, |
| 74 | USB_PORT_FEAT_RESET, port + 1, |
| 75 | NULL, 0); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | if (!ehci->owned_ports) |
| 80 | return; |
| 81 | msleep(90); /* Wait for resets to complete */ |
| 82 | |
| 83 | port = HCS_N_PORTS(ehci->hcs_params); |
| 84 | while (port--) { |
| 85 | if (test_bit(port, &ehci->owned_ports)) { |
| 86 | ehci_hub_control(hcd, GetPortStatus, |
| 87 | 0, port + 1, |
| 88 | (char *) &buf, sizeof(buf)); |
| 89 | |
| 90 | /* The companion should now own the port, |
| 91 | * but if something went wrong the port must not |
| 92 | * remain enabled. |
| 93 | */ |
| 94 | reg = &ehci->regs->port_status[port]; |
| 95 | status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; |
| 96 | if (status & PORT_OWNER) |
| 97 | ehci_writel(ehci, status | PORT_CSC, reg); |
| 98 | else { |
| 99 | ehci_dbg(ehci, "failed handover port %d: %x\n", |
| 100 | port + 1, status); |
| 101 | ehci_writel(ehci, status & ~PORT_PE, reg); |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | ehci->owned_ports = 0; |
| 107 | } |
| 108 | |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 109 | static void ehci_adjust_port_wakeup_flags(struct ehci_hcd *ehci, |
Alan Stern | 4147200 | 2010-06-25 14:02:14 -0400 | [diff] [blame] | 110 | bool suspending, bool do_wakeup) |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 111 | { |
| 112 | int port; |
| 113 | u32 temp; |
| 114 | |
| 115 | /* If remote wakeup is enabled for the root hub but disabled |
| 116 | * for the controller, we must adjust all the port wakeup flags |
| 117 | * when the controller is suspended or resumed. In all other |
| 118 | * cases they don't need to be changed. |
| 119 | */ |
Alan Stern | 4147200 | 2010-06-25 14:02:14 -0400 | [diff] [blame] | 120 | if (!ehci_to_hcd(ehci)->self.root_hub->do_remote_wakeup || do_wakeup) |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 121 | return; |
| 122 | |
| 123 | /* clear phy low-power mode before changing wakeup flags */ |
| 124 | if (ehci->has_hostpc) { |
| 125 | port = HCS_N_PORTS(ehci->hcs_params); |
| 126 | while (port--) { |
| 127 | u32 __iomem *hostpc_reg; |
| 128 | |
| 129 | hostpc_reg = (u32 __iomem *)((u8 *) ehci->regs |
| 130 | + HOSTPC0 + 4 * port); |
| 131 | temp = ehci_readl(ehci, hostpc_reg); |
| 132 | ehci_writel(ehci, temp & ~HOSTPC_PHCD, hostpc_reg); |
| 133 | } |
| 134 | msleep(5); |
| 135 | } |
| 136 | |
| 137 | port = HCS_N_PORTS(ehci->hcs_params); |
| 138 | while (port--) { |
| 139 | u32 __iomem *reg = &ehci->regs->port_status[port]; |
| 140 | u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; |
| 141 | u32 t2 = t1 & ~PORT_WAKE_BITS; |
| 142 | |
| 143 | /* If we are suspending the controller, clear the flags. |
| 144 | * If we are resuming the controller, set the wakeup flags. |
| 145 | */ |
| 146 | if (!suspending) { |
| 147 | if (t1 & PORT_CONNECT) |
| 148 | t2 |= PORT_WKOC_E | PORT_WKDISC_E; |
| 149 | else |
| 150 | t2 |= PORT_WKOC_E | PORT_WKCONN_E; |
| 151 | } |
| 152 | ehci_vdbg(ehci, "port %d, %08x -> %08x\n", |
| 153 | port + 1, t1, t2); |
| 154 | ehci_writel(ehci, t2, reg); |
| 155 | } |
| 156 | |
| 157 | /* enter phy low-power mode again */ |
| 158 | if (ehci->has_hostpc) { |
| 159 | port = HCS_N_PORTS(ehci->hcs_params); |
| 160 | while (port--) { |
| 161 | u32 __iomem *hostpc_reg; |
| 162 | |
| 163 | hostpc_reg = (u32 __iomem *)((u8 *) ehci->regs |
| 164 | + HOSTPC0 + 4 * port); |
| 165 | temp = ehci_readl(ehci, hostpc_reg); |
| 166 | ehci_writel(ehci, temp | HOSTPC_PHCD, hostpc_reg); |
| 167 | } |
| 168 | } |
Alan Stern | ee0b9be | 2010-06-25 14:02:24 -0400 | [diff] [blame] | 169 | |
| 170 | /* Does the root hub have a port wakeup pending? */ |
| 171 | if (!suspending && (ehci_readl(ehci, &ehci->regs->status) & STS_PCD)) |
| 172 | usb_hcd_resume_root_hub(ehci_to_hcd(ehci)); |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 173 | } |
| 174 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 175 | static int ehci_bus_suspend (struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
| 177 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 178 | int port; |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 179 | int mask; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 180 | int changed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Alan Stern | 8c774fe | 2007-02-01 16:09:59 -0500 | [diff] [blame] | 182 | ehci_dbg(ehci, "suspend root hub\n"); |
| 183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | if (time_before (jiffies, ehci->next_statechange)) |
| 185 | msleep(5); |
Alan Stern | f8fa757 | 2008-01-10 16:43:15 -0500 | [diff] [blame] | 186 | del_timer_sync(&ehci->watchdog); |
| 187 | del_timer_sync(&ehci->iaa_watchdog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | spin_lock_irq (&ehci->lock); |
| 190 | |
Alan Stern | cec3a53 | 2010-01-08 11:18:20 -0500 | [diff] [blame] | 191 | /* Once the controller is stopped, port resumes that are already |
| 192 | * in progress won't complete. Hence if remote wakeup is enabled |
| 193 | * for the root hub and any ports are in the middle of a resume or |
| 194 | * remote wakeup, we must fail the suspend. |
| 195 | */ |
| 196 | if (hcd->self.root_hub->do_remote_wakeup) { |
| 197 | port = HCS_N_PORTS(ehci->hcs_params); |
| 198 | while (port--) { |
| 199 | if (ehci->reset_done[port] != 0) { |
| 200 | spin_unlock_irq(&ehci->lock); |
| 201 | ehci_dbg(ehci, "suspend failed because " |
| 202 | "port %d is resuming\n", |
| 203 | port + 1); |
| 204 | return -EBUSY; |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* stop schedules, clean any completed work */ |
| 210 | if (HC_IS_RUNNING(hcd->state)) { |
| 211 | ehci_quiesce (ehci); |
| 212 | hcd->state = HC_STATE_QUIESCING; |
| 213 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 214 | ehci->command = ehci_readl(ehci, &ehci->regs->command); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 215 | ehci_work(ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 217 | /* Unlike other USB host controller types, EHCI doesn't have |
| 218 | * any notion of "global" or bus-wide suspend. The driver has |
| 219 | * to manually suspend all the active unsuspended ports, and |
| 220 | * then manually resume them in the bus_resume() routine. |
| 221 | */ |
| 222 | ehci->bus_suspended = 0; |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 223 | ehci->owned_ports = 0; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 224 | changed = 0; |
Alan Stern | cec3a53 | 2010-01-08 11:18:20 -0500 | [diff] [blame] | 225 | port = HCS_N_PORTS(ehci->hcs_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | while (port--) { |
| 227 | u32 __iomem *reg = &ehci->regs->port_status [port]; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 228 | u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 229 | u32 t2 = t1 & ~PORT_WAKE_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 231 | /* keep track of which ports we suspend */ |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 232 | if (t1 & PORT_OWNER) |
| 233 | set_bit(port, &ehci->owned_ports); |
| 234 | else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | t2 |= PORT_SUSPEND; |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 236 | set_bit(port, &ehci->bus_suspended); |
| 237 | } |
| 238 | |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 239 | /* enable remote wakeup on all ports, if told to do so */ |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 240 | if (hcd->self.root_hub->do_remote_wakeup) { |
| 241 | /* only enable appropriate wake bits, otherwise the |
| 242 | * hardware can not go phy low power mode. If a race |
| 243 | * condition happens here(connection change during bits |
| 244 | * set), the port change detection will finally fix it. |
| 245 | */ |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 246 | if (t1 & PORT_CONNECT) |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 247 | t2 |= PORT_WKOC_E | PORT_WKDISC_E; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 248 | else |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 249 | t2 |= PORT_WKOC_E | PORT_WKCONN_E; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | if (t1 != t2) { |
| 253 | ehci_vdbg (ehci, "port %d, %08x -> %08x\n", |
| 254 | port + 1, t1, t2); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 255 | ehci_writel(ehci, t2, reg); |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 256 | changed = 1; |
| 257 | } |
| 258 | } |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 259 | |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 260 | if (changed && ehci->has_hostpc) { |
| 261 | spin_unlock_irq(&ehci->lock); |
| 262 | msleep(5); /* 5 ms for HCD to enter low-power mode */ |
| 263 | spin_lock_irq(&ehci->lock); |
| 264 | |
| 265 | port = HCS_N_PORTS(ehci->hcs_params); |
| 266 | while (port--) { |
| 267 | u32 __iomem *hostpc_reg; |
| 268 | u32 t3; |
| 269 | |
| 270 | hostpc_reg = (u32 __iomem *)((u8 *) ehci->regs |
| 271 | + HOSTPC0 + 4 * port); |
| 272 | t3 = ehci_readl(ehci, hostpc_reg); |
| 273 | ehci_writel(ehci, t3 | HOSTPC_PHCD, hostpc_reg); |
| 274 | t3 = ehci_readl(ehci, hostpc_reg); |
| 275 | ehci_dbg(ehci, "Port %d phy low-power mode %s\n", |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 276 | port, (t3 & HOSTPC_PHCD) ? |
| 277 | "succeeded" : "failed"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
| 279 | } |
| 280 | |
Alan Stern | cd930c9 | 2008-01-10 11:14:53 -0500 | [diff] [blame] | 281 | /* Apparently some devices need a >= 1-uframe delay here */ |
| 282 | if (ehci->bus_suspended) |
| 283 | udelay(150); |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | /* turn off now-idle HC */ |
| 286 | ehci_halt (ehci); |
| 287 | hcd->state = HC_STATE_SUSPENDED; |
| 288 | |
David Brownell | cdc647a | 2008-04-02 13:40:20 -0700 | [diff] [blame] | 289 | if (ehci->reclaim) |
| 290 | end_unlink_async(ehci); |
| 291 | |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 292 | /* allow remote wakeup */ |
| 293 | mask = INTR_MASK; |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 294 | if (!hcd->self.root_hub->do_remote_wakeup) |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 295 | mask &= ~STS_PCD; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 296 | ehci_writel(ehci, mask, &ehci->regs->intr_enable); |
| 297 | ehci_readl(ehci, &ehci->regs->intr_enable); |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | ehci->next_statechange = jiffies + msecs_to_jiffies(10); |
| 300 | spin_unlock_irq (&ehci->lock); |
Jon Hunter | 015798b | 2009-08-12 11:57:59 -0400 | [diff] [blame] | 301 | |
| 302 | /* ehci_work() may have re-enabled the watchdog timer, which we do not |
| 303 | * want, and so we must delete any pending watchdog timer events. |
| 304 | */ |
| 305 | del_timer_sync(&ehci->watchdog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | return 0; |
| 307 | } |
| 308 | |
| 309 | |
| 310 | /* caller has locked the root hub, and should reset/reinit on error */ |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 311 | static int ehci_bus_resume (struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
| 313 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 314 | u32 temp; |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 315 | u32 power_okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | int i; |
Vikram Pandita | 3a4e72c | 2008-10-24 23:41:30 +0530 | [diff] [blame] | 317 | u8 resume_needed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | if (time_before (jiffies, ehci->next_statechange)) |
| 320 | msleep(5); |
| 321 | spin_lock_irq (&ehci->lock); |
Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 322 | if (!HCD_HW_ACCESSIBLE(hcd)) { |
Alan Stern | cfa59da | 2007-06-21 16:25:35 -0400 | [diff] [blame] | 323 | spin_unlock_irq(&ehci->lock); |
| 324 | return -ESHUTDOWN; |
| 325 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Jason Wessel | ad45f1d | 2009-08-20 15:39:58 -0500 | [diff] [blame] | 327 | if (unlikely(ehci->debug)) { |
Jason Wessel | 872d359 | 2009-09-23 18:32:44 -0500 | [diff] [blame] | 328 | if (!dbgp_reset_prep()) |
Jason Wessel | ad45f1d | 2009-08-20 15:39:58 -0500 | [diff] [blame] | 329 | ehci->debug = NULL; |
| 330 | else |
| 331 | dbgp_external_startup(); |
| 332 | } |
| 333 | |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 334 | /* Ideally and we've got a real resume here, and no port's power |
| 335 | * was lost. (For PCI, that means Vaux was maintained.) But we |
| 336 | * could instead be restoring a swsusp snapshot -- so that BIOS was |
| 337 | * the last user of the controller, not reset/pm hardware keeping |
| 338 | * state we gave to it. |
| 339 | */ |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 340 | power_okay = ehci_readl(ehci, &ehci->regs->intr_enable); |
| 341 | ehci_dbg(ehci, "resume root hub%s\n", |
| 342 | power_okay ? "" : " after power loss"); |
David Brownell | f03c17f | 2005-11-23 15:45:28 -0800 | [diff] [blame] | 343 | |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 344 | /* at least some APM implementations will try to deliver |
| 345 | * IRQs right away, so delay them until we're ready. |
| 346 | */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 347 | ehci_writel(ehci, 0, &ehci->regs->intr_enable); |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 348 | |
| 349 | /* re-init operational registers */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 350 | ehci_writel(ehci, 0, &ehci->regs->segment); |
| 351 | ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list); |
| 352 | ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* restore CMD_RUN, framelist size, and irq threshold */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 355 | ehci_writel(ehci, ehci->command, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Alan Stern | e198a31 | 2007-03-15 15:54:30 -0400 | [diff] [blame] | 357 | /* Some controller/firmware combinations need a delay during which |
| 358 | * they set up the port statuses. See Bugzilla #8190. */ |
Vikram Pandita | 3a4e72c | 2008-10-24 23:41:30 +0530 | [diff] [blame] | 359 | spin_unlock_irq(&ehci->lock); |
| 360 | msleep(8); |
| 361 | spin_lock_irq(&ehci->lock); |
Alan Stern | e198a31 | 2007-03-15 15:54:30 -0400 | [diff] [blame] | 362 | |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 363 | /* clear phy low-power mode before resume */ |
| 364 | if (ehci->bus_suspended && ehci->has_hostpc) { |
| 365 | i = HCS_N_PORTS(ehci->hcs_params); |
| 366 | while (i--) { |
| 367 | if (test_bit(i, &ehci->bus_suspended)) { |
| 368 | u32 __iomem *hostpc_reg; |
| 369 | |
| 370 | hostpc_reg = (u32 __iomem *)((u8 *) ehci->regs |
| 371 | + HOSTPC0 + 4 * i); |
| 372 | temp = ehci_readl(ehci, hostpc_reg); |
| 373 | ehci_writel(ehci, temp & ~HOSTPC_PHCD, |
| 374 | hostpc_reg); |
| 375 | } |
| 376 | } |
| 377 | spin_unlock_irq(&ehci->lock); |
| 378 | msleep(5); |
| 379 | spin_lock_irq(&ehci->lock); |
| 380 | } |
| 381 | |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 382 | /* manually resume the ports we suspended during bus_suspend() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | i = HCS_N_PORTS (ehci->hcs_params); |
| 384 | while (i--) { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 385 | temp = ehci_readl(ehci, &ehci->regs->port_status [i]); |
Alan Stern | 58a97ff | 2008-04-14 12:17:10 -0400 | [diff] [blame] | 386 | temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 387 | if (test_bit(i, &ehci->bus_suspended) && |
Vikram Pandita | 3a4e72c | 2008-10-24 23:41:30 +0530 | [diff] [blame] | 388 | (temp & PORT_SUSPEND)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | temp |= PORT_RESUME; |
Vikram Pandita | 3a4e72c | 2008-10-24 23:41:30 +0530 | [diff] [blame] | 390 | resume_needed = 1; |
| 391 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 392 | ehci_writel(ehci, temp, &ehci->regs->port_status [i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
Vikram Pandita | 3a4e72c | 2008-10-24 23:41:30 +0530 | [diff] [blame] | 394 | |
| 395 | /* msleep for 20ms only if code is trying to resume port */ |
| 396 | if (resume_needed) { |
| 397 | spin_unlock_irq(&ehci->lock); |
| 398 | msleep(20); |
| 399 | spin_lock_irq(&ehci->lock); |
| 400 | } |
| 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | i = HCS_N_PORTS (ehci->hcs_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | while (i--) { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 404 | temp = ehci_readl(ehci, &ehci->regs->port_status [i]); |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 405 | if (test_bit(i, &ehci->bus_suspended) && |
| 406 | (temp & PORT_SUSPEND)) { |
| 407 | temp &= ~(PORT_RWC_BITS | PORT_RESUME); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 408 | ehci_writel(ehci, temp, &ehci->regs->port_status [i]); |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 409 | ehci_vdbg (ehci, "resumed port %d\n", i + 1); |
| 410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 412 | (void) ehci_readl(ehci, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
| 414 | /* maybe re-activate the schedule(s) */ |
| 415 | temp = 0; |
| 416 | if (ehci->async->qh_next.qh) |
| 417 | temp |= CMD_ASE; |
| 418 | if (ehci->periodic_sched) |
| 419 | temp |= CMD_PSE; |
| 420 | if (temp) { |
| 421 | ehci->command |= temp; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 422 | ehci_writel(ehci, ehci->command, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | ehci->next_statechange = jiffies + msecs_to_jiffies(5); |
| 426 | hcd->state = HC_STATE_RUNNING; |
| 427 | |
| 428 | /* Now we can safely re-enable irqs */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 429 | ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | spin_unlock_irq (&ehci->lock); |
Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 432 | ehci_handover_companion_ports(ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | #else |
| 437 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 438 | #define ehci_bus_suspend NULL |
| 439 | #define ehci_bus_resume NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | #endif /* CONFIG_PM */ |
| 442 | |
| 443 | /*-------------------------------------------------------------------------*/ |
| 444 | |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 445 | /* Display the ports dedicated to the companion controller */ |
Tony Jones | 5a3201b | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 446 | static ssize_t show_companion(struct device *dev, |
| 447 | struct device_attribute *attr, |
| 448 | char *buf) |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 449 | { |
| 450 | struct ehci_hcd *ehci; |
| 451 | int nports, index, n; |
| 452 | int count = PAGE_SIZE; |
| 453 | char *ptr = buf; |
| 454 | |
Tony Jones | 5a3201b | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 455 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 456 | nports = HCS_N_PORTS(ehci->hcs_params); |
| 457 | |
| 458 | for (index = 0; index < nports; ++index) { |
| 459 | if (test_bit(index, &ehci->companion_ports)) { |
| 460 | n = scnprintf(ptr, count, "%d\n", index + 1); |
| 461 | ptr += n; |
| 462 | count -= n; |
| 463 | } |
| 464 | } |
| 465 | return ptr - buf; |
| 466 | } |
| 467 | |
| 468 | /* |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 469 | * Sets the owner of a port |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 470 | */ |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 471 | static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner) |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 472 | { |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 473 | u32 __iomem *status_reg; |
| 474 | u32 port_status; |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 475 | int try; |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 476 | |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 477 | status_reg = &ehci->regs->port_status[portnum]; |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 478 | |
| 479 | /* |
| 480 | * The controller won't set the OWNER bit if the port is |
| 481 | * enabled, so this loop will sometimes require at least two |
| 482 | * iterations: one to disable the port and one to set OWNER. |
| 483 | */ |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 484 | for (try = 4; try > 0; --try) { |
| 485 | spin_lock_irq(&ehci->lock); |
| 486 | port_status = ehci_readl(ehci, status_reg); |
| 487 | if ((port_status & PORT_OWNER) == new_owner |
| 488 | || (port_status & (PORT_OWNER | PORT_CONNECT)) |
| 489 | == 0) |
| 490 | try = 0; |
| 491 | else { |
| 492 | port_status ^= PORT_OWNER; |
| 493 | port_status &= ~(PORT_PE | PORT_RWC_BITS); |
| 494 | ehci_writel(ehci, port_status, status_reg); |
| 495 | } |
| 496 | spin_unlock_irq(&ehci->lock); |
| 497 | if (try > 1) |
| 498 | msleep(5); |
| 499 | } |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Dedicate or undedicate a port to the companion controller. |
| 504 | * Syntax is "[-]portnum", where a leading '-' sign means |
| 505 | * return control of the port to the EHCI controller. |
| 506 | */ |
| 507 | static ssize_t store_companion(struct device *dev, |
| 508 | struct device_attribute *attr, |
| 509 | const char *buf, size_t count) |
| 510 | { |
| 511 | struct ehci_hcd *ehci; |
| 512 | int portnum, new_owner; |
| 513 | |
| 514 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); |
| 515 | new_owner = PORT_OWNER; /* Owned by companion */ |
| 516 | if (sscanf(buf, "%d", &portnum) != 1) |
| 517 | return -EINVAL; |
| 518 | if (portnum < 0) { |
| 519 | portnum = - portnum; |
| 520 | new_owner = 0; /* Owned by EHCI */ |
| 521 | } |
| 522 | if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params)) |
| 523 | return -ENOENT; |
| 524 | portnum--; |
| 525 | if (new_owner) |
| 526 | set_bit(portnum, &ehci->companion_ports); |
| 527 | else |
| 528 | clear_bit(portnum, &ehci->companion_ports); |
| 529 | set_owner(ehci, portnum, new_owner); |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 530 | return count; |
| 531 | } |
Tony Jones | 5a3201b | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 532 | static DEVICE_ATTR(companion, 0644, show_companion, store_companion); |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 533 | |
David Daney | ac8d674 | 2011-01-25 09:59:37 -0800 | [diff] [blame^] | 534 | static inline int create_companion_file(struct ehci_hcd *ehci) |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 535 | { |
David Daney | ac8d674 | 2011-01-25 09:59:37 -0800 | [diff] [blame^] | 536 | int i = 0; |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 537 | |
| 538 | /* with integrated TT there is no companion! */ |
| 539 | if (!ehci_is_TDI(ehci)) |
Greg Kroah-Hartman | ed14f03 | 2009-04-27 13:15:38 -0700 | [diff] [blame] | 540 | i = device_create_file(ehci_to_hcd(ehci)->self.controller, |
Tony Jones | 5a3201b | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 541 | &dev_attr_companion); |
David Daney | ac8d674 | 2011-01-25 09:59:37 -0800 | [diff] [blame^] | 542 | return i; |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | static inline void remove_companion_file(struct ehci_hcd *ehci) |
| 546 | { |
| 547 | /* with integrated TT there is no companion! */ |
| 548 | if (!ehci_is_TDI(ehci)) |
Greg Kroah-Hartman | ed14f03 | 2009-04-27 13:15:38 -0700 | [diff] [blame] | 549 | device_remove_file(ehci_to_hcd(ehci)->self.controller, |
Tony Jones | 5a3201b | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 550 | &dev_attr_companion); |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | |
| 554 | /*-------------------------------------------------------------------------*/ |
| 555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | static int check_reset_complete ( |
| 557 | struct ehci_hcd *ehci, |
| 558 | int index, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 559 | u32 __iomem *status_reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | int port_status |
| 561 | ) { |
David Brownell | cd4cdc9 | 2008-01-24 12:39:43 -0800 | [diff] [blame] | 562 | if (!(port_status & PORT_CONNECT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | return port_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
| 565 | /* if reset finished and it's still not enabled -- handoff */ |
| 566 | if (!(port_status & PORT_PE)) { |
| 567 | |
| 568 | /* with integrated TT, there's nobody to hand it to! */ |
| 569 | if (ehci_is_TDI(ehci)) { |
| 570 | ehci_dbg (ehci, |
| 571 | "Failed to enable port %d on root hub TT\n", |
| 572 | index+1); |
| 573 | return port_status; |
| 574 | } |
| 575 | |
| 576 | ehci_dbg (ehci, "port %d full speed --> companion\n", |
| 577 | index + 1); |
| 578 | |
| 579 | // what happens if HCS_N_CC(params) == 0 ? |
| 580 | port_status |= PORT_OWNER; |
David Brownell | 10f6524 | 2005-08-31 10:55:38 -0700 | [diff] [blame] | 581 | port_status &= ~PORT_RWC_BITS; |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 582 | ehci_writel(ehci, port_status, status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
Vitaly Bordug | 796bcae | 2008-11-09 19:43:30 +0100 | [diff] [blame] | 584 | /* ensure 440EPX ohci controller state is operational */ |
| 585 | if (ehci->has_amcc_usb23) |
| 586 | set_ohci_hcfs(ehci, 1); |
| 587 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | ehci_dbg (ehci, "port %d high speed\n", index + 1); |
Vitaly Bordug | 796bcae | 2008-11-09 19:43:30 +0100 | [diff] [blame] | 589 | /* ensure 440EPx ohci controller state is suspended */ |
| 590 | if (ehci->has_amcc_usb23) |
| 591 | set_ohci_hcfs(ehci, 0); |
| 592 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
| 594 | return port_status; |
| 595 | } |
| 596 | |
| 597 | /*-------------------------------------------------------------------------*/ |
| 598 | |
| 599 | |
| 600 | /* build "status change" packet (one or two bytes) from HC registers */ |
| 601 | |
| 602 | static int |
| 603 | ehci_hub_status_data (struct usb_hcd *hcd, char *buf) |
| 604 | { |
| 605 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 606 | u32 temp, status = 0; |
David Brownell | 93f1a47 | 2006-11-16 23:34:58 -0800 | [diff] [blame] | 607 | u32 mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | int ports, i, retval = 1; |
| 609 | unsigned long flags; |
Alek Du | 5a9cdf3 | 2010-06-04 15:47:56 +0800 | [diff] [blame] | 610 | u32 ppcd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
| 612 | /* if !USB_SUSPEND, root hub timers won't get shut down ... */ |
| 613 | if (!HC_IS_RUNNING(hcd->state)) |
| 614 | return 0; |
| 615 | |
| 616 | /* init status to no-changes */ |
| 617 | buf [0] = 0; |
| 618 | ports = HCS_N_PORTS (ehci->hcs_params); |
| 619 | if (ports > 7) { |
| 620 | buf [1] = 0; |
| 621 | retval++; |
| 622 | } |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 623 | |
David Brownell | 93f1a47 | 2006-11-16 23:34:58 -0800 | [diff] [blame] | 624 | /* Some boards (mostly VIA?) report bogus overcurrent indications, |
| 625 | * causing massive log spam unless we completely ignore them. It |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 626 | * may be relevant that VIA VT8235 controllers, where PORT_POWER is |
David Brownell | 93f1a47 | 2006-11-16 23:34:58 -0800 | [diff] [blame] | 627 | * always set, seem to clear PORT_OCC and PORT_CSC when writing to |
| 628 | * PORT_POWER; that's surprising, but maybe within-spec. |
| 629 | */ |
| 630 | if (!ignore_oc) |
| 631 | mask = PORT_CSC | PORT_PEC | PORT_OCC; |
| 632 | else |
| 633 | mask = PORT_CSC | PORT_PEC; |
| 634 | // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND |
| 635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | /* no hub change reports (bit 0) for now (power, ...) */ |
| 637 | |
| 638 | /* port N changes (bit N)? */ |
| 639 | spin_lock_irqsave (&ehci->lock, flags); |
Alek Du | 5a9cdf3 | 2010-06-04 15:47:56 +0800 | [diff] [blame] | 640 | |
| 641 | /* get per-port change detect bits */ |
| 642 | if (ehci->has_ppcd) |
| 643 | ppcd = ehci_readl(ehci, &ehci->regs->status) >> 16; |
| 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | for (i = 0; i < ports; i++) { |
Alek Du | 5a9cdf3 | 2010-06-04 15:47:56 +0800 | [diff] [blame] | 646 | /* leverage per-port change bits feature */ |
| 647 | if (ehci->has_ppcd && !(ppcd & (1 << i))) |
| 648 | continue; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 649 | temp = ehci_readl(ehci, &ehci->regs->port_status [i]); |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 650 | |
| 651 | /* |
| 652 | * Return status information even for ports with OWNER set. |
| 653 | * Otherwise khubd wouldn't see the disconnect event when a |
| 654 | * high-speed device is switched over to the companion |
| 655 | * controller by the user. |
| 656 | */ |
| 657 | |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 658 | if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend) |
| 659 | || (ehci->reset_done[i] && time_after_eq( |
| 660 | jiffies, ehci->reset_done[i]))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | if (i < 7) |
| 662 | buf [0] |= 1 << (i + 1); |
| 663 | else |
| 664 | buf [1] |= 1 << (i - 7); |
| 665 | status = STS_PCD; |
| 666 | } |
| 667 | } |
| 668 | /* FIXME autosuspend idle root hubs */ |
| 669 | spin_unlock_irqrestore (&ehci->lock, flags); |
| 670 | return status ? retval : 0; |
| 671 | } |
| 672 | |
| 673 | /*-------------------------------------------------------------------------*/ |
| 674 | |
| 675 | static void |
| 676 | ehci_hub_descriptor ( |
| 677 | struct ehci_hcd *ehci, |
| 678 | struct usb_hub_descriptor *desc |
| 679 | ) { |
| 680 | int ports = HCS_N_PORTS (ehci->hcs_params); |
| 681 | u16 temp; |
| 682 | |
| 683 | desc->bDescriptorType = 0x29; |
| 684 | desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */ |
| 685 | desc->bHubContrCurrent = 0; |
| 686 | |
| 687 | desc->bNbrPorts = ports; |
| 688 | temp = 1 + (ports / 8); |
| 689 | desc->bDescLength = 7 + 2 * temp; |
| 690 | |
| 691 | /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */ |
| 692 | memset (&desc->bitmap [0], 0, temp); |
| 693 | memset (&desc->bitmap [temp], 0xff, temp); |
| 694 | |
| 695 | temp = 0x0008; /* per-port overcurrent reporting */ |
| 696 | if (HCS_PPC (ehci->hcs_params)) |
| 697 | temp |= 0x0001; /* per-port power control */ |
David Brownell | 56c1e26 | 2005-04-09 09:00:29 -0700 | [diff] [blame] | 698 | else |
| 699 | temp |= 0x0002; /* no power switching */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | #if 0 |
| 701 | // re-enable when we support USB_PORT_FEAT_INDICATOR below. |
| 702 | if (HCS_INDICATOR (ehci->hcs_params)) |
| 703 | temp |= 0x0080; /* per-port indicators (LEDs) */ |
| 704 | #endif |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 705 | desc->wHubCharacteristics = cpu_to_le16(temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | /*-------------------------------------------------------------------------*/ |
| 709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | static int ehci_hub_control ( |
| 711 | struct usb_hcd *hcd, |
| 712 | u16 typeReq, |
| 713 | u16 wValue, |
| 714 | u16 wIndex, |
| 715 | char *buf, |
| 716 | u16 wLength |
| 717 | ) { |
| 718 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 719 | int ports = HCS_N_PORTS (ehci->hcs_params); |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 720 | u32 __iomem *status_reg = &ehci->regs->port_status[ |
| 721 | (wIndex & 0xff) - 1]; |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 722 | u32 __iomem *hostpc_reg = NULL; |
| 723 | u32 temp, temp1, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | unsigned long flags; |
| 725 | int retval = 0; |
David Brownell | f0d7f27 | 2006-11-16 23:56:15 -0800 | [diff] [blame] | 726 | unsigned selector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | /* |
| 729 | * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR. |
| 730 | * HCS_INDICATOR may say we can change LEDs to off/amber/green. |
| 731 | * (track current state ourselves) ... blink for diagnostics, |
| 732 | * power, "this is the one", etc. EHCI spec supports this. |
| 733 | */ |
| 734 | |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 735 | if (ehci->has_hostpc) |
| 736 | hostpc_reg = (u32 __iomem *)((u8 *)ehci->regs |
| 737 | + HOSTPC0 + 4 * ((wIndex & 0xff) - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | spin_lock_irqsave (&ehci->lock, flags); |
| 739 | switch (typeReq) { |
| 740 | case ClearHubFeature: |
| 741 | switch (wValue) { |
| 742 | case C_HUB_LOCAL_POWER: |
| 743 | case C_HUB_OVER_CURRENT: |
| 744 | /* no hub-wide feature/status flags */ |
| 745 | break; |
| 746 | default: |
| 747 | goto error; |
| 748 | } |
| 749 | break; |
| 750 | case ClearPortFeature: |
| 751 | if (!wIndex || wIndex > ports) |
| 752 | goto error; |
| 753 | wIndex--; |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 754 | temp = ehci_readl(ehci, status_reg); |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 755 | |
| 756 | /* |
| 757 | * Even if OWNER is set, so the port is owned by the |
| 758 | * companion controller, khubd needs to be able to clear |
| 759 | * the port-change status bits (especially |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 760 | * USB_PORT_STAT_C_CONNECTION). |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 761 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
| 763 | switch (wValue) { |
| 764 | case USB_PORT_FEAT_ENABLE: |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 765 | ehci_writel(ehci, temp & ~PORT_PE, status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | break; |
| 767 | case USB_PORT_FEAT_C_ENABLE: |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 768 | ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_PEC, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 769 | status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | break; |
| 771 | case USB_PORT_FEAT_SUSPEND: |
| 772 | if (temp & PORT_RESET) |
| 773 | goto error; |
David Brownell | f8aeb3b | 2006-01-20 13:55:14 -0800 | [diff] [blame] | 774 | if (ehci->no_selective_suspend) |
| 775 | break; |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 776 | if (!(temp & PORT_SUSPEND)) |
| 777 | break; |
| 778 | if ((temp & PORT_PE) == 0) |
| 779 | goto error; |
| 780 | |
| 781 | /* clear phy low-power mode before resume */ |
| 782 | if (hostpc_reg) { |
| 783 | temp1 = ehci_readl(ehci, hostpc_reg); |
| 784 | ehci_writel(ehci, temp1 & ~HOSTPC_PHCD, |
Alek Du | eab80de | 2010-05-10 11:17:49 +0800 | [diff] [blame] | 785 | hostpc_reg); |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 786 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 787 | msleep(5);/* wait to leave low-power mode */ |
| 788 | spin_lock_irqsave(&ehci->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } |
Alan Stern | 16032c4 | 2010-05-12 18:21:35 -0400 | [diff] [blame] | 790 | /* resume signaling for 20 msec */ |
| 791 | temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); |
| 792 | ehci_writel(ehci, temp | PORT_RESUME, status_reg); |
| 793 | ehci->reset_done[wIndex] = jiffies |
| 794 | + msecs_to_jiffies(20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | break; |
| 796 | case USB_PORT_FEAT_C_SUSPEND: |
Alan Stern | d1f114d | 2008-05-20 16:58:58 -0400 | [diff] [blame] | 797 | clear_bit(wIndex, &ehci->port_c_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | break; |
| 799 | case USB_PORT_FEAT_POWER: |
| 800 | if (HCS_PPC (ehci->hcs_params)) |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 801 | ehci_writel(ehci, |
| 802 | temp & ~(PORT_RWC_BITS | PORT_POWER), |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 803 | status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | break; |
| 805 | case USB_PORT_FEAT_C_CONNECTION: |
Alek Du | 48f2497 | 2010-06-04 15:47:55 +0800 | [diff] [blame] | 806 | if (ehci->has_lpm) { |
| 807 | /* clear PORTSC bits on disconnect */ |
| 808 | temp &= ~PORT_LPM; |
| 809 | temp &= ~PORT_DEV_ADDR; |
| 810 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 811 | ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_CSC, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 812 | status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | break; |
| 814 | case USB_PORT_FEAT_C_OVER_CURRENT: |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 815 | ehci_writel(ehci, (temp & ~PORT_RWC_BITS) | PORT_OCC, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 816 | status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | break; |
| 818 | case USB_PORT_FEAT_C_RESET: |
| 819 | /* GetPortStatus clears reset */ |
| 820 | break; |
| 821 | default: |
| 822 | goto error; |
| 823 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 824 | ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | break; |
| 826 | case GetHubDescriptor: |
| 827 | ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *) |
| 828 | buf); |
| 829 | break; |
| 830 | case GetHubStatus: |
| 831 | /* no hub-wide feature/status flags */ |
| 832 | memset (buf, 0, 4); |
| 833 | //cpu_to_le32s ((u32 *) buf); |
| 834 | break; |
| 835 | case GetPortStatus: |
| 836 | if (!wIndex || wIndex > ports) |
| 837 | goto error; |
| 838 | wIndex--; |
| 839 | status = 0; |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 840 | temp = ehci_readl(ehci, status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
| 842 | // wPortChange bits |
| 843 | if (temp & PORT_CSC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 844 | status |= USB_PORT_STAT_C_CONNECTION << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | if (temp & PORT_PEC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 846 | status |= USB_PORT_STAT_C_ENABLE << 16; |
Christian Engelmayer | 756aa6b | 2007-05-30 11:04:48 -0700 | [diff] [blame] | 847 | |
| 848 | if ((temp & PORT_OCC) && !ignore_oc){ |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 849 | status |= USB_PORT_STAT_C_OVERCURRENT << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
Christian Engelmayer | 756aa6b | 2007-05-30 11:04:48 -0700 | [diff] [blame] | 851 | /* |
| 852 | * Hubs should disable port power on over-current. |
| 853 | * However, not all EHCI implementations do this |
| 854 | * automatically, even if they _do_ support per-port |
| 855 | * power switching; they're allowed to just limit the |
| 856 | * current. khubd will turn the power back on. |
| 857 | */ |
| 858 | if (HCS_PPC (ehci->hcs_params)){ |
| 859 | ehci_writel(ehci, |
| 860 | temp & ~(PORT_RWC_BITS | PORT_POWER), |
| 861 | status_reg); |
| 862 | } |
| 863 | } |
| 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | /* whoever resumes must GetPortStatus to complete it!! */ |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 866 | if (temp & PORT_RESUME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 868 | /* Remote Wakeup received? */ |
| 869 | if (!ehci->reset_done[wIndex]) { |
| 870 | /* resume signaling for 20 msec */ |
| 871 | ehci->reset_done[wIndex] = jiffies |
| 872 | + msecs_to_jiffies(20); |
| 873 | /* check the port again */ |
| 874 | mod_timer(&ehci_to_hcd(ehci)->rh_timer, |
| 875 | ehci->reset_done[wIndex]); |
| 876 | } |
| 877 | |
| 878 | /* resume completed? */ |
| 879 | else if (time_after_eq(jiffies, |
| 880 | ehci->reset_done[wIndex])) { |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 881 | clear_bit(wIndex, &ehci->suspended_ports); |
Alan Stern | d1f114d | 2008-05-20 16:58:58 -0400 | [diff] [blame] | 882 | set_bit(wIndex, &ehci->port_c_suspend); |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 883 | ehci->reset_done[wIndex] = 0; |
| 884 | |
| 885 | /* stop resume signaling */ |
| 886 | temp = ehci_readl(ehci, status_reg); |
| 887 | ehci_writel(ehci, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 888 | temp & ~(PORT_RWC_BITS | PORT_RESUME), |
| 889 | status_reg); |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 890 | retval = handshake(ehci, status_reg, |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 891 | PORT_RESUME, 0, 2000 /* 2msec */); |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 892 | if (retval != 0) { |
| 893 | ehci_err(ehci, |
| 894 | "port %d resume error %d\n", |
| 895 | wIndex + 1, retval); |
| 896 | goto error; |
| 897 | } |
| 898 | temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | /* whoever resets must GetPortStatus to complete it!! */ |
| 903 | if ((temp & PORT_RESET) |
Alan Stern | 629e442 | 2007-01-22 16:08:53 -0500 | [diff] [blame] | 904 | && time_after_eq(jiffies, |
| 905 | ehci->reset_done[wIndex])) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 906 | status |= USB_PORT_STAT_C_RESET << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | ehci->reset_done [wIndex] = 0; |
| 908 | |
| 909 | /* force reset to complete */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 910 | ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET), |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 911 | status_reg); |
David Brownell | c22fa3a | 2005-06-13 07:15:28 -0700 | [diff] [blame] | 912 | /* REVISIT: some hardware needs 550+ usec to clear |
| 913 | * this bit; seems too long to spin routinely... |
| 914 | */ |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 915 | retval = handshake(ehci, status_reg, |
Dinh Nguyen | 6307e09 | 2010-04-13 11:13:15 -0500 | [diff] [blame] | 916 | PORT_RESET, 0, 1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | if (retval != 0) { |
| 918 | ehci_err (ehci, "port %d reset error %d\n", |
| 919 | wIndex + 1, retval); |
| 920 | goto error; |
| 921 | } |
| 922 | |
| 923 | /* see what we found out */ |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 924 | temp = check_reset_complete (ehci, wIndex, status_reg, |
| 925 | ehci_readl(ehci, status_reg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | } |
| 927 | |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 928 | if (!(temp & (PORT_RESUME|PORT_RESET))) |
| 929 | ehci->reset_done[wIndex] = 0; |
| 930 | |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 931 | /* transfer dedicated ports to the companion hc */ |
| 932 | if ((temp & PORT_CONNECT) && |
| 933 | test_bit(wIndex, &ehci->companion_ports)) { |
| 934 | temp &= ~PORT_RWC_BITS; |
| 935 | temp |= PORT_OWNER; |
| 936 | ehci_writel(ehci, temp, status_reg); |
| 937 | ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1); |
| 938 | temp = ehci_readl(ehci, status_reg); |
| 939 | } |
| 940 | |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 941 | /* |
| 942 | * Even if OWNER is set, there's no harm letting khubd |
| 943 | * see the wPortStatus values (they should all be 0 except |
| 944 | * for PORT_POWER anyway). |
| 945 | */ |
| 946 | |
| 947 | if (temp & PORT_CONNECT) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 948 | status |= USB_PORT_STAT_CONNECTION; |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 949 | // status may be from integrated TT |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 950 | if (ehci->has_hostpc) { |
| 951 | temp1 = ehci_readl(ehci, hostpc_reg); |
| 952 | status |= ehci_port_speed(ehci, temp1); |
| 953 | } else |
| 954 | status |= ehci_port_speed(ehci, temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 956 | if (temp & PORT_PE) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 957 | status |= USB_PORT_STAT_ENABLE; |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 958 | |
| 959 | /* maybe the port was unsuspended without our knowledge */ |
| 960 | if (temp & (PORT_SUSPEND|PORT_RESUME)) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 961 | status |= USB_PORT_STAT_SUSPEND; |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 962 | } else if (test_bit(wIndex, &ehci->suspended_ports)) { |
| 963 | clear_bit(wIndex, &ehci->suspended_ports); |
| 964 | ehci->reset_done[wIndex] = 0; |
| 965 | if (temp & PORT_PE) |
| 966 | set_bit(wIndex, &ehci->port_c_suspend); |
| 967 | } |
| 968 | |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 969 | if (temp & PORT_OC) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 970 | status |= USB_PORT_STAT_OVERCURRENT; |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 971 | if (temp & PORT_RESET) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 972 | status |= USB_PORT_STAT_RESET; |
Alan Stern | 625b5c9 | 2007-01-16 11:58:47 -0500 | [diff] [blame] | 973 | if (temp & PORT_POWER) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 974 | status |= USB_PORT_STAT_POWER; |
Alan Stern | d1f114d | 2008-05-20 16:58:58 -0400 | [diff] [blame] | 975 | if (test_bit(wIndex, &ehci->port_c_suspend)) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 976 | status |= USB_PORT_STAT_C_SUSPEND << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
David Brownell | 9776afc | 2008-02-01 11:42:05 -0800 | [diff] [blame] | 978 | #ifndef VERBOSE_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | if (status & ~0xffff) /* only if wPortChange is interesting */ |
| 980 | #endif |
| 981 | dbg_port (ehci, "GetStatus", wIndex + 1, temp); |
Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 982 | put_unaligned_le32(status, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | break; |
| 984 | case SetHubFeature: |
| 985 | switch (wValue) { |
| 986 | case C_HUB_LOCAL_POWER: |
| 987 | case C_HUB_OVER_CURRENT: |
| 988 | /* no hub-wide feature/status flags */ |
| 989 | break; |
| 990 | default: |
| 991 | goto error; |
| 992 | } |
| 993 | break; |
| 994 | case SetPortFeature: |
David Brownell | f0d7f27 | 2006-11-16 23:56:15 -0800 | [diff] [blame] | 995 | selector = wIndex >> 8; |
| 996 | wIndex &= 0xff; |
Jason Wessel | 8d053c7 | 2009-08-20 15:39:54 -0500 | [diff] [blame] | 997 | if (unlikely(ehci->debug)) { |
| 998 | /* If the debug port is active any port |
| 999 | * feature requests should get denied */ |
| 1000 | if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) && |
| 1001 | (readl(&ehci->debug->control) & DBGP_ENABLED)) { |
| 1002 | retval = -ENODEV; |
| 1003 | goto error_exit; |
| 1004 | } |
| 1005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | if (!wIndex || wIndex > ports) |
| 1007 | goto error; |
| 1008 | wIndex--; |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 1009 | temp = ehci_readl(ehci, status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | if (temp & PORT_OWNER) |
| 1011 | break; |
| 1012 | |
David Brownell | 10f6524 | 2005-08-31 10:55:38 -0700 | [diff] [blame] | 1013 | temp &= ~PORT_RWC_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | switch (wValue) { |
| 1015 | case USB_PORT_FEAT_SUSPEND: |
David Brownell | f8aeb3b | 2006-01-20 13:55:14 -0800 | [diff] [blame] | 1016 | if (ehci->no_selective_suspend) |
| 1017 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | if ((temp & PORT_PE) == 0 |
| 1019 | || (temp & PORT_RESET) != 0) |
| 1020 | goto error; |
Alek Du | b9df7942 | 2010-01-19 16:31:31 +0800 | [diff] [blame] | 1021 | |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 1022 | /* After above check the port must be connected. |
| 1023 | * Set appropriate bit thus could put phy into low power |
| 1024 | * mode if we have hostpc feature |
| 1025 | */ |
Alek Du | b9df7942 | 2010-01-19 16:31:31 +0800 | [diff] [blame] | 1026 | temp &= ~PORT_WKCONN_E; |
| 1027 | temp |= PORT_WKDISC_E | PORT_WKOC_E; |
| 1028 | ehci_writel(ehci, temp | PORT_SUSPEND, status_reg); |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 1029 | if (hostpc_reg) { |
Alek Du | b9df7942 | 2010-01-19 16:31:31 +0800 | [diff] [blame] | 1030 | spin_unlock_irqrestore(&ehci->lock, flags); |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 1031 | msleep(5);/* 5ms for HCD enter low pwr mode */ |
Alek Du | b9df7942 | 2010-01-19 16:31:31 +0800 | [diff] [blame] | 1032 | spin_lock_irqsave(&ehci->lock, flags); |
Alek Du | 331ac6b | 2009-07-13 12:41:20 +0800 | [diff] [blame] | 1033 | temp1 = ehci_readl(ehci, hostpc_reg); |
| 1034 | ehci_writel(ehci, temp1 | HOSTPC_PHCD, |
| 1035 | hostpc_reg); |
| 1036 | temp1 = ehci_readl(ehci, hostpc_reg); |
| 1037 | ehci_dbg(ehci, "Port%d phy low pwr mode %s\n", |
| 1038 | wIndex, (temp1 & HOSTPC_PHCD) ? |
| 1039 | "succeeded" : "failed"); |
| 1040 | } |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 1041 | set_bit(wIndex, &ehci->suspended_ports); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | break; |
| 1043 | case USB_PORT_FEAT_POWER: |
| 1044 | if (HCS_PPC (ehci->hcs_params)) |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 1045 | ehci_writel(ehci, temp | PORT_POWER, |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 1046 | status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | break; |
| 1048 | case USB_PORT_FEAT_RESET: |
| 1049 | if (temp & PORT_RESUME) |
| 1050 | goto error; |
| 1051 | /* line status bits may report this as low speed, |
| 1052 | * which can be fine if this root hub has a |
| 1053 | * transaction translator built in. |
| 1054 | */ |
| 1055 | if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT |
| 1056 | && !ehci_is_TDI(ehci) |
| 1057 | && PORT_USB11 (temp)) { |
| 1058 | ehci_dbg (ehci, |
| 1059 | "port %d low speed --> companion\n", |
| 1060 | wIndex + 1); |
| 1061 | temp |= PORT_OWNER; |
| 1062 | } else { |
| 1063 | ehci_vdbg (ehci, "port %d reset\n", wIndex + 1); |
| 1064 | temp |= PORT_RESET; |
| 1065 | temp &= ~PORT_PE; |
| 1066 | |
| 1067 | /* |
| 1068 | * caller must wait, then call GetPortStatus |
| 1069 | * usb 2.0 spec says 50 ms resets on root |
| 1070 | */ |
| 1071 | ehci->reset_done [wIndex] = jiffies |
| 1072 | + msecs_to_jiffies (50); |
| 1073 | } |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 1074 | ehci_writel(ehci, temp, status_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | break; |
David Brownell | f0d7f27 | 2006-11-16 23:56:15 -0800 | [diff] [blame] | 1076 | |
| 1077 | /* For downstream facing ports (these): one hub port is put |
| 1078 | * into test mode according to USB2 11.24.2.13, then the hub |
| 1079 | * must be reset (which for root hub now means rmmod+modprobe, |
| 1080 | * or else system reboot). See EHCI 2.3.9 and 4.14 for info |
| 1081 | * about the EHCI-specific stuff. |
| 1082 | */ |
| 1083 | case USB_PORT_FEAT_TEST: |
| 1084 | if (!selector || selector > 5) |
| 1085 | goto error; |
| 1086 | ehci_quiesce(ehci); |
| 1087 | ehci_halt(ehci); |
| 1088 | temp |= selector << 16; |
Alan Stern | e631656 | 2007-01-16 11:58:00 -0500 | [diff] [blame] | 1089 | ehci_writel(ehci, temp, status_reg); |
David Brownell | f0d7f27 | 2006-11-16 23:56:15 -0800 | [diff] [blame] | 1090 | break; |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | default: |
| 1093 | goto error; |
| 1094 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 1095 | ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | break; |
| 1097 | |
| 1098 | default: |
| 1099 | error: |
| 1100 | /* "stall" on error */ |
| 1101 | retval = -EPIPE; |
| 1102 | } |
Jason Wessel | 8d053c7 | 2009-08-20 15:39:54 -0500 | [diff] [blame] | 1103 | error_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | spin_unlock_irqrestore (&ehci->lock, flags); |
| 1105 | return retval; |
| 1106 | } |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 1107 | |
| 1108 | static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum) |
| 1109 | { |
| 1110 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 1111 | |
| 1112 | if (ehci_is_TDI(ehci)) |
| 1113 | return; |
| 1114 | set_owner(ehci, --portnum, PORT_OWNER); |
| 1115 | } |
| 1116 | |
Alan Stern | 3a31155 | 2008-05-20 16:58:29 -0400 | [diff] [blame] | 1117 | static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum) |
| 1118 | { |
| 1119 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 1120 | u32 __iomem *reg; |
| 1121 | |
| 1122 | if (ehci_is_TDI(ehci)) |
| 1123 | return 0; |
| 1124 | reg = &ehci->regs->port_status[portnum - 1]; |
| 1125 | return ehci_readl(ehci, reg) & PORT_OWNER; |
| 1126 | } |