]> Git Repo - J-u-boot.git/blame - common/usb_hub.c
bloblist: check bloblist with specified buffer size
[J-u-boot.git] / common / usb_hub.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
23faf2bc 2/*
23faf2bc
MV
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
23faf2bc
MV
17 */
18
19/****************************************************************************
20 * HUB "Driver"
21 * Probes device for being a hub and configurate it
22 */
23
24#include <common.h>
25#include <command.h>
054fe48e 26#include <dm.h>
7b51b576 27#include <env.h>
79b58887 28#include <errno.h>
f7ae49fc 29#include <log.h>
336d4615 30#include <malloc.h>
cf92e05c 31#include <memalign.h>
23faf2bc 32#include <asm/processor.h>
93ad908c 33#include <asm/unaligned.h>
23faf2bc 34#include <linux/ctype.h>
c05ed00a 35#include <linux/delay.h>
c998da0d 36#include <linux/list.h>
23faf2bc 37#include <asm/byteorder.h>
3884c98c
SG
38#ifdef CONFIG_SANDBOX
39#include <asm/state.h>
40#endif
23faf2bc 41#include <asm/unaligned.h>
054fe48e 42
23faf2bc 43#include <usb.h>
23faf2bc 44
23faf2bc
MV
45#define USB_BUFSIZ 512
46
f7f60100
SR
47#define HUB_SHORT_RESET_TIME 20
48#define HUB_LONG_RESET_TIME 200
49
5454dea3 50#define HUB_DEBOUNCE_TIMEOUT CONFIG_USB_HUB_DEBOUNCE_TIMEOUT
48b1cff9 51
c998da0d
SR
52#define PORT_OVERCURRENT_MAX_SCAN_COUNT 3
53
54struct usb_device_scan {
55 struct usb_device *dev; /* USB hub device to scan */
56 struct usb_hub_device *hub; /* USB hub struct */
57 int port; /* USB port to scan */
58 struct list_head list;
59};
60
c998da0d 61static LIST_HEAD(usb_scan_list);
23faf2bc 62
883946e8 63__weak void usb_hub_reset_devices(struct usb_hub_device *hub, int port)
3615a996
DM
64{
65 return;
66}
23faf2bc 67
f3421196
BM
68static inline bool usb_hub_is_superspeed(struct usb_device *hdev)
69{
70 return hdev->descriptor.bDeviceProtocol == 3;
71}
72
fd09c205 73#if CONFIG_IS_ENABLED(DM_USB)
46c1d493
BM
74bool usb_hub_is_root_hub(struct udevice *hub)
75{
76 if (device_get_uclass_id(hub->parent) != UCLASS_USB_HUB)
77 return true;
78
79 return false;
80}
bbc6f06c
BM
81
82static int usb_set_hub_depth(struct usb_device *dev, int depth)
83{
84 if (depth < 0 || depth > 4)
85 return -EINVAL;
86
87 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
88 USB_REQ_SET_HUB_DEPTH, USB_DIR_OUT | USB_RT_HUB,
89 depth, 0, NULL, 0, USB_CNTL_TIMEOUT);
90}
46c1d493
BM
91#endif
92
23faf2bc
MV
93static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
94{
f3421196
BM
95 unsigned short dtype = USB_DT_HUB;
96
97 if (usb_hub_is_superspeed(dev))
98 dtype = USB_DT_SS_HUB;
99
23faf2bc
MV
100 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
101 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
f3421196 102 dtype << 8, 0, data, size, USB_CNTL_TIMEOUT);
23faf2bc
MV
103}
104
105static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
106{
107 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
108 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
109 port, NULL, 0, USB_CNTL_TIMEOUT);
110}
111
112static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
113{
114 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
115 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
116 port, NULL, 0, USB_CNTL_TIMEOUT);
117}
118
119static int usb_get_hub_status(struct usb_device *dev, void *data)
120{
121 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
122 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
123 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
124}
125
08f3bb0b 126int usb_get_port_status(struct usb_device *dev, int port, void *data)
23faf2bc 127{
74ffc7cb
BM
128 int ret;
129
130 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
23faf2bc 131 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
53771a49 132 data, sizeof(struct usb_port_status), USB_CNTL_TIMEOUT);
74ffc7cb 133
fd09c205 134#if CONFIG_IS_ENABLED(DM_USB)
74ffc7cb
BM
135 if (ret < 0)
136 return ret;
137
138 /*
139 * Translate the USB 3.0 hub port status field into the old version
140 * that U-Boot understands. Do this only when the hub is not root hub.
141 * For root hub, the port status field has already been translated
142 * in the host controller driver (see xhci_submit_root() in xhci.c).
143 *
144 * Note: this only supports driver model.
145 */
146
147 if (!usb_hub_is_root_hub(dev->dev) && usb_hub_is_superspeed(dev)) {
148 struct usb_port_status *status = (struct usb_port_status *)data;
c1125bad
AW
149 u16 tmp = le16_to_cpu(status->wPortStatus) &
150 USB_SS_PORT_STAT_MASK;
74ffc7cb
BM
151
152 if (status->wPortStatus & USB_SS_PORT_STAT_POWER)
153 tmp |= USB_PORT_STAT_POWER;
154 if ((status->wPortStatus & USB_SS_PORT_STAT_SPEED) ==
155 USB_SS_PORT_STAT_SPEED_5GBPS)
156 tmp |= USB_PORT_STAT_SUPER_SPEED;
157
c1125bad 158 status->wPortStatus = cpu_to_le16(tmp);
74ffc7cb
BM
159 }
160#endif
161
162 return ret;
23faf2bc
MV
163}
164
165
166static void usb_hub_power_on(struct usb_hub_device *hub)
167{
168 int i;
169 struct usb_device *dev;
a1a28c6e 170 unsigned pgood_delay = hub->desc.bPwrOn2PwrGood * 2;
fcb670b7 171 const char __maybe_unused *env;
23faf2bc
MV
172
173 dev = hub->pusb_dev;
0bf796f7 174
ceb4972a 175 debug("enabling power on all ports\n");
0bf796f7 176 for (i = 0; i < dev->maxchild; i++) {
33e06dcb
SR
177 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_RESET);
178 debug("Reset : port %d returns %lX\n", i + 1, dev->status);
23faf2bc 179 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
33e06dcb 180 debug("PowerOn : port %d returns %lX\n", i + 1, dev->status);
23faf2bc 181 }
a1a28c6e 182
c998da0d
SR
183#ifdef CONFIG_SANDBOX
184 /*
185 * Don't set timeout / delay values here. This results
186 * in these values still being reset to 0.
187 */
188 if (state_get_skip_delays())
189 return;
190#endif
191
0d437bca
SW
192 /*
193 * Wait for power to become stable,
194 * plus spec-defined max time for device to connect
319418c0
TH
195 * but allow this time to be increased via env variable as some
196 * devices break the spec and require longer warm-up times
0d437bca 197 */
fcb670b7 198#if CONFIG_IS_ENABLED(ENV_SUPPORT)
00caae6d 199 env = env_get("usb_pgood_delay");
319418c0
TH
200 if (env)
201 pgood_delay = max(pgood_delay,
202 (unsigned)simple_strtol(env, NULL, 0));
fcb670b7 203#endif
319418c0 204 debug("pgood_delay=%dms\n", pgood_delay);
c998da0d
SR
205
206 /*
207 * Do a minimum delay of the larger value of 100ms or pgood_delay
208 * so that the power can stablize before the devices are queried
209 */
210 hub->query_delay = get_timer(0) + max(100, (int)pgood_delay);
211
212 /*
213 * Record the power-on timeout here. The max. delay (timeout)
214 * will be done based on this value in the USB port loop in
215 * usb_hub_configure() later.
216 */
48b1cff9 217 hub->connect_timeout = hub->query_delay + HUB_DEBOUNCE_TIMEOUT;
c998da0d
SR
218 debug("devnum=%d poweron: query_delay=%d connect_timeout=%d\n",
219 dev->devnum, max(100, (int)pgood_delay),
48b1cff9 220 max(100, (int)pgood_delay) + HUB_DEBOUNCE_TIMEOUT);
23faf2bc
MV
221}
222
fd09c205 223#if !CONFIG_IS_ENABLED(DM_USB)
dfa96e06
BM
224static struct usb_hub_device hub_dev[USB_MAX_HUB];
225static int usb_hub_index;
226
23faf2bc
MV
227void usb_hub_reset(void)
228{
229 usb_hub_index = 0;
c998da0d
SR
230
231 /* Zero out global hub_dev in case its re-used again */
232 memset(hub_dev, 0, sizeof(hub_dev));
23faf2bc
MV
233}
234
235static struct usb_hub_device *usb_hub_allocate(void)
236{
237 if (usb_hub_index < USB_MAX_HUB)
238 return &hub_dev[usb_hub_index++];
239
240 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
241 return NULL;
242}
dfa96e06 243#endif
23faf2bc
MV
244
245#define MAX_TRIES 5
246
51f60a89 247static inline const char *portspeed(int portstatus)
23faf2bc 248{
55f4b575
VG
249 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
250 case USB_PORT_STAT_SUPER_SPEED:
51f60a89 251 return "5 Gb/s";
55f4b575 252 case USB_PORT_STAT_HIGH_SPEED:
51f60a89 253 return "480 Mb/s";
55f4b575 254 case USB_PORT_STAT_LOW_SPEED:
51f60a89 255 return "1.5 Mb/s";
55f4b575 256 default:
51f60a89 257 return "12 Mb/s";
55f4b575 258 }
23faf2bc
MV
259}
260
a199a724
BM
261/**
262 * usb_hub_port_reset() - reset a port given its usb_device pointer
263 *
264 * Reset a hub port and see if a device is present on that port, providing
265 * sufficient time for it to show itself. The port status is returned.
266 *
267 * @dev: USB device to reset
268 * @port: Port number to reset (note ports are numbered from 0 here)
269 * @portstat: Returns port status
270 */
271static int usb_hub_port_reset(struct usb_device *dev, int port,
272 unsigned short *portstat)
23faf2bc 273{
ad84a42f 274 int err, tries;
f5766139 275 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
23faf2bc 276 unsigned short portstatus, portchange;
f7f60100 277 int delay = HUB_SHORT_RESET_TIME; /* start with short reset delay */
23faf2bc 278
fd09c205 279#if CONFIG_IS_ENABLED(DM_USB)
054fe48e
SG
280 debug("%s: resetting '%s' port %d...\n", __func__, dev->dev->name,
281 port + 1);
282#else
283 debug("%s: resetting port %d...\n", __func__, port + 1);
284#endif
23faf2bc 285 for (tries = 0; tries < MAX_TRIES; tries++) {
ad84a42f
HG
286 err = usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
287 if (err < 0)
288 return err;
23faf2bc 289
f7f60100 290 mdelay(delay);
23faf2bc 291
f5766139 292 if (usb_get_port_status(dev, port + 1, portsts) < 0) {
ceb4972a
VG
293 debug("get_port_status failed status %lX\n",
294 dev->status);
23faf2bc
MV
295 return -1;
296 }
f5766139
PS
297 portstatus = le16_to_cpu(portsts->wPortStatus);
298 portchange = le16_to_cpu(portsts->wPortChange);
23faf2bc 299
ceb4972a
VG
300 debug("portstatus %x, change %x, %s\n", portstatus, portchange,
301 portspeed(portstatus));
23faf2bc 302
ceb4972a
VG
303 debug("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
304 " USB_PORT_STAT_ENABLE %d\n",
305 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
306 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
307 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
23faf2bc 308
74c0d756
SW
309 /*
310 * Perhaps we should check for the following here:
311 * - C_CONNECTION hasn't been set.
312 * - CONNECTION is still set.
313 *
314 * Doing so would ensure that the device is still connected
315 * to the bus, and hasn't been unplugged or replaced while the
316 * USB bus reset was going on.
317 *
318 * However, if we do that, then (at least) a San Disk Ultra
319 * USB 3.0 16GB device fails to reset on (at least) an NVIDIA
320 * Tegra Jetson TK1 board. For some reason, the device appears
321 * to briefly drop off the bus when this second bus reset is
322 * executed, yet if we retry this loop, it'll eventually come
323 * back after another reset or two.
324 */
23faf2bc
MV
325
326 if (portstatus & USB_PORT_STAT_ENABLE)
327 break;
328
f7f60100
SR
329 /* Switch to long reset delay for the next round */
330 delay = HUB_LONG_RESET_TIME;
23faf2bc
MV
331 }
332
333 if (tries == MAX_TRIES) {
ceb4972a
VG
334 debug("Cannot enable port %i after %i retries, " \
335 "disabling port.\n", port + 1, MAX_TRIES);
336 debug("Maybe the USB cable is bad?\n");
23faf2bc
MV
337 return -1;
338 }
339
340 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
341 *portstat = portstatus;
342 return 0;
343}
344
79b58887 345int usb_hub_port_connect_change(struct usb_device *dev, int port)
23faf2bc 346{
f5766139 347 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
23faf2bc 348 unsigned short portstatus;
79b58887 349 int ret, speed;
23faf2bc
MV
350
351 /* Check status */
79b58887
SG
352 ret = usb_get_port_status(dev, port + 1, portsts);
353 if (ret < 0) {
ceb4972a 354 debug("get_port_status failed\n");
79b58887 355 return ret;
23faf2bc
MV
356 }
357
f5766139 358 portstatus = le16_to_cpu(portsts->wPortStatus);
ceb4972a
VG
359 debug("portstatus %x, change %x, %s\n",
360 portstatus,
361 le16_to_cpu(portsts->wPortChange),
362 portspeed(portstatus));
23faf2bc
MV
363
364 /* Clear the connection change status */
365 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
366
367 /* Disconnect any existing devices under this port */
368 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
054fe48e
SG
369 (!(portstatus & USB_PORT_STAT_ENABLE))) ||
370 usb_device_has_child_on_port(dev, port)) {
ceb4972a 371 debug("usb_disconnect(&hub->children[port]);\n");
23faf2bc
MV
372 /* Return now if nothing is connected */
373 if (!(portstatus & USB_PORT_STAT_CONNECTION))
79b58887 374 return -ENOTCONN;
23faf2bc 375 }
23faf2bc
MV
376
377 /* Reset the port */
a199a724 378 ret = usb_hub_port_reset(dev, port, &portstatus);
79b58887 379 if (ret < 0) {
45b9ea1d
HG
380 if (ret != -ENXIO)
381 printf("cannot reset port %i!?\n", port + 1);
79b58887 382 return ret;
23faf2bc
MV
383 }
384
55f4b575
VG
385 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
386 case USB_PORT_STAT_SUPER_SPEED:
79b58887 387 speed = USB_SPEED_SUPER;
55f4b575
VG
388 break;
389 case USB_PORT_STAT_HIGH_SPEED:
79b58887 390 speed = USB_SPEED_HIGH;
55f4b575
VG
391 break;
392 case USB_PORT_STAT_LOW_SPEED:
79b58887 393 speed = USB_SPEED_LOW;
55f4b575
VG
394 break;
395 default:
79b58887 396 speed = USB_SPEED_FULL;
55f4b575
VG
397 break;
398 }
23faf2bc 399
b5999f8f
HM
400 /*
401 * USB 2.0 7.1.7.5: devices must be able to accept a SetAddress()
402 * request (refer to Section 11.24.2 and Section 9.4 respectively)
403 * after the reset recovery time 10 ms
404 */
405 mdelay(10);
406
fd09c205 407#if CONFIG_IS_ENABLED(DM_USB)
054fe48e
SG
408 struct udevice *child;
409
410 ret = usb_scan_device(dev->dev, port + 1, speed, &child);
411#else
412 struct usb_device *usb;
413
79b58887
SG
414 ret = usb_alloc_new_device(dev->controller, &usb);
415 if (ret) {
416 printf("cannot create new device: ret=%d", ret);
417 return ret;
418 }
419
23faf2bc 420 dev->children[port] = usb;
79b58887 421 usb->speed = speed;
23faf2bc
MV
422 usb->parent = dev;
423 usb->portnr = port + 1;
424 /* Run it through the hoops (find a driver, etc) */
79b58887
SG
425 ret = usb_new_device(usb);
426 if (ret < 0) {
23faf2bc 427 /* Woops, disable the port */
79b58887 428 usb_free_device(dev->controller);
359439d2 429 dev->children[port] = NULL;
054fe48e
SG
430 }
431#endif
432 if (ret < 0) {
ceb4972a 433 debug("hub: disabling port %d\n", port + 1);
23faf2bc
MV
434 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
435 }
79b58887
SG
436
437 return ret;
23faf2bc
MV
438}
439
c998da0d
SR
440static int usb_scan_port(struct usb_device_scan *usb_scan)
441{
442 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
443 unsigned short portstatus;
444 unsigned short portchange;
445 struct usb_device *dev;
446 struct usb_hub_device *hub;
447 int ret = 0;
448 int i;
449
450 dev = usb_scan->dev;
451 hub = usb_scan->hub;
452 i = usb_scan->port;
453
454 /*
455 * Don't talk to the device before the query delay is expired.
456 * This is needed for voltages to stabalize.
457 */
458 if (get_timer(0) < hub->query_delay)
459 return 0;
460
461 ret = usb_get_port_status(dev, i + 1, portsts);
462 if (ret < 0) {
463 debug("get_port_status failed\n");
464 if (get_timer(0) >= hub->connect_timeout) {
465 debug("devnum=%d port=%d: timeout\n",
466 dev->devnum, i + 1);
467 /* Remove this device from scanning list */
468 list_del(&usb_scan->list);
469 free(usb_scan);
470 return 0;
471 }
d81db48d 472 return 0;
c998da0d
SR
473 }
474
475 portstatus = le16_to_cpu(portsts->wPortStatus);
476 portchange = le16_to_cpu(portsts->wPortChange);
477 debug("Port %d Status %X Change %X\n", i + 1, portstatus, portchange);
478
f7a9e5dd
BM
479 /*
480 * No connection change happened, wait a bit more.
481 *
482 * For some situation, the hub reports no connection change but a
483 * device is connected to the port (eg: CCS bit is set but CSC is not
484 * in the PORTSC register of a root hub), ignore such case.
485 */
486 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
487 !(portstatus & USB_PORT_STAT_CONNECTION)) {
c998da0d
SR
488 if (get_timer(0) >= hub->connect_timeout) {
489 debug("devnum=%d port=%d: timeout\n",
490 dev->devnum, i + 1);
491 /* Remove this device from scanning list */
492 list_del(&usb_scan->list);
493 free(usb_scan);
494 return 0;
495 }
496 return 0;
497 }
498
b9020352
BM
499 if (portchange & USB_PORT_STAT_C_RESET) {
500 debug("port %d reset change\n", i + 1);
501 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
502 }
503
061895fb
BM
504 if ((portchange & USB_SS_PORT_STAT_C_BH_RESET) &&
505 usb_hub_is_superspeed(dev)) {
506 debug("port %d BH reset change\n", i + 1);
507 usb_clear_port_feature(dev, i + 1, USB_SS_PORT_FEAT_C_BH_RESET);
508 }
509
c998da0d
SR
510 /* A new USB device is ready at this point */
511 debug("devnum=%d port=%d: USB dev found\n", dev->devnum, i + 1);
512
513 usb_hub_port_connect_change(dev, i);
514
515 if (portchange & USB_PORT_STAT_C_ENABLE) {
516 debug("port %d enable change, status %x\n", i + 1, portstatus);
517 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
c998da0d
SR
518 /*
519 * EM interference sometimes causes bad shielded USB
520 * devices to be shutdown by the hub, this hack enables
521 * them again. Works at least with mouse driver
522 */
523 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
524 (portstatus & USB_PORT_STAT_CONNECTION) &&
525 usb_device_has_child_on_port(dev, i)) {
526 debug("already running port %i disabled by hub (EMI?), re-enabling...\n",
527 i + 1);
528 usb_hub_port_connect_change(dev, i);
529 }
c998da0d
SR
530 }
531
532 if (portstatus & USB_PORT_STAT_SUSPEND) {
533 debug("port %d suspend change\n", i + 1);
534 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_SUSPEND);
535 }
536
537 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
538 debug("port %d over-current change\n", i + 1);
539 usb_clear_port_feature(dev, i + 1,
540 USB_PORT_FEAT_C_OVER_CURRENT);
541 /* Only power-on this one port */
542 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
543 hub->overcurrent_count[i]++;
544
545 /*
546 * If the max-scan-count is not reached, return without removing
547 * the device from scan-list. This will re-issue a new scan.
548 */
549 if (hub->overcurrent_count[i] <=
550 PORT_OVERCURRENT_MAX_SCAN_COUNT)
551 return 0;
552
553 /* Otherwise the device will get removed */
eae4b2b6 554 printf("Port %d over-current occurred %d times\n", i + 1,
c998da0d
SR
555 hub->overcurrent_count[i]);
556 }
557
c998da0d
SR
558 /*
559 * We're done with this device, so let's remove this device from
560 * scanning list
561 */
562 list_del(&usb_scan->list);
563 free(usb_scan);
564
565 return 0;
566}
567
568static int usb_device_list_scan(void)
569{
570 struct usb_device_scan *usb_scan;
571 struct usb_device_scan *tmp;
572 static int running;
573 int ret = 0;
574
575 /* Only run this loop once for each controller */
576 if (running)
577 return 0;
578
579 running = 1;
580
581 while (1) {
582 /* We're done, once the list is empty again */
583 if (list_empty(&usb_scan_list))
584 goto out;
585
586 list_for_each_entry_safe(usb_scan, tmp, &usb_scan_list, list) {
587 int ret;
588
589 /* Scan this port */
590 ret = usb_scan_port(usb_scan);
591 if (ret)
592 goto out;
593 }
594 }
595
596out:
597 /*
598 * This USB controller has finished scanning all its connected
599 * USB devices. Set "running" back to 0, so that other USB controllers
600 * will scan their devices too.
601 */
602 running = 0;
603
604 return ret;
605}
23faf2bc 606
dfa96e06
BM
607static struct usb_hub_device *usb_get_hub_device(struct usb_device *dev)
608{
609 struct usb_hub_device *hub;
610
fd09c205 611#if !CONFIG_IS_ENABLED(DM_USB)
dfa96e06
BM
612 /* "allocate" Hub device */
613 hub = usb_hub_allocate();
614#else
615 hub = dev_get_uclass_priv(dev->dev);
616#endif
617
618 return hub;
619}
620
23faf2bc
MV
621static int usb_hub_configure(struct usb_device *dev)
622{
eaf3e613 623 int i, length;
f5766139
PS
624 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, USB_BUFSIZ);
625 unsigned char *bitmap;
93ad908c 626 short hubCharacteristics;
23faf2bc
MV
627 struct usb_hub_descriptor *descriptor;
628 struct usb_hub_device *hub;
0ad0458c 629 struct usb_hub_status *hubsts;
361ad6af 630 int ret;
23faf2bc 631
dfa96e06 632 hub = usb_get_hub_device(dev);
23faf2bc 633 if (hub == NULL)
361ad6af 634 return -ENOMEM;
23faf2bc 635 hub->pusb_dev = dev;
dfa96e06 636
23faf2bc 637 /* Get the the hub descriptor */
361ad6af
SG
638 ret = usb_get_hub_descriptor(dev, buffer, 4);
639 if (ret < 0) {
ceb4972a
VG
640 debug("usb_hub_configure: failed to get hub " \
641 "descriptor, giving up %lX\n", dev->status);
361ad6af 642 return ret;
23faf2bc
MV
643 }
644 descriptor = (struct usb_hub_descriptor *)buffer;
645
b4141195
MY
646 length = min_t(int, descriptor->bLength,
647 sizeof(struct usb_hub_descriptor));
23faf2bc 648
361ad6af
SG
649 ret = usb_get_hub_descriptor(dev, buffer, length);
650 if (ret < 0) {
ceb4972a
VG
651 debug("usb_hub_configure: failed to get hub " \
652 "descriptor 2nd giving up %lX\n", dev->status);
361ad6af 653 return ret;
23faf2bc 654 }
eaf3e613 655 memcpy((unsigned char *)&hub->desc, buffer, length);
23faf2bc 656 /* adjust 16bit values */
93ad908c
LS
657 put_unaligned(le16_to_cpu(get_unaligned(
658 &descriptor->wHubCharacteristics)),
659 &hub->desc.wHubCharacteristics);
23faf2bc 660 /* set the bitmap */
337fc7e6 661 bitmap = (unsigned char *)&hub->desc.u.hs.DeviceRemovable[0];
23faf2bc
MV
662 /* devices not removable by default */
663 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
337fc7e6 664 bitmap = (unsigned char *)&hub->desc.u.hs.PortPowerCtrlMask[0];
23faf2bc
MV
665 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
666
667 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
337fc7e6
BM
668 hub->desc.u.hs.DeviceRemovable[i] =
669 descriptor->u.hs.DeviceRemovable[i];
23faf2bc
MV
670
671 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
337fc7e6
BM
672 hub->desc.u.hs.PortPowerCtrlMask[i] =
673 descriptor->u.hs.PortPowerCtrlMask[i];
23faf2bc
MV
674
675 dev->maxchild = descriptor->bNbrPorts;
ceb4972a 676 debug("%d ports detected\n", dev->maxchild);
23faf2bc 677
93ad908c
LS
678 hubCharacteristics = get_unaligned(&hub->desc.wHubCharacteristics);
679 switch (hubCharacteristics & HUB_CHAR_LPSM) {
23faf2bc 680 case 0x00:
ceb4972a 681 debug("ganged power switching\n");
23faf2bc
MV
682 break;
683 case 0x01:
ceb4972a 684 debug("individual port power switching\n");
23faf2bc
MV
685 break;
686 case 0x02:
687 case 0x03:
ceb4972a 688 debug("unknown reserved power switching mode\n");
23faf2bc
MV
689 break;
690 }
691
93ad908c 692 if (hubCharacteristics & HUB_CHAR_COMPOUND)
ceb4972a 693 debug("part of a compound device\n");
23faf2bc 694 else
ceb4972a 695 debug("standalone hub\n");
23faf2bc 696
93ad908c 697 switch (hubCharacteristics & HUB_CHAR_OCPM) {
23faf2bc 698 case 0x00:
ceb4972a 699 debug("global over-current protection\n");
23faf2bc
MV
700 break;
701 case 0x08:
ceb4972a 702 debug("individual port over-current protection\n");
23faf2bc
MV
703 break;
704 case 0x10:
705 case 0x18:
ceb4972a 706 debug("no over-current protection\n");
23faf2bc
MV
707 break;
708 }
709
5624dfd5
BM
710 switch (dev->descriptor.bDeviceProtocol) {
711 case USB_HUB_PR_FS:
712 break;
713 case USB_HUB_PR_HS_SINGLE_TT:
714 debug("Single TT\n");
715 break;
716 case USB_HUB_PR_HS_MULTI_TT:
717 ret = usb_set_interface(dev, 0, 1);
718 if (ret == 0) {
719 debug("TT per port\n");
720 hub->tt.multi = true;
721 } else {
722 debug("Using single TT (err %d)\n", ret);
723 }
724 break;
725 case USB_HUB_PR_SS:
726 /* USB 3.0 hubs don't have a TT */
727 break;
728 default:
729 debug("Unrecognized hub protocol %d\n",
730 dev->descriptor.bDeviceProtocol);
731 break;
732 }
733
734 /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
735 switch (hubCharacteristics & HUB_CHAR_TTTT) {
736 case HUB_TTTT_8_BITS:
737 if (dev->descriptor.bDeviceProtocol != 0) {
738 hub->tt.think_time = 666;
739 debug("TT requires at most %d FS bit times (%d ns)\n",
740 8, hub->tt.think_time);
741 }
742 break;
743 case HUB_TTTT_16_BITS:
744 hub->tt.think_time = 666 * 2;
745 debug("TT requires at most %d FS bit times (%d ns)\n",
746 16, hub->tt.think_time);
747 break;
748 case HUB_TTTT_24_BITS:
749 hub->tt.think_time = 666 * 3;
750 debug("TT requires at most %d FS bit times (%d ns)\n",
751 24, hub->tt.think_time);
752 break;
753 case HUB_TTTT_32_BITS:
754 hub->tt.think_time = 666 * 4;
755 debug("TT requires at most %d FS bit times (%d ns)\n",
756 32, hub->tt.think_time);
757 break;
758 }
759
ceb4972a
VG
760 debug("power on to power good time: %dms\n",
761 descriptor->bPwrOn2PwrGood * 2);
762 debug("hub controller current requirement: %dmA\n",
763 descriptor->bHubContrCurrent);
23faf2bc
MV
764
765 for (i = 0; i < dev->maxchild; i++)
ceb4972a 766 debug("port %d is%s removable\n", i + 1,
337fc7e6 767 hub->desc.u.hs.DeviceRemovable[(i + 1) / 8] & \
ceb4972a 768 (1 << ((i + 1) % 8)) ? " not" : "");
23faf2bc
MV
769
770 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
ceb4972a
VG
771 debug("usb_hub_configure: failed to get Status - " \
772 "too long: %d\n", descriptor->bLength);
361ad6af 773 return -EFBIG;
23faf2bc
MV
774 }
775
361ad6af
SG
776 ret = usb_get_hub_status(dev, buffer);
777 if (ret < 0) {
ceb4972a
VG
778 debug("usb_hub_configure: failed to get Status %lX\n",
779 dev->status);
361ad6af 780 return ret;
23faf2bc
MV
781 }
782
23faf2bc 783 hubsts = (struct usb_hub_status *)buffer;
ceb4972a
VG
784
785 debug("get_hub_status returned status %X, change %X\n",
786 le16_to_cpu(hubsts->wHubStatus),
787 le16_to_cpu(hubsts->wHubChange));
788 debug("local power source is %s\n",
789 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
790 "lost (inactive)" : "good");
791 debug("%sover-current condition exists\n",
792 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
793 "" : "no ");
bbc6f06c 794
fd09c205 795#if CONFIG_IS_ENABLED(DM_USB)
81060bb1
BM
796 /*
797 * Update USB host controller's internal representation of this hub
798 * after the hub descriptor is fetched.
799 */
800 ret = usb_update_hub_device(dev);
801 if (ret < 0 && ret != -ENOSYS) {
802 debug("%s: failed to update hub device for HCD (%x)\n",
803 __func__, ret);
804 return ret;
805 }
806
bbc6f06c
BM
807 /*
808 * A maximum of seven tiers are allowed in a USB topology, and the
809 * root hub occupies the first tier. The last tier ends with a normal
810 * USB device. USB 3.0 hubs use a 20-bit field called 'route string'
811 * to route packets to the designated downstream port. The hub uses a
812 * hub depth value multiplied by four as an offset into the 'route
813 * string' to locate the bits it uses to determine the downstream
814 * port number.
815 */
816 if (usb_hub_is_root_hub(dev->dev)) {
817 hub->hub_depth = -1;
818 } else {
819 struct udevice *hdev;
820 int depth = 0;
821
822 hdev = dev->dev->parent;
823 while (!usb_hub_is_root_hub(hdev)) {
824 depth++;
825 hdev = hdev->parent;
826 }
827
828 hub->hub_depth = depth;
829
830 if (usb_hub_is_superspeed(dev)) {
831 debug("set hub (%p) depth to %d\n", dev, depth);
832 /*
833 * This request sets the value that the hub uses to
834 * determine the index into the 'route string index'
835 * for this hub.
836 */
837 ret = usb_set_hub_depth(dev, depth);
838 if (ret < 0) {
839 debug("%s: failed to set hub depth (%lX)\n",
840 __func__, dev->status);
841 return ret;
842 }
843 }
844 }
845#endif
846
23faf2bc
MV
847 usb_hub_power_on(hub);
848
3615a996
DM
849 /*
850 * Reset any devices that may be in a bad state when applying
851 * the power. This is a __weak function. Resetting of the devices
852 * should occur in the board file of the device.
853 */
854 for (i = 0; i < dev->maxchild; i++)
883946e8 855 usb_hub_reset_devices(hub, i + 1);
3615a996 856
c998da0d
SR
857 /*
858 * Only add the connected USB devices, including potential hubs,
859 * to a scanning list. This list will get scanned and devices that
860 * are detected (either via port connected or via port timeout)
861 * will get removed from this list. Scanning of the devices on this
862 * list will continue until all devices are removed.
863 */
23faf2bc 864 for (i = 0; i < dev->maxchild; i++) {
c998da0d 865 struct usb_device_scan *usb_scan;
b6d7852c 866
c998da0d
SR
867 usb_scan = calloc(1, sizeof(*usb_scan));
868 if (!usb_scan) {
869 printf("Can't allocate memory for USB device!\n");
870 return -ENOMEM;
23faf2bc 871 }
c998da0d
SR
872 usb_scan->dev = dev;
873 usb_scan->hub = hub;
874 usb_scan->port = i;
875 list_add_tail(&usb_scan->list, &usb_scan_list);
876 }
23faf2bc 877
c998da0d
SR
878 /*
879 * And now call the scanning code which loops over the generated list
880 */
881 ret = usb_device_list_scan();
23faf2bc 882
c998da0d 883 return ret;
23faf2bc
MV
884}
885
361ad6af 886static int usb_hub_check(struct usb_device *dev, int ifnum)
23faf2bc
MV
887{
888 struct usb_interface *iface;
361ad6af 889 struct usb_endpoint_descriptor *ep = NULL;
23faf2bc
MV
890
891 iface = &dev->config.if_desc[ifnum];
892 /* Is it a hub? */
893 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
361ad6af 894 goto err;
23faf2bc
MV
895 /* Some hubs have a subclass of 1, which AFAICT according to the */
896 /* specs is not defined, but it works */
897 if ((iface->desc.bInterfaceSubClass != 0) &&
898 (iface->desc.bInterfaceSubClass != 1))
361ad6af 899 goto err;
23faf2bc
MV
900 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
901 if (iface->desc.bNumEndpoints != 1)
361ad6af 902 goto err;
23faf2bc
MV
903 ep = &iface->ep_desc[0];
904 /* Output endpoint? Curiousier and curiousier.. */
905 if (!(ep->bEndpointAddress & USB_DIR_IN))
361ad6af 906 goto err;
23faf2bc
MV
907 /* If it's not an interrupt endpoint, we'd better punt! */
908 if ((ep->bmAttributes & 3) != 3)
361ad6af 909 goto err;
23faf2bc 910 /* We found a hub */
ceb4972a 911 debug("USB hub found\n");
361ad6af
SG
912 return 0;
913
914err:
915 debug("USB hub not found: bInterfaceClass=%d, bInterfaceSubClass=%d, bNumEndpoints=%d\n",
916 iface->desc.bInterfaceClass, iface->desc.bInterfaceSubClass,
917 iface->desc.bNumEndpoints);
918 if (ep) {
919 debug(" bEndpointAddress=%#x, bmAttributes=%d",
920 ep->bEndpointAddress, ep->bmAttributes);
921 }
922
923 return -ENOENT;
924}
925
926int usb_hub_probe(struct usb_device *dev, int ifnum)
927{
928 int ret;
929
930 ret = usb_hub_check(dev, ifnum);
931 if (ret)
932 return 0;
23faf2bc
MV
933 ret = usb_hub_configure(dev);
934 return ret;
935}
054fe48e 936
fd09c205 937#if CONFIG_IS_ENABLED(DM_USB)
054fe48e
SG
938int usb_hub_scan(struct udevice *hub)
939{
bcbe3d15 940 struct usb_device *udev = dev_get_parent_priv(hub);
054fe48e
SG
941
942 return usb_hub_configure(udev);
943}
944
054fe48e
SG
945static int usb_hub_post_probe(struct udevice *dev)
946{
947 debug("%s\n", __func__);
948 return usb_hub_scan(dev);
949}
950
951static const struct udevice_id usb_hub_ids[] = {
952 { .compatible = "usb-hub" },
953 { }
954};
955
956U_BOOT_DRIVER(usb_generic_hub) = {
957 .name = "usb_hub",
958 .id = UCLASS_USB_HUB,
959 .of_match = usb_hub_ids,
960 .flags = DM_FLAG_ALLOC_PRIV_DMA,
961};
962
963UCLASS_DRIVER(usb_hub) = {
964 .id = UCLASS_USB_HUB,
965 .name = "usb_hub",
91195485 966 .post_bind = dm_scan_fdt_dev,
054fe48e
SG
967 .post_probe = usb_hub_post_probe,
968 .child_pre_probe = usb_child_pre_probe,
41575d8e 969 .per_child_auto = sizeof(struct usb_device),
8a8d24bd 970 .per_child_plat_auto = sizeof(struct usb_dev_plat),
41575d8e 971 .per_device_auto = sizeof(struct usb_hub_device),
054fe48e
SG
972};
973
974static const struct usb_device_id hub_id_table[] = {
975 {
976 .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
977 .bDeviceClass = USB_CLASS_HUB
978 },
979 { } /* Terminating entry */
980};
981
abb59cff 982U_BOOT_USB_DEVICE(usb_generic_hub, hub_id_table);
054fe48e
SG
983
984#endif
This page took 0.602265 seconds and 4 git commands to generate.