/* usb.c - USB Hub Support. */ /* * GRUB -- GRand Unified Bootloader * Copyright (C) 2008 Free Software Foundation, Inc. * * GRUB is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GRUB is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GRUB. If not, see . */ #include #include #include #include #include #define GRUB_USBHUB_MAX_DEVICES 128 /* USB Supports 127 devices, with device 0 as special case. */ static struct grub_usb_device *grub_usb_devs[GRUB_USBHUB_MAX_DEVICES]; struct grub_usb_hub { struct grub_usb_hub *next; grub_usb_controller_t controller; int nports; struct grub_usb_device **devices; grub_usb_device_t dev; }; struct grub_usb_hub *hubs; /* Add a device that currently has device number 0 and resides on CONTROLLER, the Hub reported that the device speed is SPEED. */ static grub_usb_device_t grub_usb_hub_add_dev (grub_usb_controller_t controller, grub_usb_speed_t speed) { grub_usb_device_t dev; int i; grub_usb_err_t err; dev = grub_zalloc (sizeof (struct grub_usb_device)); if (! dev) return NULL; dev->controller = *controller; dev->speed = speed; err = grub_usb_device_initialize (dev); if (err) { grub_free (dev); return NULL; } /* Assign a new address to the device. */ for (i = 1; i < GRUB_USBHUB_MAX_DEVICES; i++) { if (! grub_usb_devs[i]) break; } if (i == GRUB_USBHUB_MAX_DEVICES) { grub_error (GRUB_ERR_IO, "can't assign address to USB device"); for (i = 0; i < 8; i++) grub_free (dev->config[i].descconf); grub_free (dev); return NULL; } err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_STANDARD | GRUB_USB_REQTYPE_TARGET_DEV), GRUB_USB_REQ_SET_ADDRESS, i, 0, 0, NULL); if (err) { for (i = 0; i < 8; i++) grub_free (dev->config[i].descconf); grub_free (dev); return NULL; } dev->addr = i; dev->initialized = 1; grub_usb_devs[i] = dev; /* Wait "recovery interval", spec. says 2ms */ grub_millisleep (2); grub_usb_device_attach (dev); return dev; } static grub_usb_err_t grub_usb_add_hub (grub_usb_device_t dev) { struct grub_usb_usb_hubdesc hubdesc; grub_err_t err; int i; grub_uint64_t timeout; grub_usb_device_t next_dev; grub_usb_device_t *attached_devices; err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_DEV), GRUB_USB_REQ_GET_DESCRIPTOR, (GRUB_USB_DESCRIPTOR_HUB << 8) | 0, 0, sizeof (hubdesc), (char *) &hubdesc); if (err) return err; grub_dprintf ("usb", "Hub descriptor:\n\t\t len:%d, typ:0x%02x, cnt:%d, char:0x%02x, pwg:%d, curr:%d\n", hubdesc.length, hubdesc.type, hubdesc.portcnt, hubdesc.characteristics, hubdesc.pwdgood, hubdesc.current); /* Activate the first configuration. Hubs should have only one conf. */ grub_dprintf ("usb", "Hub set configuration\n"); grub_usb_set_configuration (dev, 1); attached_devices = grub_zalloc (hubdesc.portcnt * sizeof (attached_devices[0])); if (!attached_devices) return GRUB_USB_ERR_INTERNAL; dev->children = attached_devices; dev->nports = hubdesc.portcnt; /* Power on all Hub ports. */ for (i = 1; i <= hubdesc.portcnt; i++) { grub_dprintf ("usb", "Power on - port %d\n", i); /* Power on the port and wait for possible device connect */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_SET_FEATURE, GRUB_USB_HUB_FEATURE_PORT_POWER, i, 0, NULL); /* Just ignore the device if some error happened */ if (err) continue; } /* Wait for port power-on */ if (hubdesc.pwdgood >= 50) grub_millisleep (hubdesc.pwdgood * 2); else grub_millisleep (100); /* Iterate over the Hub ports. */ for (i = 1; i <= hubdesc.portcnt; i++) { grub_uint32_t status; /* Get the port status. */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_GET_STATUS, 0, i, sizeof (status), (char *) &status); /* Just ignore the device if the Hub does not report the status. */ if (err) continue; grub_dprintf ("usb", "Hub port %d status: 0x%02x\n", i, status); /* If connected, reset and enable the port. */ if (status & GRUB_USB_HUB_STATUS_CONNECTED) { grub_usb_speed_t speed; /* Determine the device speed. */ if (status & GRUB_USB_HUB_STATUS_LOWSPEED) speed = GRUB_USB_SPEED_LOW; else { if (status & GRUB_USB_HUB_STATUS_HIGHSPEED) speed = GRUB_USB_SPEED_HIGH; else speed = GRUB_USB_SPEED_FULL; } /* A device is actually connected to this port. * Now do reset of port. */ grub_dprintf ("usb", "Reset hub port - port %d\n", i); err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_SET_FEATURE, GRUB_USB_HUB_FEATURE_PORT_RESET, i, 0, 0); /* If the Hub does not cooperate for this port, just skip the port. */ if (err) continue; /* Wait for reset procedure done */ timeout = grub_get_time_ms () + 1000; do { /* Get the port status. */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_GET_STATUS, 0, i, sizeof (status), (char *) &status); } while (!err && !(status & GRUB_USB_HUB_STATUS_C_PORT_RESET) && (grub_get_time_ms() < timeout) ); if (err || !(status & GRUB_USB_HUB_STATUS_C_PORT_RESET) ) continue; /* Wait a recovery time after reset, spec. says 10ms */ grub_millisleep (10); /* Do reset of connection change bit */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_CLEAR_FEATURE, GRUB_USB_HUB_FEATURE_C_CONNECTED, i, 0, 0); /* Just ignore the device if the Hub reports some error */ if (err) continue; grub_dprintf ("usb", "Hub port - cleared connection change\n"); /* Add the device and assign a device address to it. */ grub_dprintf ("usb", "Call hub_add_dev - port %d\n", i); next_dev = grub_usb_hub_add_dev (&dev->controller, speed); if (! next_dev) continue; attached_devices[i - 1] = next_dev; /* If the device is a Hub, scan it for more devices. */ if (next_dev->descdev.class == 0x09) grub_usb_add_hub (next_dev); } } return GRUB_ERR_NONE; } static void attach_root_port (struct grub_usb_hub *hub, int portno, grub_usb_speed_t speed) { grub_usb_device_t dev; grub_err_t err; /* Disable the port. XXX: Why? */ err = hub->controller->dev->portstatus (hub->controller, portno, 0); if (err) return; /* Enable the port. */ err = hub->controller->dev->portstatus (hub->controller, portno, 1); if (err) return; /* Enable the port and create a device. */ dev = grub_usb_hub_add_dev (hub->controller, speed); if (! dev) return; hub->devices[portno] = dev; /* If the device is a Hub, scan it for more devices. */ if (dev->descdev.class == 0x09) grub_usb_add_hub (dev); } grub_usb_err_t grub_usb_root_hub (grub_usb_controller_t controller) { int i; struct grub_usb_hub *hub; int changed=0; hub = grub_malloc (sizeof (*hub)); if (!hub) return GRUB_USB_ERR_INTERNAL; hub->next = hubs; hubs = hub; hub->controller = grub_malloc (sizeof (*controller)); if (!hub->controller) { grub_free (hub); return GRUB_USB_ERR_INTERNAL; } grub_memcpy (hub->controller, controller, sizeof (*controller)); hub->dev = 0; /* Query the number of ports the root Hub has. */ hub->nports = controller->dev->hubports (controller); hub->devices = grub_zalloc (sizeof (hub->devices[0]) * hub->nports); if (!hub->devices) { grub_free (hub->controller); grub_free (hub); return GRUB_USB_ERR_INTERNAL; } for (i = 0; i < hub->nports; i++) { grub_usb_speed_t speed; speed = controller->dev->detect_dev (hub->controller, i, &changed); if (speed != GRUB_USB_SPEED_NONE) attach_root_port (hub, i, speed); } return GRUB_USB_ERR_NONE; } static void detach_device (grub_usb_device_t dev); static void detach_device (grub_usb_device_t dev) { unsigned i; int k; if (!dev) return; if (dev->descdev.class == GRUB_USB_CLASS_HUB) { for (i = 0; i < dev->nports; i++) detach_device (dev->children[i]); grub_free (dev->children); } for (i = 0; i < ARRAY_SIZE (dev->config); i++) if (dev->config[i].descconf) for (k = 0; k < dev->config[i].descconf->numif; k++) { struct grub_usb_interface *inter = &dev->config[i].interf[k]; if (inter && inter->detach_hook) inter->detach_hook (dev, i, k); } grub_usb_devs[dev->addr] = 0; } static void poll_nonroot_hub (grub_usb_device_t dev) { grub_err_t err; unsigned i; grub_uint64_t timeout; grub_usb_device_t next_dev; grub_usb_device_t *attached_devices = dev->children; /* Iterate over the Hub ports. */ for (i = 1; i <= dev->nports; i++) { grub_uint32_t status; /* Get the port status. */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_GET_STATUS, 0, i, sizeof (status), (char *) &status); /* Just ignore the device if the Hub does not report the status. */ if (err) continue; if (status & GRUB_USB_HUB_STATUS_C_CONNECTED) { detach_device (attached_devices[i-1]); attached_devices[i - 1] = NULL; } /* Connected and status of connection changed ? */ if ((status & GRUB_USB_HUB_STATUS_CONNECTED) && (status & GRUB_USB_HUB_STATUS_C_CONNECTED)) { grub_usb_speed_t speed; /* Determine the device speed. */ if (status & GRUB_USB_HUB_STATUS_LOWSPEED) speed = GRUB_USB_SPEED_LOW; else { if (status & GRUB_USB_HUB_STATUS_HIGHSPEED) speed = GRUB_USB_SPEED_HIGH; else speed = GRUB_USB_SPEED_FULL; } /* A device is actually connected to this port. * Now do reset of port. */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_SET_FEATURE, GRUB_USB_HUB_FEATURE_PORT_RESET, i, 0, 0); /* If the Hub does not cooperate for this port, just skip the port. */ if (err) continue; /* Wait for reset procedure done */ timeout = grub_get_time_ms () + 1000; do { /* Get the port status. */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_GET_STATUS, 0, i, sizeof (status), (char *) &status); } while (!err && !(status & GRUB_USB_HUB_STATUS_C_PORT_RESET) && (grub_get_time_ms() < timeout) ); if (err || !(status & GRUB_USB_HUB_STATUS_C_PORT_RESET) ) continue; /* Wait a recovery time after reset, spec. says 10ms */ grub_millisleep (10); /* Do reset of connection change bit */ err = grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_TARGET_OTHER), GRUB_USB_REQ_CLEAR_FEATURE, GRUB_USB_HUB_FEATURE_C_CONNECTED, i, 0, 0); /* Just ignore the device if the Hub reports some error */ if (err) continue; /* Add the device and assign a device address to it. */ next_dev = grub_usb_hub_add_dev (&dev->controller, speed); if (! next_dev) continue; attached_devices[i - 1] = next_dev; /* If the device is a Hub, scan it for more devices. */ if (next_dev->descdev.class == 0x09) grub_usb_add_hub (next_dev); } } return; } void grub_usb_poll_devices (void) { struct grub_usb_hub *hub; int i; for (hub = hubs; hub; hub = hub->next) { /* Do we have to recheck number of ports? */ /* No, it should be never changed, it should be constant. */ for (i = 0; i < hub->nports; i++) { grub_usb_speed_t speed; int changed = 0; speed = hub->controller->dev->detect_dev (hub->controller, i, &changed); if (changed) { detach_device (hub->devices[i]); hub->devices[i] = NULL; if (speed != GRUB_USB_SPEED_NONE) attach_root_port (hub, i, speed); } } } /* We should check changes of non-root hubs too. */ for (i = 0; i < GRUB_USBHUB_MAX_DEVICES; i++) { grub_usb_device_t dev = grub_usb_devs[i]; if (dev && dev->descdev.class == 0x09) poll_nonroot_hub (dev); } } int grub_usb_iterate (int (*hook) (grub_usb_device_t dev)) { int i; for (i = 0; i < GRUB_USBHUB_MAX_DEVICES; i++) { if (grub_usb_devs[i]) { if (hook (grub_usb_devs[i])) return 1; } } return 0; }