blob: 0d79ec3ea84abfc8d61988cbfc30c8ba17cec60e [file] [log] [blame]
Marek Vasut23faf2b2012-02-13 18:58:17 +00001/*
2 *
3 * Most of this source has been derived from the Linux USB
4 * project:
5 * (C) Copyright Linus Torvalds 1999
6 * (C) Copyright Johannes Erdfelt 1999-2001
7 * (C) Copyright Andreas Gal 1999
8 * (C) Copyright Gregory P. Smith 1999
9 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
10 * (C) Copyright Randy Dunlap 2000
11 * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id)
12 * (C) Copyright Yggdrasil Computing, Inc. 2000
13 * (usb_device_id matching changes by Adam J. Richter)
14 *
15 * Adapted for U-Boot:
16 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
17 *
18 * See file CREDITS for list of people who contributed to this
19 * project.
20 *
21 * This program is free software; you can redistribute it and/or
22 * modify it under the terms of the GNU General Public License as
23 * published by the Free Software Foundation; either version 2 of
24 * the License, or (at your option) any later version.
25 *
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
34 * MA 02111-1307 USA
35 *
36 */
37
38/****************************************************************************
39 * HUB "Driver"
40 * Probes device for being a hub and configurate it
41 */
42
43#include <common.h>
44#include <command.h>
45#include <asm/processor.h>
Lucas Stach93ad9082012-09-06 08:00:13 +020046#include <asm/unaligned.h>
Marek Vasut23faf2b2012-02-13 18:58:17 +000047#include <linux/ctype.h>
48#include <asm/byteorder.h>
49#include <asm/unaligned.h>
50
51#include <usb.h>
52#ifdef CONFIG_4xx
53#include <asm/4xx_pci.h>
54#endif
55
Marek Vasut23faf2b2012-02-13 18:58:17 +000056#define USB_BUFSIZ 512
57
58static struct usb_hub_device hub_dev[USB_MAX_HUB];
59static int usb_hub_index;
60
61
62static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
63{
64 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
65 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
66 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
67}
68
69static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
70{
71 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
72 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
73 port, NULL, 0, USB_CNTL_TIMEOUT);
74}
75
76static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
77{
78 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
79 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
80 port, NULL, 0, USB_CNTL_TIMEOUT);
81}
82
83static int usb_get_hub_status(struct usb_device *dev, void *data)
84{
85 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
86 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
87 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
88}
89
90static int usb_get_port_status(struct usb_device *dev, int port, void *data)
91{
92 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
93 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
94 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
95}
96
97
98static void usb_hub_power_on(struct usb_hub_device *hub)
99{
100 int i;
101 struct usb_device *dev;
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000102 unsigned pgood_delay = hub->desc.bPwrOn2PwrGood * 2;
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530103 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
104 unsigned short portstatus;
105 int ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000106
107 dev = hub->pusb_dev;
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000108
109 /*
110 * Enable power to the ports:
111 * Here we Power-cycle the ports: aka,
112 * turning them off and turning on again.
113 */
Vivek Gautamceb49722013-04-12 16:34:33 +0530114 debug("enabling power on all ports\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000115 for (i = 0; i < dev->maxchild; i++) {
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530116 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
117 debug("port %d returns %lX\n", i + 1, dev->status);
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000118 }
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530119
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000120 /* Wait at least 2*bPwrOn2PwrGood for PP to change */
121 mdelay(pgood_delay);
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530122
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000123 for (i = 0; i < dev->maxchild; i++) {
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530124 ret = usb_get_port_status(dev, i + 1, portsts);
125 if (ret < 0) {
126 debug("port %d: get_port_status failed\n", i + 1);
127 return;
128 }
129
130 /*
131 * Check to confirm the state of Port Power:
132 * xHCI says "After modifying PP, s/w shall read
133 * PP and confirm that it has reached the desired state
134 * before modifying it again, undefined behavior may occur
135 * if this procedure is not followed".
136 * EHCI doesn't say anything like this, but no harm in keeping
137 * this.
138 */
139 portstatus = le16_to_cpu(portsts->wPortStatus);
140 if (portstatus & (USB_PORT_STAT_POWER << 1)) {
141 debug("port %d: Port power change failed\n", i + 1);
142 return;
143 }
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000144 }
Vivek Gautam020bbcb2013-04-12 16:34:35 +0530145
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000146 for (i = 0; i < dev->maxchild; i++) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000147 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Vivek Gautamceb49722013-04-12 16:34:33 +0530148 debug("port %d returns %lX\n", i + 1, dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000149 }
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000150
151 /* Wait at least 100 msec for power to become stable */
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000152 mdelay(max(pgood_delay, (unsigned)100));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000153}
154
155void usb_hub_reset(void)
156{
157 usb_hub_index = 0;
158}
159
160static struct usb_hub_device *usb_hub_allocate(void)
161{
162 if (usb_hub_index < USB_MAX_HUB)
163 return &hub_dev[usb_hub_index++];
164
165 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
166 return NULL;
167}
168
169#define MAX_TRIES 5
170
171static inline char *portspeed(int portstatus)
172{
Vivek Gautam55f4b572013-04-24 02:50:12 +0000173 char *speed_str;
174
175 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
176 case USB_PORT_STAT_SUPER_SPEED:
177 speed_str = "5 Gb/s";
178 break;
179 case USB_PORT_STAT_HIGH_SPEED:
180 speed_str = "480 Mb/s";
181 break;
182 case USB_PORT_STAT_LOW_SPEED:
183 speed_str = "1.5 Mb/s";
184 break;
185 default:
186 speed_str = "12 Mb/s";
187 break;
188 }
189
190 return speed_str;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000191}
192
193int hub_port_reset(struct usb_device *dev, int port,
194 unsigned short *portstat)
195{
196 int tries;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530197 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000198 unsigned short portstatus, portchange;
199
Vivek Gautamceb49722013-04-12 16:34:33 +0530200 debug("hub_port_reset: resetting port %d...\n", port);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000201 for (tries = 0; tries < MAX_TRIES; tries++) {
202
203 usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000204 mdelay(200);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000205
Puneet Saxenaf5766132012-04-03 14:56:06 +0530206 if (usb_get_port_status(dev, port + 1, portsts) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530207 debug("get_port_status failed status %lX\n",
208 dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000209 return -1;
210 }
Puneet Saxenaf5766132012-04-03 14:56:06 +0530211 portstatus = le16_to_cpu(portsts->wPortStatus);
212 portchange = le16_to_cpu(portsts->wPortChange);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000213
Vivek Gautamceb49722013-04-12 16:34:33 +0530214 debug("portstatus %x, change %x, %s\n", portstatus, portchange,
215 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000216
Vivek Gautamceb49722013-04-12 16:34:33 +0530217 debug("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
218 " USB_PORT_STAT_ENABLE %d\n",
219 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
220 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
221 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000222
223 if ((portchange & USB_PORT_STAT_C_CONNECTION) ||
224 !(portstatus & USB_PORT_STAT_CONNECTION))
225 return -1;
226
227 if (portstatus & USB_PORT_STAT_ENABLE)
228 break;
229
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000230 mdelay(200);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000231 }
232
233 if (tries == MAX_TRIES) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530234 debug("Cannot enable port %i after %i retries, " \
235 "disabling port.\n", port + 1, MAX_TRIES);
236 debug("Maybe the USB cable is bad?\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000237 return -1;
238 }
239
240 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
241 *portstat = portstatus;
242 return 0;
243}
244
245
246void usb_hub_port_connect_change(struct usb_device *dev, int port)
247{
248 struct usb_device *usb;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530249 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000250 unsigned short portstatus;
251
252 /* Check status */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530253 if (usb_get_port_status(dev, port + 1, portsts) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530254 debug("get_port_status failed\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000255 return;
256 }
257
Puneet Saxenaf5766132012-04-03 14:56:06 +0530258 portstatus = le16_to_cpu(portsts->wPortStatus);
Vivek Gautamceb49722013-04-12 16:34:33 +0530259 debug("portstatus %x, change %x, %s\n",
260 portstatus,
261 le16_to_cpu(portsts->wPortChange),
262 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000263
264 /* Clear the connection change status */
265 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
266
267 /* Disconnect any existing devices under this port */
268 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
269 (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530270 debug("usb_disconnect(&hub->children[port]);\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000271 /* Return now if nothing is connected */
272 if (!(portstatus & USB_PORT_STAT_CONNECTION))
273 return;
274 }
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000275 mdelay(200);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000276
277 /* Reset the port */
278 if (hub_port_reset(dev, port, &portstatus) < 0) {
279 printf("cannot reset port %i!?\n", port + 1);
280 return;
281 }
282
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000283 mdelay(200);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000284
285 /* Allocate a new device struct for it */
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200286 usb = usb_alloc_new_device(dev->controller);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000287
Vivek Gautam55f4b572013-04-24 02:50:12 +0000288 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
289 case USB_PORT_STAT_SUPER_SPEED:
Vivek Gautam6497c662013-04-12 16:34:38 +0530290 usb->speed = USB_SPEED_SUPER;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000291 break;
292 case USB_PORT_STAT_HIGH_SPEED:
Marek Vasut23faf2b2012-02-13 18:58:17 +0000293 usb->speed = USB_SPEED_HIGH;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000294 break;
295 case USB_PORT_STAT_LOW_SPEED:
Marek Vasut23faf2b2012-02-13 18:58:17 +0000296 usb->speed = USB_SPEED_LOW;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000297 break;
298 default:
Marek Vasut23faf2b2012-02-13 18:58:17 +0000299 usb->speed = USB_SPEED_FULL;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000300 break;
301 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000302
303 dev->children[port] = usb;
304 usb->parent = dev;
305 usb->portnr = port + 1;
306 /* Run it through the hoops (find a driver, etc) */
307 if (usb_new_device(usb)) {
308 /* Woops, disable the port */
Milind Choudhary359439d2012-12-12 17:55:28 -0800309 usb_free_device();
310 dev->children[port] = NULL;
Vivek Gautamceb49722013-04-12 16:34:33 +0530311 debug("hub: disabling port %d\n", port + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000312 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
313 }
314}
315
316
317static int usb_hub_configure(struct usb_device *dev)
318{
319 int i;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530320 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, USB_BUFSIZ);
321 unsigned char *bitmap;
Lucas Stach93ad9082012-09-06 08:00:13 +0200322 short hubCharacteristics;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000323 struct usb_hub_descriptor *descriptor;
324 struct usb_hub_device *hub;
Vivek Gautamceb49722013-04-12 16:34:33 +0530325 __maybe_unused struct usb_hub_status *hubsts;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000326
327 /* "allocate" Hub device */
328 hub = usb_hub_allocate();
329 if (hub == NULL)
330 return -1;
331 hub->pusb_dev = dev;
332 /* Get the the hub descriptor */
333 if (usb_get_hub_descriptor(dev, buffer, 4) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530334 debug("usb_hub_configure: failed to get hub " \
335 "descriptor, giving up %lX\n", dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000336 return -1;
337 }
338 descriptor = (struct usb_hub_descriptor *)buffer;
339
340 /* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
341 i = descriptor->bLength;
342 if (i > USB_BUFSIZ) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530343 debug("usb_hub_configure: failed to get hub " \
344 "descriptor - too long: %d\n", descriptor->bLength);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000345 return -1;
346 }
347
348 if (usb_get_hub_descriptor(dev, buffer, descriptor->bLength) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530349 debug("usb_hub_configure: failed to get hub " \
350 "descriptor 2nd giving up %lX\n", dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000351 return -1;
352 }
353 memcpy((unsigned char *)&hub->desc, buffer, descriptor->bLength);
354 /* adjust 16bit values */
Lucas Stach93ad9082012-09-06 08:00:13 +0200355 put_unaligned(le16_to_cpu(get_unaligned(
356 &descriptor->wHubCharacteristics)),
357 &hub->desc.wHubCharacteristics);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000358 /* set the bitmap */
359 bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0];
360 /* devices not removable by default */
361 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
362 bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0];
363 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
364
365 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
366 hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i];
367
368 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
369 hub->desc.PortPowerCtrlMask[i] = descriptor->PortPowerCtrlMask[i];
370
371 dev->maxchild = descriptor->bNbrPorts;
Vivek Gautamceb49722013-04-12 16:34:33 +0530372 debug("%d ports detected\n", dev->maxchild);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000373
Lucas Stach93ad9082012-09-06 08:00:13 +0200374 hubCharacteristics = get_unaligned(&hub->desc.wHubCharacteristics);
375 switch (hubCharacteristics & HUB_CHAR_LPSM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000376 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530377 debug("ganged power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000378 break;
379 case 0x01:
Vivek Gautamceb49722013-04-12 16:34:33 +0530380 debug("individual port power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000381 break;
382 case 0x02:
383 case 0x03:
Vivek Gautamceb49722013-04-12 16:34:33 +0530384 debug("unknown reserved power switching mode\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000385 break;
386 }
387
Lucas Stach93ad9082012-09-06 08:00:13 +0200388 if (hubCharacteristics & HUB_CHAR_COMPOUND)
Vivek Gautamceb49722013-04-12 16:34:33 +0530389 debug("part of a compound device\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000390 else
Vivek Gautamceb49722013-04-12 16:34:33 +0530391 debug("standalone hub\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000392
Lucas Stach93ad9082012-09-06 08:00:13 +0200393 switch (hubCharacteristics & HUB_CHAR_OCPM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000394 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530395 debug("global over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000396 break;
397 case 0x08:
Vivek Gautamceb49722013-04-12 16:34:33 +0530398 debug("individual port over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000399 break;
400 case 0x10:
401 case 0x18:
Vivek Gautamceb49722013-04-12 16:34:33 +0530402 debug("no over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000403 break;
404 }
405
Vivek Gautamceb49722013-04-12 16:34:33 +0530406 debug("power on to power good time: %dms\n",
407 descriptor->bPwrOn2PwrGood * 2);
408 debug("hub controller current requirement: %dmA\n",
409 descriptor->bHubContrCurrent);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000410
411 for (i = 0; i < dev->maxchild; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530412 debug("port %d is%s removable\n", i + 1,
413 hub->desc.DeviceRemovable[(i + 1) / 8] & \
414 (1 << ((i + 1) % 8)) ? " not" : "");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000415
416 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530417 debug("usb_hub_configure: failed to get Status - " \
418 "too long: %d\n", descriptor->bLength);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000419 return -1;
420 }
421
422 if (usb_get_hub_status(dev, buffer) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530423 debug("usb_hub_configure: failed to get Status %lX\n",
424 dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000425 return -1;
426 }
427
Vivek Gautamceb49722013-04-12 16:34:33 +0530428#ifdef DEBUG
Marek Vasut23faf2b2012-02-13 18:58:17 +0000429 hubsts = (struct usb_hub_status *)buffer;
430#endif
Vivek Gautamceb49722013-04-12 16:34:33 +0530431
432 debug("get_hub_status returned status %X, change %X\n",
433 le16_to_cpu(hubsts->wHubStatus),
434 le16_to_cpu(hubsts->wHubChange));
435 debug("local power source is %s\n",
436 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
437 "lost (inactive)" : "good");
438 debug("%sover-current condition exists\n",
439 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
440 "" : "no ");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000441 usb_hub_power_on(hub);
442
443 for (i = 0; i < dev->maxchild; i++) {
Puneet Saxenaf5766132012-04-03 14:56:06 +0530444 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000445 unsigned short portstatus, portchange;
Vipin Kumarb6d78522012-12-13 16:25:53 +0530446 int ret;
447 ulong start = get_timer(0);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000448
Vipin Kumarb6d78522012-12-13 16:25:53 +0530449 /*
450 * Wait for (whichever finishes first)
451 * - A maximum of 10 seconds
452 * This is a purely observational value driven by connecting
453 * a few broken pen drives and taking the max * 1.5 approach
454 * - connection_change and connection state to report same
455 * state
456 */
457 do {
458 ret = usb_get_port_status(dev, i + 1, portsts);
459 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530460 debug("get_port_status failed\n");
Vipin Kumarb6d78522012-12-13 16:25:53 +0530461 break;
462 }
463
464 portstatus = le16_to_cpu(portsts->wPortStatus);
465 portchange = le16_to_cpu(portsts->wPortChange);
466
467 if ((portchange & USB_PORT_STAT_C_CONNECTION) ==
468 (portstatus & USB_PORT_STAT_CONNECTION))
469 break;
470
Vipin Kumarb6d78522012-12-13 16:25:53 +0530471 } while (get_timer(start) < CONFIG_SYS_HZ * 10);
472
473 if (ret < 0)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000474 continue;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000475
Vivek Gautamceb49722013-04-12 16:34:33 +0530476 debug("Port %d Status %X Change %X\n",
477 i + 1, portstatus, portchange);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000478
479 if (portchange & USB_PORT_STAT_C_CONNECTION) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530480 debug("port %d connection change\n", i + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000481 usb_hub_port_connect_change(dev, i);
482 }
483 if (portchange & USB_PORT_STAT_C_ENABLE) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530484 debug("port %d enable change, status %x\n",
485 i + 1, portstatus);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000486 usb_clear_port_feature(dev, i + 1,
487 USB_PORT_FEAT_C_ENABLE);
488
489 /* EM interference sometimes causes bad shielded USB
490 * devices to be shutdown by the hub, this hack enables
491 * them again. Works at least with mouse driver */
492 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
493 (portstatus & USB_PORT_STAT_CONNECTION) &&
494 ((dev->children[i]))) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530495 debug("already running port %i " \
496 "disabled by hub (EMI?), " \
497 "re-enabling...\n", i + 1);
498 usb_hub_port_connect_change(dev, i);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000499 }
500 }
501 if (portstatus & USB_PORT_STAT_SUSPEND) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530502 debug("port %d suspend change\n", i + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000503 usb_clear_port_feature(dev, i + 1,
504 USB_PORT_FEAT_SUSPEND);
505 }
506
507 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530508 debug("port %d over-current change\n", i + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000509 usb_clear_port_feature(dev, i + 1,
510 USB_PORT_FEAT_C_OVER_CURRENT);
511 usb_hub_power_on(hub);
512 }
513
514 if (portchange & USB_PORT_STAT_C_RESET) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530515 debug("port %d reset change\n", i + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000516 usb_clear_port_feature(dev, i + 1,
517 USB_PORT_FEAT_C_RESET);
518 }
519 } /* end for i all ports */
520
521 return 0;
522}
523
524int usb_hub_probe(struct usb_device *dev, int ifnum)
525{
526 struct usb_interface *iface;
527 struct usb_endpoint_descriptor *ep;
528 int ret;
529
530 iface = &dev->config.if_desc[ifnum];
531 /* Is it a hub? */
532 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
533 return 0;
534 /* Some hubs have a subclass of 1, which AFAICT according to the */
535 /* specs is not defined, but it works */
536 if ((iface->desc.bInterfaceSubClass != 0) &&
537 (iface->desc.bInterfaceSubClass != 1))
538 return 0;
539 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
540 if (iface->desc.bNumEndpoints != 1)
541 return 0;
542 ep = &iface->ep_desc[0];
543 /* Output endpoint? Curiousier and curiousier.. */
544 if (!(ep->bEndpointAddress & USB_DIR_IN))
545 return 0;
546 /* If it's not an interrupt endpoint, we'd better punt! */
547 if ((ep->bmAttributes & 3) != 3)
548 return 0;
549 /* We found a hub */
Vivek Gautamceb49722013-04-12 16:34:33 +0530550 debug("USB hub found\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000551 ret = usb_hub_configure(dev);
552 return ret;
553}