blob: 37b358bbbbe010c84f6f7d01adc1c01f7b6bf2c6 [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
Stefan Roesec998da02016-03-15 13:59:15 +010058static LIST_HEAD(usb_scan_list);
Marek Vasut23faf2b2012-02-13 18:58:17 +000059
Dan Murphy3615a992013-08-01 14:06:01 -050060__weak void usb_hub_reset_devices(int port)
61{
62 return;
63}
Marek Vasut23faf2b2012-02-13 18:58:17 +000064
Bin Mengf3421192017-07-19 21:49:58 +080065static inline bool usb_hub_is_superspeed(struct usb_device *hdev)
66{
67 return hdev->descriptor.bDeviceProtocol == 3;
68}
69
Marek Vasut23faf2b2012-02-13 18:58:17 +000070static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
71{
Bin Mengf3421192017-07-19 21:49:58 +080072 unsigned short dtype = USB_DT_HUB;
73
74 if (usb_hub_is_superspeed(dev))
75 dtype = USB_DT_SS_HUB;
76
Marek Vasut23faf2b2012-02-13 18:58:17 +000077 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
78 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
Bin Mengf3421192017-07-19 21:49:58 +080079 dtype << 8, 0, data, size, USB_CNTL_TIMEOUT);
Marek Vasut23faf2b2012-02-13 18:58:17 +000080}
81
82static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
83{
84 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
85 USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature,
86 port, NULL, 0, USB_CNTL_TIMEOUT);
87}
88
89static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
90{
91 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
92 USB_REQ_SET_FEATURE, USB_RT_PORT, feature,
93 port, NULL, 0, USB_CNTL_TIMEOUT);
94}
95
96static int usb_get_hub_status(struct usb_device *dev, void *data)
97{
98 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
99 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
100 data, sizeof(struct usb_hub_status), USB_CNTL_TIMEOUT);
101}
102
Vincent Palatin08f3bb02015-05-04 11:30:54 -0600103int usb_get_port_status(struct usb_device *dev, int port, void *data)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000104{
105 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
106 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
Bin Meng53771a42017-07-19 21:49:59 +0800107 data, sizeof(struct usb_port_status), USB_CNTL_TIMEOUT);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000108}
109
110
111static void usb_hub_power_on(struct usb_hub_device *hub)
112{
113 int i;
114 struct usb_device *dev;
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000115 unsigned pgood_delay = hub->desc.bPwrOn2PwrGood * 2;
Tim Harvey319418c2015-04-08 12:21:12 -0700116 const char *env;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000117
118 dev = hub->pusb_dev;
Vivek Gautam0bf796f2013-04-24 02:50:11 +0000119
Vivek Gautamceb49722013-04-12 16:34:33 +0530120 debug("enabling power on all ports\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000121 for (i = 0; i < dev->maxchild; i++) {
122 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
Vivek Gautamceb49722013-04-12 16:34:33 +0530123 debug("port %d returns %lX\n", i + 1, dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000124 }
Wolfgang Grandeggera1a28c62011-12-21 00:01:09 +0000125
Stefan Roesec998da02016-03-15 13:59:15 +0100126#ifdef CONFIG_SANDBOX
127 /*
128 * Don't set timeout / delay values here. This results
129 * in these values still being reset to 0.
130 */
131 if (state_get_skip_delays())
132 return;
133#endif
134
Stephen Warren0d437bc2014-05-19 14:21:17 -0600135 /*
136 * Wait for power to become stable,
137 * plus spec-defined max time for device to connect
Tim Harvey319418c2015-04-08 12:21:12 -0700138 * but allow this time to be increased via env variable as some
139 * devices break the spec and require longer warm-up times
Stephen Warren0d437bc2014-05-19 14:21:17 -0600140 */
Tim Harvey319418c2015-04-08 12:21:12 -0700141 env = getenv("usb_pgood_delay");
142 if (env)
143 pgood_delay = max(pgood_delay,
144 (unsigned)simple_strtol(env, NULL, 0));
145 debug("pgood_delay=%dms\n", pgood_delay);
Stefan Roesec998da02016-03-15 13:59:15 +0100146
147 /*
148 * Do a minimum delay of the larger value of 100ms or pgood_delay
149 * so that the power can stablize before the devices are queried
150 */
151 hub->query_delay = get_timer(0) + max(100, (int)pgood_delay);
152
153 /*
154 * Record the power-on timeout here. The max. delay (timeout)
155 * will be done based on this value in the USB port loop in
156 * usb_hub_configure() later.
157 */
158 hub->connect_timeout = hub->query_delay + 1000;
159 debug("devnum=%d poweron: query_delay=%d connect_timeout=%d\n",
160 dev->devnum, max(100, (int)pgood_delay),
161 max(100, (int)pgood_delay) + 1000);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000162}
163
Bin Mengdfa96e02017-07-19 21:51:09 +0800164#ifndef CONFIG_DM_USB
165static struct usb_hub_device hub_dev[USB_MAX_HUB];
166static int usb_hub_index;
167
Marek Vasut23faf2b2012-02-13 18:58:17 +0000168void usb_hub_reset(void)
169{
170 usb_hub_index = 0;
Stefan Roesec998da02016-03-15 13:59:15 +0100171
172 /* Zero out global hub_dev in case its re-used again */
173 memset(hub_dev, 0, sizeof(hub_dev));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000174}
175
176static struct usb_hub_device *usb_hub_allocate(void)
177{
178 if (usb_hub_index < USB_MAX_HUB)
179 return &hub_dev[usb_hub_index++];
180
181 printf("ERROR: USB_MAX_HUB (%d) reached\n", USB_MAX_HUB);
182 return NULL;
183}
Bin Mengdfa96e02017-07-19 21:51:09 +0800184#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +0000185
186#define MAX_TRIES 5
187
188static inline char *portspeed(int portstatus)
189{
Vivek Gautam55f4b572013-04-24 02:50:12 +0000190 char *speed_str;
191
192 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
193 case USB_PORT_STAT_SUPER_SPEED:
194 speed_str = "5 Gb/s";
195 break;
196 case USB_PORT_STAT_HIGH_SPEED:
197 speed_str = "480 Mb/s";
198 break;
199 case USB_PORT_STAT_LOW_SPEED:
200 speed_str = "1.5 Mb/s";
201 break;
202 default:
203 speed_str = "12 Mb/s";
204 break;
205 }
206
207 return speed_str;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000208}
209
Simon Glass862e75c2015-03-25 12:22:04 -0600210int legacy_hub_port_reset(struct usb_device *dev, int port,
Marek Vasut23faf2b2012-02-13 18:58:17 +0000211 unsigned short *portstat)
212{
Hans de Goedead84a422015-05-10 14:10:15 +0200213 int err, tries;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530214 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000215 unsigned short portstatus, portchange;
Stefan Roesef7f60102016-03-15 13:59:12 +0100216 int delay = HUB_SHORT_RESET_TIME; /* start with short reset delay */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000217
Simon Glass054fe482015-03-25 12:22:10 -0600218#ifdef CONFIG_DM_USB
219 debug("%s: resetting '%s' port %d...\n", __func__, dev->dev->name,
220 port + 1);
221#else
222 debug("%s: resetting port %d...\n", __func__, port + 1);
223#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +0000224 for (tries = 0; tries < MAX_TRIES; tries++) {
Hans de Goedead84a422015-05-10 14:10:15 +0200225 err = usb_set_port_feature(dev, port + 1, USB_PORT_FEAT_RESET);
226 if (err < 0)
227 return err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000228
Stefan Roesef7f60102016-03-15 13:59:12 +0100229 mdelay(delay);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000230
Puneet Saxenaf5766132012-04-03 14:56:06 +0530231 if (usb_get_port_status(dev, port + 1, portsts) < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530232 debug("get_port_status failed status %lX\n",
233 dev->status);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000234 return -1;
235 }
Puneet Saxenaf5766132012-04-03 14:56:06 +0530236 portstatus = le16_to_cpu(portsts->wPortStatus);
237 portchange = le16_to_cpu(portsts->wPortChange);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000238
Vivek Gautamceb49722013-04-12 16:34:33 +0530239 debug("portstatus %x, change %x, %s\n", portstatus, portchange,
240 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000241
Vivek Gautamceb49722013-04-12 16:34:33 +0530242 debug("STAT_C_CONNECTION = %d STAT_CONNECTION = %d" \
243 " USB_PORT_STAT_ENABLE %d\n",
244 (portchange & USB_PORT_STAT_C_CONNECTION) ? 1 : 0,
245 (portstatus & USB_PORT_STAT_CONNECTION) ? 1 : 0,
246 (portstatus & USB_PORT_STAT_ENABLE) ? 1 : 0);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000247
Stephen Warren74c0d752014-08-07 17:07:59 -0600248 /*
249 * Perhaps we should check for the following here:
250 * - C_CONNECTION hasn't been set.
251 * - CONNECTION is still set.
252 *
253 * Doing so would ensure that the device is still connected
254 * to the bus, and hasn't been unplugged or replaced while the
255 * USB bus reset was going on.
256 *
257 * However, if we do that, then (at least) a San Disk Ultra
258 * USB 3.0 16GB device fails to reset on (at least) an NVIDIA
259 * Tegra Jetson TK1 board. For some reason, the device appears
260 * to briefly drop off the bus when this second bus reset is
261 * executed, yet if we retry this loop, it'll eventually come
262 * back after another reset or two.
263 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000264
265 if (portstatus & USB_PORT_STAT_ENABLE)
266 break;
267
Stefan Roesef7f60102016-03-15 13:59:12 +0100268 /* Switch to long reset delay for the next round */
269 delay = HUB_LONG_RESET_TIME;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000270 }
271
272 if (tries == MAX_TRIES) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530273 debug("Cannot enable port %i after %i retries, " \
274 "disabling port.\n", port + 1, MAX_TRIES);
275 debug("Maybe the USB cable is bad?\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000276 return -1;
277 }
278
279 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_RESET);
280 *portstat = portstatus;
281 return 0;
282}
283
Simon Glass054fe482015-03-25 12:22:10 -0600284#ifdef CONFIG_DM_USB
285int hub_port_reset(struct udevice *dev, int port, unsigned short *portstat)
286{
Simon Glassbcbe3d12015-09-28 23:32:01 -0600287 struct usb_device *udev = dev_get_parent_priv(dev);
Simon Glass054fe482015-03-25 12:22:10 -0600288
289 return legacy_hub_port_reset(udev, port, portstat);
290}
291#endif
Marek Vasut23faf2b2012-02-13 18:58:17 +0000292
Simon Glass79b58882015-03-25 12:22:01 -0600293int usb_hub_port_connect_change(struct usb_device *dev, int port)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000294{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530295 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000296 unsigned short portstatus;
Simon Glass79b58882015-03-25 12:22:01 -0600297 int ret, speed;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000298
299 /* Check status */
Simon Glass79b58882015-03-25 12:22:01 -0600300 ret = usb_get_port_status(dev, port + 1, portsts);
301 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530302 debug("get_port_status failed\n");
Simon Glass79b58882015-03-25 12:22:01 -0600303 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000304 }
305
Puneet Saxenaf5766132012-04-03 14:56:06 +0530306 portstatus = le16_to_cpu(portsts->wPortStatus);
Vivek Gautamceb49722013-04-12 16:34:33 +0530307 debug("portstatus %x, change %x, %s\n",
308 portstatus,
309 le16_to_cpu(portsts->wPortChange),
310 portspeed(portstatus));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000311
312 /* Clear the connection change status */
313 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
314
315 /* Disconnect any existing devices under this port */
316 if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
Simon Glass054fe482015-03-25 12:22:10 -0600317 (!(portstatus & USB_PORT_STAT_ENABLE))) ||
318 usb_device_has_child_on_port(dev, port)) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530319 debug("usb_disconnect(&hub->children[port]);\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000320 /* Return now if nothing is connected */
321 if (!(portstatus & USB_PORT_STAT_CONNECTION))
Simon Glass79b58882015-03-25 12:22:01 -0600322 return -ENOTCONN;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000323 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000324
325 /* Reset the port */
Simon Glass862e75c2015-03-25 12:22:04 -0600326 ret = legacy_hub_port_reset(dev, port, &portstatus);
Simon Glass79b58882015-03-25 12:22:01 -0600327 if (ret < 0) {
Hans de Goede45b9ea12015-05-10 14:10:16 +0200328 if (ret != -ENXIO)
329 printf("cannot reset port %i!?\n", port + 1);
Simon Glass79b58882015-03-25 12:22:01 -0600330 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000331 }
332
Vivek Gautam55f4b572013-04-24 02:50:12 +0000333 switch (portstatus & USB_PORT_STAT_SPEED_MASK) {
334 case USB_PORT_STAT_SUPER_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600335 speed = USB_SPEED_SUPER;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000336 break;
337 case USB_PORT_STAT_HIGH_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600338 speed = USB_SPEED_HIGH;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000339 break;
340 case USB_PORT_STAT_LOW_SPEED:
Simon Glass79b58882015-03-25 12:22:01 -0600341 speed = USB_SPEED_LOW;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000342 break;
343 default:
Simon Glass79b58882015-03-25 12:22:01 -0600344 speed = USB_SPEED_FULL;
Vivek Gautam55f4b572013-04-24 02:50:12 +0000345 break;
346 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000347
Simon Glass054fe482015-03-25 12:22:10 -0600348#ifdef CONFIG_DM_USB
349 struct udevice *child;
350
351 ret = usb_scan_device(dev->dev, port + 1, speed, &child);
352#else
353 struct usb_device *usb;
354
Simon Glass79b58882015-03-25 12:22:01 -0600355 ret = usb_alloc_new_device(dev->controller, &usb);
356 if (ret) {
357 printf("cannot create new device: ret=%d", ret);
358 return ret;
359 }
360
Marek Vasut23faf2b2012-02-13 18:58:17 +0000361 dev->children[port] = usb;
Simon Glass79b58882015-03-25 12:22:01 -0600362 usb->speed = speed;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000363 usb->parent = dev;
364 usb->portnr = port + 1;
365 /* Run it through the hoops (find a driver, etc) */
Simon Glass79b58882015-03-25 12:22:01 -0600366 ret = usb_new_device(usb);
367 if (ret < 0) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000368 /* Woops, disable the port */
Simon Glass79b58882015-03-25 12:22:01 -0600369 usb_free_device(dev->controller);
Milind Choudhary359439d2012-12-12 17:55:28 -0800370 dev->children[port] = NULL;
Simon Glass054fe482015-03-25 12:22:10 -0600371 }
372#endif
373 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530374 debug("hub: disabling port %d\n", port + 1);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000375 usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
376 }
Simon Glass79b58882015-03-25 12:22:01 -0600377
378 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000379}
380
Stefan Roesec998da02016-03-15 13:59:15 +0100381static int usb_scan_port(struct usb_device_scan *usb_scan)
382{
383 ALLOC_CACHE_ALIGN_BUFFER(struct usb_port_status, portsts, 1);
384 unsigned short portstatus;
385 unsigned short portchange;
386 struct usb_device *dev;
387 struct usb_hub_device *hub;
388 int ret = 0;
389 int i;
390
391 dev = usb_scan->dev;
392 hub = usb_scan->hub;
393 i = usb_scan->port;
394
395 /*
396 * Don't talk to the device before the query delay is expired.
397 * This is needed for voltages to stabalize.
398 */
399 if (get_timer(0) < hub->query_delay)
400 return 0;
401
402 ret = usb_get_port_status(dev, i + 1, portsts);
403 if (ret < 0) {
404 debug("get_port_status failed\n");
405 if (get_timer(0) >= hub->connect_timeout) {
406 debug("devnum=%d port=%d: timeout\n",
407 dev->devnum, i + 1);
408 /* Remove this device from scanning list */
409 list_del(&usb_scan->list);
410 free(usb_scan);
411 return 0;
412 }
Marek Vasutd81db482016-05-03 22:22:59 +0200413 return 0;
Stefan Roesec998da02016-03-15 13:59:15 +0100414 }
415
416 portstatus = le16_to_cpu(portsts->wPortStatus);
417 portchange = le16_to_cpu(portsts->wPortChange);
418 debug("Port %d Status %X Change %X\n", i + 1, portstatus, portchange);
419
Bin Mengf7a9e5d2017-07-19 21:49:57 +0800420 /*
421 * No connection change happened, wait a bit more.
422 *
423 * For some situation, the hub reports no connection change but a
424 * device is connected to the port (eg: CCS bit is set but CSC is not
425 * in the PORTSC register of a root hub), ignore such case.
426 */
427 if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
428 !(portstatus & USB_PORT_STAT_CONNECTION)) {
Stefan Roesec998da02016-03-15 13:59:15 +0100429 if (get_timer(0) >= hub->connect_timeout) {
430 debug("devnum=%d port=%d: timeout\n",
431 dev->devnum, i + 1);
432 /* Remove this device from scanning list */
433 list_del(&usb_scan->list);
434 free(usb_scan);
435 return 0;
436 }
437 return 0;
438 }
439
Stefan Roesec998da02016-03-15 13:59:15 +0100440 /* A new USB device is ready at this point */
441 debug("devnum=%d port=%d: USB dev found\n", dev->devnum, i + 1);
442
443 usb_hub_port_connect_change(dev, i);
444
445 if (portchange & USB_PORT_STAT_C_ENABLE) {
446 debug("port %d enable change, status %x\n", i + 1, portstatus);
447 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
448 /*
449 * The following hack causes a ghost device problem
450 * to Faraday EHCI
451 */
452#ifndef CONFIG_USB_EHCI_FARADAY
453 /*
454 * EM interference sometimes causes bad shielded USB
455 * devices to be shutdown by the hub, this hack enables
456 * them again. Works at least with mouse driver
457 */
458 if (!(portstatus & USB_PORT_STAT_ENABLE) &&
459 (portstatus & USB_PORT_STAT_CONNECTION) &&
460 usb_device_has_child_on_port(dev, i)) {
461 debug("already running port %i disabled by hub (EMI?), re-enabling...\n",
462 i + 1);
463 usb_hub_port_connect_change(dev, i);
464 }
465#endif
466 }
467
468 if (portstatus & USB_PORT_STAT_SUSPEND) {
469 debug("port %d suspend change\n", i + 1);
470 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_SUSPEND);
471 }
472
473 if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
474 debug("port %d over-current change\n", i + 1);
475 usb_clear_port_feature(dev, i + 1,
476 USB_PORT_FEAT_C_OVER_CURRENT);
477 /* Only power-on this one port */
478 usb_set_port_feature(dev, i + 1, USB_PORT_FEAT_POWER);
479 hub->overcurrent_count[i]++;
480
481 /*
482 * If the max-scan-count is not reached, return without removing
483 * the device from scan-list. This will re-issue a new scan.
484 */
485 if (hub->overcurrent_count[i] <=
486 PORT_OVERCURRENT_MAX_SCAN_COUNT)
487 return 0;
488
489 /* Otherwise the device will get removed */
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -0700490 printf("Port %d over-current occurred %d times\n", i + 1,
Stefan Roesec998da02016-03-15 13:59:15 +0100491 hub->overcurrent_count[i]);
492 }
493
494 if (portchange & USB_PORT_STAT_C_RESET) {
495 debug("port %d reset change\n", i + 1);
496 usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
497 }
498
499 /*
500 * We're done with this device, so let's remove this device from
501 * scanning list
502 */
503 list_del(&usb_scan->list);
504 free(usb_scan);
505
506 return 0;
507}
508
509static int usb_device_list_scan(void)
510{
511 struct usb_device_scan *usb_scan;
512 struct usb_device_scan *tmp;
513 static int running;
514 int ret = 0;
515
516 /* Only run this loop once for each controller */
517 if (running)
518 return 0;
519
520 running = 1;
521
522 while (1) {
523 /* We're done, once the list is empty again */
524 if (list_empty(&usb_scan_list))
525 goto out;
526
527 list_for_each_entry_safe(usb_scan, tmp, &usb_scan_list, list) {
528 int ret;
529
530 /* Scan this port */
531 ret = usb_scan_port(usb_scan);
532 if (ret)
533 goto out;
534 }
535 }
536
537out:
538 /*
539 * This USB controller has finished scanning all its connected
540 * USB devices. Set "running" back to 0, so that other USB controllers
541 * will scan their devices too.
542 */
543 running = 0;
544
545 return ret;
546}
Marek Vasut23faf2b2012-02-13 18:58:17 +0000547
Bin Mengdfa96e02017-07-19 21:51:09 +0800548static struct usb_hub_device *usb_get_hub_device(struct usb_device *dev)
549{
550 struct usb_hub_device *hub;
551
552#ifndef CONFIG_DM_USB
553 /* "allocate" Hub device */
554 hub = usb_hub_allocate();
555#else
556 hub = dev_get_uclass_priv(dev->dev);
557#endif
558
559 return hub;
560}
561
Marek Vasut23faf2b2012-02-13 18:58:17 +0000562static int usb_hub_configure(struct usb_device *dev)
563{
Julius Wernereaf3e612013-07-19 13:12:08 -0700564 int i, length;
Puneet Saxenaf5766132012-04-03 14:56:06 +0530565 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, USB_BUFSIZ);
566 unsigned char *bitmap;
Lucas Stach93ad9082012-09-06 08:00:13 +0200567 short hubCharacteristics;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000568 struct usb_hub_descriptor *descriptor;
569 struct usb_hub_device *hub;
Vivek Gautamceb49722013-04-12 16:34:33 +0530570 __maybe_unused struct usb_hub_status *hubsts;
Simon Glass361ad6a2015-03-25 12:22:09 -0600571 int ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000572
Bin Mengdfa96e02017-07-19 21:51:09 +0800573 hub = usb_get_hub_device(dev);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000574 if (hub == NULL)
Simon Glass361ad6a2015-03-25 12:22:09 -0600575 return -ENOMEM;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000576 hub->pusb_dev = dev;
Bin Mengdfa96e02017-07-19 21:51:09 +0800577
Marek Vasut23faf2b2012-02-13 18:58:17 +0000578 /* Get the the hub descriptor */
Simon Glass361ad6a2015-03-25 12:22:09 -0600579 ret = usb_get_hub_descriptor(dev, buffer, 4);
580 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530581 debug("usb_hub_configure: failed to get hub " \
582 "descriptor, giving up %lX\n", dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600583 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000584 }
585 descriptor = (struct usb_hub_descriptor *)buffer;
586
Masahiro Yamadab4141192014-11-07 03:03:31 +0900587 length = min_t(int, descriptor->bLength,
588 sizeof(struct usb_hub_descriptor));
Marek Vasut23faf2b2012-02-13 18:58:17 +0000589
Simon Glass361ad6a2015-03-25 12:22:09 -0600590 ret = usb_get_hub_descriptor(dev, buffer, length);
591 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530592 debug("usb_hub_configure: failed to get hub " \
593 "descriptor 2nd giving up %lX\n", dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600594 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000595 }
Julius Wernereaf3e612013-07-19 13:12:08 -0700596 memcpy((unsigned char *)&hub->desc, buffer, length);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000597 /* adjust 16bit values */
Lucas Stach93ad9082012-09-06 08:00:13 +0200598 put_unaligned(le16_to_cpu(get_unaligned(
599 &descriptor->wHubCharacteristics)),
600 &hub->desc.wHubCharacteristics);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000601 /* set the bitmap */
Bin Meng337fc7e2017-07-19 21:50:00 +0800602 bitmap = (unsigned char *)&hub->desc.u.hs.DeviceRemovable[0];
Marek Vasut23faf2b2012-02-13 18:58:17 +0000603 /* devices not removable by default */
604 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8);
Bin Meng337fc7e2017-07-19 21:50:00 +0800605 bitmap = (unsigned char *)&hub->desc.u.hs.PortPowerCtrlMask[0];
Marek Vasut23faf2b2012-02-13 18:58:17 +0000606 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */
607
608 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
Bin Meng337fc7e2017-07-19 21:50:00 +0800609 hub->desc.u.hs.DeviceRemovable[i] =
610 descriptor->u.hs.DeviceRemovable[i];
Marek Vasut23faf2b2012-02-13 18:58:17 +0000611
612 for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++)
Bin Meng337fc7e2017-07-19 21:50:00 +0800613 hub->desc.u.hs.PortPowerCtrlMask[i] =
614 descriptor->u.hs.PortPowerCtrlMask[i];
Marek Vasut23faf2b2012-02-13 18:58:17 +0000615
616 dev->maxchild = descriptor->bNbrPorts;
Vivek Gautamceb49722013-04-12 16:34:33 +0530617 debug("%d ports detected\n", dev->maxchild);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000618
Lucas Stach93ad9082012-09-06 08:00:13 +0200619 hubCharacteristics = get_unaligned(&hub->desc.wHubCharacteristics);
620 switch (hubCharacteristics & HUB_CHAR_LPSM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000621 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530622 debug("ganged power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000623 break;
624 case 0x01:
Vivek Gautamceb49722013-04-12 16:34:33 +0530625 debug("individual port power switching\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000626 break;
627 case 0x02:
628 case 0x03:
Vivek Gautamceb49722013-04-12 16:34:33 +0530629 debug("unknown reserved power switching mode\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000630 break;
631 }
632
Lucas Stach93ad9082012-09-06 08:00:13 +0200633 if (hubCharacteristics & HUB_CHAR_COMPOUND)
Vivek Gautamceb49722013-04-12 16:34:33 +0530634 debug("part of a compound device\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000635 else
Vivek Gautamceb49722013-04-12 16:34:33 +0530636 debug("standalone hub\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000637
Lucas Stach93ad9082012-09-06 08:00:13 +0200638 switch (hubCharacteristics & HUB_CHAR_OCPM) {
Marek Vasut23faf2b2012-02-13 18:58:17 +0000639 case 0x00:
Vivek Gautamceb49722013-04-12 16:34:33 +0530640 debug("global over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000641 break;
642 case 0x08:
Vivek Gautamceb49722013-04-12 16:34:33 +0530643 debug("individual port over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000644 break;
645 case 0x10:
646 case 0x18:
Vivek Gautamceb49722013-04-12 16:34:33 +0530647 debug("no over-current protection\n");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000648 break;
649 }
650
Vivek Gautamceb49722013-04-12 16:34:33 +0530651 debug("power on to power good time: %dms\n",
652 descriptor->bPwrOn2PwrGood * 2);
653 debug("hub controller current requirement: %dmA\n",
654 descriptor->bHubContrCurrent);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000655
656 for (i = 0; i < dev->maxchild; i++)
Vivek Gautamceb49722013-04-12 16:34:33 +0530657 debug("port %d is%s removable\n", i + 1,
Bin Meng337fc7e2017-07-19 21:50:00 +0800658 hub->desc.u.hs.DeviceRemovable[(i + 1) / 8] & \
Vivek Gautamceb49722013-04-12 16:34:33 +0530659 (1 << ((i + 1) % 8)) ? " not" : "");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000660
661 if (sizeof(struct usb_hub_status) > USB_BUFSIZ) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530662 debug("usb_hub_configure: failed to get Status - " \
663 "too long: %d\n", descriptor->bLength);
Simon Glass361ad6a2015-03-25 12:22:09 -0600664 return -EFBIG;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000665 }
666
Simon Glass361ad6a2015-03-25 12:22:09 -0600667 ret = usb_get_hub_status(dev, buffer);
668 if (ret < 0) {
Vivek Gautamceb49722013-04-12 16:34:33 +0530669 debug("usb_hub_configure: failed to get Status %lX\n",
670 dev->status);
Simon Glass361ad6a2015-03-25 12:22:09 -0600671 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000672 }
673
Vivek Gautamceb49722013-04-12 16:34:33 +0530674#ifdef DEBUG
Marek Vasut23faf2b2012-02-13 18:58:17 +0000675 hubsts = (struct usb_hub_status *)buffer;
676#endif
Vivek Gautamceb49722013-04-12 16:34:33 +0530677
678 debug("get_hub_status returned status %X, change %X\n",
679 le16_to_cpu(hubsts->wHubStatus),
680 le16_to_cpu(hubsts->wHubChange));
681 debug("local power source is %s\n",
682 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_LOCAL_POWER) ? \
683 "lost (inactive)" : "good");
684 debug("%sover-current condition exists\n",
685 (le16_to_cpu(hubsts->wHubStatus) & HUB_STATUS_OVERCURRENT) ? \
686 "" : "no ");
Marek Vasut23faf2b2012-02-13 18:58:17 +0000687 usb_hub_power_on(hub);
688
Dan Murphy3615a992013-08-01 14:06:01 -0500689 /*
690 * Reset any devices that may be in a bad state when applying
691 * the power. This is a __weak function. Resetting of the devices
692 * should occur in the board file of the device.
693 */
694 for (i = 0; i < dev->maxchild; i++)
695 usb_hub_reset_devices(i + 1);
696
Stefan Roesec998da02016-03-15 13:59:15 +0100697 /*
698 * Only add the connected USB devices, including potential hubs,
699 * to a scanning list. This list will get scanned and devices that
700 * are detected (either via port connected or via port timeout)
701 * will get removed from this list. Scanning of the devices on this
702 * list will continue until all devices are removed.
703 */
Marek Vasut23faf2b2012-02-13 18:58:17 +0000704 for (i = 0; i < dev->maxchild; i++) {
Stefan Roesec998da02016-03-15 13:59:15 +0100705 struct usb_device_scan *usb_scan;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000706
Stefan Roesec998da02016-03-15 13:59:15 +0100707 usb_scan = calloc(1, sizeof(*usb_scan));
708 if (!usb_scan) {
709 printf("Can't allocate memory for USB device!\n");
710 return -ENOMEM;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000711 }
Stefan Roesec998da02016-03-15 13:59:15 +0100712 usb_scan->dev = dev;
713 usb_scan->hub = hub;
714 usb_scan->port = i;
715 list_add_tail(&usb_scan->list, &usb_scan_list);
716 }
Marek Vasut23faf2b2012-02-13 18:58:17 +0000717
Stefan Roesec998da02016-03-15 13:59:15 +0100718 /*
719 * And now call the scanning code which loops over the generated list
720 */
721 ret = usb_device_list_scan();
Marek Vasut23faf2b2012-02-13 18:58:17 +0000722
Stefan Roesec998da02016-03-15 13:59:15 +0100723 return ret;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000724}
725
Simon Glass361ad6a2015-03-25 12:22:09 -0600726static int usb_hub_check(struct usb_device *dev, int ifnum)
Marek Vasut23faf2b2012-02-13 18:58:17 +0000727{
728 struct usb_interface *iface;
Simon Glass361ad6a2015-03-25 12:22:09 -0600729 struct usb_endpoint_descriptor *ep = NULL;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000730
731 iface = &dev->config.if_desc[ifnum];
732 /* Is it a hub? */
733 if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
Simon Glass361ad6a2015-03-25 12:22:09 -0600734 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000735 /* Some hubs have a subclass of 1, which AFAICT according to the */
736 /* specs is not defined, but it works */
737 if ((iface->desc.bInterfaceSubClass != 0) &&
738 (iface->desc.bInterfaceSubClass != 1))
Simon Glass361ad6a2015-03-25 12:22:09 -0600739 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000740 /* Multiple endpoints? What kind of mutant ninja-hub is this? */
741 if (iface->desc.bNumEndpoints != 1)
Simon Glass361ad6a2015-03-25 12:22:09 -0600742 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000743 ep = &iface->ep_desc[0];
744 /* Output endpoint? Curiousier and curiousier.. */
745 if (!(ep->bEndpointAddress & USB_DIR_IN))
Simon Glass361ad6a2015-03-25 12:22:09 -0600746 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000747 /* If it's not an interrupt endpoint, we'd better punt! */
748 if ((ep->bmAttributes & 3) != 3)
Simon Glass361ad6a2015-03-25 12:22:09 -0600749 goto err;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000750 /* We found a hub */
Vivek Gautamceb49722013-04-12 16:34:33 +0530751 debug("USB hub found\n");
Simon Glass361ad6a2015-03-25 12:22:09 -0600752 return 0;
753
754err:
755 debug("USB hub not found: bInterfaceClass=%d, bInterfaceSubClass=%d, bNumEndpoints=%d\n",
756 iface->desc.bInterfaceClass, iface->desc.bInterfaceSubClass,
757 iface->desc.bNumEndpoints);
758 if (ep) {
759 debug(" bEndpointAddress=%#x, bmAttributes=%d",
760 ep->bEndpointAddress, ep->bmAttributes);
761 }
762
763 return -ENOENT;
764}
765
766int usb_hub_probe(struct usb_device *dev, int ifnum)
767{
768 int ret;
769
770 ret = usb_hub_check(dev, ifnum);
771 if (ret)
772 return 0;
Marek Vasut23faf2b2012-02-13 18:58:17 +0000773 ret = usb_hub_configure(dev);
774 return ret;
775}
Simon Glass054fe482015-03-25 12:22:10 -0600776
777#ifdef CONFIG_DM_USB
778int usb_hub_scan(struct udevice *hub)
779{
Simon Glassbcbe3d12015-09-28 23:32:01 -0600780 struct usb_device *udev = dev_get_parent_priv(hub);
Simon Glass054fe482015-03-25 12:22:10 -0600781
782 return usb_hub_configure(udev);
783}
784
Simon Glass054fe482015-03-25 12:22:10 -0600785static int usb_hub_post_probe(struct udevice *dev)
786{
787 debug("%s\n", __func__);
788 return usb_hub_scan(dev);
789}
790
791static const struct udevice_id usb_hub_ids[] = {
792 { .compatible = "usb-hub" },
793 { }
794};
795
796U_BOOT_DRIVER(usb_generic_hub) = {
797 .name = "usb_hub",
798 .id = UCLASS_USB_HUB,
799 .of_match = usb_hub_ids,
800 .flags = DM_FLAG_ALLOC_PRIV_DMA,
801};
802
803UCLASS_DRIVER(usb_hub) = {
804 .id = UCLASS_USB_HUB,
805 .name = "usb_hub",
Simon Glass91195482016-07-05 17:10:10 -0600806 .post_bind = dm_scan_fdt_dev,
Simon Glass054fe482015-03-25 12:22:10 -0600807 .post_probe = usb_hub_post_probe,
808 .child_pre_probe = usb_child_pre_probe,
809 .per_child_auto_alloc_size = sizeof(struct usb_device),
810 .per_child_platdata_auto_alloc_size = sizeof(struct usb_dev_platdata),
Bin Mengdfa96e02017-07-19 21:51:09 +0800811 .per_device_auto_alloc_size = sizeof(struct usb_hub_device),
Simon Glass054fe482015-03-25 12:22:10 -0600812};
813
814static const struct usb_device_id hub_id_table[] = {
815 {
816 .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
817 .bDeviceClass = USB_CLASS_HUB
818 },
819 { } /* Terminating entry */
820};
821
Simon Glassabb59cf2015-07-06 16:47:51 -0600822U_BOOT_USB_DEVICE(usb_generic_hub, hub_id_table);
Simon Glass054fe482015-03-25 12:22:10 -0600823
824#endif