blob: d135526e4fe87b4fc776a14e81a9cdfe7cd10eeb [file] [log] [blame]
Marek Vasut23faf2b2012-02-13 18:58:17 +00001/*
Marek Vasut23faf2b2012-02-13 18:58:17 +00002 * Most of this source has been derived from the Linux USB
3 * project:
4 * (C) Copyright Linus Torvalds 1999
5 * (C) Copyright Johannes Erdfelt 1999-2001
6 * (C) Copyright Andreas Gal 1999
7 * (C) Copyright Gregory P. Smith 1999
8 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
9 * (C) Copyright Randy Dunlap 2000
10 * (C) Copyright David Brownell 2000 (kernel hotplug, usb_device_id)
11 * (C) Copyright Yggdrasil Computing, Inc. 2000
12 * (usb_device_id matching changes by Adam J. Richter)
13 *
14 * Adapted for U-Boot:
15 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
16 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020017 * SPDX-License-Identifier: GPL-2.0+
Marek Vasut23faf2b2012-02-13 18:58:17 +000018 */
19
20/****************************************************************************
21 * HUB "Driver"
22 * Probes device for being a hub and configurate it
23 */
24
25#include <common.h>
26#include <command.h>
Simon Glass054fe482015-03-25 12:22:10 -060027#include <dm.h>
Simon Glass79b58882015-03-25 12:22:01 -060028#include <errno.h>
Simon Glasscf92e052015-09-02 17:24:58 -060029#include <memalign.h>
Marek Vasut23faf2b2012-02-13 18:58:17 +000030#include <asm/processor.h>
Lucas Stach93ad9082012-09-06 08:00:13 +020031#include <asm/unaligned.h>
Marek Vasut23faf2b2012-02-13 18:58:17 +000032#include <linux/ctype.h>
Stefan Roesec998da02016-03-15 13:59:15 +010033#include <linux/list.h>
Marek Vasut23faf2b2012-02-13 18:58:17 +000034#include <asm/byteorder.h>
Simon Glass3884c982015-11-08 23:47:44 -070035#ifdef CONFIG_SANDBOX
36#include <asm/state.h>
37#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +000038#include <asm/unaligned.h>
Simon Glass054fe482015-03-25 12:22:10 -060039
40DECLARE_GLOBAL_DATA_PTR;
Marek Vasut23faf2b2012-02-13 18:58:17 +000041
42#include <usb.h>
Marek Vasut23faf2b2012-02-13 18:58:17 +000043
Marek Vasut23faf2b2012-02-13 18:58:17 +000044#define USB_BUFSIZ 512
45
Stefan Roesef7f60102016-03-15 13:59:12 +010046#define HUB_SHORT_RESET_TIME 20
47#define HUB_LONG_RESET_TIME 200
48
Stefan Roesec998da02016-03-15 13:59:15 +010049#define PORT_OVERCURRENT_MAX_SCAN_COUNT 3
50
51struct usb_device_scan {
52 struct usb_device *dev; /* USB hub device to scan */
53 struct usb_hub_device *hub; /* USB hub struct */
54 int port; /* USB port to scan */
55 struct list_head list;
56};
57
Simon Glass054fe482015-03-25 12:22:10 -060058/* TODO(sjg@chromium.org): Remove this when CONFIG_DM_USB is defined */
Marek Vasut23faf2b2012-02-13 18:58:17 +000059static struct usb_hub_device hub_dev[USB_MAX_HUB];
60static int usb_hub_index;
Stefan Roesec998da02016-03-15 13:59:15 +010061static LIST_HEAD(usb_scan_list);
Marek Vasut23faf2b2012-02-13 18:58:17 +000062
Dan Murphy3615a992013-08-01 14:06:01 -050063__weak void usb_hub_reset_devices(int port)
64{
65 return;
66}
Marek Vasut23faf2b2012-02-13 18:58:17 +000067
68static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
69{
70 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
71 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
72 USB_DT_HUB << 8, 0, data, size, USB_CNTL_TIMEOUT);
73}
74
75static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
76{
77 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
78 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
79 port, NULL, 0, USB_CNTL_TIMEOUT);
80}
81
82static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
83{
84 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
85 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
86 port, NULL, 0, USB_CNTL_TIMEOUT);
87}
88
89static int usb_get_hub_status(struct usb_device *dev, void *data)
90{
91 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
92 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
93 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
94}
95
Vincent Palatin08f3bb02015-05-04 11:30:54 -060096int usb_get_port_status(struct usb_device *dev, int port, void *data)
Marek Vasut23faf2b2012-02-13 18:58:17 +000097{
98 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
99 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
100 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
101}
102
103
104static void usb_hub_power_on(struct usb_hub_device *hub)
105{
106 int i;
107 struct usb_device *dev;
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000108 unsigned pgood_delay = hub->desc.bPwrOn2PwrGood * 2;
Tim Harvey319418c2015-04-08 12:21:12 -0700109 const char *env;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000110
111 dev = hub->pusb_dev;
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000112
Vivek Gautamceb49722013-04-12 16:34:33 +0530113 debug("enabling power on all ports\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000114 for (i = 0; i < dev->maxchild; i++) {
115 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Vivek Gautamceb49722013-04-12 16:34:33 +0530116 debug("port %d returns %lX\n", i + 1, dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000117 }
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000118
Stefan Roesec998da02016-03-15 13:59:15 +0100119#ifdef CONFIG_SANDBOX
120 /*
121 * Don't set timeout / delay values here. This results
122 * in these values still being reset to 0.
123 */
124 if (state_get_skip_delays())
125 return;
126#endif
127
Stephen Warren0d437bc2014-05-19 14:21:17 -0600128 /*
129 * Wait for power to become stable,
130 * plus spec-defined max time for device to connect
Tim Harvey319418c2015-04-08 12:21:12 -0700131 * but allow this time to be increased via env variable as some
132 * devices break the spec and require longer warm-up times
Stephen Warren0d437bc2014-05-19 14:21:17 -0600133 */
Tim Harvey319418c2015-04-08 12:21:12 -0700134 env = getenv("usb_pgood_delay");
135 if (env)
136 pgood_delay = max(pgood_delay,
137 (unsigned)simple_strtol(env, NULL, 0));
138 debug("pgood_delay=%dms\n", pgood_delay);
Stefan Roesec998da02016-03-15 13:59:15 +0100139
140 /*
141 * Do a minimum delay of the larger value of 100ms or pgood_delay
142 * so that the power can stablize before the devices are queried
143 */
144 hub->query_delay = get_timer(0) + max(100, (int)pgood_delay);
145
146 /*
147 * Record the power-on timeout here. The max. delay (timeout)
148 * will be done based on this value in the USB port loop in
149 * usb_hub_configure() later.
150 */
151 hub->connect_timeout = hub->query_delay + 1000;
152 debug("devnum=%d poweron: query_delay=%d connect_timeout=%d\n",
153 dev->devnum, max(100, (int)pgood_delay),
154 max(100, (int)pgood_delay) + 1000);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000155}
156
157void usb_hub_reset(void)
158{
159 usb_hub_index = 0;
Stefan Roesec998da02016-03-15 13:59:15 +0100160
161 /* Zero out global hub_dev in case its re-used again */
162 memset(hub_dev, 0, sizeof(hub_dev));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000163}
164
165static struct usb_hub_device *usb_hub_allocate(void)
166{
167 if (usb_hub_index < USB_MAX_HUB)
168 return &hub_dev[usb_hub_index++];
169
170 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
171 return NULL;
172}
173
174#define MAX_TRIES 5
175
176static inline char *portspeed(int portstatus)
177{
Vivek Gautam55f4b572013-04-24 02:50:12 +0000178 char *speed_str;
179
180 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
181 case USB_PORT_STAT_SUPER_SPEED:
182 speed_str = "5 Gb/s";
183 break;
184 case USB_PORT_STAT_HIGH_SPEED:
185 speed_str = "480 Mb/s";
186 break;
187 case USB_PORT_STAT_LOW_SPEED:
188 speed_str = "1.5 Mb/s";
189 break;
190 default:
191 speed_str = "12 Mb/s";
192 break;
193 }
194
195 return speed_str;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000196}
197
Simon Glass862e75c2015-03-25 12:22:04 -0600198int legacy_hub_port_reset(struct usb_device *dev, int port,
Marek Vasut23faf2b2012-02-13 18:58:17 +0000199 unsigned short *portstat)
200{
Hans de Goedead84a422015-05-10 14:10:15 +0200201 int err, tries;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530202 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000203 unsigned short portstatus, portchange;
Stefan Roesef7f60102016-03-15 13:59:12 +0100204 int delay = HUB_SHORT_RESET_TIME; /* start with short reset delay */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000205
Simon Glass054fe482015-03-25 12:22:10 -0600206#ifdef CONFIG_DM_USB
207 debug("%s: resetting '%s' port %d...\n", __func__, dev->dev->name,
208 port + 1);
209#else
210 debug("%s: resetting port %d...\n", __func__, port + 1);
211#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +0000212 for (tries = 0; tries < MAX_TRIES; tries++) {
Hans de Goedead84a422015-05-10 14:10:15 +0200213 err = usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
214 if (err < 0)
215 return err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000216
Stefan Roesef7f60102016-03-15 13:59:12 +0100217 mdelay(delay);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000218
Puneet Saxenaf5766132012-04-03 14:56:06 +0530219 if (usb_get_port_status(dev, port + 1, portsts) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530220 debug("get_port_status failed status %lX\n",
221 dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000222 return -1;
223 }
Puneet Saxenaf5766132012-04-03 14:56:06 +0530224 portstatus = le16_to_cpu(portsts->wPortStatus);
225 portchange = le16_to_cpu(portsts->wPortChange);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000226
Vivek Gautamceb49722013-04-12 16:34:33 +0530227 debug("portstatus %x, change %x, %s\n", portstatus, portchange,
228 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000229
Vivek Gautamceb49722013-04-12 16:34:33 +0530230 debug("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
231 " USB_PORT_STAT_ENABLE %d\n",
232 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
233 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
234 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000235
Stephen Warren74c0d752014-08-07 17:07:59 -0600236 /*
237 * Perhaps we should check for the following here:
238 * - C_CONNECTION hasn't been set.
239 * - CONNECTION is still set.
240 *
241 * Doing so would ensure that the device is still connected
242 * to the bus, and hasn't been unplugged or replaced while the
243 * USB bus reset was going on.
244 *
245 * However, if we do that, then (at least) a San Disk Ultra
246 * USB 3.0 16GB device fails to reset on (at least) an NVIDIA
247 * Tegra Jetson TK1 board. For some reason, the device appears
248 * to briefly drop off the bus when this second bus reset is
249 * executed, yet if we retry this loop, it'll eventually come
250 * back after another reset or two.
251 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000252
253 if (portstatus & USB_PORT_STAT_ENABLE)
254 break;
255
Stefan Roesef7f60102016-03-15 13:59:12 +0100256 /* Switch to long reset delay for the next round */
257 delay = HUB_LONG_RESET_TIME;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000258 }
259
260 if (tries == MAX_TRIES) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530261 debug("Cannot enable port %i after %i retries, " \
262 "disabling port.\n", port + 1, MAX_TRIES);
263 debug("Maybe the USB cable is bad?\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000264 return -1;
265 }
266
267 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
268 *portstat = portstatus;
269 return 0;
270}
271
Simon Glass054fe482015-03-25 12:22:10 -0600272#ifdef CONFIG_DM_USB
273int hub_port_reset(struct udevice *dev, int port, unsigned short *portstat)
274{
Simon Glassbcbe3d12015-09-28 23:32:01 -0600275 struct usb_device *udev = dev_get_parent_priv(dev);
Simon Glass054fe482015-03-25 12:22:10 -0600276
277 return legacy_hub_port_reset(udev, port, portstat);
278}
279#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +0000280
Simon Glass79b58882015-03-25 12:22:01 -0600281int usb_hub_port_connect_change(struct usb_device *dev, int port)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000282{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530283 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000284 unsigned short portstatus;
Simon Glass79b58882015-03-25 12:22:01 -0600285 int ret, speed;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000286
287 /* Check status */
Simon Glass79b58882015-03-25 12:22:01 -0600288 ret = usb_get_port_status(dev, port + 1, portsts);
289 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530290 debug("get_port_status failed\n");
Simon Glass79b58882015-03-25 12:22:01 -0600291 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000292 }
293
Puneet Saxenaf5766132012-04-03 14:56:06 +0530294 portstatus = le16_to_cpu(portsts->wPortStatus);
Vivek Gautamceb49722013-04-12 16:34:33 +0530295 debug("portstatus %x, change %x, %s\n",
296 portstatus,
297 le16_to_cpu(portsts->wPortChange),
298 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000299
300 /* Clear the connection change status */
301 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
302
303 /* Disconnect any existing devices under this port */
304 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
Simon Glass054fe482015-03-25 12:22:10 -0600305 (!(portstatus & USB_PORT_STAT_ENABLE))) ||
306 usb_device_has_child_on_port(dev, port)) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530307 debug("usb_disconnect(&hub->children[port]);\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000308 /* Return now if nothing is connected */
309 if (!(portstatus & USB_PORT_STAT_CONNECTION))
Simon Glass79b58882015-03-25 12:22:01 -0600310 return -ENOTCONN;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000311 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000312
313 /* Reset the port */
Simon Glass862e75c2015-03-25 12:22:04 -0600314 ret = legacy_hub_port_reset(dev, port, &portstatus);
Simon Glass79b58882015-03-25 12:22:01 -0600315 if (ret < 0) {
Hans de Goede45b9ea12015-05-10 14:10:16 +0200316 if (ret != -ENXIO)
317 printf("cannot reset port %i!?\n", port + 1);
Simon Glass79b58882015-03-25 12:22:01 -0600318 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000319 }
320
Vivek Gautam55f4b572013-04-24 02:50:12 +0000321 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
322 case USB_PORT_STAT_SUPER_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600323 speed = USB_SPEED_SUPER;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000324 break;
325 case USB_PORT_STAT_HIGH_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600326 speed = USB_SPEED_HIGH;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000327 break;
328 case USB_PORT_STAT_LOW_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600329 speed = USB_SPEED_LOW;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000330 break;
331 default:
Simon Glass79b58882015-03-25 12:22:01 -0600332 speed = USB_SPEED_FULL;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000333 break;
334 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000335
Simon Glass054fe482015-03-25 12:22:10 -0600336#ifdef CONFIG_DM_USB
337 struct udevice *child;
338
339 ret = usb_scan_device(dev->dev, port + 1, speed, &child);
340#else
341 struct usb_device *usb;
342
Simon Glass79b58882015-03-25 12:22:01 -0600343 ret = usb_alloc_new_device(dev->controller, &usb);
344 if (ret) {
345 printf("cannot create new device: ret=%d", ret);
346 return ret;
347 }
348
Marek Vasut23faf2b2012-02-13 18:58:17 +0000349 dev->children[port] = usb;
Simon Glass79b58882015-03-25 12:22:01 -0600350 usb->speed = speed;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000351 usb->parent = dev;
352 usb->portnr = port + 1;
353 /* Run it through the hoops (find a driver, etc) */
Simon Glass79b58882015-03-25 12:22:01 -0600354 ret = usb_new_device(usb);
355 if (ret < 0) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000356 /* Woops, disable the port */
Simon Glass79b58882015-03-25 12:22:01 -0600357 usb_free_device(dev->controller);
Milind Choudhary359439d2012-12-12 17:55:28 -0800358 dev->children[port] = NULL;
Simon Glass054fe482015-03-25 12:22:10 -0600359 }
360#endif
361 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530362 debug("hub: disabling port %d\n", port + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000363 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
364 }
Simon Glass79b58882015-03-25 12:22:01 -0600365
366 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000367}
368
Stefan Roesec998da02016-03-15 13:59:15 +0100369static int usb_scan_port(struct usb_device_scan *usb_scan)
370{
371 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
372 unsigned short portstatus;
373 unsigned short portchange;
374 struct usb_device *dev;
375 struct usb_hub_device *hub;
376 int ret = 0;
377 int i;
378
379 dev = usb_scan->dev;
380 hub = usb_scan->hub;
381 i = usb_scan->port;
382
383 /*
384 * Don't talk to the device before the query delay is expired.
385 * This is needed for voltages to stabalize.
386 */
387 if (get_timer(0) < hub->query_delay)
388 return 0;
389
390 ret = usb_get_port_status(dev, i + 1, portsts);
391 if (ret < 0) {
392 debug("get_port_status failed\n");
393 if (get_timer(0) >= hub->connect_timeout) {
394 debug("devnum=%d port=%d: timeout\n",
395 dev->devnum, i + 1);
396 /* Remove this device from scanning list */
397 list_del(&usb_scan->list);
398 free(usb_scan);
399 return 0;
400 }
Marek Vasutd81db482016-05-03 22:22:59 +0200401 return 0;
Stefan Roesec998da02016-03-15 13:59:15 +0100402 }
403
404 portstatus = le16_to_cpu(portsts->wPortStatus);
405 portchange = le16_to_cpu(portsts->wPortChange);
406 debug("Port %d Status %X Change %X\n", i + 1, portstatus, portchange);
407
408 /* No connection change happened, wait a bit more. */
409 if (!(portchange & USB_PORT_STAT_C_CONNECTION)) {
410 if (get_timer(0) >= hub->connect_timeout) {
411 debug("devnum=%d port=%d: timeout\n",
412 dev->devnum, i + 1);
413 /* Remove this device from scanning list */
414 list_del(&usb_scan->list);
415 free(usb_scan);
416 return 0;
417 }
418 return 0;
419 }
420
421 /* Test if the connection came up, and if not exit */
422 if (!(portstatus & USB_PORT_STAT_CONNECTION))
423 return 0;
424
425 /* A new USB device is ready at this point */
426 debug("devnum=%d port=%d: USB dev found\n", dev->devnum, i + 1);
427
428 usb_hub_port_connect_change(dev, i);
429
430 if (portchange & USB_PORT_STAT_C_ENABLE) {
431 debug("port %d enable change, status %x\n", i + 1, portstatus);
432 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
433 /*
434 * The following hack causes a ghost device problem
435 * to Faraday EHCI
436 */
437#ifndef CONFIG_USB_EHCI_FARADAY
438 /*
439 * EM interference sometimes causes bad shielded USB
440 * devices to be shutdown by the hub, this hack enables
441 * them again. Works at least with mouse driver
442 */
443 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
444 (portstatus & USB_PORT_STAT_CONNECTION) &&
445 usb_device_has_child_on_port(dev, i)) {
446 debug("already running port %i disabled by hub (EMI?), re-enabling...\n",
447 i + 1);
448 usb_hub_port_connect_change(dev, i);
449 }
450#endif
451 }
452
453 if (portstatus & USB_PORT_STAT_SUSPEND) {
454 debug("port %d suspend change\n", i + 1);
455 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_SUSPEND);
456 }
457
458 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
459 debug("port %d over-current change\n", i + 1);
460 usb_clear_port_feature(dev, i + 1,
461 USB_PORT_FEAT_C_OVER_CURRENT);
462 /* Only power-on this one port */
463 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
464 hub->overcurrent_count[i]++;
465
466 /*
467 * If the max-scan-count is not reached, return without removing
468 * the device from scan-list. This will re-issue a new scan.
469 */
470 if (hub->overcurrent_count[i] <=
471 PORT_OVERCURRENT_MAX_SCAN_COUNT)
472 return 0;
473
474 /* Otherwise the device will get removed */
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -0700475 printf("Port %d over-current occurred %d times\n", i + 1,
Stefan Roesec998da02016-03-15 13:59:15 +0100476 hub->overcurrent_count[i]);
477 }
478
479 if (portchange & USB_PORT_STAT_C_RESET) {
480 debug("port %d reset change\n", i + 1);
481 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
482 }
483
484 /*
485 * We're done with this device, so let's remove this device from
486 * scanning list
487 */
488 list_del(&usb_scan->list);
489 free(usb_scan);
490
491 return 0;
492}
493
494static int usb_device_list_scan(void)
495{
496 struct usb_device_scan *usb_scan;
497 struct usb_device_scan *tmp;
498 static int running;
499 int ret = 0;
500
501 /* Only run this loop once for each controller */
502 if (running)
503 return 0;
504
505 running = 1;
506
507 while (1) {
508 /* We're done, once the list is empty again */
509 if (list_empty(&usb_scan_list))
510 goto out;
511
512 list_for_each_entry_safe(usb_scan, tmp, &usb_scan_list, list) {
513 int ret;
514
515 /* Scan this port */
516 ret = usb_scan_port(usb_scan);
517 if (ret)
518 goto out;
519 }
520 }
521
522out:
523 /*
524 * This USB controller has finished scanning all its connected
525 * USB devices. Set "running" back to 0, so that other USB controllers
526 * will scan their devices too.
527 */
528 running = 0;
529
530 return ret;
531}
Marek Vasut23faf2b2012-02-13 18:58:17 +0000532
533static int usb_hub_configure(struct usb_device *dev)
534{
Julius Wernereaf3e612013-07-19 13:12:08 -0700535 int i, length;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530536 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, USB_BUFSIZ);
537 unsigned char *bitmap;
Lucas Stach93ad9082012-09-06 08:00:13 +0200538 short hubCharacteristics;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000539 struct usb_hub_descriptor *descriptor;
540 struct usb_hub_device *hub;
Vivek Gautamceb49722013-04-12 16:34:33 +0530541 __maybe_unused struct usb_hub_status *hubsts;
Simon Glass361ad6a2015-03-25 12:22:09 -0600542 int ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000543
544 /* "allocate" Hub device */
545 hub = usb_hub_allocate();
546 if (hub == NULL)
Simon Glass361ad6a2015-03-25 12:22:09 -0600547 return -ENOMEM;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000548 hub->pusb_dev = dev;
549 /* Get the the hub descriptor */
Simon Glass361ad6a2015-03-25 12:22:09 -0600550 ret = usb_get_hub_descriptor(dev, buffer, 4);
551 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530552 debug("usb_hub_configure: failed to get hub " \
553 "descriptor, giving up %lX\n", dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600554 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000555 }
556 descriptor = (struct usb_hub_descriptor *)buffer;
557
Masahiro Yamadab4141192014-11-07 03:03:31 +0900558 length = min_t(int, descriptor->bLength,
559 sizeof(struct usb_hub_descriptor));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000560
Simon Glass361ad6a2015-03-25 12:22:09 -0600561 ret = usb_get_hub_descriptor(dev, buffer, length);
562 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530563 debug("usb_hub_configure: failed to get hub " \
564 "descriptor 2nd giving up %lX\n", dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600565 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000566 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700567 memcpy((unsigned char *)&hub->desc, buffer, length);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000568 /* adjust 16bit values */
Lucas Stach93ad9082012-09-06 08:00:13 +0200569 put_unaligned(le16_to_cpu(get_unaligned(
570 &descriptor->wHubCharacteristics)),
571 &hub->desc.wHubCharacteristics);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000572 /* set the bitmap */
573 bitmap = (unsigned char *)&hub->desc.DeviceRemovable[0];
574 /* devices not removable by default */
575 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
576 bitmap = (unsigned char *)&hub->desc.PortPowerCtrlMask[0];
577 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
578
579 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
580 hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i];
581
582 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
583 hub->desc.PortPowerCtrlMask[i] = descriptor->PortPowerCtrlMask[i];
584
585 dev->maxchild = descriptor->bNbrPorts;
Vivek Gautamceb49722013-04-12 16:34:33 +0530586 debug("%d ports detected\n", dev->maxchild);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000587
Lucas Stach93ad9082012-09-06 08:00:13 +0200588 hubCharacteristics = get_unaligned(&hub->desc.wHubCharacteristics);
589 switch (hubCharacteristics & HUB_CHAR_LPSM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000590 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530591 debug("ganged power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000592 break;
593 case 0x01:
Vivek Gautamceb49722013-04-12 16:34:33 +0530594 debug("individual port power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000595 break;
596 case 0x02:
597 case 0x03:
Vivek Gautamceb49722013-04-12 16:34:33 +0530598 debug("unknown reserved power switching mode\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000599 break;
600 }
601
Lucas Stach93ad9082012-09-06 08:00:13 +0200602 if (hubCharacteristics & HUB_CHAR_COMPOUND)
Vivek Gautamceb49722013-04-12 16:34:33 +0530603 debug("part of a compound device\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000604 else
Vivek Gautamceb49722013-04-12 16:34:33 +0530605 debug("standalone hub\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000606
Lucas Stach93ad9082012-09-06 08:00:13 +0200607 switch (hubCharacteristics & HUB_CHAR_OCPM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000608 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530609 debug("global over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000610 break;
611 case 0x08:
Vivek Gautamceb49722013-04-12 16:34:33 +0530612 debug("individual port over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000613 break;
614 case 0x10:
615 case 0x18:
Vivek Gautamceb49722013-04-12 16:34:33 +0530616 debug("no over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000617 break;
618 }
619
Vivek Gautamceb49722013-04-12 16:34:33 +0530620 debug("power on to power good time: %dms\n",
621 descriptor->bPwrOn2PwrGood * 2);
622 debug("hub controller current requirement: %dmA\n",
623 descriptor->bHubContrCurrent);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000624
625 for (i = 0; i < dev->maxchild; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530626 debug("port %d is%s removable\n", i + 1,
627 hub->desc.DeviceRemovable[(i + 1) / 8] & \
628 (1 << ((i + 1) % 8)) ? " not" : "");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000629
630 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530631 debug("usb_hub_configure: failed to get Status - " \
632 "too long: %d\n", descriptor->bLength);
Simon Glass361ad6a2015-03-25 12:22:09 -0600633 return -EFBIG;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000634 }
635
Simon Glass361ad6a2015-03-25 12:22:09 -0600636 ret = usb_get_hub_status(dev, buffer);
637 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530638 debug("usb_hub_configure: failed to get Status %lX\n",
639 dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600640 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000641 }
642
Vivek Gautamceb49722013-04-12 16:34:33 +0530643#ifdef DEBUG
Marek Vasut23faf2b2012-02-13 18:58:17 +0000644 hubsts = (struct usb_hub_status *)buffer;
645#endif
Vivek Gautamceb49722013-04-12 16:34:33 +0530646
647 debug("get_hub_status returned status %X, change %X\n",
648 le16_to_cpu(hubsts->wHubStatus),
649 le16_to_cpu(hubsts->wHubChange));
650 debug("local power source is %s\n",
651 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
652 "lost (inactive)" : "good");
653 debug("%sover-current condition exists\n",
654 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
655 "" : "no ");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000656 usb_hub_power_on(hub);
657
Dan Murphy3615a992013-08-01 14:06:01 -0500658 /*
659 * Reset any devices that may be in a bad state when applying
660 * the power. This is a __weak function. Resetting of the devices
661 * should occur in the board file of the device.
662 */
663 for (i = 0; i < dev->maxchild; i++)
664 usb_hub_reset_devices(i + 1);
665
Stefan Roesec998da02016-03-15 13:59:15 +0100666 /*
667 * Only add the connected USB devices, including potential hubs,
668 * to a scanning list. This list will get scanned and devices that
669 * are detected (either via port connected or via port timeout)
670 * will get removed from this list. Scanning of the devices on this
671 * list will continue until all devices are removed.
672 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000673 for (i = 0; i < dev->maxchild; i++) {
Stefan Roesec998da02016-03-15 13:59:15 +0100674 struct usb_device_scan *usb_scan;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000675
Stefan Roesec998da02016-03-15 13:59:15 +0100676 usb_scan = calloc(1, sizeof(*usb_scan));
677 if (!usb_scan) {
678 printf("Can't allocate memory for USB device!\n");
679 return -ENOMEM;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000680 }
Stefan Roesec998da02016-03-15 13:59:15 +0100681 usb_scan->dev = dev;
682 usb_scan->hub = hub;
683 usb_scan->port = i;
684 list_add_tail(&usb_scan->list, &usb_scan_list);
685 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000686
Stefan Roesec998da02016-03-15 13:59:15 +0100687 /*
688 * And now call the scanning code which loops over the generated list
689 */
690 ret = usb_device_list_scan();
Marek Vasut23faf2b2012-02-13 18:58:17 +0000691
Stefan Roesec998da02016-03-15 13:59:15 +0100692 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000693}
694
Simon Glass361ad6a2015-03-25 12:22:09 -0600695static int usb_hub_check(struct usb_device *dev, int ifnum)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000696{
697 struct usb_interface *iface;
Simon Glass361ad6a2015-03-25 12:22:09 -0600698 struct usb_endpoint_descriptor *ep = NULL;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000699
700 iface = &dev->config.if_desc[ifnum];
701 /* Is it a hub? */
702 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
Simon Glass361ad6a2015-03-25 12:22:09 -0600703 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000704 /* Some hubs have a subclass of 1, which AFAICT according to the */
705 /* specs is not defined, but it works */
706 if ((iface->desc.bInterfaceSubClass != 0) &&
707 (iface->desc.bInterfaceSubClass != 1))
Simon Glass361ad6a2015-03-25 12:22:09 -0600708 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000709 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
710 if (iface->desc.bNumEndpoints != 1)
Simon Glass361ad6a2015-03-25 12:22:09 -0600711 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000712 ep = &iface->ep_desc[0];
713 /* Output endpoint? Curiousier and curiousier.. */
714 if (!(ep->bEndpointAddress & USB_DIR_IN))
Simon Glass361ad6a2015-03-25 12:22:09 -0600715 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000716 /* If it's not an interrupt endpoint, we'd better punt! */
717 if ((ep->bmAttributes & 3) != 3)
Simon Glass361ad6a2015-03-25 12:22:09 -0600718 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000719 /* We found a hub */
Vivek Gautamceb49722013-04-12 16:34:33 +0530720 debug("USB hub found\n");
Simon Glass361ad6a2015-03-25 12:22:09 -0600721 return 0;
722
723err:
724 debug("USB hub not found: bInterfaceClass=%d, bInterfaceSubClass=%d, bNumEndpoints=%d\n",
725 iface->desc.bInterfaceClass, iface->desc.bInterfaceSubClass,
726 iface->desc.bNumEndpoints);
727 if (ep) {
728 debug(" bEndpointAddress=%#x, bmAttributes=%d",
729 ep->bEndpointAddress, ep->bmAttributes);
730 }
731
732 return -ENOENT;
733}
734
735int usb_hub_probe(struct usb_device *dev, int ifnum)
736{
737 int ret;
738
739 ret = usb_hub_check(dev, ifnum);
740 if (ret)
741 return 0;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000742 ret = usb_hub_configure(dev);
743 return ret;
744}
Simon Glass054fe482015-03-25 12:22:10 -0600745
746#ifdef CONFIG_DM_USB
747int usb_hub_scan(struct udevice *hub)
748{
Simon Glassbcbe3d12015-09-28 23:32:01 -0600749 struct usb_device *udev = dev_get_parent_priv(hub);
Simon Glass054fe482015-03-25 12:22:10 -0600750
751 return usb_hub_configure(udev);
752}
753
Simon Glass054fe482015-03-25 12:22:10 -0600754static int usb_hub_post_probe(struct udevice *dev)
755{
756 debug("%s\n", __func__);
757 return usb_hub_scan(dev);
758}
759
760static const struct udevice_id usb_hub_ids[] = {
761 { .compatible = "usb-hub" },
762 { }
763};
764
765U_BOOT_DRIVER(usb_generic_hub) = {
766 .name = "usb_hub",
767 .id = UCLASS_USB_HUB,
768 .of_match = usb_hub_ids,
769 .flags = DM_FLAG_ALLOC_PRIV_DMA,
770};
771
772UCLASS_DRIVER(usb_hub) = {
773 .id = UCLASS_USB_HUB,
774 .name = "usb_hub",
Simon Glass91195482016-07-05 17:10:10 -0600775 .post_bind = dm_scan_fdt_dev,
Simon Glass054fe482015-03-25 12:22:10 -0600776 .post_probe = usb_hub_post_probe,
777 .child_pre_probe = usb_child_pre_probe,
778 .per_child_auto_alloc_size = sizeof(struct usb_device),
779 .per_child_platdata_auto_alloc_size = sizeof(struct usb_dev_platdata),
780};
781
782static const struct usb_device_id hub_id_table[] = {
783 {
784 .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
785 .bDeviceClass = USB_CLASS_HUB
786 },
787 { } /* Terminating entry */
788};
789
Simon Glassabb59cf2015-07-06 16:47:51 -0600790U_BOOT_USB_DEVICE(usb_generic_hub, hub_id_table);
Simon Glass054fe482015-03-25 12:22:10 -0600791
792#endif