blob: d7641cbdee43d64e5bfcaff7c0628988f3c370fc [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
David Brownelld49d4312005-05-07 13:21:50 -07003 * Copyright (C) 2001-2004 by David Brownell
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6/* this file is part of ehci-hcd.c */
7
8/*-------------------------------------------------------------------------*/
9
10/*
11 * EHCI Root Hub ... the nonsharable stuff
12 *
13 * Registers don't need cpu_to_le32, that happens transparently
14 */
15
16/*-------------------------------------------------------------------------*/
Anatolij Gustschin83722bc2011-04-18 22:02:00 +020017#include <linux/usb/otg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Alan Stern58a97ff2008-04-14 12:17:10 -040019#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
20
Alan Sternaff6d182008-04-18 11:11:26 -040021#ifdef CONFIG_PM
22
Alan Stern1586ba02016-02-04 11:17:36 -050023static void unlink_empty_async_suspended(struct ehci_hcd *ehci);
24
Julius Werner9b790912013-05-17 12:08:51 -070025static int persist_enabled_on_companion(struct usb_device *udev, void *unused)
26{
27 return !udev->maxchild && udev->persist_enabled &&
28 udev->bus->root_hub->speed < USB_SPEED_HIGH;
29}
30
Alan Stern383975d2007-05-04 11:52:40 -040031/* After a power loss, ports that were owned by the companion must be
32 * reset so that the companion can still own them.
33 */
34static void ehci_handover_companion_ports(struct ehci_hcd *ehci)
35{
36 u32 __iomem *reg;
37 u32 status;
38 int port;
39 __le32 buf;
40 struct usb_hcd *hcd = ehci_to_hcd(ehci);
41
42 if (!ehci->owned_ports)
43 return;
44
Julius Werner9b790912013-05-17 12:08:51 -070045 /*
46 * USB 1.1 devices are mostly HIDs, which don't need to persist across
47 * suspends. If we ensure that none of our companion's devices have
48 * persist_enabled (by looking through all USB 1.1 buses in the system),
49 * we can skip this and avoid slowing resume down. Devices without
50 * persist will just get reenumerated shortly after resume anyway.
51 */
52 if (!usb_for_each_dev(NULL, persist_enabled_on_companion))
53 return;
54
Alan Sternc73cee72012-10-31 13:21:06 -040055 /* Make sure the ports are powered */
56 port = HCS_N_PORTS(ehci->hcs_params);
57 while (port--) {
58 if (test_bit(port, &ehci->owned_ports)) {
59 reg = &ehci->regs->port_status[port];
60 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Michael Grzeschik11a7e592014-10-13 09:53:03 +080061 if (!(status & PORT_POWER))
62 ehci_port_power(ehci, port, true);
Alan Sternc73cee72012-10-31 13:21:06 -040063 }
64 }
65
Alan Stern383975d2007-05-04 11:52:40 -040066 /* Give the connections some time to appear */
67 msleep(20);
68
Alan Sternc4f34762012-07-11 11:23:10 -040069 spin_lock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -040070 port = HCS_N_PORTS(ehci->hcs_params);
71 while (port--) {
72 if (test_bit(port, &ehci->owned_ports)) {
73 reg = &ehci->regs->port_status[port];
Alan Stern3c519b82007-05-04 11:55:31 -040074 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Alan Stern383975d2007-05-04 11:52:40 -040075
76 /* Port already owned by companion? */
77 if (status & PORT_OWNER)
78 clear_bit(port, &ehci->owned_ports);
Alan Stern3c519b82007-05-04 11:55:31 -040079 else if (test_bit(port, &ehci->companion_ports))
80 ehci_writel(ehci, status & ~PORT_PE, reg);
Alan Sternc4f34762012-07-11 11:23:10 -040081 else {
82 spin_unlock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -040083 ehci_hub_control(hcd, SetPortFeature,
84 USB_PORT_FEAT_RESET, port + 1,
85 NULL, 0);
Alan Sternc4f34762012-07-11 11:23:10 -040086 spin_lock_irq(&ehci->lock);
87 }
Alan Stern383975d2007-05-04 11:52:40 -040088 }
89 }
Alan Sternc4f34762012-07-11 11:23:10 -040090 spin_unlock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -040091
92 if (!ehci->owned_ports)
93 return;
94 msleep(90); /* Wait for resets to complete */
95
Alan Sternc4f34762012-07-11 11:23:10 -040096 spin_lock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -040097 port = HCS_N_PORTS(ehci->hcs_params);
98 while (port--) {
99 if (test_bit(port, &ehci->owned_ports)) {
Alan Sternc4f34762012-07-11 11:23:10 -0400100 spin_unlock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -0400101 ehci_hub_control(hcd, GetPortStatus,
102 0, port + 1,
103 (char *) &buf, sizeof(buf));
Alan Sternc4f34762012-07-11 11:23:10 -0400104 spin_lock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -0400105
106 /* The companion should now own the port,
107 * but if something went wrong the port must not
108 * remain enabled.
109 */
110 reg = &ehci->regs->port_status[port];
111 status = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
112 if (status & PORT_OWNER)
113 ehci_writel(ehci, status | PORT_CSC, reg);
114 else {
115 ehci_dbg(ehci, "failed handover port %d: %x\n",
116 port + 1, status);
117 ehci_writel(ehci, status & ~PORT_PE, reg);
118 }
119 }
120 }
121
122 ehci->owned_ports = 0;
Alan Sternc4f34762012-07-11 11:23:10 -0400123 spin_unlock_irq(&ehci->lock);
Alan Stern383975d2007-05-04 11:52:40 -0400124}
125
Alan Sternc5cf9212012-06-28 11:19:02 -0400126static int ehci_port_change(struct ehci_hcd *ehci)
Matthew Garrett294d95f2011-01-11 12:26:48 -0500127{
128 int i = HCS_N_PORTS(ehci->hcs_params);
129
130 /* First check if the controller indicates a change event */
131
132 if (ehci_readl(ehci, &ehci->regs->status) & STS_PCD)
133 return 1;
134
135 /*
136 * Not all controllers appear to update this while going from D3 to D0,
137 * so check the individual port status registers as well
138 */
139
140 while (i--)
141 if (ehci_readl(ehci, &ehci->regs->port_status[i]) & PORT_CSC)
142 return 1;
143
144 return 0;
145}
146
Ramneek Mehresh74db22c2015-05-29 11:28:30 +0530147void ehci_adjust_port_wakeup_flags(struct ehci_hcd *ehci,
Alan Stern41472002010-06-25 14:02:14 -0400148 bool suspending, bool do_wakeup)
Alan Stern16032c42010-05-12 18:21:35 -0400149{
150 int port;
151 u32 temp;
152
153 /* If remote wakeup is enabled for the root hub but disabled
154 * for the controller, we must adjust all the port wakeup flags
155 * when the controller is suspended or resumed. In all other
156 * cases they don't need to be changed.
157 */
Alan Stern41472002010-06-25 14:02:14 -0400158 if (!ehci_to_hcd(ehci)->self.root_hub->do_remote_wakeup || do_wakeup)
Alan Stern16032c42010-05-12 18:21:35 -0400159 return;
160
Alan Sternc4f34762012-07-11 11:23:10 -0400161 spin_lock_irq(&ehci->lock);
Yin Kangkai148fc552011-01-28 12:04:35 +0800162
Alan Stern16032c42010-05-12 18:21:35 -0400163 /* clear phy low-power mode before changing wakeup flags */
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +0300164 if (ehci->has_tdi_phy_lpm) {
Alan Stern16032c42010-05-12 18:21:35 -0400165 port = HCS_N_PORTS(ehci->hcs_params);
166 while (port--) {
Alan Sterna46af4e2012-06-25 12:19:03 -0400167 u32 __iomem *hostpc_reg = &ehci->regs->hostpc[port];
Alan Stern16032c42010-05-12 18:21:35 -0400168
Alan Stern16032c42010-05-12 18:21:35 -0400169 temp = ehci_readl(ehci, hostpc_reg);
170 ehci_writel(ehci, temp & ~HOSTPC_PHCD, hostpc_reg);
171 }
Alan Sternc4f34762012-07-11 11:23:10 -0400172 spin_unlock_irq(&ehci->lock);
Alan Stern16032c42010-05-12 18:21:35 -0400173 msleep(5);
Alan Sternc4f34762012-07-11 11:23:10 -0400174 spin_lock_irq(&ehci->lock);
Alan Stern16032c42010-05-12 18:21:35 -0400175 }
176
177 port = HCS_N_PORTS(ehci->hcs_params);
178 while (port--) {
179 u32 __iomem *reg = &ehci->regs->port_status[port];
180 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
181 u32 t2 = t1 & ~PORT_WAKE_BITS;
182
183 /* If we are suspending the controller, clear the flags.
184 * If we are resuming the controller, set the wakeup flags.
185 */
186 if (!suspending) {
187 if (t1 & PORT_CONNECT)
188 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
189 else
190 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
191 }
Alan Stern16032c42010-05-12 18:21:35 -0400192 ehci_writel(ehci, t2, reg);
193 }
194
195 /* enter phy low-power mode again */
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +0300196 if (ehci->has_tdi_phy_lpm) {
Alan Stern16032c42010-05-12 18:21:35 -0400197 port = HCS_N_PORTS(ehci->hcs_params);
198 while (port--) {
Alan Sterna46af4e2012-06-25 12:19:03 -0400199 u32 __iomem *hostpc_reg = &ehci->regs->hostpc[port];
Alan Stern16032c42010-05-12 18:21:35 -0400200
Alan Stern16032c42010-05-12 18:21:35 -0400201 temp = ehci_readl(ehci, hostpc_reg);
202 ehci_writel(ehci, temp | HOSTPC_PHCD, hostpc_reg);
203 }
204 }
Alan Sternee0b9be2010-06-25 14:02:24 -0400205
206 /* Does the root hub have a port wakeup pending? */
Matthew Garrett294d95f2011-01-11 12:26:48 -0500207 if (!suspending && ehci_port_change(ehci))
Alan Sternee0b9be2010-06-25 14:02:24 -0400208 usb_hcd_resume_root_hub(ehci_to_hcd(ehci));
Yin Kangkai148fc552011-01-28 12:04:35 +0800209
Alan Sternc4f34762012-07-11 11:23:10 -0400210 spin_unlock_irq(&ehci->lock);
Alan Stern16032c42010-05-12 18:21:35 -0400211}
Ramneek Mehresh74db22c2015-05-29 11:28:30 +0530212EXPORT_SYMBOL_GPL(ehci_adjust_port_wakeup_flags);
Alan Stern16032c42010-05-12 18:21:35 -0400213
Alan Stern0c0382e2005-10-13 17:08:02 -0400214static int ehci_bus_suspend (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
217 int port;
Alan Stern8c033562006-11-09 14:42:16 -0500218 int mask;
Alan Stern16032c42010-05-12 18:21:35 -0400219 int changed;
Alan Stern3e8d6d82014-02-13 15:49:17 -0500220 bool fs_idle_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Alan Stern8c774fe2007-02-01 16:09:59 -0500222 ehci_dbg(ehci, "suspend root hub\n");
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (time_before (jiffies, ehci->next_statechange))
225 msleep(5);
226
Alan Sternc4f34762012-07-11 11:23:10 -0400227 /* stop the schedules */
228 ehci_quiesce(ehci);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 spin_lock_irq (&ehci->lock);
Alan Stern43fe3a92012-07-11 11:23:16 -0400231 if (ehci->rh_state < EHCI_RH_RUNNING)
232 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Alan Sterncec3a532010-01-08 11:18:20 -0500234 /* Once the controller is stopped, port resumes that are already
235 * in progress won't complete. Hence if remote wakeup is enabled
236 * for the root hub and any ports are in the middle of a resume or
237 * remote wakeup, we must fail the suspend.
238 */
239 if (hcd->self.root_hub->do_remote_wakeup) {
Alan Sterna448e4d2012-04-03 15:24:30 -0400240 if (ehci->resuming_ports) {
241 spin_unlock_irq(&ehci->lock);
242 ehci_dbg(ehci, "suspend failed because a port is resuming\n");
243 return -EBUSY;
Alan Sterncec3a532010-01-08 11:18:20 -0500244 }
245 }
246
Alan Stern8c033562006-11-09 14:42:16 -0500247 /* Unlike other USB host controller types, EHCI doesn't have
248 * any notion of "global" or bus-wide suspend. The driver has
249 * to manually suspend all the active unsuspended ports, and
250 * then manually resume them in the bus_resume() routine.
251 */
252 ehci->bus_suspended = 0;
Alan Stern383975d2007-05-04 11:52:40 -0400253 ehci->owned_ports = 0;
Alan Stern16032c42010-05-12 18:21:35 -0400254 changed = 0;
Alan Stern3e8d6d82014-02-13 15:49:17 -0500255 fs_idle_delay = false;
Alan Sterncec3a532010-01-08 11:18:20 -0500256 port = HCS_N_PORTS(ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 while (port--) {
258 u32 __iomem *reg = &ehci->regs->port_status [port];
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100259 u32 t1 = ehci_readl(ehci, reg) & ~PORT_RWC_BITS;
Alan Stern16032c42010-05-12 18:21:35 -0400260 u32 t2 = t1 & ~PORT_WAKE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Alan Stern8c033562006-11-09 14:42:16 -0500262 /* keep track of which ports we suspend */
Alan Stern383975d2007-05-04 11:52:40 -0400263 if (t1 & PORT_OWNER)
264 set_bit(port, &ehci->owned_ports);
265 else if ((t1 & PORT_PE) && !(t1 & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 t2 |= PORT_SUSPEND;
Alan Stern8c033562006-11-09 14:42:16 -0500267 set_bit(port, &ehci->bus_suspended);
268 }
269
Alan Stern16032c42010-05-12 18:21:35 -0400270 /* enable remote wakeup on all ports, if told to do so */
Alek Du331ac6b2009-07-13 12:41:20 +0800271 if (hcd->self.root_hub->do_remote_wakeup) {
272 /* only enable appropriate wake bits, otherwise the
273 * hardware can not go phy low power mode. If a race
274 * condition happens here(connection change during bits
275 * set), the port change detection will finally fix it.
276 */
Alan Stern16032c42010-05-12 18:21:35 -0400277 if (t1 & PORT_CONNECT)
Alek Du331ac6b2009-07-13 12:41:20 +0800278 t2 |= PORT_WKOC_E | PORT_WKDISC_E;
Alan Stern16032c42010-05-12 18:21:35 -0400279 else
Alek Du331ac6b2009-07-13 12:41:20 +0800280 t2 |= PORT_WKOC_E | PORT_WKCONN_E;
Alan Stern16032c42010-05-12 18:21:35 -0400281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (t1 != t2) {
Alan Stern3e8d6d82014-02-13 15:49:17 -0500284 /*
285 * On some controllers, Wake-On-Disconnect will
286 * generate false wakeup signals until the bus
287 * switches over to full-speed idle. For their
288 * sake, add a delay if we need one.
289 */
290 if ((t2 & PORT_WKDISC_E) &&
291 ehci_port_speed(ehci, t2) ==
292 USB_PORT_STAT_HIGH_SPEED)
293 fs_idle_delay = true;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100294 ehci_writel(ehci, t2, reg);
Alan Stern16032c42010-05-12 18:21:35 -0400295 changed = 1;
296 }
297 }
Alan Stern3e8d6d82014-02-13 15:49:17 -0500298 spin_unlock_irq(&ehci->lock);
299
Changming Huang9d4b8272016-11-29 13:45:38 +0800300 if (changed && ehci_has_fsl_susp_errata(ehci))
301 /*
302 * Wait for at least 10 millisecondes to ensure the controller
303 * enter the suspend status before initiating a port resume
304 * using the Force Port Resume bit (Not-EHCI compatible).
305 */
306 usleep_range(10000, 20000);
307
Alan Stern3e8d6d82014-02-13 15:49:17 -0500308 if ((changed && ehci->has_tdi_phy_lpm) || fs_idle_delay) {
309 /*
310 * Wait for HCD to enter low-power mode or for the bus
311 * to switch to full-speed idle.
312 */
313 usleep_range(5000, 5500);
314 }
Alek Du331ac6b2009-07-13 12:41:20 +0800315
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +0300316 if (changed && ehci->has_tdi_phy_lpm) {
Alan Stern16032c42010-05-12 18:21:35 -0400317 spin_lock_irq(&ehci->lock);
Alan Stern16032c42010-05-12 18:21:35 -0400318 port = HCS_N_PORTS(ehci->hcs_params);
319 while (port--) {
Alan Sterna46af4e2012-06-25 12:19:03 -0400320 u32 __iomem *hostpc_reg = &ehci->regs->hostpc[port];
Alan Stern16032c42010-05-12 18:21:35 -0400321 u32 t3;
322
Alan Stern16032c42010-05-12 18:21:35 -0400323 t3 = ehci_readl(ehci, hostpc_reg);
324 ehci_writel(ehci, t3 | HOSTPC_PHCD, hostpc_reg);
325 t3 = ehci_readl(ehci, hostpc_reg);
326 ehci_dbg(ehci, "Port %d phy low-power mode %s\n",
Alek Du331ac6b2009-07-13 12:41:20 +0800327 port, (t3 & HOSTPC_PHCD) ?
328 "succeeded" : "failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
Alan Stern3e8d6d82014-02-13 15:49:17 -0500330 spin_unlock_irq(&ehci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
Alan Sterncd930c92008-01-10 11:14:53 -0500333 /* Apparently some devices need a >= 1-uframe delay here */
334 if (ehci->bus_suspended)
335 udelay(150);
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* turn off now-idle HC */
338 ehci_halt (ehci);
Alan Sternc4f34762012-07-11 11:23:10 -0400339
340 spin_lock_irq(&ehci->lock);
Alan Stern43fe3a92012-07-11 11:23:16 -0400341 if (ehci->enabled_hrtimer_events & BIT(EHCI_HRTIMER_POLL_DEAD))
342 ehci_handle_controller_death(ehci);
343 if (ehci->rh_state != EHCI_RH_RUNNING)
344 goto done;
Alan Sterne8799902011-08-18 16:31:30 -0400345 ehci->rh_state = EHCI_RH_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alan Stern8df0d772016-01-25 15:45:38 -0500347 unlink_empty_async_suspended(ehci);
348
Alan Sternf96fba02016-01-25 15:44:16 -0500349 /* Any IAA cycle that started before the suspend is now invalid */
350 end_iaa_cycle(ehci);
Ming Lei9118f9e2013-07-03 22:53:10 +0800351 ehci_handle_start_intr_unlinks(ehci);
Alan Sterndf202252012-07-11 11:22:26 -0400352 ehci_handle_intr_unlinks(ehci);
Alan Stern55934eb2012-07-11 11:22:35 -0400353 end_free_itds(ehci);
David Brownellcdc647a2008-04-02 13:40:20 -0700354
Alan Stern8c033562006-11-09 14:42:16 -0500355 /* allow remote wakeup */
356 mask = INTR_MASK;
Alan Stern58a97ff2008-04-14 12:17:10 -0400357 if (!hcd->self.root_hub->do_remote_wakeup)
Alan Stern8c033562006-11-09 14:42:16 -0500358 mask &= ~STS_PCD;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100359 ehci_writel(ehci, mask, &ehci->regs->intr_enable);
360 ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500361
Alan Stern43fe3a92012-07-11 11:23:16 -0400362 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 ehci->next_statechange = jiffies + msecs_to_jiffies(10);
Alan Sternd58b4bc2012-07-11 11:21:54 -0400364 ehci->enabled_hrtimer_events = 0;
365 ehci->next_hrtimer_event = EHCI_HRTIMER_NO_EVENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 spin_unlock_irq (&ehci->lock);
Jon Hunter015798b2009-08-12 11:57:59 -0400367
Alan Sternd58b4bc2012-07-11 11:21:54 -0400368 hrtimer_cancel(&ehci->hrtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370}
371
372
373/* caller has locked the root hub, and should reset/reinit on error */
Alan Stern0c0382e2005-10-13 17:08:02 -0400374static int ehci_bus_resume (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
377 u32 temp;
Alan Stern383975d2007-05-04 11:52:40 -0400378 u32 power_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int i;
Wang Zhid0f2fb22011-08-17 10:39:31 +0800380 unsigned long resume_needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (time_before (jiffies, ehci->next_statechange))
383 msleep(5);
384 spin_lock_irq (&ehci->lock);
Alan Stern43fe3a92012-07-11 11:23:16 -0400385 if (!HCD_HW_ACCESSIBLE(hcd) || ehci->shutdown)
386 goto shutdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jason Wesselad45f1d2009-08-20 15:39:58 -0500388 if (unlikely(ehci->debug)) {
Jan Beulich9fa57802012-09-18 12:23:02 +0100389 if (!dbgp_reset_prep(hcd))
Jason Wesselad45f1d2009-08-20 15:39:58 -0500390 ehci->debug = NULL;
391 else
Jan Beulich9fa57802012-09-18 12:23:02 +0100392 dbgp_external_startup(hcd);
Jason Wesselad45f1d2009-08-20 15:39:58 -0500393 }
394
David Brownellf03c17f2005-11-23 15:45:28 -0800395 /* Ideally and we've got a real resume here, and no port's power
396 * was lost. (For PCI, that means Vaux was maintained.) But we
397 * could instead be restoring a swsusp snapshot -- so that BIOS was
398 * the last user of the controller, not reset/pm hardware keeping
399 * state we gave to it.
400 */
Alan Stern383975d2007-05-04 11:52:40 -0400401 power_okay = ehci_readl(ehci, &ehci->regs->intr_enable);
402 ehci_dbg(ehci, "resume root hub%s\n",
403 power_okay ? "" : " after power loss");
David Brownellf03c17f2005-11-23 15:45:28 -0800404
Alan Stern8c033562006-11-09 14:42:16 -0500405 /* at least some APM implementations will try to deliver
406 * IRQs right away, so delay them until we're ready.
407 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100408 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
Alan Stern8c033562006-11-09 14:42:16 -0500409
410 /* re-init operational registers */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100411 ehci_writel(ehci, 0, &ehci->regs->segment);
412 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
413 ehci_writel(ehci, (u32) ehci->async->qh_dma, &ehci->regs->async_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* restore CMD_RUN, framelist size, and irq threshold */
Alan Stern3d9545c2012-04-23 13:54:36 -0400416 ehci->command |= CMD_RUN;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100417 ehci_writel(ehci, ehci->command, &ehci->regs->command);
Alan Sterne8799902011-08-18 16:31:30 -0400418 ehci->rh_state = EHCI_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Peter Chen6273f182012-10-18 12:24:43 +0800420 /*
421 * According to Bugzilla #8190, the port status for some controllers
422 * will be wrong without a delay. At their wrong status, the port
423 * is enabled, but not suspended neither resumed.
424 */
425 i = HCS_N_PORTS(ehci->hcs_params);
426 while (i--) {
427 temp = ehci_readl(ehci, &ehci->regs->port_status[i]);
428 if ((temp & PORT_PE) &&
429 !(temp & (PORT_SUSPEND | PORT_RESUME))) {
430 ehci_dbg(ehci, "Port status(0x%x) is wrong\n", temp);
431 spin_unlock_irq(&ehci->lock);
432 msleep(8);
433 spin_lock_irq(&ehci->lock);
434 break;
435 }
436 }
437
Alan Stern43fe3a92012-07-11 11:23:16 -0400438 if (ehci->shutdown)
439 goto shutdown;
Alan Sterne198a312007-03-15 15:54:30 -0400440
Alan Stern16032c42010-05-12 18:21:35 -0400441 /* clear phy low-power mode before resume */
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +0300442 if (ehci->bus_suspended && ehci->has_tdi_phy_lpm) {
Alan Stern16032c42010-05-12 18:21:35 -0400443 i = HCS_N_PORTS(ehci->hcs_params);
444 while (i--) {
445 if (test_bit(i, &ehci->bus_suspended)) {
Alan Sterna46af4e2012-06-25 12:19:03 -0400446 u32 __iomem *hostpc_reg =
447 &ehci->regs->hostpc[i];
Alan Stern16032c42010-05-12 18:21:35 -0400448
Alan Stern16032c42010-05-12 18:21:35 -0400449 temp = ehci_readl(ehci, hostpc_reg);
450 ehci_writel(ehci, temp & ~HOSTPC_PHCD,
451 hostpc_reg);
452 }
453 }
454 spin_unlock_irq(&ehci->lock);
455 msleep(5);
456 spin_lock_irq(&ehci->lock);
Alan Stern43fe3a92012-07-11 11:23:16 -0400457 if (ehci->shutdown)
458 goto shutdown;
Alan Stern16032c42010-05-12 18:21:35 -0400459 }
460
Alan Stern8c033562006-11-09 14:42:16 -0500461 /* manually resume the ports we suspended during bus_suspend() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 i = HCS_N_PORTS (ehci->hcs_params);
463 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100464 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Alan Stern58a97ff2008-04-14 12:17:10 -0400465 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
Alan Stern8c033562006-11-09 14:42:16 -0500466 if (test_bit(i, &ehci->bus_suspended) &&
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530467 (temp & PORT_SUSPEND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 temp |= PORT_RESUME;
Wang Zhid0f2fb22011-08-17 10:39:31 +0800469 set_bit(i, &resume_needed);
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530470 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100471 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530473
Felipe Balbiea163282015-02-13 14:42:25 -0600474 /*
475 * msleep for USB_RESUME_TIMEOUT ms only if code is trying to resume
476 * port
477 */
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530478 if (resume_needed) {
479 spin_unlock_irq(&ehci->lock);
Felipe Balbiea163282015-02-13 14:42:25 -0600480 msleep(USB_RESUME_TIMEOUT);
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530481 spin_lock_irq(&ehci->lock);
Alan Stern43fe3a92012-07-11 11:23:16 -0400482 if (ehci->shutdown)
483 goto shutdown;
Vikram Pandita3a4e72c2008-10-24 23:41:30 +0530484 }
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 i = HCS_N_PORTS (ehci->hcs_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 while (i--) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100488 temp = ehci_readl(ehci, &ehci->regs->port_status [i]);
Wang Zhid0f2fb22011-08-17 10:39:31 +0800489 if (test_bit(i, &resume_needed)) {
Alan Stern24b90812013-03-18 12:05:42 -0400490 temp &= ~(PORT_RWC_BITS | PORT_SUSPEND | PORT_RESUME);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100491 ehci_writel(ehci, temp, &ehci->regs->port_status [i]);
Alan Stern8c033562006-11-09 14:42:16 -0500492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 ehci->next_statechange = jiffies + msecs_to_jiffies(5);
Alan Sternc4f34762012-07-11 11:23:10 -0400496 spin_unlock_irq(&ehci->lock);
497
498 ehci_handover_companion_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 /* Now we can safely re-enable irqs */
Alan Stern43fe3a92012-07-11 11:23:16 -0400501 spin_lock_irq(&ehci->lock);
502 if (ehci->shutdown)
503 goto shutdown;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100504 ehci_writel(ehci, INTR_MASK, &ehci->regs->intr_enable);
Alan Stern15be1052012-07-11 11:21:17 -0400505 (void) ehci_readl(ehci, &ehci->regs->intr_enable);
Alan Stern43fe3a92012-07-11 11:23:16 -0400506 spin_unlock_irq(&ehci->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return 0;
Alan Stern43fe3a92012-07-11 11:23:16 -0400509
510 shutdown:
511 spin_unlock_irq(&ehci->lock);
512 return -ESHUTDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515#else
516
Alan Stern0c0382e2005-10-13 17:08:02 -0400517#define ehci_bus_suspend NULL
518#define ehci_bus_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520#endif /* CONFIG_PM */
521
522/*-------------------------------------------------------------------------*/
523
Alan Stern57e06c12007-01-16 11:59:45 -0500524/*
Balaji Rao90da0962007-11-22 01:58:14 +0530525 * Sets the owner of a port
Alan Stern57e06c12007-01-16 11:59:45 -0500526 */
Balaji Rao90da0962007-11-22 01:58:14 +0530527static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner)
Alan Stern57e06c12007-01-16 11:59:45 -0500528{
Alan Stern57e06c12007-01-16 11:59:45 -0500529 u32 __iomem *status_reg;
530 u32 port_status;
Balaji Rao90da0962007-11-22 01:58:14 +0530531 int try;
Alan Stern57e06c12007-01-16 11:59:45 -0500532
Balaji Rao90da0962007-11-22 01:58:14 +0530533 status_reg = &ehci->regs->port_status[portnum];
Alan Stern57e06c12007-01-16 11:59:45 -0500534
535 /*
536 * The controller won't set the OWNER bit if the port is
537 * enabled, so this loop will sometimes require at least two
538 * iterations: one to disable the port and one to set OWNER.
539 */
Alan Stern57e06c12007-01-16 11:59:45 -0500540 for (try = 4; try > 0; --try) {
541 spin_lock_irq(&ehci->lock);
542 port_status = ehci_readl(ehci, status_reg);
543 if ((port_status & PORT_OWNER) == new_owner
544 || (port_status & (PORT_OWNER | PORT_CONNECT))
545 == 0)
546 try = 0;
547 else {
548 port_status ^= PORT_OWNER;
549 port_status &= ~(PORT_PE | PORT_RWC_BITS);
550 ehci_writel(ehci, port_status, status_reg);
551 }
552 spin_unlock_irq(&ehci->lock);
553 if (try > 1)
554 msleep(5);
555 }
Balaji Rao90da0962007-11-22 01:58:14 +0530556}
557
Alan Stern57e06c12007-01-16 11:59:45 -0500558/*-------------------------------------------------------------------------*/
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static int check_reset_complete (
561 struct ehci_hcd *ehci,
562 int index,
Alan Sterne6316562007-01-16 11:58:00 -0500563 u32 __iomem *status_reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int port_status
565) {
David Brownellcd4cdc92008-01-24 12:39:43 -0800566 if (!(port_status & PORT_CONNECT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return port_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* if reset finished and it's still not enabled -- handoff */
570 if (!(port_status & PORT_PE)) {
571
572 /* with integrated TT, there's nobody to hand it to! */
573 if (ehci_is_TDI(ehci)) {
574 ehci_dbg (ehci,
575 "Failed to enable port %d on root hub TT\n",
576 index+1);
577 return port_status;
578 }
579
580 ehci_dbg (ehci, "port %d full speed --> companion\n",
581 index + 1);
582
583 // what happens if HCS_N_CC(params) == 0 ?
584 port_status |= PORT_OWNER;
David Brownell10f65242005-08-31 10:55:38 -0700585 port_status &= ~PORT_RWC_BITS;
Alan Sterne6316562007-01-16 11:58:00 -0500586 ehci_writel(ehci, port_status, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100588 /* ensure 440EPX ohci controller state is operational */
589 if (ehci->has_amcc_usb23)
590 set_ohci_hcfs(ehci, 1);
591 } else {
Peter Chen0ca7eb22012-03-29 09:50:06 +0800592 ehci_dbg(ehci, "port %d reset complete, port enabled\n",
593 index + 1);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100594 /* ensure 440EPx ohci controller state is suspended */
595 if (ehci->has_amcc_usb23)
596 set_ohci_hcfs(ehci, 0);
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 return port_status;
600}
601
602/*-------------------------------------------------------------------------*/
603
604
605/* build "status change" packet (one or two bytes) from HC registers */
606
607static int
608ehci_hub_status_data (struct usb_hcd *hcd, char *buf)
609{
610 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
Alan Sterna448e4d2012-04-03 15:24:30 -0400611 u32 temp, status;
David Brownell93f1a472006-11-16 23:34:58 -0800612 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 int ports, i, retval = 1;
614 unsigned long flags;
Alan Stern4dd405a2013-03-18 12:05:08 -0400615 u32 ppcd = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* init status to no-changes */
618 buf [0] = 0;
619 ports = HCS_N_PORTS (ehci->hcs_params);
620 if (ports > 7) {
621 buf [1] = 0;
622 retval++;
623 }
David Brownell53bd6a62006-08-30 14:50:06 -0700624
Alan Sterna448e4d2012-04-03 15:24:30 -0400625 /* Inform the core about resumes-in-progress by returning
626 * a non-zero value even if there are no status changes.
627 */
628 status = ehci->resuming_ports;
629
David Brownell93f1a472006-11-16 23:34:58 -0800630 /* Some boards (mostly VIA?) report bogus overcurrent indications,
631 * causing massive log spam unless we completely ignore them. It
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200632 * may be relevant that VIA VT8235 controllers, where PORT_POWER is
David Brownell93f1a472006-11-16 23:34:58 -0800633 * always set, seem to clear PORT_OCC and PORT_CSC when writing to
634 * PORT_POWER; that's surprising, but maybe within-spec.
635 */
636 if (!ignore_oc)
637 mask = PORT_CSC | PORT_PEC | PORT_OCC;
638 else
639 mask = PORT_CSC | PORT_PEC;
640 // PORT_RESUME from hardware ~= PORT_STAT_C_SUSPEND
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* no hub change reports (bit 0) for now (power, ...) */
643
644 /* port N changes (bit N)? */
645 spin_lock_irqsave (&ehci->lock, flags);
Alek Du5a9cdf32010-06-04 15:47:56 +0800646
647 /* get per-port change detect bits */
648 if (ehci->has_ppcd)
649 ppcd = ehci_readl(ehci, &ehci->regs->status) >> 16;
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 for (i = 0; i < ports; i++) {
Alek Du5a9cdf32010-06-04 15:47:56 +0800652 /* leverage per-port change bits feature */
Alan Stern4dd405a2013-03-18 12:05:08 -0400653 if (ppcd & (1 << i))
654 temp = ehci_readl(ehci, &ehci->regs->port_status[i]);
655 else
656 temp = 0;
Alan Stern625b5c92007-01-16 11:58:47 -0500657
658 /*
659 * Return status information even for ports with OWNER set.
Petr Mladek37ebb542014-09-19 17:32:23 +0200660 * Otherwise hub_wq wouldn't see the disconnect event when a
Alan Stern625b5c92007-01-16 11:58:47 -0500661 * high-speed device is switched over to the companion
662 * controller by the user.
663 */
664
Alan Sterneafe5b92008-10-06 11:25:53 -0400665 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend)
666 || (ehci->reset_done[i] && time_after_eq(
667 jiffies, ehci->reset_done[i]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (i < 7)
669 buf [0] |= 1 << (i + 1);
670 else
671 buf [1] |= 1 << (i - 7);
672 status = STS_PCD;
673 }
674 }
Alan Sternee742902013-01-25 17:17:43 -0500675
676 /* If a resume is in progress, make sure it can finish */
677 if (ehci->resuming_ports)
678 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(25));
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 spin_unlock_irqrestore (&ehci->lock, flags);
681 return status ? retval : 0;
682}
683
684/*-------------------------------------------------------------------------*/
685
686static void
687ehci_hub_descriptor (
688 struct ehci_hcd *ehci,
689 struct usb_hub_descriptor *desc
690) {
691 int ports = HCS_N_PORTS (ehci->hcs_params);
692 u16 temp;
693
Sergei Shtylyov625a4c52015-03-29 01:03:03 +0300694 desc->bDescriptorType = USB_DT_HUB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 desc->bPwrOn2PwrGood = 10; /* ehci 1.0, 2.3.9 says 20ms max */
696 desc->bHubContrCurrent = 0;
697
698 desc->bNbrPorts = ports;
699 temp = 1 + (ports / 8);
700 desc->bDescLength = 7 + 2 * temp;
701
702 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
John Youndbe79bb2001-09-17 00:00:00 -0700703 memset(&desc->u.hs.DeviceRemovable[0], 0, temp);
704 memset(&desc->u.hs.DeviceRemovable[temp], 0xff, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Sergei Shtylyov3a2359e2015-01-19 01:25:44 +0300706 temp = HUB_CHAR_INDV_PORT_OCPM; /* per-port overcurrent reporting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (HCS_PPC (ehci->hcs_params))
Sergei Shtylyov3a2359e2015-01-19 01:25:44 +0300708 temp |= HUB_CHAR_INDV_PORT_LPSM; /* per-port power control */
David Brownell56c1e262005-04-09 09:00:29 -0700709 else
Sergei Shtylyov3a2359e2015-01-19 01:25:44 +0300710 temp |= HUB_CHAR_NO_LPSM; /* no power switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#if 0
712// re-enable when we support USB_PORT_FEAT_INDICATOR below.
713 if (HCS_INDICATOR (ehci->hcs_params))
Sergei Shtylyov3a2359e2015-01-19 01:25:44 +0300714 temp |= HUB_CHAR_PORTIND; /* per-port indicators (LEDs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715#endif
Al Virofd05e722008-04-28 07:00:16 +0100716 desc->wHubCharacteristics = cpu_to_le16(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/*-------------------------------------------------------------------------*/
Jack Pham726a85c2013-08-13 13:40:13 -0700720#ifdef CONFIG_USB_HCD_TEST_MODE
721
Manu Gautam9841f372013-08-08 16:49:24 -0700722#define EHSET_TEST_SINGLE_STEP_SET_FEATURE 0x06
723
724static void usb_ehset_completion(struct urb *urb)
725{
726 struct completion *done = urb->context;
727
728 complete(done);
729}
730static int submit_single_step_set_feature(
731 struct usb_hcd *hcd,
732 struct urb *urb,
733 int is_setup
734);
735
736/*
737 * Allocate and initialize a control URB. This request will be used by the
738 * EHSET SINGLE_STEP_SET_FEATURE test in which the DATA and STATUS stages
739 * of the GetDescriptor request are sent 15 seconds after the SETUP stage.
740 * Return NULL if failed.
741 */
742static struct urb *request_single_step_set_feature_urb(
743 struct usb_device *udev,
744 void *dr,
745 void *buf,
746 struct completion *done
747) {
748 struct urb *urb;
749 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
750 struct usb_host_endpoint *ep;
751
752 urb = usb_alloc_urb(0, GFP_KERNEL);
753 if (!urb)
754 return NULL;
755
756 urb->pipe = usb_rcvctrlpipe(udev, 0);
757 ep = (usb_pipein(urb->pipe) ? udev->ep_in : udev->ep_out)
758 [usb_pipeendpoint(urb->pipe)];
759 if (!ep) {
760 usb_free_urb(urb);
761 return NULL;
762 }
763
764 urb->ep = ep;
765 urb->dev = udev;
766 urb->setup_packet = (void *)dr;
767 urb->transfer_buffer = buf;
768 urb->transfer_buffer_length = USB_DT_DEVICE_SIZE;
769 urb->complete = usb_ehset_completion;
770 urb->status = -EINPROGRESS;
771 urb->actual_length = 0;
772 urb->transfer_flags = URB_DIR_IN;
773 usb_get_urb(urb);
774 atomic_inc(&urb->use_count);
775 atomic_inc(&urb->dev->urbnum);
776 urb->setup_dma = dma_map_single(
Peter Chen02a10f062018-02-01 12:26:43 +0800777 hcd->self.sysdev,
Manu Gautam9841f372013-08-08 16:49:24 -0700778 urb->setup_packet,
779 sizeof(struct usb_ctrlrequest),
780 DMA_TO_DEVICE);
781 urb->transfer_dma = dma_map_single(
Peter Chen02a10f062018-02-01 12:26:43 +0800782 hcd->self.sysdev,
Manu Gautam9841f372013-08-08 16:49:24 -0700783 urb->transfer_buffer,
784 urb->transfer_buffer_length,
785 DMA_FROM_DEVICE);
786 urb->context = done;
787 return urb;
788}
789
790static int ehset_single_step_set_feature(struct usb_hcd *hcd, int port)
791{
792 int retval = -ENOMEM;
793 struct usb_ctrlrequest *dr;
794 struct urb *urb;
795 struct usb_device *udev;
796 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
797 struct usb_device_descriptor *buf;
798 DECLARE_COMPLETION_ONSTACK(done);
799
800 /* Obtain udev of the rhub's child port */
801 udev = usb_hub_find_child(hcd->self.root_hub, port);
802 if (!udev) {
803 ehci_err(ehci, "No device attached to the RootHub\n");
804 return -ENODEV;
805 }
806 buf = kmalloc(USB_DT_DEVICE_SIZE, GFP_KERNEL);
807 if (!buf)
808 return -ENOMEM;
809
810 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
811 if (!dr) {
812 kfree(buf);
813 return -ENOMEM;
814 }
815
816 /* Fill Setup packet for GetDescriptor */
817 dr->bRequestType = USB_DIR_IN;
818 dr->bRequest = USB_REQ_GET_DESCRIPTOR;
819 dr->wValue = cpu_to_le16(USB_DT_DEVICE << 8);
820 dr->wIndex = 0;
821 dr->wLength = cpu_to_le16(USB_DT_DEVICE_SIZE);
822 urb = request_single_step_set_feature_urb(udev, dr, buf, &done);
823 if (!urb)
824 goto cleanup;
825
826 /* Submit just the SETUP stage */
827 retval = submit_single_step_set_feature(hcd, urb, 1);
828 if (retval)
829 goto out1;
830 if (!wait_for_completion_timeout(&done, msecs_to_jiffies(2000))) {
831 usb_kill_urb(urb);
832 retval = -ETIMEDOUT;
833 ehci_err(ehci, "%s SETUP stage timed out on ep0\n", __func__);
834 goto out1;
835 }
836 msleep(15 * 1000);
837
838 /* Complete remaining DATA and STATUS stages using the same URB */
839 urb->status = -EINPROGRESS;
840 usb_get_urb(urb);
841 atomic_inc(&urb->use_count);
842 atomic_inc(&urb->dev->urbnum);
843 retval = submit_single_step_set_feature(hcd, urb, 0);
844 if (!retval && !wait_for_completion_timeout(&done,
845 msecs_to_jiffies(2000))) {
846 usb_kill_urb(urb);
847 retval = -ETIMEDOUT;
848 ehci_err(ehci, "%s IN stage timed out on ep0\n", __func__);
849 }
850out1:
851 usb_free_urb(urb);
852cleanup:
853 kfree(dr);
854 kfree(buf);
855 return retval;
856}
Jack Pham726a85c2013-08-13 13:40:13 -0700857#endif /* CONFIG_USB_HCD_TEST_MODE */
Manu Gautam9841f372013-08-08 16:49:24 -0700858/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Laurent Pinchart37769932014-04-16 18:00:10 +0200860int ehci_hub_control(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct usb_hcd *hcd,
862 u16 typeReq,
863 u16 wValue,
864 u16 wIndex,
865 char *buf,
866 u16 wLength
867) {
868 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
869 int ports = HCS_N_PORTS (ehci->hcs_params);
Alan Stern85e39902016-05-19 16:29:50 -0400870 u32 __iomem *status_reg, *hostpc_reg;
Alek Du331ac6b2009-07-13 12:41:20 +0800871 u32 temp, temp1, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 unsigned long flags;
873 int retval = 0;
David Brownellf0d7f272006-11-16 23:56:15 -0800874 unsigned selector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 /*
Alan Stern85e39902016-05-19 16:29:50 -0400877 * Avoid underflow while calculating (wIndex & 0xff) - 1.
878 * The compiler might deduce that wIndex can never be 0 and then
879 * optimize away the tests for !wIndex below.
880 */
881 temp = wIndex & 0xff;
882 temp -= (temp > 0);
883 status_reg = &ehci->regs->port_status[temp];
884 hostpc_reg = &ehci->regs->hostpc[temp];
885
886 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
888 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
889 * (track current state ourselves) ... blink for diagnostics,
890 * power, "this is the one", etc. EHCI spec supports this.
891 */
892
893 spin_lock_irqsave (&ehci->lock, flags);
894 switch (typeReq) {
895 case ClearHubFeature:
896 switch (wValue) {
897 case C_HUB_LOCAL_POWER:
898 case C_HUB_OVER_CURRENT:
899 /* no hub-wide feature/status flags */
900 break;
901 default:
902 goto error;
903 }
904 break;
905 case ClearPortFeature:
906 if (!wIndex || wIndex > ports)
907 goto error;
908 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -0500909 temp = ehci_readl(ehci, status_reg);
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600910 temp &= ~PORT_RWC_BITS;
Alan Stern625b5c92007-01-16 11:58:47 -0500911
912 /*
913 * Even if OWNER is set, so the port is owned by the
Petr Mladek37ebb542014-09-19 17:32:23 +0200914 * companion controller, hub_wq needs to be able to clear
Alan Stern625b5c92007-01-16 11:58:47 -0500915 * the port-change status bits (especially
Alan Stern749da5f2010-03-04 17:05:08 -0500916 * USB_PORT_STAT_C_CONNECTION).
Alan Stern625b5c92007-01-16 11:58:47 -0500917 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 switch (wValue) {
920 case USB_PORT_FEAT_ENABLE:
Alan Sterne6316562007-01-16 11:58:00 -0500921 ehci_writel(ehci, temp & ~PORT_PE, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
923 case USB_PORT_FEAT_C_ENABLE:
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600924 ehci_writel(ehci, temp | PORT_PEC, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 break;
926 case USB_PORT_FEAT_SUSPEND:
927 if (temp & PORT_RESET)
928 goto error;
David Brownellf8aeb3b2006-01-20 13:55:14 -0800929 if (ehci->no_selective_suspend)
930 break;
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200931#ifdef CONFIG_USB_OTG
932 if ((hcd->self.otg_port == (wIndex + 1))
933 && hcd->self.b_hnp_enable) {
Antoine Tenart3d46e732014-09-24 23:05:50 +0400934 otg_start_hnp(hcd->usb_phy->otg);
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200935 break;
936 }
937#endif
Alan Stern16032c42010-05-12 18:21:35 -0400938 if (!(temp & PORT_SUSPEND))
939 break;
940 if ((temp & PORT_PE) == 0)
941 goto error;
942
943 /* clear phy low-power mode before resume */
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +0300944 if (ehci->has_tdi_phy_lpm) {
Alan Stern16032c42010-05-12 18:21:35 -0400945 temp1 = ehci_readl(ehci, hostpc_reg);
946 ehci_writel(ehci, temp1 & ~HOSTPC_PHCD,
Alek Dueab80de2010-05-10 11:17:49 +0800947 hostpc_reg);
Alan Stern16032c42010-05-12 18:21:35 -0400948 spin_unlock_irqrestore(&ehci->lock, flags);
949 msleep(5);/* wait to leave low-power mode */
950 spin_lock_irqsave(&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Alan Stern16032c42010-05-12 18:21:35 -0400952 /* resume signaling for 20 msec */
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600953 temp &= ~PORT_WAKE_BITS;
Alan Stern16032c42010-05-12 18:21:35 -0400954 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
955 ehci->reset_done[wIndex] = jiffies
Felipe Balbiea163282015-02-13 14:42:25 -0600956 + msecs_to_jiffies(USB_RESUME_TIMEOUT);
Alan Stern3a204462013-08-01 17:09:23 -0400957 set_bit(wIndex, &ehci->resuming_ports);
958 usb_hcd_start_port_resume(&hcd->self, wIndex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 break;
960 case USB_PORT_FEAT_C_SUSPEND:
Alan Sternd1f114d2008-05-20 16:58:58 -0400961 clear_bit(wIndex, &ehci->port_c_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 case USB_PORT_FEAT_POWER:
Michael Grzeschik11a7e592014-10-13 09:53:03 +0800964 if (HCS_PPC(ehci->hcs_params)) {
965 spin_unlock_irqrestore(&ehci->lock, flags);
966 ehci_port_power(ehci, wIndex, false);
967 spin_lock_irqsave(&ehci->lock, flags);
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 case USB_PORT_FEAT_C_CONNECTION:
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600971 ehci_writel(ehci, temp | PORT_CSC, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 break;
973 case USB_PORT_FEAT_C_OVER_CURRENT:
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600974 ehci_writel(ehci, temp | PORT_OCC, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
976 case USB_PORT_FEAT_C_RESET:
977 /* GetPortStatus clears reset */
978 break;
979 default:
980 goto error;
981 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100982 ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984 case GetHubDescriptor:
985 ehci_hub_descriptor (ehci, (struct usb_hub_descriptor *)
986 buf);
987 break;
988 case GetHubStatus:
989 /* no hub-wide feature/status flags */
990 memset (buf, 0, 4);
991 //cpu_to_le32s ((u32 *) buf);
992 break;
993 case GetPortStatus:
994 if (!wIndex || wIndex > ports)
995 goto error;
996 wIndex--;
997 status = 0;
Alan Sterne6316562007-01-16 11:58:00 -0500998 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 // wPortChange bits
1001 if (temp & PORT_CSC)
Alan Stern749da5f2010-03-04 17:05:08 -05001002 status |= USB_PORT_STAT_C_CONNECTION << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (temp & PORT_PEC)
Alan Stern749da5f2010-03-04 17:05:08 -05001004 status |= USB_PORT_STAT_C_ENABLE << 16;
Christian Engelmayer756aa6b2007-05-30 11:04:48 -07001005
1006 if ((temp & PORT_OCC) && !ignore_oc){
Alan Stern749da5f2010-03-04 17:05:08 -05001007 status |= USB_PORT_STAT_C_OVERCURRENT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Christian Engelmayer756aa6b2007-05-30 11:04:48 -07001009 /*
1010 * Hubs should disable port power on over-current.
1011 * However, not all EHCI implementations do this
1012 * automatically, even if they _do_ support per-port
1013 * power switching; they're allowed to just limit the
Petr Mladek37ebb542014-09-19 17:32:23 +02001014 * current. hub_wq will turn the power back on.
Christian Engelmayer756aa6b2007-05-30 11:04:48 -07001015 */
Christian Engelmayere6604a72013-04-03 12:18:51 +02001016 if (((temp & PORT_OC) || (ehci->need_oc_pp_cycle))
1017 && HCS_PPC(ehci->hcs_params)) {
Michael Grzeschik11a7e592014-10-13 09:53:03 +08001018 spin_unlock_irqrestore(&ehci->lock, flags);
1019 ehci_port_power(ehci, wIndex, false);
1020 spin_lock_irqsave(&ehci->lock, flags);
Sergei Shtylyov81463c12011-07-06 23:19:38 +04001021 temp = ehci_readl(ehci, status_reg);
Christian Engelmayer756aa6b2007-05-30 11:04:48 -07001022 }
1023 }
1024
Alan Stern6753f4c2013-08-01 17:09:28 -04001025 /* no reset or resume pending */
1026 if (!ehci->reset_done[wIndex]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Alan Stern629e4422007-01-22 16:08:53 -05001028 /* Remote Wakeup received? */
Alan Stern6753f4c2013-08-01 17:09:28 -04001029 if (temp & PORT_RESUME) {
Alan Stern629e4422007-01-22 16:08:53 -05001030 /* resume signaling for 20 msec */
1031 ehci->reset_done[wIndex] = jiffies
1032 + msecs_to_jiffies(20);
Alan Sternf292e7f2013-01-25 17:09:49 -05001033 usb_hcd_start_port_resume(&hcd->self, wIndex);
Roger Quadros47a64a12013-07-09 17:03:50 +03001034 set_bit(wIndex, &ehci->resuming_ports);
Alan Stern629e4422007-01-22 16:08:53 -05001035 /* check the port again */
1036 mod_timer(&ehci_to_hcd(ehci)->rh_timer,
1037 ehci->reset_done[wIndex]);
1038 }
1039
Alan Stern6753f4c2013-08-01 17:09:28 -04001040 /* reset or resume not yet complete */
1041 } else if (!time_after_eq(jiffies, ehci->reset_done[wIndex])) {
1042 ; /* wait until it is complete */
Alan Stern629e4422007-01-22 16:08:53 -05001043
Alan Stern6753f4c2013-08-01 17:09:28 -04001044 /* resume completed */
1045 } else if (test_bit(wIndex, &ehci->resuming_ports)) {
1046 clear_bit(wIndex, &ehci->suspended_ports);
1047 set_bit(wIndex, &ehci->port_c_suspend);
1048 ehci->reset_done[wIndex] = 0;
1049 usb_hcd_end_port_resume(&hcd->self, wIndex);
1050
1051 /* stop resume signaling */
1052 temp &= ~(PORT_RWC_BITS | PORT_SUSPEND | PORT_RESUME);
1053 ehci_writel(ehci, temp, status_reg);
1054 clear_bit(wIndex, &ehci->resuming_ports);
1055 retval = ehci_handshake(ehci, status_reg,
1056 PORT_RESUME, 0, 2000 /* 2msec */);
1057 if (retval != 0) {
1058 ehci_err(ehci, "port %d resume error %d\n",
Alan Stern629e4422007-01-22 16:08:53 -05001059 wIndex + 1, retval);
Alan Stern6753f4c2013-08-01 17:09:28 -04001060 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
Alan Stern6753f4c2013-08-01 17:09:28 -04001062 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /* whoever resets must GetPortStatus to complete it!! */
Alan Stern6753f4c2013-08-01 17:09:28 -04001065 } else {
Alan Stern749da5f2010-03-04 17:05:08 -05001066 status |= USB_PORT_STAT_C_RESET << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 ehci->reset_done [wIndex] = 0;
1068
1069 /* force reset to complete */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001070 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
Alan Sterne6316562007-01-16 11:58:00 -05001071 status_reg);
David Brownellc22fa3a2005-06-13 07:15:28 -07001072 /* REVISIT: some hardware needs 550+ usec to clear
1073 * this bit; seems too long to spin routinely...
1074 */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -06001075 retval = ehci_handshake(ehci, status_reg,
Dinh Nguyen6307e092010-04-13 11:13:15 -05001076 PORT_RESET, 0, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (retval != 0) {
1078 ehci_err (ehci, "port %d reset error %d\n",
1079 wIndex + 1, retval);
1080 goto error;
1081 }
1082
1083 /* see what we found out */
Alan Sterne6316562007-01-16 11:58:00 -05001084 temp = check_reset_complete (ehci, wIndex, status_reg,
1085 ehci_readl(ehci, status_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Alan Stern57e06c12007-01-16 11:59:45 -05001088 /* transfer dedicated ports to the companion hc */
1089 if ((temp & PORT_CONNECT) &&
1090 test_bit(wIndex, &ehci->companion_ports)) {
1091 temp &= ~PORT_RWC_BITS;
1092 temp |= PORT_OWNER;
1093 ehci_writel(ehci, temp, status_reg);
1094 ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
1095 temp = ehci_readl(ehci, status_reg);
1096 }
1097
Alan Stern625b5c92007-01-16 11:58:47 -05001098 /*
Petr Mladek37ebb542014-09-19 17:32:23 +02001099 * Even if OWNER is set, there's no harm letting hub_wq
Alan Stern625b5c92007-01-16 11:58:47 -05001100 * see the wPortStatus values (they should all be 0 except
1101 * for PORT_POWER anyway).
1102 */
1103
1104 if (temp & PORT_CONNECT) {
Alan Stern749da5f2010-03-04 17:05:08 -05001105 status |= USB_PORT_STAT_CONNECTION;
Alan Stern625b5c92007-01-16 11:58:47 -05001106 // status may be from integrated TT
Alek Du331ac6b2009-07-13 12:41:20 +08001107 if (ehci->has_hostpc) {
1108 temp1 = ehci_readl(ehci, hostpc_reg);
1109 status |= ehci_port_speed(ehci, temp1);
1110 } else
1111 status |= ehci_port_speed(ehci, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
Alan Stern625b5c92007-01-16 11:58:47 -05001113 if (temp & PORT_PE)
Alan Stern749da5f2010-03-04 17:05:08 -05001114 status |= USB_PORT_STAT_ENABLE;
Alan Sterneafe5b92008-10-06 11:25:53 -04001115
1116 /* maybe the port was unsuspended without our knowledge */
1117 if (temp & (PORT_SUSPEND|PORT_RESUME)) {
Alan Stern749da5f2010-03-04 17:05:08 -05001118 status |= USB_PORT_STAT_SUSPEND;
Alan Sterneafe5b92008-10-06 11:25:53 -04001119 } else if (test_bit(wIndex, &ehci->suspended_ports)) {
1120 clear_bit(wIndex, &ehci->suspended_ports);
Alan Sterna448e4d2012-04-03 15:24:30 -04001121 clear_bit(wIndex, &ehci->resuming_ports);
Alan Sterneafe5b92008-10-06 11:25:53 -04001122 ehci->reset_done[wIndex] = 0;
1123 if (temp & PORT_PE)
1124 set_bit(wIndex, &ehci->port_c_suspend);
Alan Sternf292e7f2013-01-25 17:09:49 -05001125 usb_hcd_end_port_resume(&hcd->self, wIndex);
Alan Sterneafe5b92008-10-06 11:25:53 -04001126 }
1127
Alan Stern625b5c92007-01-16 11:58:47 -05001128 if (temp & PORT_OC)
Alan Stern749da5f2010-03-04 17:05:08 -05001129 status |= USB_PORT_STAT_OVERCURRENT;
Alan Stern625b5c92007-01-16 11:58:47 -05001130 if (temp & PORT_RESET)
Alan Stern749da5f2010-03-04 17:05:08 -05001131 status |= USB_PORT_STAT_RESET;
Alan Stern625b5c92007-01-16 11:58:47 -05001132 if (temp & PORT_POWER)
Alan Stern749da5f2010-03-04 17:05:08 -05001133 status |= USB_PORT_STAT_POWER;
Alan Sternd1f114d2008-05-20 16:58:58 -04001134 if (test_bit(wIndex, &ehci->port_c_suspend))
Alan Stern749da5f2010-03-04 17:05:08 -05001135 status |= USB_PORT_STAT_C_SUSPEND << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Oliver Neukumbbcd5ca2013-11-18 13:23:01 +01001137 if (status & ~0xffff) /* only if wPortChange is interesting */
1138 dbg_port(ehci, "GetStatus", wIndex + 1, temp);
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001139 put_unaligned_le32(status, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 break;
1141 case SetHubFeature:
1142 switch (wValue) {
1143 case C_HUB_LOCAL_POWER:
1144 case C_HUB_OVER_CURRENT:
1145 /* no hub-wide feature/status flags */
1146 break;
1147 default:
1148 goto error;
1149 }
1150 break;
1151 case SetPortFeature:
David Brownellf0d7f272006-11-16 23:56:15 -08001152 selector = wIndex >> 8;
1153 wIndex &= 0xff;
Jason Wessel8d053c72009-08-20 15:39:54 -05001154 if (unlikely(ehci->debug)) {
1155 /* If the debug port is active any port
1156 * feature requests should get denied */
1157 if (wIndex == HCS_DEBUG_PORT(ehci->hcs_params) &&
1158 (readl(&ehci->debug->control) & DBGP_ENABLED)) {
1159 retval = -ENODEV;
1160 goto error_exit;
1161 }
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (!wIndex || wIndex > ports)
1164 goto error;
1165 wIndex--;
Alan Sterne6316562007-01-16 11:58:00 -05001166 temp = ehci_readl(ehci, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (temp & PORT_OWNER)
1168 break;
1169
David Brownell10f65242005-08-31 10:55:38 -07001170 temp &= ~PORT_RWC_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 switch (wValue) {
1172 case USB_PORT_FEAT_SUSPEND:
David Brownellf8aeb3b2006-01-20 13:55:14 -08001173 if (ehci->no_selective_suspend)
1174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if ((temp & PORT_PE) == 0
1176 || (temp & PORT_RESET) != 0)
1177 goto error;
Alek Dub9df79422010-01-19 16:31:31 +08001178
Alek Du331ac6b2009-07-13 12:41:20 +08001179 /* After above check the port must be connected.
1180 * Set appropriate bit thus could put phy into low power
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +03001181 * mode if we have tdi_phy_lpm feature
Alek Du331ac6b2009-07-13 12:41:20 +08001182 */
Alek Dub9df79422010-01-19 16:31:31 +08001183 temp &= ~PORT_WKCONN_E;
1184 temp |= PORT_WKDISC_E | PORT_WKOC_E;
1185 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +03001186 if (ehci->has_tdi_phy_lpm) {
Alek Dub9df79422010-01-19 16:31:31 +08001187 spin_unlock_irqrestore(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +08001188 msleep(5);/* 5ms for HCD enter low pwr mode */
Alek Dub9df79422010-01-19 16:31:31 +08001189 spin_lock_irqsave(&ehci->lock, flags);
Alek Du331ac6b2009-07-13 12:41:20 +08001190 temp1 = ehci_readl(ehci, hostpc_reg);
1191 ehci_writel(ehci, temp1 | HOSTPC_PHCD,
1192 hostpc_reg);
1193 temp1 = ehci_readl(ehci, hostpc_reg);
1194 ehci_dbg(ehci, "Port%d phy low pwr mode %s\n",
1195 wIndex, (temp1 & HOSTPC_PHCD) ?
1196 "succeeded" : "failed");
1197 }
Changming Huang9d4b8272016-11-29 13:45:38 +08001198 if (ehci_has_fsl_susp_errata(ehci)) {
1199 /* 10ms for HCD enter suspend */
1200 spin_unlock_irqrestore(&ehci->lock, flags);
1201 usleep_range(10000, 20000);
1202 spin_lock_irqsave(&ehci->lock, flags);
1203 }
Alan Sterneafe5b92008-10-06 11:25:53 -04001204 set_bit(wIndex, &ehci->suspended_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 break;
1206 case USB_PORT_FEAT_POWER:
Michael Grzeschik11a7e592014-10-13 09:53:03 +08001207 if (HCS_PPC(ehci->hcs_params)) {
1208 spin_unlock_irqrestore(&ehci->lock, flags);
1209 ehci_port_power(ehci, wIndex, true);
1210 spin_lock_irqsave(&ehci->lock, flags);
1211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
1213 case USB_PORT_FEAT_RESET:
Alan Stern6753f4c2013-08-01 17:09:28 -04001214 if (temp & (PORT_SUSPEND|PORT_RESUME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 goto error;
1216 /* line status bits may report this as low speed,
1217 * which can be fine if this root hub has a
1218 * transaction translator built in.
1219 */
1220 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
1221 && !ehci_is_TDI(ehci)
1222 && PORT_USB11 (temp)) {
1223 ehci_dbg (ehci,
1224 "port %d low speed --> companion\n",
1225 wIndex + 1);
1226 temp |= PORT_OWNER;
1227 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 temp |= PORT_RESET;
1229 temp &= ~PORT_PE;
1230
1231 /*
1232 * caller must wait, then call GetPortStatus
1233 * usb 2.0 spec says 50 ms resets on root
1234 */
1235 ehci->reset_done [wIndex] = jiffies
1236 + msecs_to_jiffies (50);
Nikhil Badolaf8786a92015-08-06 14:51:27 +05301237
1238 /*
1239 * Force full-speed connect for FSL high-speed
1240 * erratum; disable HS Chirp by setting PFSC bit
1241 */
1242 if (ehci_has_fsl_hs_errata(ehci))
1243 temp |= (1 << PORTSC_FSL_PFSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Alan Sterne6316562007-01-16 11:58:00 -05001245 ehci_writel(ehci, temp, status_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
David Brownellf0d7f272006-11-16 23:56:15 -08001247
1248 /* For downstream facing ports (these): one hub port is put
1249 * into test mode according to USB2 11.24.2.13, then the hub
1250 * must be reset (which for root hub now means rmmod+modprobe,
1251 * or else system reboot). See EHCI 2.3.9 and 4.14 for info
1252 * about the EHCI-specific stuff.
1253 */
1254 case USB_PORT_FEAT_TEST:
Jack Pham726a85c2013-08-13 13:40:13 -07001255#ifdef CONFIG_USB_HCD_TEST_MODE
Manu Gautam9841f372013-08-08 16:49:24 -07001256 if (selector == EHSET_TEST_SINGLE_STEP_SET_FEATURE) {
1257 spin_unlock_irqrestore(&ehci->lock, flags);
1258 retval = ehset_single_step_set_feature(hcd,
Peter Chen5cbcc352014-08-05 08:28:19 +08001259 wIndex + 1);
Manu Gautam9841f372013-08-08 16:49:24 -07001260 spin_lock_irqsave(&ehci->lock, flags);
1261 break;
Jack Pham726a85c2013-08-13 13:40:13 -07001262 }
1263#endif
1264 if (!selector || selector > 5)
David Brownellf0d7f272006-11-16 23:56:15 -08001265 goto error;
Alan Sternc4f34762012-07-11 11:23:10 -04001266 spin_unlock_irqrestore(&ehci->lock, flags);
David Brownellf0d7f272006-11-16 23:56:15 -08001267 ehci_quiesce(ehci);
Alan Sternc4f34762012-07-11 11:23:10 -04001268 spin_lock_irqsave(&ehci->lock, flags);
Boris Todorov77636c82011-07-11 12:03:33 +03001269
1270 /* Put all enabled ports into suspend */
1271 while (ports--) {
1272 u32 __iomem *sreg =
1273 &ehci->regs->port_status[ports];
1274
1275 temp = ehci_readl(ehci, sreg) & ~PORT_RWC_BITS;
1276 if (temp & PORT_PE)
1277 ehci_writel(ehci, temp | PORT_SUSPEND,
1278 sreg);
1279 }
Alan Sternc4f34762012-07-11 11:23:10 -04001280
1281 spin_unlock_irqrestore(&ehci->lock, flags);
David Brownellf0d7f272006-11-16 23:56:15 -08001282 ehci_halt(ehci);
Alan Sternc4f34762012-07-11 11:23:10 -04001283 spin_lock_irqsave(&ehci->lock, flags);
1284
Boris Todorov77636c82011-07-11 12:03:33 +03001285 temp = ehci_readl(ehci, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -08001286 temp |= selector << 16;
Alan Sterne6316562007-01-16 11:58:00 -05001287 ehci_writel(ehci, temp, status_reg);
David Brownellf0d7f272006-11-16 23:56:15 -08001288 break;
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 default:
1291 goto error;
1292 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001293 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295
1296 default:
1297error:
1298 /* "stall" on error */
1299 retval = -EPIPE;
1300 }
Jason Wessel8d053c72009-08-20 15:39:54 -05001301error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 spin_unlock_irqrestore (&ehci->lock, flags);
1303 return retval;
1304}
Laurent Pinchart37769932014-04-16 18:00:10 +02001305EXPORT_SYMBOL_GPL(ehci_hub_control);
Balaji Rao90da0962007-11-22 01:58:14 +05301306
Alan Stern3e023202012-11-01 11:12:58 -04001307static void ehci_relinquish_port(struct usb_hcd *hcd, int portnum)
Balaji Rao90da0962007-11-22 01:58:14 +05301308{
1309 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1310
1311 if (ehci_is_TDI(ehci))
1312 return;
1313 set_owner(ehci, --portnum, PORT_OWNER);
1314}
1315
Alan Stern3e023202012-11-01 11:12:58 -04001316static int ehci_port_handed_over(struct usb_hcd *hcd, int portnum)
Alan Stern3a311552008-05-20 16:58:29 -04001317{
1318 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1319 u32 __iomem *reg;
1320
1321 if (ehci_is_TDI(ehci))
1322 return 0;
1323 reg = &ehci->regs->port_status[portnum - 1];
1324 return ehci_readl(ehci, reg) & PORT_OWNER;
1325}
Michael Grzeschik11a7e592014-10-13 09:53:03 +08001326
1327static int ehci_port_power(struct ehci_hcd *ehci, int portnum, bool enable)
1328{
1329 struct usb_hcd *hcd = ehci_to_hcd(ehci);
1330 u32 __iomem *status_reg = &ehci->regs->port_status[portnum];
1331 u32 temp = ehci_readl(ehci, status_reg) & ~PORT_RWC_BITS;
1332
1333 if (enable)
1334 ehci_writel(ehci, temp | PORT_POWER, status_reg);
1335 else
1336 ehci_writel(ehci, temp & ~PORT_POWER, status_reg);
1337
1338 if (hcd->driver->port_power)
1339 hcd->driver->port_power(hcd, portnum, enable);
1340
1341 return 0;
1342}